@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --navy: #0d1f3c;
    --navy-light: #162d52;
    --yellow: #f5c518;
    --yellow-dark: #d4a800;
    --teal: #0ea5b0;
    --sand: #f7f0e3;
    --white: #ffffff;
    --gray-light: #f4f6fa;
    --gray: #6b7280;
    --text: #1a1a2e;
}
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); }

/* ── TICKER (hidden, kept for other pages) ── */
.ticker-wrap { display: none; }

/* ── TRUST BAR (used on sub-pages) ── */
.trust-bar { background: var(--navy); border-bottom: 3px solid var(--teal); padding: 14px 20px; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; color: rgba(255,255,255,0.9); }
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ── HERO CLOSE BAR ── */
.hero-close-bar { background: var(--navy); padding: 13px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-close-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 8px 26px; flex-wrap: wrap; }
.hc-item { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.82); white-space: nowrap; }
.hc-item .hc-emoji { font-size: 15px; }
.hc-sep { color: rgba(255,255,255,0.18); font-size: 18px; line-height: 1; }

/* ── HEADER ── */
.header { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.header-main { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-size: 22px; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 38px; height: 38px; background: var(--yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo em { color: var(--yellow); font-style: normal; }
.nav { display: flex; gap: 6px; }
.nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.2s; padding: 8px 16px; border-radius: 8px; }
.nav a:hover { color: var(--yellow); background: rgba(245,197,24,0.12); }
.call-btn { background: var(--yellow); color: var(--navy); padding: 9px 16px; border-radius: 8px; text-decoration: none; font-weight: 800; font-size: 15px; display: flex; align-items: center; gap: 8px; transition: all 0.2s; white-space: nowrap; }
.call-btn:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.call-btn svg { flex-shrink: 0; }
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 26px; cursor: pointer; }

/* ── HERO ── */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80'); background-size: cover; background-position: center 30%; filter: brightness(0.28); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,31,60,0.97) 40%, rgba(13,31,60,0.45) 100%); }
/* .hero-wave removed */
.hero-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 52px 24px 70px; display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: flex-start; width: 100%; }
.hero-left { padding-top: 18px; text-align: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,165,176,0.18); border: 1px solid rgba(14,165,176,0.5); color: #5de3ec; padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: clamp(34px, 4.5vw, 54px); font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 20px; letter-spacing: -1.5px; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; justify-content: center; }
.check-pill { background: linear-gradient(135deg, rgba(14,165,176,0.22), rgba(14,165,176,0.08)); border: 1px solid rgba(14,165,176,0.5); color: var(--white); padding: 9px 18px 9px 8px; border-radius: 100px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 9px; letter-spacing: 0.2px; backdrop-filter: blur(4px); }
.check-pill b { width: 26px; height: 26px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; flex-shrink: 0; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-yellow { background: var(--yellow); color: var(--navy); padding: 15px 32px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 17px; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,197,24,0.4); }
.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); padding: 15px 28px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 16px; border: 2px solid rgba(255,255,255,0.55); display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(245,197,24,0.08); }

