/*
Theme Name: The Bogart Hills Newmarket
Description: Custom landing page for The Bogart Hills by City Park Homes
Version: 1.0
*/

/* ═══════════ VARIABLES ═══════════ */
:root {
  --forest: #4A5D4A;
  --forest-dark: #3A4A3A;
  --forest-deep: #2E3D2E;
  --olive: #6B7F5E;
  --olive-light: #8FA87E;
  --cream: #F5F0E8;
  --warm-white: #FEFBF5;
  --sand: #E8E0D4;
  --ivory: #F0EBE0;
  --charcoal: #32373C;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(74,93,74,.08);
  --shadow-lg: 0 12px 40px rgba(74,93,74,.12);
}

/* ═══════════ RESET ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--text); background: var(--warm-white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════ INTRO SPLASH ═══════════ */
.intro-splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--forest-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity .8s ease, visibility .8s;
}
.intro-splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-dev-logo { max-width: 200px; height: auto; filter: brightness(0) invert(1); opacity: .8; }
.intro-logo { max-width: min(60vw, 160px); height: auto; }
.intro-tagline {
  font-family: var(--sans); font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--olive-light); margin-top: 8px;
}

/* ═══════════ HEADER ═══════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .35s, box-shadow .35s, transform .35s;
}
.site-header.scrolled {
  background: rgba(46,61,46,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.site-header.header-hidden { transform: translateY(-100%); }
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo img { height: 108px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-family: var(--sans); font-size: 14px; font-weight: 500; color: #fff;
  letter-spacing: .5px; transition: color .2s; position: relative;
}
.header-nav a:hover { color: var(--olive-light); }
.header-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--olive); transition: width .3s;
}
.header-nav a:hover::after { width: 100%; }
.header-cta {
  background: var(--olive) !important; color: #fff !important; padding: 10px 24px;
  border-radius: 6px; font-weight: 600 !important; letter-spacing: .5px;
}
.header-cta::after { display: none !important; }
.header-cta:hover { background: var(--forest) !important; }

/* Mobile Toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  width: 28px; padding: 4px 0;
}
.mobile-toggle span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,61,46,.5) 0%, rgba(46,61,46,.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 780px; padding: 120px 24px 80px;
}
.hero-label {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--olive-light);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(32px, 5vw, 52px); font-weight: 400;
  color: #fff; line-height: 1.2; margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.85); line-height: 1.6;
  margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-sub a { color: var(--olive-light); text-decoration: underline; text-underline-offset: 3px; }
.hero-sub a:hover { color: #fff; }
.hero-btn {
  display: inline-block; background: var(--olive); color: #fff; padding: 16px 40px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 6px;
  transition: background .3s, transform .2s; cursor: pointer;
}
.hero-btn:hover { background: var(--forest); transform: translateY(-2px); }

/* ═══════════ STATS BANNER ═══════════ */
.stats-banner {
  background: var(--forest); padding: 48px 24px;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.stat-value {
  display: block; font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: #fff; margin-bottom: 4px;
}
.stat-item p { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 500; }

/* ═══════════ ABOUT ═══════════ */
.about { padding: 100px 24px; background: var(--warm-white); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.section-label {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--olive);
  margin-bottom: 16px;
}
.about h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400;
  color: var(--forest-dark); line-height: 1.25; margin-bottom: 24px;
}
.about-text { font-size: 16px; color: var(--text); margin-bottom: 16px; line-height: 1.8; }
.about-text a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }
.about-text a:hover { color: var(--forest-dark); }
.about-quote {
  font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--forest);
  border-left: 3px solid var(--olive); padding: 16px 0 16px 24px; margin-top: 24px;
}
.about-images { display: flex; flex-direction: column; gap: 16px; }
.about-images img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ═══════════ COMMUNITY FEATURES ═══════════ */
.community { padding: 100px 24px; background: var(--cream); }
.community h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400;
  color: var(--forest-dark); text-align: center; margin-bottom: 16px;
}
.community-intro {
  text-align: center; font-size: 17px; color: var(--text-light);
  max-width: 680px; margin: 0 auto 48px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1200px; margin: 0 auto;
}
.feature-card {
  background: var(--warm-white); padding: 36px 28px; border-radius: var(--radius);
  border: 1px solid var(--sand); transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 48px; height: 48px; margin-bottom: 20px; color: var(--olive);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--forest-dark); margin-bottom: 12px;
}
.feature-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ═══════════ GALLERY ═══════════ */
.gallery { padding: 100px 24px; background: var(--warm-white); }
.gallery h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400;
  color: var(--forest-dark); text-align: center; margin-bottom: 48px;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.gallery-card { border-radius: var(--radius); overflow: hidden; background: var(--cream); }
.gallery-card img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform .5s;
}
.gallery-card:hover img { transform: scale(1.03); }
.gallery-caption { padding: 24px; }
.gallery-caption h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--forest-dark); margin-bottom: 8px;
}
.gallery-caption p { font-size: 14px; color: var(--text-light); }

