/* quote.css - styles for map/contact + Get A Quote form section */

/* Base */
:root {
  --primary: #ff8801;
  --blue: #06b0ff;
  --dark: #111;
  --muted: #68707a;
  --form-bg: #111218;
  /* dark form background */
  --cta: #0b74ff;
  --max-width: 1100px;
  --gap: 28px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--dark);
  background: #fff;
}

a {
  color: inherit
}

/* nav */
header {
  background: white;
  box-shadow: var(--shadow);
  top: 0;
  z-index: 10;
}

.machine {
  border-radius: 60px;
}

/* ===== TOP BAR ===== */
/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: skyblue;
  font-size: 14px;
}

.top-left {
  display: flex;
  gap: 12px;
}

.top-left a img {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.top-left a:hover img {
  transform: scale(1.2);
}

.top-right span {
  font-weight: 600;
  color: black;
}

.nav {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  color: #fff;
  padding: 5px;
  font-weight: 800;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
}

.quote-btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.7s ease-in;
}

.quote-btn:hover {
  border: 1px solid var(--primary);
  background-color: #fff;
  color: var(--primary);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

/* ===== RESPONSIVE STYLES ===== */


/* Container */
.quote-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.quote-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--gap);
  width: 100%;
  max-width: var(--max-width);
  align-items: start;
}

/* LEFT COLUMN */
.left-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 20px;
}

.heading-blue {
  color: var(--blue);
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px 0;
  line-height: 1.05;
}

.contact-info {
  max-width: 380px;
}

.info-item h4 {
  margin: 18px 0 6px 0;
  font-size: 13px;
  color: #222;
  font-weight: 700;
}


/* RIGHT COLUMN: form */
.right-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.form-wrap {
  width: 100%;
  max-width: 380px;
  background: var(--form-bg);
  color: #fff;
  padding: 22px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.45);
}

.form-title {
  margin: 0 0 14px 0;
  color: #7bd3ff;
  font-size: 15px;
  font-weight: 700;
}

/* Form fields */
form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 14px;
  background: #f3f4f6;
  color: #111;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #888 50%), linear-gradient(135deg, #888 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Because the form background is dark, we override field styles with dark mode look on small devices if desired */
.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap input[type="tel"],
.form-wrap select,
.form-wrap textarea {
  /* keep light input fields for contrast to dark background */
}

/* Captcha placeholder */
.captcha {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: 4px;
  color: #111;
  font-size: 13px
}

.captcha input {
  width: auto
}

/* Submit */
.btn-submit {
  background: var(--cta);
  color: #fff;
  border: none;
  padding: 11px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-top: 6px;
}

.btn-submit:hover {
  filter: brightness(0.95)
}

/* Small screens responsiveness */
@media (max-width:1024px) {
  .quote-section {
    grid-template-columns: 1fr 360px;
    gap: 20px;
  }

  .map-wrap iframe {
    height: 300px
  }
}

@media (max-width:820px) {
  .quote-section {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .left-col {
    order: 1;
    align-items: center;
    text-align: center;
    padding: 0
  }

  .contact-info {
    max-width: 700px
  }

  .map-wrap {
    width: 100%
  }

  .right-col {
    order: 2;
    justify-content: center
  }

  .form-wrap {
    max-width: 520px;
    width: 92%
  }
}

@media (max-width:420px) {
  .heading-blue {
    font-size: 20px
  }

  .form-title {
    font-size: 14px
  }

  .map-decor {
    height: 55px
  }
}

/* Footer */

.footer {
  color: white;
}

.footer-upper-section {
  height: 382px;
  padding: 45px 30px;
  background-color: #0f172a;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.footer-content-about {
  width: 70%;
}
.footer-content-about h2,.footer-content-requestQuote-text h2,.footer-content-ourServices h2{
  color: orange;
}

.footer-content-about p {
  width: 80%;
  line-height: 20px;
  font-weight: bold;
}



.footer-content-ourServices ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 5px;
  cursor: pointer;
}
.footer-content-ourServices ul li a{
    text-decoration: none;
    color: white;
}

.footer-lower-section {
  height: 80px;
  background-color: #0f172a;
  padding: 20px;
  display: flex;
}

.footer-lower-section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-divider {
  height: 1px;
  width: 90%;
  background-color: white;
  display: block;
}

@media (max-width: 992px) {
    nav ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 15px;
        font-size: 12px;
    }

    .top-left a img {
        width: 16px;
        height: 16px;
    }

    .nav {
        padding: 0 15px;
    }

    .logo img.machine {
        height: 70px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    nav ul li {
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .quote-btn {
        display: none;
    }

    .mobile-quote-btn {
        display: block;
        background-color: #3498db;
        color: white;
        padding: 15px 20px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        margin: 20px;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        flex-direction: column;
        gap: 5px;
        padding: 8px 10px;
    }

    .nav {
        padding: 0 10px;
    }

    .logo img.machine {
        height: 60px;
    }
}