/* Form card */
.hero-form { background: var(--white); border-radius: 18px; padding: 28px 26px; box-shadow: 0 24px 70px rgba(0,0,0,0.35); }
.form-title { font-size: 19px; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 4px; }
.form-subtitle { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 20px; }
.fg { margin-bottom: 12px; }
.fg label { display: block; font-size: 11px; font-weight: 700; color: var(--gray); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.7px; }
.fg input, .fg select { width: 100%; padding: 11px 14px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 15px; font-family: inherit; transition: border-color 0.2s; outline: none; color: var(--text); background: #fafafa; }
.fg input:focus, .fg select:focus { border-color: var(--teal); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-submit { width: 100%; background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%); color: var(--white); padding: 14px; border: none; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: var(--navy-light); transform: translateY(-1px); }
.form-divider { display: flex; align-items: center; gap: 10px; margin: 12px 0; }
.form-divider span { font-size: 12px; color: var(--gray); white-space: nowrap; }
.form-divider::before, .form-divider::after { content:''; flex: 1; height: 1px; background: #e5e7eb; }
.btn-call-form { width: 100%; background: var(--yellow); color: var(--navy); padding: 13px; border: none; border-radius: 10px; font-size: 16px; font-weight: 800; cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; transition: all 0.2s; }
.btn-call-form:hover { background: var(--yellow-dark); }
.form-note { text-align: center; font-size: 11px; color: var(--gray); margin-top: 10px; }

/* (trust-bar removed — replaced by hero-close-bar) */

/* ── SECTION BASE ── */
.section { padding: 60px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--yellow-dark); margin-bottom: 10px; }
.section-title { font-size: clamp(26px, 3vw, 38px); font-weight: 900; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.5px; }
.section-sub { font-size: 16px; color: var(--gray); line-height: 1.65; margin-bottom: 40px; }
.centered { text-align: center; }
.centered .section-sub { max-width: 580px; margin-left: auto; margin-right: auto; }

/* ── MAP BLOCK ── */
.map-section { background: linear-gradient(180deg, #eaf8f8 0%, var(--sand) 100%); padding: 60px 24px; }
.map-inner { max-width: 1200px; margin: 0 auto; }
.map-section .section-label { font-size: 13px; letter-spacing: 3px; color: var(--teal); display: inline-block; background: rgba(14,165,176,0.12); border: 1px solid rgba(14,165,176,0.35); padding: 7px 20px; border-radius: 100px; margin-bottom: 14px; }
.map-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; margin-top: 40px; }
.map-embed { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); height: 440px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.city-list { display: flex; flex-direction: column; gap: 12px; }
.city-row { background: var(--white); border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; gap: 14px; border: 2px solid transparent; text-decoration: none; transition: all 0.2s; }
.city-row:hover { border-color: var(--yellow); transform: translateX(4px); }
.city-row.main { border-color: var(--yellow); background: var(--navy); }
.city-emoji { font-size: 22px; }
.city-row h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.city-row.main h4 { color: var(--white); }
.city-row p { font-size: 12px; color: var(--gray); }
.city-row.main p { color: rgba(255,255,255,0.6); }
.city-badge { margin-left: auto; background: var(--yellow); color: var(--navy); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.map-cta { margin-top: 20px; display: flex; align-items: center; justify-content: center; }
.map-call-btn { background: var(--yellow); color: var(--navy); padding: 14px 32px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 16px; display: flex; align-items: center; gap: 10px; transition: all 0.2s; width: 100%; justify-content: center; }
.map-call-btn:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* ── PHOTO STRIP ── */
.photo-strip-wrap { padding: 0 24px; background: var(--white); }
.photo-strip { display: grid; grid-template-columns: repeat(4,1fr); height: 240px; overflow: hidden; max-width: 1100px; margin: 0 auto; border-radius: 16px; }
.photo-strip-item { overflow: hidden; position: relative; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: brightness(0.72); }
.photo-strip-item:hover img { transform: scale(1.06); filter: brightness(0.9); }
.photo-strip-label { position: absolute; bottom: 12px; left: 14px; color: white; font-weight: 700; font-size: 14px; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card { border: 2px solid #e0e4ed; border-radius: 14px; padding: 28px 24px; text-decoration: none; transition: all 0.25s; display: block; background: var(--white); box-shadow: 0 2px 12px rgba(13,31,60,0.06); }
.svc-card:hover { border-color: var(--yellow); transform: translateY(-5px); box-shadow: 0 14px 44px rgba(13,31,60,0.13); }
.svc-card:hover .svc-btn { background: var(--yellow); color: var(--navy); }
.svc-card.featured { border-color: var(--teal); background: linear-gradient(135deg, #f0fbfc 0%, var(--white) 100%); }
.svc-card.featured .svc-icon { background: var(--teal); }
.svc-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.svc-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; text-align: center; }
.svc-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 18px; text-align: center; }
.svc-btn { background: var(--navy); color: var(--white); padding: 10px 22px; border-radius: 8px; font-size: 13px; font-weight: 700; text-align: center; transition: all 0.2s; display: block; }
.section-call { display: flex; justify-content: center; margin-top: 44px; }
.section-call-btn { background: var(--yellow); color: var(--navy); padding: 15px 40px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 17px; display: inline-flex; align-items: center; gap: 12px; transition: all 0.2s; }
.section-call-btn:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,197,24,0.4); }
.section-call-btn svg { width: 26px; height: 26px; }

/* ── BEACH VIBE STRIP ── */
.beach-strip { position: relative; min-height: 360px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.beach-strip-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80'); background-size: cover; background-position: center 55%; filter: brightness(0.38); }
.beach-strip-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,31,60,0.85) 0%, rgba(14,165,176,0.25) 50%, rgba(13,31,60,0.85) 100%); }
.beach-strip::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--teal), var(--yellow), var(--teal)); z-index:3; }
.beach-strip::after  { content:''; position:absolute; bottom:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--teal), var(--yellow), var(--teal)); z-index:3; }
.beach-content { position: relative; text-align: center; padding: 48px 24px; max-width: 700px; }
.beach-wave { font-size: 36px; margin-bottom: 14px; display: block; opacity: 0.9; }
.beach-content h2 { font-size: clamp(28px, 3.5vw, 50px); font-weight: 900; color: var(--white); letter-spacing: -1px; margin-bottom: 14px; }
.beach-content h2 em { color: var(--yellow); font-style: normal; }
.beach-content p { font-size: 17px; color: rgba(255,255,255,0.78); margin-bottom: 32px; line-height: 1.6; }
.beach-call-btn { background: var(--yellow); color: var(--navy); padding: 16px 44px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 18px; display: inline-flex; align-items: center; gap: 12px; transition: all 0.2s; }
.beach-call-btn:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.beach-call-btn svg { width: 26px; height: 26px; }