/* ═══════════ LOCATION ═══════════ */
.location { padding: 100px 24px; background: var(--cream); }
.location h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400;
  color: var(--forest-dark); text-align: center; margin-bottom: 16px;
}
.location-intro {
  text-align: center; font-size: 17px; color: var(--text-light);
  max-width: 680px; margin: 0 auto 48px;
}
.location-intro a { color: var(--olive); text-decoration: underline; }
.map-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px;
}
.map-card {
  background: var(--warm-white); padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--sand);
}
.map-card h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--forest-dark); margin-bottom: 16px;
}
.map-card ul { display: flex; flex-direction: column; gap: 10px; }
.map-card li {
  font-size: 15px; color: var(--text); padding-left: 20px;
  position: relative;
}
.map-card li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--olive);
}
.map-card a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.map-card a:hover { color: var(--forest-dark); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 400px; border: 0; }

/* ═══════════ NEIGHBOURHOOD ═══════════ */
.neighbourhood { padding: 100px 24px; background: var(--warm-white); }
.neighbourhood h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400;
  color: var(--forest-dark); text-align: center; margin-bottom: 16px;
}
.neighbourhood-intro {
  text-align: center; font-size: 17px; color: var(--text-light);
  max-width: 680px; margin: 0 auto 48px;
}
.hood-scroll {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.hood-card {
  background: var(--cream); padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--sand);
}
.hood-icon { width: 40px; height: 40px; color: var(--olive); margin-bottom: 16px; }
.hood-icon svg { width: 100%; height: 100%; }
.hood-card h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--forest-dark); margin-bottom: 14px;
}
.hood-card ul { display: flex; flex-direction: column; gap: 8px; }
.hood-card li {
  font-size: 14px; color: var(--text); padding-left: 16px; position: relative;
}
.hood-card li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--olive-light);
}
.hood-card a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }

/* ═══════════ FLOOR PLANS ═══════════ */
.floorplans { padding: 100px 24px; background: var(--cream); }
.floorplans h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400;
  color: var(--forest-dark); text-align: center; margin-bottom: 16px;
}
.floorplans-intro {
  text-align: center; font-size: 17px; color: var(--text-light);
  max-width: 700px; margin: 0 auto 48px;
}
.floorplans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.fp-card {
  background: var(--warm-white); padding: 36px 28px; border-radius: var(--radius);
  border: 1px solid var(--sand); display: flex; flex-direction: column;
}
.fp-card--accent {
  background: var(--forest-deep); border-color: var(--forest);
}
.fp-card--accent h3, .fp-card--accent p, .fp-card--accent li { color: #fff !important; }
.fp-card--accent .fp-features li::before { background: var(--olive-light); }
.fp-icon { width: 44px; height: 44px; color: var(--olive); margin-bottom: 20px; }
.fp-card--accent .fp-icon { color: var(--olive-light); }
.fp-icon svg { width: 100%; height: 100%; }
.fp-card h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--forest-dark); margin-bottom: 12px;
}
.fp-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.fp-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.fp-features li {
  font-size: 14px; color: var(--text); padding-left: 20px; position: relative;
}
.fp-features li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--olive);
}
.fp-cta {
  display: inline-block; text-align: center; background: var(--olive); color: #fff;
  padding: 14px 28px; border-radius: 6px; font-weight: 600; font-size: 14px;
  letter-spacing: .5px; transition: background .3s; cursor: pointer;
}
.fp-cta:hover { background: var(--forest); }
.fp-card--accent .fp-cta { background: var(--olive); }

/* ═══════════ FAQ ═══════════ */
.faq { padding: 100px 24px; background: var(--warm-white); }
.faq h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400;
  color: var(--forest-dark); text-align: center; margin-bottom: 48px;
}
.faq-item {
  max-width: 800px; margin: 0 auto 12px;
  border: 1px solid var(--sand); border-radius: var(--radius); overflow: hidden;
  background: var(--cream);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; transition: background .2s;
}
.faq-question:hover { background: var(--sand); }
.faq-question h3 {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  color: var(--forest-dark); flex: 1;
}
.faq-toggle { width: 24px; height: 24px; color: var(--olive); flex-shrink: 0; transition: transform .3s; }
.faq-toggle svg { width: 100%; height: 100%; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-light); line-height: 1.8; }
.faq-answer-inner a { color: var(--olive); text-decoration: underline; }

