/* ============================================================
   MAX ESTATES 360 - SECTOR 36A GURGAON
   style.css
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- UTILITY --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.py { padding: 60px 0; }

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .py { padding: 40px 0; }
}
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.gold { color: #ffb800; }
.bg-light { background: #f5f5f5; }

/* --- NAVBAR --- */
/* ALWAYS #f2812b — no scroll color change */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #f2812b !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  padding: 0 20px;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-brand { display: inline-flex; align-items: center; }
.nav-logo { height: 50px; width: auto; object-fit: contain; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  border-right: 5px solid #183a73;
  padding-right: 16px;
}
.nav-link {
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 400;
  border-radius: 3px;
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover, .nav-link.active { color: #ffb800; }

/* Nav CTA Button */
.nav-cta-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #183a73;
  color: #fff !important;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-left: 8px;
}
.nav-cta-btn:hover { background: #ffb800; color: #1a1a1a !important; transform: translateY(-1px); }

.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.navbar-toggler span {
  display: block;
  width: 25px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar-collapse { display: flex; align-items: center; }

/* --- HERO / BANNER --- */
.hero-section {
  min-height: 100vh;
  background: url('img/banner.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 20px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,20,50,0.82) 0%, rgba(10,20,50,0.55) 60%, rgba(10,20,50,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.banner-text { flex: 1; min-width: 280px; }
.banner-text h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  text-transform: uppercase;
  border-bottom: 5px solid #ffb800;
  padding-bottom: 12px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.by-line { color: #fff; margin-bottom: 4px; }
.banner-text p { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.banner-text .mt-20 { margin-top: 20px; }

/* Hero CTA Buttons Row */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.hero-cta-btn.primary { background: #f2812b; color: #fff; border-color: #f2812b; }
.hero-cta-btn.primary:hover { background: #e06d1a; border-color: #e06d1a; transform: translateY(-2px); }
.hero-cta-btn.secondary { background: transparent; color: #fff; border-color: #fff; }
.hero-cta-btn.secondary:hover { background: #fff; color: #183a73; transform: translateY(-2px); }
.hero-cta-btn.gold-btn { background: #ffb800; color: #1a1a1a; border-color: #ffb800; }
.hero-cta-btn.gold-btn:hover { background: #e0a300; border-color: #e0a300; transform: translateY(-2px); }

/* Hero Form */
.hero-form-wrap { width: 100%; max-width: 400px; flex-shrink: 0; }
.contact_form {
  background: #fff;
  border-radius: 6px;
  padding: 30px 28px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.35);
}
.contact_form h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  color: #183a73;
  margin-bottom: 20px;
  text-align: center;
}

/* --- FORM CONTROLS --- */
.form-group { margin-bottom: 14px; }
.form-control {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.92rem;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.25s;
}
.form-control:focus { border-color: #183a73; }
.form-control::placeholder { color: #aaa; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 90px; }

/* Submit Button */
.first-btn {
  display: inline-block;
  padding: 11px 36px;
  background: #183a73;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.first-btn:hover { background: #ffb800; color: #1a1a1a; transform: translateY(-2px); }

.enquiry-btn {
  display: inline-block;
  padding: 11px 36px;
  background: #ffb800;
  color: #1a1a1a;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.enquiry-btn:hover { background: #e0a300; transform: translateY(-2px); }

/* Popup trigger version */
.enquiry-btn[data-popup], button.enquiry-btn { cursor: pointer; }

.btn-wrap { margin-top: 22px; }
.btn-center { text-align: center; margin-top: 36px; }

/* ============================================================
   POPUP / MODAL
   ============================================================ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 50, 0.75);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.popup-overlay.active { display: flex; }

.popup-box {
  background: #fff;
  border-radius: 8px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  animation: popupIn 0.3s ease;
  position: relative;
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-header {
  background: #183a73;
  padding: 22px 28px;
  position: relative;
}
.popup-header h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 4px;
}
.popup-header p { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.popup-header .orange-line {
  display: block;
  width: 50px; height: 3px;
  background: #f2812b;
  margin-top: 10px;
}
.popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.popup-close:hover { color: #ffb800; }

.popup-body { padding: 28px 28px 32px; }
.popup-body .form-group { margin-bottom: 14px; }
.popup-submit-btn {
  width: 100%;
  padding: 13px;
  background: #f2812b;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-top: 6px;
}
.popup-submit-btn:hover { background: #d96d1a; transform: translateY(-2px); }

/* ============================================================
   FLOATING CTA STRIP (above sticky bar)
   ============================================================ */
.floating-cta-strip {
  position: fixed;
  right: 20px;
  bottom: 70px;
  z-index: 9996;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.float-btn:hover { transform: translateX(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.float-btn.whatsapp { background: #25d366; color: #fff; }
.float-btn.call-btn  { background: #183a73; color: #fff; }
.float-btn.enquire-float { background: #f2812b; color: #fff; }

/* back to top — moved left of floating strip */
.back-to-top {
  position: fixed;
  bottom: 70px;
  left: 20px;
  width: 42px; height: 42px;
  background: #ffb800;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9995;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #183a73; color: #fff; }

/* ============================================================
   CTA BANNER (mid-page)
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #183a73 0%, #0f2550 100%);
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-banner h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 28px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-orange-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: #f2812b;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.cta-orange-btn:hover { background: #d96d1a; transform: translateY(-2px); }
.cta-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.25s;
}
.cta-outline-btn:hover { background: #fff; color: #183a73; border-color: #fff; transform: translateY(-2px); }

/* ============================================================
   USP STRIP
   ============================================================ */
.usp-strip {
  background: #f2812b;
  padding: 18px 20px;
  /* Push below the fixed 68px navbar */
  margin-top: 68px;
}
.usp-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.usp-item i { font-size: 1.3rem; }
.usp-item span {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- SECTION COMMON --- */
.container-section { width: 100%; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #183a73;
  margin-bottom: 10px;
}
.title-hr {
  width: 60px;
  border: none;
  border-top: 3px solid #ffb800;
  margin: 0 auto;
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-start {
  background: #ffffff;
  padding: 36px;
  border-radius: 4px;
  color: #fff;
  line-height: 1.8;
}
.about-start p { margin-bottom: 16px; font-size: 0.95rem; }
.about-start strong { color: #ffb800; }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* --- TEXT CONTENT SECTIONS --- */
.container-section h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #183a73;
  margin-bottom: 16px;
  line-height: 1.3;
}
.container-section h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.25rem;
  color: #183a73;
  margin: 28px 0 10px;
}
.container-section h4 {
  font-size: 1.05rem;
  color: #1a1a1a;
  margin: 22px 0 8px;
  font-weight: 700;
}
.container-section p {
  margin-bottom: 12px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.8;
}
.container-section strong { color: #183a73; }
.content-list { margin: 12px 0 18px 20px; list-style: disc; }
.content-list li {
  margin-bottom: 8px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- FLOOR PLANS --- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.plan-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.plan-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.14); }
.plan-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.plan-item:hover img { transform: scale(1.03); }
.plan-text {
  padding: 14px 16px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  background: #183a73;
  color: #fff;
  text-align: center;
}

/* --- SITE MAP --- */
.sitemap-section { background: #183a73; padding: 0; }
.sitemap-section .container { padding-top: 60px; padding-bottom: 60px; padding-left: 20px; padding-right: 20px; }
.sitemap-section h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 28px;
}
.sitemap-img { border-radius: 4px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.sitemap-img img { width: 100%; }
.sitemap-img a { display: block; }

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  background: #1a1a1a;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.18); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; opacity: 0.85; transition: opacity 0.3s, transform 0.4s; }
.gallery-item:hover img { opacity: 1; transform: scale(1.04); }
.gallery-text { padding: 18px 20px; color: #fff; }
.gallery-text p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 12px; }
.gallery-text h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- LOCATION SECTION --- */
.location-section { background: #183a73; }
.location-section .container { padding-top: 60px; padding-bottom: 60px; padding-left: 20px; padding-right: 20px; }
.location-section h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 30px;
}
.location-section h4 { font-size: 1.05rem; font-weight: 700; color: #ffb800; margin: 24px 0 8px; }
.location-section p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 10px; line-height: 1.8; }
.location-section strong { color: #fff; }
.map-embed { margin-top: 36px; border-radius: 6px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.map-embed iframe { display: block; }

/* --- FAQ --- */
.faq-list { max-width: 900px; margin: 24px auto 0; }
.faq-item { border: 1px solid #dde3ee; border-radius: 4px; margin-bottom: 8px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.93rem;
  color: #1a1a1a;
  text-align: left;
  background: none;
  border: none;
  gap: 12px;
  transition: background 0.2s;
  line-height: 1.5;
}
.faq-q:hover { background: #f0f4ff; }
.faq-q[aria-expanded="true"] { background: #183a73; color: #fff; }
.faq-q[aria-expanded="true"] strong { color: #ffb800; }
.faq-icon { font-size: 1.3rem; color: #183a73; font-style: normal; flex-shrink: 0; font-weight: 700; transition: transform 0.25s, color 0.25s; line-height: 1; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: #ffb800; }
.faq-a { display: none; padding: 16px 20px; background: #f9faff; border-top: 1px solid #dde3ee; }
.faq-a.open { display: block; }
.faq-a p { font-size: 0.92rem; color: #444; line-height: 1.75; margin: 0; }

/* --- CONTACT SECTION --- */
.contact-section { background: #f5f5f5; }
.contact-section .section-title h3 { color: #183a73; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.contact-info { background: #183a73; padding: 32px; border-radius: 4px; color: #fff; }
.contact-info h4 { font-family: 'Roboto Condensed', sans-serif; font-size: 1.4rem; color: #ffb800; margin-bottom: 10px; }
.contact-info p { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 10px; line-height: 1.7; }
.contact-info strong { color: #ffb800; }
.contact-form-box { background: #fff; padding: 36px; border-radius: 4px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.contact-form-box h4 { font-family: 'Roboto Condensed', sans-serif; font-size: 1.3rem; color: #183a73; margin-bottom: 20px; }

/* --- FOOTER --- */
.footer { background: #000; padding: 30px 20px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.8; margin-bottom: 6px; }
.footer a { color: rgba(255,255,255,0.6); }
.footer a:hover { color: #ffb800; }

/* --- STICKY MOBILE CTA --- */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9997; display: flex; }
.sticky-call, .sticky-enquire {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.sticky-call { background: #25d366; color: #fff; }
.sticky-call:hover { background: #20b858; }
.sticky-enquire { background: #f2812b; color: #fff; }
.sticky-enquire:hover { background: #d96d1a; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-text-col { order: 2; }
  .about-video-col { order: 1; }
  .floating-cta-strip { display: none; }
}

@media (max-width: 768px) {
  .navbar-toggler { display: flex; }
  .navbar-collapse {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #1a1a1a;
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .navbar-collapse.open { display: flex; }
  .navbar-nav { flex-direction: column; border-right: none; padding-right: 0; border-top: 3px solid #183a73; padding-top: 12px; gap: 2px; }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .nav-cta-btn { margin: 10px 16px 0; padding: 12px 16px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .hero-content { flex-direction: column; }
  .hero-form-wrap { max-width: 100%; width: 100%; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .usp-strip-inner { justify-content: center; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-btn { justify-content: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  /* Ensure all section containers have side padding on mobile */
  .container { padding-left: 16px; padding-right: 16px; }
  .sitemap-section .container,
  .location-section .container { padding-left: 16px; padding-right: 16px; }
  .cta-banner { padding-left: 16px; padding-right: 16px; }
  .usp-strip { padding-left: 12px; padding-right: 12px; }
}

@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .contact_form { padding: 22px 18px; }
  .contact-form-box { padding: 22px 18px; }
  .about-start { padding: 24px 18px; }
  .contact-info { padding: 24px 18px; }
  .sticky-call, .sticky-enquire { font-size: 0.82rem; padding: 12px 8px; }
  .popup-body { padding: 20px; }
  .popup-header { padding: 18px 20px; }
  .py { padding: 40px 0; }
  /* Tighter side padding on very small screens */
  .container { padding-left: 14px; padding-right: 14px; }
  .sitemap-section .container,
  .location-section .container { padding-left: 14px; padding-right: 14px; }
  .cta-banner { padding-left: 14px; padding-right: 14px; }
  .footer { padding-left: 14px; padding-right: 14px; }
  /* Prevent content overflow */
  .hero-section { padding-left: 14px; padding-right: 14px; }
  .faq-q { padding: 14px 16px; font-size: 0.88rem; }
  .faq-a { padding: 14px 16px; }
}

/* PRICE TABLE */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.price-table th {
  background: #183a73;
  color: #fff;
  padding: 14px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.price-table td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  text-align: center;
}
.price-table tr:hover {
  background: #f9f9f9;
}