/* ── WHY US ── */
.why-section { background: var(--navy); padding: 60px 24px; }
.why-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-content { text-align: center; }
.why-content .section-label { color: rgba(245,197,24,0.8); }
.why-content .section-title { color: var(--white); }
.why-content .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 28px; max-width: 460px; margin-left: auto; margin-right: auto; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.why-row { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px 16px; }
.why-dot { width: 46px; height: 46px; background: rgba(245,197,24,0.14); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-row h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.why-row p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.why-call-btn { background: var(--yellow); color: var(--navy); padding: 14px 28px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 16px; display: inline-flex; align-items: center; gap: 12px; transition: all 0.2s; }
.why-call-btn:hover { background: var(--yellow-dark); }
.why-call-btn svg { width: 24px; height: 24px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px 20px; text-align: center; position: relative; overflow: hidden; }
.stat-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.stat-box:nth-child(1)::before { background: var(--yellow); }
.stat-box:nth-child(2)::before { background: var(--teal); }
.stat-box:nth-child(3)::before { background: var(--teal); }
.stat-box:nth-child(4)::before { background: var(--yellow); }
.stat-num { font-size: 46px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 8px; }
.stat-box:nth-child(2) .stat-num, .stat-box:nth-child(3) .stat-num { color: var(--teal); }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.45; font-weight: 500; }