/* ═══════════ BOOKING ═══════════ */
.booking { padding: 100px 24px; background: var(--cream); }
.booking h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400;
  color: var(--forest-dark); text-align: center; margin-bottom: 16px;
}
.booking-intro {
  text-align: center; font-size: 17px; color: var(--text-light);
  max-width: 680px; margin: 0 auto 36px;
}
.calendly-inline-widget {
  min-width: 320px; height: 700px; border-radius: var(--radius);
  overflow: hidden;
}
.calendly-inline-widget iframe {
  width: 100% !important; height: 100% !important; border: none;
}

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  background: var(--forest-deep); color: rgba(255,255,255,.8); padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 14px; transition: color .2s; }
.footer-nav a:hover { color: var(--olive-light); }
.footer-contact p { font-size: 14px; margin-bottom: 6px; }
.footer-contact a { transition: color .2s; }
.footer-contact a:hover { color: var(--olive-light); }
.footer-dev {
  text-align: center; padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-dev img { height: 24px; margin: 0 auto; filter: brightness(0) invert(1); opacity: .7; }
.footer-communities {
  max-width: 1200px; margin: 0 auto; padding: 24px 0;
  text-align: center; font-size: 13px; color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-communities a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 2px; }
.footer-communities a:hover { color: var(--olive-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 24px 0;
}
.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.7; text-align: center;
}

/* ═══════════ FLOATING BUTTONS ═══════════ */
.float-whatsapp, .float-book {
  position: fixed; z-index: 900; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s;
}
.float-whatsapp:hover, .float-book:hover { transform: scale(1.1); }
.float-whatsapp {
  bottom: 24px; right: 24px; background: #25D366;
}
.float-whatsapp svg { width: 28px; height: 28px; fill: #fff; }
.float-book {
  bottom: 90px; right: 24px; background: var(--olive);
}
.float-book svg { width: 24px; height: 24px; color: #fff; }

/* ═══════════ LEAD POPUP ═══════════ */
.lead-popup-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(44,44,44,.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  padding: 24px;
}
.lead-popup-overlay.visible { opacity: 1; visibility: visible; }
.lead-popup {
  background: var(--warm-white); border-radius: 16px; padding: 40px 36px;
  max-width: 420px; width: 100%; position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px); transition: transform .4s;
}
.lead-popup-overlay.visible .lead-popup { transform: translateY(0); }
.lead-popup-close {
  position: absolute; top: 16px; right: 16px; cursor: pointer;
  width: 32px; height: 32px; color: var(--text-light);
  transition: color .2s;
}
.lead-popup-close:hover { color: var(--forest-dark); }
.lead-popup-close svg { width: 100%; height: 100%; }
.lead-popup h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--forest-dark); margin-bottom: 8px;
}
.lead-popup > div > p {
  font-size: 14px; color: var(--text-light); margin-bottom: 24px; line-height: 1.6;
}
.form-group { margin-bottom: 14px; }
.form-group input {
  width: 100%; padding: 14px 16px; border: 1px solid var(--sand);
  border-radius: 8px; font-family: var(--sans); font-size: 15px;
  background: var(--cream); color: var(--text);
  transition: border-color .2s;
}
.form-group input:focus { outline: none; border-color: var(--olive); }
.phone-input-wrap {
  display: flex; align-items: center; border: 1px solid var(--sand);
  border-radius: 8px; background: var(--cream); overflow: hidden;
}
.phone-input-wrap:focus-within { border-color: var(--olive); }
.phone-prefix {
  padding: 14px 12px 14px 16px; font-size: 15px; color: var(--text-light);
  font-weight: 500; border-right: 1px solid var(--sand); white-space: nowrap;
}
.phone-input-wrap input {
  border: none !important; border-radius: 0 !important; background: transparent !important;
}
.popup-submit {
  width: 100%; padding: 16px; background: var(--olive); color: #fff;
  border: none; border-radius: 8px; font-family: var(--sans); font-size: 15px;
  font-weight: 600; letter-spacing: .5px; cursor: pointer;
  transition: background .3s; margin-top: 4px;
}
.popup-submit:hover { background: var(--forest); }
.popup-submit:disabled { opacity: .6; cursor: not-allowed; }
.popup-success {
  display: none; text-align: center; padding: 20px 0;
}
.popup-success h3 {
  font-family: var(--serif); font-size: 24px; color: var(--olive); margin-bottom: 8px;
}
.popup-success p { font-size: 15px; color: var(--text-light); }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .floorplans-grid { grid-template-columns: repeat(2, 1fr); }
  .floorplans-grid .fp-card:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .header-nav {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(46,61,46,.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  }
  .header-nav.open { display: flex; }
  .header-nav a { font-size: 18px; }
  .mobile-toggle { display: flex; }

  .hero-content { padding: 140px 20px 80px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 16px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-value { font-size: 22px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { order: -1; }

  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card img { height: 260px; }

  .map-cards { grid-template-columns: 1fr; }
  .map-embed iframe { height: 280px; }

  .hood-scroll {
    grid-template-columns: repeat(4, 280px);
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; gap: 16px;
    padding-bottom: 16px;
  }
  .hood-card { scroll-snap-align: start; }

  .floorplans-grid { grid-template-columns: 1fr; }
  .floorplans-grid .fp-card:last-child { grid-column: span 1; }

  .booking { padding: 60px 16px; }
  .calendly-inline-widget { height: 750px !important; border-radius: 8px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-nav { align-items: center; }

  .float-whatsapp { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .float-book { bottom: 76px; right: 16px; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .lead-popup { padding: 32px 24px; }
}
