:root {
  --roller: #0b3a66;
  --blinds: #5ec5e6;
  --bg: #f9f9f9;
  --text: #333;
  --white: #fff;
  --muted: #6b7280;
  --transition: all 0.3s ease;
}

/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

body {
  background: var(--bg);
  color: var(--text);
  padding-top: 80px;
}

/* ========== NAVBAR (COMMON – SAME AS style.css / product.css) ========== */
.navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 1000;
  padding: 12px 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 130px;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: var(--roller);
  font-weight: 600;
  transition: var(--transition);
}

.navbar a:hover {
  color: var(--blinds);
}

/* Desktop CTA button */
.cta .btn {
  border: 2px solid var(--roller);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--roller);
  font-weight: 600;
  background: transparent;
  transition: 0.3s;
}

.cta .btn:hover {
  background: var(--blinds);
  border-color: var(--blinds);
  color: var(--white);
}

/* Generic .btn */
.btn {
  border: 2px solid var(--roller);
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  color: var(--roller);
  background: transparent;
}

.btn:hover {
  background: var(--blinds);
  border-color: var(--blinds);
  color: var(--white);
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--roller);
  transition: 0.3s;
}

/* X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Get Quote (inside menu) – default hidden on desktop */
.mobile-cta {
  display: none;
}

/* ===== NAVBAR RESPONSIVE (HAMBURGER) – 900px ===== */
@media (max-width: 900px) {
  .logo img {
    height: 110px;
  }

  .hamburger {
    display: flex;
    z-index: 1200;
  }

  .cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 80px; /* navbar height */
    left: 0;
    right: 0;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 15px 20px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .navbar ul li a {
    width: 100%;
  }

  .mobile-cta {
    display: block;
    width: 100%;
    margin-top: 8px;
  }

  .mobile-cta .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* =========================
   CONTACT SECTION
   ========================= */
.contact-section-wrapper {
  background: #f9f9f9;
  padding: 20px 0 80px;
}

/* CONTACT-US HEADING */
.contact-us {
  text-align: center;
  margin: 40px auto 32px;
  font-size: 20px;
  padding: 0 20px;
  max-width: 720px;
}

.contact-us h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: var(--roller);
  font-weight: 700;
}

.contact-us p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .contact-us h2 {
    font-size: 26px;
  }
}

/* CONTACT + MAP WRAP – DESKTOP: side-by-side, equal height */
.contact-map-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* BOTH columns */
.map-box,
.contact-form-box {
  flex: 1;
  min-height: 440px;
}

/* MAP column slightly wider look */
.map-box {
  flex: 1.05;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.05);
}

/* MAP CARD */
.map-card {
  padding: 0px;
  border-radius: 20px;
  width: 100%;
  display: flex;
}

.map-embed {
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  background: #000;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTACT FORM CARD */
.contact-form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.contact-form-header {
  text-align: left;
}

.contact-form-header h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0b3a66;
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--roller);
  margin-bottom: 8px;
}

.contact-form-header p {
  font-size: 14px;
  color: var(--muted);
}

/* FORM FIELDS */
.contact-form-fields {
  margin-top: 18px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  width: 100%;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--roller);
  margin-top: 12px;
}

.form-control,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
  background: #f9fafb;
}

.form-control:focus,
.form-textarea:focus {
  border-color: var(--blinds);
  box-shadow: 0 0 0 3px rgba(94, 197, 230, 0.25);
  background: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--roller);
  color: #f9fafb;
  transition: 0.2s ease;
}

.btn-submit:hover {
  background: var(--blinds);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

/* BOTTOM: CONTACT DETAILS + SOCIAL ICONS */
.contact-extra {
  margin-top: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-align: left;
}

/* Text info */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.info-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 6px;
  font-weight: 700;
}

.info-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--roller);
}

/* SOCIAL ICONS AREA */
.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.social-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}


.contact-socials .social-links {
  display: flex;
  gap: 8px;
}

/* Common social button style */
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  background: #eef2ff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  border-color: transparent;
}

.social-link--instagram:hover,
.social-link--twitter:hover,
.social-link--linkedin:hover {
  background: transparent;
}

.social-link--gmail:hover {
  background: #fff;
}

/* =========================
   RESPONSIVE – CONTACT PAGE
   ========================= */

@media (max-width: 900px) {
  .contact-map-wrap {
    flex-direction: column;
    margin-top: 10px;
  }

  .map-box,
  .contact-form-box {
    min-height: 380px;
  }

  .contact-form-box {
    padding: 24px 22px;
  }

  .contact-form-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-section-wrapper {
    padding: 20px 0 60px;
  }

  .contact-map-wrap {
    padding: 0 16px;
  }

  .contact-extra {
    align-items: flex-start;
    margin-top: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
  }

  .contact-socials {
    width: 100%;
  }

  .contact-socials .social-links {
    gap: 10px;
  }
}

/* whatsapp */
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #38cb3f;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp_icon {
  width: 100%;
  height: 100%;
  padding: 12px;
}

/* ============ FOOTER ============ */

.footer {
  background: white;
  padding: 40px 20px;
  color: #030303;
  font-family: "Poppins", sans-serif;
  height: 32vh;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 70px;
}

/* Logo */
.footer-logo {
  width: 220px;
  display: block;
  margin-top: -35px;
  margin-left: -60px;
}

/* Columns */
.footer-column h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
}

.footer-column a {
  display: block;
  color: #0b3a66;
  font-size: 16px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.footer-column a:hover {
  color: var(--blinds);
  padding-left: 4px;
}

/* Social Icons */
.footer-column .social-links {
  display: flex;
  gap: 12px;
}

.social-icon img {
  width: 30px;
  transition: 0.3s;
  cursor: pointer;
}

.social-icon img:hover {
  transform: scale(1.15);
}

/* FOOTER RESPONSIVENESS */
/* Tablet and small laptop */
@media (max-width: 1024px) {
  .footer {
    padding: 40px 16px;
    height: auto;
  }

  .footer-container {
    gap: 40px;
  }

  .footer-logo {
    margin-top: -20px;
    margin-left: -20px;
    width: 200px;
  }
}

/* Mobile & narrow screens */
@media (max-width: 768px) {
  .footer {
    padding: 30px 16px;
    height: auto;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-logo {
    margin: 10px 0 10px 0;
    width: 180px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .footer-logo {
    width: 160px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-column a {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .social-icon img {
    width: 26px;
  }
}