/* ── BADGE LABEL ── */
.label-badge { display: inline-block; background: var(--teal); color: var(--white); padding: 5px 18px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 14px; margin-top: 40px; }
.gallery-item { border-radius: 14px; overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: 1/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.glabel { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px 14px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: white; font-size: 14px; font-weight: 700; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--yellow) 0%, #e8b800 100%); padding: 56px 24px; text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.5px; }
.cta-section p { font-size: 16px; color: rgba(13,31,60,0.72); margin-bottom: 32px; line-height: 1.6; }
.cta-btn { background: var(--navy); color: var(--white); padding: 17px 42px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 18px; display: inline-flex; align-items: center; gap: 12px; transition: all 0.2s; }
.cta-btn:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.cta-btn svg { width: 26px; height: 26px; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 52px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-logo { font-size: 20px; font-weight: 900; color: var(--white); text-decoration: none; display: block; margin-bottom: 12px; }
.footer-logo em { color: var(--yellow); font-style: normal; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 280px; margin-bottom: 18px; }
.footer-call { background: var(--yellow); color: var(--navy); padding: 11px 20px; border-radius: 8px; text-decoration: none; font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.footer-call:hover { background: var(--yellow-dark); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }

/* ── RESPONSIVE ── */
@keyframes navSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 960px) {
    .nav {
        display: none;
        position: absolute; top: 68px; left: 0; right: 0; z-index: 99;
        flex-direction: column; gap: 0;
        background: linear-gradient(180deg, #0f2747 0%, #091b36 100%);
        border-top: 3px solid var(--teal);
        box-shadow: 0 16px 40px rgba(0,0,0,0.5);
        padding: 8px 16px 16px;
    }
    .nav.open { display: flex; animation: navSlide 0.18s ease; }
    .nav a {
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        color: rgba(255,255,255,0.88);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        gap: 10px;
        letter-spacing: 0.1px;
    }
    .nav a:last-child { border-bottom: none; }
    .nav a::before {
        content: '';
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--teal);
        opacity: 0.5;
        flex-shrink: 0;
        transition: opacity 0.2s, transform 0.2s;
    }
    .nav a:hover { color: var(--yellow); background: rgba(245,197,24,0.07); }
    .nav a:hover::before { opacity: 1; transform: scale(1.4); background: var(--yellow); }
    .menu-toggle { display: block; font-size: 24px; padding: 4px 6px; border-radius: 6px; transition: background 0.2s; }
    .menu-toggle:hover { background: rgba(255,255,255,0.08); }
    .hero-inner { grid-template-columns: 1fr; padding: 40px 20px 52px; }
    .hero-left { padding-top: 0; }
    .hero-form { margin-top: 28px; }
    .hero-desc { font-size: 16px; }
    .map-grid { grid-template-columns: 1fr; }
    .map-embed { height: 300px; }
    .photo-strip { grid-template-columns: repeat(2,1fr); height: 160px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-inner { grid-template-columns: 1fr; gap: 36px; }
    .stats-grid { max-width: 480px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 10px; }
    .gallery-item:first-child { grid-row: auto; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 560px) {
    /* ── COMPACT HEADER ── */
    .header-main { padding: 0 14px; height: 60px; }
    .logo { font-size: 16px; gap: 6px; }
    .logo-icon { width: 30px; height: 30px; border-radius: 6px; }
    .logo-icon svg { width: 18px; height: 18px; }
    .call-btn { padding: 7px 10px; font-size: 13px; gap: 5px; border-radius: 7px; }
    .call-btn svg { width: 20px; height: 20px; }
    .menu-toggle { font-size: 22px; }
    /* nav dropdown adjusts to new header height */
    .nav { top: 60px; }
    /* ── HERO ── */
    .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
    .hero-pill { font-size: 12px; }
    .check-pill { font-size: 12px; padding: 7px 12px; }
    .check-pill.hide-mobile { display: none; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-yellow, .hero-btns .btn-ghost { justify-content: center; }
    /* ── OTHER ── */
    .map-embed { height: 240px; }
    .city-row { padding: 12px 14px; }
    .photo-strip { grid-template-columns: repeat(2,1fr); height: 130px; }
    .photo-strip-label { font-size: 12px; }
    .services-grid { grid-template-columns: 1fr; }
    .svc-card { padding: 22px 18px; }
    .beach-content h2 { font-size: 28px; }
    .beach-call-btn { font-size: 16px; padding: 14px 28px; }
    .why-list { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-num { font-size: 38px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .cta-btn { font-size: 16px; padding: 15px 28px; }
    /* Footer mobile: brand full-width centered, then 2 cols side by side */
    .footer { padding: 36px 20px 20px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .footer-brand p { max-width: 100%; }
    .footer-call { display: inline-flex; margin: 0 auto; }
    .footer-col { text-align: center; }
    .footer-col a { margin-bottom: 6px; }
    .footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
    .footer-bottom div { justify-content: center; }
    .section-call-btn { font-size: 15px; padding: 13px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-close-bar { padding: 10px 16px; }
    .hc-sep { display: none; }
    .hero-close-inner { gap: 6px 14px; justify-content: center; }
    .hc-item { font-size: 12px; }
}
/* Very small phones: stacked logo + icon-only call btn */
.logo-br { display: none; }
@media (max-width: 400px) {
    /* Logo stacks Venice / Locksmith like a pyramid (Venice centered above) */
    .logo { align-items: flex-start; gap: 6px; }
    .logo-icon { margin-top: 3px; flex-shrink: 0; }
    .logo-text { display: inline-flex; flex-direction: column; align-items: center; line-height: 1.2; font-size: 14px; }
    .logo-text em { font-size: 14px; }
    /* Call btn: show number but very compact */
    .call-btn { padding: 5px 7px; font-size: 12px; gap: 4px; border-radius: 7px; }
    .call-btn svg { width: 16px; height: 16px; }
    .call-btn .btn-txt { font-size: 12px; }
}

.toast { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); min-width: 260px; max-width: 420px; background: #22c55e; color: white; padding: 14px 20px; border-radius: 10px; font-size: 15px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.2); opacity: 0; pointer-events: none; transition: opacity 0.4s; z-index: 9999; }
.toast.show { opacity: 1; }
.toast.error { background: #ef4444; }
