/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── TOKENS ─── */
:root {
  --blue: #1a56db;
  --blue-dark: #1044b5;
  --teal: #0891b2;
  --green: #25d366;
  --green-dark: #128c5a;
  --gold: #f59e0b;
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --text-light: #94a3b8;
  --radius: 1rem;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

/* ─── NAV ─── */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 1.5rem;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0.75rem 1.5rem;
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; color: #fff; }
.brand-icon { font-size: 1.8rem; }
.brand-name { font-size: 1.05rem; font-weight: 700; }
.brand-sub { font-size: 0.7rem; color: #94a3b8; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: #cbd5e1; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-wa { background: var(--green); color: #fff !important; padding: 0.5rem 1.2rem; border-radius: 2rem; font-weight: 600 !important; transition: background 0.2s, transform 0.2s !important; }
.nav-wa:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; gap: 1rem; padding: 1rem 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #cbd5e1; font-size: 1rem; padding: 0.5rem 0; border-bottom: 1px solid #1e293b; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f766e 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/hero-room.png') center/cover no-repeat;
  opacity: 0.18;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(15,23,42,0.5), rgba(15,23,42,0.85)); }
.hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 8rem 2rem 4rem; text-align: center; color: #fff; }
.hero-badge { display: inline-block; background: rgba(37,211,102,0.2); border: 1px solid var(--green); color: #4ade80; font-size: 0.8rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 2rem; margin-bottom: 1.5rem; }
.hero-content h1 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 0.75rem; background: linear-gradient(135deg, #fff, #93c5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; color: #94a3b8; margin-bottom: 1rem; }
.hero-price { font-size: 1.2rem; margin-bottom: 0.5rem; }
.hero-price span { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.hero-desc { color: #64748b; font-size: 0.9rem; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; padding: 0.9rem 2rem; border-radius: 3rem; font-weight: 700; font-size: 1rem; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(26,86,219,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,86,219,0.5); }
.btn-wa { background: var(--green); color: #fff; padding: 0.9rem 2rem; border-radius: 3rem; font-weight: 700; font-size: 1rem; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.btn-wa:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.hero-stats { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat span { display: block; font-size: 2rem; font-weight: 900; color: #fff; }
.stat p { font-size: 0.75rem; color: #64748b; margin-top: 0.25rem; }
.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: #475569; font-size: 0.8rem; animation: bounce 2s infinite; z-index: 2; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ─── SECTIONS ─── */
.section { padding: 5rem 1.5rem; }
.section-dark { background: var(--bg-dark); }
.section-rules { background: #f8fafc; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header.light h2, .section-header.light p { color: #fff; }
.section-header.light .section-tag { background: rgba(255,255,255,0.1); color: #93c5fd; border-color: rgba(255,255,255,0.2); }
.section-tag { display: inline-block; background: #eff6ff; border: 1px solid #bfdbfe; color: var(--blue); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.35rem 1rem; border-radius: 2rem; margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #0f172a; margin-bottom: 0.75rem; }
.section-header p { color: #64748b; font-size: 1rem; }

/* ─── ROOMS ─── */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.room-card {
  background: #fff; border-radius: 1.25rem; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; opacity: 0; transform: translateY(20px);
}
.room-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s; }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card.premium { border-color: #bfdbfe; }
.room-badge { position: absolute; top: 1rem; right: 1rem; background: #dcfce7; color: #166534; font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 2rem; z-index: 2; }
.room-type-label { position: absolute; top: 1rem; left: 1rem; background: rgba(15,23,42,0.75); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 2rem; z-index: 2; backdrop-filter: blur(4px); }
.room-img-wrap { height: 200px; overflow: hidden; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.room-card:hover .room-img-wrap img { transform: scale(1.05); }
.room-body { padding: 1.5rem; }
.room-body h3 { font-size: 1.2rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.room-desc { color: #64748b; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.room-price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.75rem; }
.room-price { font-size: 1.6rem; font-weight: 800; color: var(--blue); }
.room-price span { font-size: 0.85rem; font-weight: 400; color: #64748b; }
.room-deposit { font-size: 0.8rem; color: #64748b; background: #f1f5f9; padding: 0.25rem 0.6rem; border-radius: 0.5rem; }
.room-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.room-tags span { background: #eff6ff; color: var(--blue); font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.65rem; border-radius: 2rem; }
.btn-room-wa { display: block; text-align: center; background: var(--green); color: #fff; padding: 0.75rem 1rem; border-radius: 0.75rem; font-weight: 700; font-size: 0.9rem; transition: background 0.2s, transform 0.2s; }
.btn-room-wa:hover { background: var(--green-dark); transform: translateY(-1px); }
.advance-note { margin-top: 2rem; background: #fffbeb; border: 1px solid #fcd34d; border-radius: 0.75rem; padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; font-size: 0.9rem; color: #78350f; }
.advance-note span { font-size: 1.4rem; flex-shrink: 0; }

/* ─── ALL-INCLUSIVE BANNER ─── */
.inclusive-banner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; margin-top: 2rem;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border-radius: 1.25rem; overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,23,42,0.25);
}
.inclusive-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem 1.75rem; flex: 1; min-width: 140px;
}
.inclusive-item.inclusive-highlight { background: rgba(37,211,102,0.15); }
.inclusive-icon { font-size: 1.6rem; flex-shrink: 0; }
.inclusive-label { font-size: 0.875rem; font-weight: 700; color: #e2e8f0; }
.inclusive-sub { font-size: 0.72rem; color: #4ade80; margin-top: 0.15rem; font-weight: 600; }
.inclusive-highlight .inclusive-label { color: #4ade80; }
.inclusive-divider { width: 1px; height: 3.5rem; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ─── AMENITIES ─── */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; }
.amenity-card {
  background: var(--bg-card); border: 1px solid #1e3a5f; border-radius: 1rem;
  padding: 1.5rem 1rem; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  opacity: 0; transform: translateY(20px);
}
.amenity-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s; }
.amenity-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.amenity-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.amenity-card h4 { color: #e2e8f0; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; }
.amenity-card p { color: #64748b; font-size: 0.78rem; line-height: 1.5; }

/* ─── LOCATION INTELLIGENCE ─── */
.loc-section { background: #f8fafc; }
.dual-zone-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.transport-zone-wrap { margin-bottom: 2.5rem; }
.zone-card { background: #fff; border-radius: 1.25rem; overflow: hidden; box-shadow: var(--shadow); border: 1px solid #e2e8f0; }

/* IT Parks — Cyan/Teal */
.it-zone { border-top: 4px solid #0891b2; }
.it-badge { background: #cffafe; color: #0e7490; }
.it-dot { background: #0891b2; box-shadow: 0 0 0 3px #cffafe; }
.it-dur { background: #cffafe; color: #0e7490; }

/* Colleges — Indigo */
.edu-zone { border-top: 4px solid #6366f1; }
.edu-badge { background: #e0e7ff; color: #3730a3; }
.edu-dot { background: #6366f1; box-shadow: 0 0 0 3px #e0e7ff; }
.edu-dur { background: #e0e7ff; color: #3730a3; }

/* Transport/City — Amber */
.transport-zone { border-top: 4px solid #f59e0b; }
.transport-badge { background: #fef3c7; color: #92400e; }
.transport-dot { background: #f59e0b; box-shadow: 0 0 0 3px #fef3c7; }
.transport-dur { background: #fef3c7; color: #92400e; }
.transport-grid { padding: 0.75rem 1rem; display: grid; grid-template-columns: 1fr 1fr; }
.transport-grid .zone-row { padding: 0.75rem 0.5rem; border-bottom: 1px solid #f1f5f9; border-right: none; }
.transport-grid .zone-row:nth-last-child(-n+2) { border-bottom: none; }

.zone-header { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 1.5rem; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
.zone-icon { font-size: 1.8rem; flex-shrink: 0; }
.zone-title { font-size: 1rem; font-weight: 700; color: #0f172a; }
.zone-sub { font-size: 0.75rem; color: #64748b; margin-top: 0.1rem; }
.zone-badge { margin-left: auto; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; padding: 0.3rem 0.7rem; border-radius: 2rem; flex-shrink: 0; }
.zone-table { padding: 0.75rem 1rem; display: flex; flex-direction: column; gap: 0; }
.zone-row { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0.5rem; border-bottom: 1px solid #f1f5f9; gap: 0.5rem; }
.zone-row:last-child { border-bottom: none; }
.zone-left { display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 0; }
.zone-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.zone-name { font-size: 0.875rem; font-weight: 600; color: #0f172a; }
.zone-who { font-size: 0.72rem; color: #94a3b8; margin-top: 0.1rem; }
.zone-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem; flex-shrink: 0; }
.zone-dist { font-size: 0.85rem; font-weight: 700; color: #334155; }
.zone-dur { font-size: 0.72rem; font-weight: 600; padding: 0.15rem 0.5rem; border-radius: 1rem; }


.zone-card { background: #fff; border-radius: 1.25rem; overflow: hidden; box-shadow: var(--shadow); border: 1px solid #e2e8f0; }
.walk-zone { border-top: 4px solid #10b981; }
.ride-zone { border-top: 4px solid var(--blue); }
.zone-header { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 1.5rem; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
.zone-icon { font-size: 1.8rem; flex-shrink: 0; }
.zone-title { font-size: 1rem; font-weight: 700; color: #0f172a; }
.zone-sub { font-size: 0.75rem; color: #64748b; margin-top: 0.1rem; }
.zone-badge { margin-left: auto; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; padding: 0.3rem 0.7rem; border-radius: 2rem; flex-shrink: 0; }
.walk-badge { background: #d1fae5; color: #065f46; }
.ride-badge { background: #dbeafe; color: #1e3a8a; }
.zone-table { padding: 0.75rem 1rem; display: flex; flex-direction: column; gap: 0; }
.zone-row { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0.5rem; border-bottom: 1px solid #f1f5f9; gap: 0.5rem; }
.zone-row:last-child { border-bottom: none; }
.zone-left { display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 0; }
.zone-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.walk-dot { background: #10b981; box-shadow: 0 0 0 3px #d1fae5; }
.ride-dot { background: var(--blue); box-shadow: 0 0 0 3px #dbeafe; }
.zone-name { font-size: 0.875rem; font-weight: 600; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.zone-who { font-size: 0.72rem; color: #94a3b8; margin-top: 0.1rem; }
.zone-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem; flex-shrink: 0; }
.zone-dist { font-size: 0.85rem; font-weight: 700; color: #334155; }
.zone-dur { font-size: 0.72rem; font-weight: 600; padding: 0.15rem 0.5rem; border-radius: 1rem; }
.walk-dur { background: #d1fae5; color: #065f46; }
.ride-dur { background: #dbeafe; color: #1e40af; }

/* Neighbourhood Vibe */
.vibe-wrap { margin-bottom: 2.5rem; }
.vibe-title { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 1.25rem; }
.vibe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.vibe-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem; padding: 1.25rem; transition: border-color 0.2s, transform 0.2s; }
.vibe-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.vibe-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.vibe-card h4 { font-size: 0.9rem; font-weight: 700; color: #0f172a; margin-bottom: 0.4rem; }
.vibe-card p { font-size: 0.8rem; color: #64748b; line-height: 1.6; }

/* Smart Nav Buttons */
.map-section { }
.map-nav-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.map-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.25rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 600; transition: transform 0.2s, box-shadow 0.2s; }
.map-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.map-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.map-btn-blue { background: #eff6ff; color: var(--blue); border: 1px solid #bfdbfe; }
.map-btn-blue:hover { background: #dbeafe; }
.map-btn-teal { background: #f0fdfa; color: #0f766e; border: 1px solid #99f6e4; }
.map-btn-teal:hover { background: #ccfbf1; }
.map-btn-green { background: #f0fdf4; color: var(--green-dark); border: 1px solid #bbf7d0; }
.map-btn-green:hover { background: #dcfce7; }

/* Map */
.map-wrap { border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* ─── RULES ─── */
.rules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.rule-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem;
  padding: 1.5rem; transition: border-color 0.3s, transform 0.3s;
  opacity: 0; transform: translateY(20px);
}
.rule-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s; }
.rule-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.rule-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.rule-card h4 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.rule-card p { font-size: 0.875rem; color: #64748b; line-height: 1.6; }

/* ─── CTA SECTION ─── */
.section-cta { background: linear-gradient(135deg, #0f172a, #1e3a8a); }
.cta-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 1.5rem; padding: 3rem; display: flex; gap: 3rem; align-items: center; justify-content: space-between; flex-wrap: wrap; backdrop-filter: blur(8px); }
.cta-text h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.cta-text p { color: #94a3b8; max-width: 480px; line-height: 1.7; margin-bottom: 1.5rem; }
.cta-info { display: flex; flex-direction: column; gap: 0.5rem; }
.cta-info-row { color: #cbd5e1; font-size: 0.9rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; min-width: 220px; }
.btn-wa-large { display: block; text-align: center; background: var(--green); color: #fff; padding: 1rem 2rem; border-radius: 1rem; font-weight: 700; font-size: 1.05rem; transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.btn-wa-large:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline-large { display: block; text-align: center; background: transparent; color: #fff; padding: 1rem 2rem; border-radius: 1rem; font-weight: 600; font-size: 1rem; border: 2px solid rgba(255,255,255,0.3); transition: border-color 0.2s, background 0.2s; }
.btn-outline-large:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ─── FOOTER ─── */
.footer { background: #0a0f1e; padding: 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; font-size: 1.4rem; color: #fff; }
.footer-name { font-weight: 700; font-size: 1rem; color: #e2e8f0; }
.footer-loc { font-size: 0.75rem; color: #475569; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #475569; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: #94a3b8; }
.footer-note { color: #334155; font-size: 0.75rem; }

/* ─── FLOATING WHATSAPP ─── */
.float-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  background: var(--green); color: #fff;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.4rem 0.85rem 1rem;
  border-radius: 3rem; box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: float-pulse 3s infinite;
}
.float-wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.float-wa svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
@keyframes float-pulse {
  0%,100%{box-shadow:0 4px 24px rgba(37,211,102,0.5)}
  50%{box-shadow:0 4px 32px rgba(37,211,102,0.8)}
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .dual-zone-wrap { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; text-align: center; }
  .cta-actions { width: 100%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-stats { gap: 1rem; }
  .map-nav-buttons { flex-direction: column; }
  .map-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .float-wa-label { display: none; }
  .float-wa { padding: 0.9rem; border-radius: 50%; }
  .zone-name { font-size: 0.8rem; }
}

/* ─── RULES ─── */
.rules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.rule-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem;
  padding: 1.5rem; transition: border-color 0.3s, transform 0.3s;
  opacity: 0; transform: translateY(20px);
}
.rule-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s; }
.rule-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.rule-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.rule-card h4 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.rule-card p { font-size: 0.875rem; color: #64748b; line-height: 1.6; }

/* ─── CTA SECTION ─── */
.section-cta { background: linear-gradient(135deg, #0f172a, #1e3a8a); }
.cta-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 1.5rem; padding: 3rem; display: flex; gap: 3rem; align-items: center; justify-content: space-between; flex-wrap: wrap; backdrop-filter: blur(8px); }
.cta-text h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.cta-text p { color: #94a3b8; max-width: 480px; line-height: 1.7; margin-bottom: 1.5rem; }
.cta-info { display: flex; flex-direction: column; gap: 0.5rem; }
.cta-info-row { color: #cbd5e1; font-size: 0.9rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; min-width: 220px; }
.btn-wa-large { display: block; text-align: center; background: var(--green); color: #fff; padding: 1rem 2rem; border-radius: 1rem; font-weight: 700; font-size: 1.05rem; transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.btn-wa-large:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline-large { display: block; text-align: center; background: transparent; color: #fff; padding: 1rem 2rem; border-radius: 1rem; font-weight: 600; font-size: 1rem; border: 2px solid rgba(255,255,255,0.3); transition: border-color 0.2s, background 0.2s; }
.btn-outline-large:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ─── FOOTER ─── */
.footer { background: #0a0f1e; padding: 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; font-size: 1.4rem; color: #fff; }
.footer-name { font-weight: 700; font-size: 1rem; color: #e2e8f0; }
.footer-loc { font-size: 0.75rem; color: #475569; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #475569; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: #94a3b8; }
.footer-note { color: #334155; font-size: 0.75rem; }

/* ─── FLOATING WHATSAPP ─── */
.float-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  background: var(--green); color: #fff;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.4rem 0.85rem 1rem;
  border-radius: 3rem; box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: float-pulse 3s infinite;
}
.float-wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.float-wa svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
@keyframes float-pulse {
  0%,100%{box-shadow:0 4px 24px rgba(37,211,102,0.5)}
  50%{box-shadow:0 4px 32px rgba(37,211,102,0.8)}
}

/* ─── GALLERY SECTION ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 1.5rem 1rem 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ─── FAQ SECTION ─── */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 768px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
.faq-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem; padding: 1.5rem; transition: transform 0.3s ease, border-color 0.3s ease; box-shadow: var(--shadow); }
.faq-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.faq-card h4 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: 0.75rem; line-height: 1.4; }
.faq-card p { font-size: 0.9rem; color: #475569; line-height: 1.6; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .proximity-wrap { grid-template-columns: 1fr; }
  .dual-zone-wrap { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
  .transport-grid .zone-row:nth-last-child(2) { border-bottom: 1px solid #f1f5f9; }
  .cta-card { flex-direction: column; text-align: center; }
  .cta-actions { width: 100%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-stats { gap: 1rem; }
}
@media (max-width: 480px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .float-wa-label { display: none; }
  .float-wa { padding: 0.9rem; border-radius: 50%; }
}