/* ============================================================
   İstanbul Acil Çilingir - style.css
   ============================================================ */

:root {
    --orange: #ff6b00;
    --orange-dark: #e05a00;
    --orange-light: #ff8c33;
    --dark: #222222;
    --gray-light: #f5f5f5;
    --gray-mid: #e8e8e8;
    --white: #ffffff;
    --muted: #666666;
    --green: #25D366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); overflow-x: hidden; }

/* LOADING */
#loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--dark); z-index: 9999;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    transition: opacity 0.6s ease;
}
#loading-screen .loader-icon { font-size: 3rem; color: var(--orange); animation: spin 1s linear infinite; }
#loading-screen p { color: var(--white); margin-top: 1rem; font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }

/* TOP BAR */
.top-bar { background: var(--dark); color: var(--white); padding: 8px 0; font-size: 0.82rem; border-bottom: 2px solid var(--orange); }
.top-bar a { color: var(--orange); text-decoration: none; font-weight: 700; }
.top-bar a:hover { color: var(--orange-light); }
.top-bar-right { display: flex; align-items: center; gap: 1.5rem; justify-content: flex-end; }
.top-bar-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); }
.top-bar-item i { color: var(--orange); }

/* NAVBAR */
.navbar { background: var(--white) !important; box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 10px 0; position: sticky; top: 0; z-index: 1000; }
.navbar-brand { font-weight: 900; font-size: 1.3rem; color: var(--dark) !important; display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-brand span { color: var(--orange); }
.brand-icon { background: var(--orange); color: white; width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.nav-link { color: var(--dark) !important; font-weight: 500; font-size: 0.88rem; padding: 8px 14px !important; transition: color 0.2s; border-radius: 8px; }
.nav-link:hover { color: var(--orange) !important; background: rgba(255,107,0,0.06); }
.nav-cta { background: var(--orange) !important; color: white !important; border-radius: 10px !important; padding: 10px 22px !important; font-weight: 700 !important; animation: pulse-nav 2.5s infinite; }
.nav-cta:hover { background: var(--orange-dark) !important; }
@keyframes pulse-nav {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255,107,0,0); }
}

/* HERO */
.hero-section {
    background: linear-gradient(135deg, rgba(15,15,15,0.93) 0%, rgba(35,35,35,0.88) 100%),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
    min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 0 60px;
}
.hero-section::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(to top, var(--white), transparent); pointer-events: none;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.35);
    color: var(--orange-light); padding: 8px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 700; margin-bottom: 1.5rem;
}
.live-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: blink 1.2s infinite; }
@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}
.hero-title { font-size: clamp(1.9rem, 4.5vw, 3.5rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 1.2rem; }
.hero-title .highlight { color: var(--orange); }
.hero-subtitle { font-size: clamp(0.95rem, 2vw, 1.15rem); color: rgba(255,255,255,0.82); margin-bottom: 2rem; line-height: 1.65; max-width: 560px; }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.btn-call {
    background: var(--orange); color: white; border: none; padding: 15px 30px;
    border-radius: 12px; font-size: 1.05rem; font-weight: 800; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s;
    animation: pulse-call 2s infinite; cursor: pointer;
}
.btn-call:hover { background: var(--orange-dark); color: white; transform: translateY(-3px); }
@keyframes pulse-call {
    0%, 100% { box-shadow: 0 8px 30px rgba(255,107,0,0.4); }
    50% { box-shadow: 0 8px 50px rgba(255,107,0,0.7); }
}
.btn-whatsapp {
    background: var(--green); color: white; border: none; padding: 15px 30px;
    border-radius: 12px; font-size: 1.05rem; font-weight: 800; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(37,211,102,0.3); cursor: pointer;
}
.btn-whatsapp:hover { background: #1da851; color: white; transform: translateY(-3px); }

.hero-trust-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 500; }
.hero-trust-item i { color: var(--orange); }

.hero-card {
    background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 2rem; text-align: center;
}
.hero-card .phone-label { color: rgba(255,255,255,0.55); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.hero-card .phone-number { font-size: 1.8rem; font-weight: 900; color: var(--white); letter-spacing: 1px; margin-bottom: 0.5rem; }
.hero-card .phone-number a { color: var(--orange); text-decoration: none; }
.hero-card .phone-number a:hover { color: var(--orange-light); }
.online-status { display: inline-flex; align-items: center; gap: 6px; color: #4ade80; font-size: 0.82rem; font-weight: 600; }
.online-status::before { content: ''; width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: blink 1.2s infinite; }

.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1.5rem; }
.hero-stat-box { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 1rem 0.8rem; text-align: center; }
.hero-stat-box .s-num { font-size: 1.7rem; font-weight: 900; color: var(--orange); line-height: 1; }
.hero-stat-box .s-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 4px; line-height: 1.3; }

.district-note {
    background: rgba(255,107,0,0.1); border-left: 3px solid var(--orange);
    padding: 10px 14px; border-radius: 0 8px 8px 0;
    color: rgba(255,255,255,0.75); font-size: 0.82rem; margin-top: 1.5rem; line-height: 1.5;
}

/* TRUST BAR */
.trust-bar { background: var(--dark); padding: 18px 0; border-bottom: 3px solid var(--orange); }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.trust-bar-item { display: flex; align-items: center; gap: 12px; color: var(--white); flex: 1; min-width: 150px; }
.t-icon {
    width: 44px; height: 44px; background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--orange); font-size: 1.1rem; flex-shrink: 0;
}
.t-text strong { display: block; font-size: 0.9rem; font-weight: 700; line-height: 1.2; }
.t-text span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* SECTION COMMONS */
section { padding: 80px 0; }
.section-tag {
    display: inline-block; background: rgba(255,107,0,0.1); color: var(--orange);
    padding: 5px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.8rem;
}
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 0.8rem; }
.section-title span { color: var(--orange); }
.section-subtitle { font-size: 1rem; color: var(--muted); max-width: 580px; line-height: 1.7; }

/* SERVICES */
.services-section { background: var(--gray-light); }
.service-card {
    background: var(--white); border-radius: 16px; padding: 2rem 1.5rem; text-align: center;
    transition: all 0.35s ease; border: 2px solid transparent; height: 100%; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(255,107,0,0.25); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(255,107,0,0.12); }
.service-icon {
    width: 68px; height: 68px; background: rgba(255,107,0,0.08); border-radius: 18px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
    font-size: 1.7rem; color: var(--orange); transition: all 0.35s;
}
.service-card:hover .service-icon { background: var(--orange); color: white; transform: scale(1.1) rotate(-5deg); }
.service-card h5 { font-size: 0.98rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.83rem; color: var(--muted); margin: 0 0 1rem; line-height: 1.55; }
.service-link { display: inline-flex; align-items: center; gap: 5px; color: var(--orange); font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: gap 0.2s; }
.service-card:hover .service-link { gap: 10px; }

/* WHY US */
.why-us-section { background: var(--white); }
.why-card {
    display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem;
    border-radius: 14px; transition: all 0.3s; border: 1px solid var(--gray-mid); height: 100%;
}
.why-card:hover { border-color: rgba(255,107,0,0.3); box-shadow: 0 10px 30px rgba(255,107,0,0.08); transform: translateY(-4px); }
.why-icon {
    width: 52px; height: 52px; background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 6px 16px rgba(255,107,0,0.3);
}
.why-card h5 { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--dark); }
.why-card p { font-size: 0.83rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* STATS */
.stats-section { background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%); padding: 60px 0; }
.stat-counter { text-align: center; padding: 1.5rem 1rem; }
.counter-num { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 900; color: var(--orange); line-height: 1; display: block; }
.counter-label { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-top: 0.5rem; font-weight: 500; display: block; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.08); }

/* COVERAGE */
.coverage-section { background: var(--gray-light); }
.district-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 10px; }
.district-item {
    background: var(--white); border: 1px solid var(--gray-mid); border-radius: 10px;
    padding: 10px 14px; font-size: 0.83rem; font-weight: 500; color: var(--dark);
    display: flex; align-items: center; gap: 8px; transition: all 0.25s; cursor: pointer; text-decoration: none;
}
.district-item:hover { background: var(--orange); color: white; border-color: var(--orange); transform: scale(1.04); }
.district-item i { color: var(--orange); font-size: 0.72rem; transition: color 0.25s; }
.district-item:hover i { color: white; }

/* REVIEWS */
.reviews-section { background: var(--white); }
.review-card {
    background: var(--white); border: 1px solid var(--gray-mid); border-radius: 16px;
    padding: 1.5rem; height: 100%; transition: all 0.3s; position: relative;
}
.review-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.09); transform: translateY(-5px); border-color: rgba(255,107,0,0.2); }
.g-logo { position: absolute; top: 1rem; right: 1rem; font-size: 1.1rem; font-weight: 900; color: #4285F4; }
.review-stars { color: #fbbc04; font-size: 0.88rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.reviewer-info { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: white; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.reviewer-date { font-size: 0.73rem; color: var(--muted); }
.review-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 0.72rem; color: var(--green); font-weight: 600; margin-top: 3px; }

/* FAQ */
.faq-section { background: var(--gray-light); }
.accordion-item { border: 1px solid var(--gray-mid) !important; border-radius: 12px !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button { font-weight: 600; font-size: 0.93rem; color: var(--dark) !important; background: var(--white) !important; padding: 1.2rem 1.5rem; border-radius: 12px !important; }
.accordion-button:not(.collapsed) { color: var(--orange) !important; background: rgba(255,107,0,0.03) !important; box-shadow: none !important; }
.accordion-button:focus { box-shadow: none !important; }
.accordion-body { font-size: 0.88rem; color: var(--muted); line-height: 1.7; padding: 0.8rem 1.5rem 1.5rem; background: var(--white); }

/* URGENCY */
.urgency-section {
    background: linear-gradient(135deg, #180800 0%, #2a1000 50%, #180800 100%);
    padding: 80px 0; position: relative; overflow: hidden;
}
.urgency-section::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,107,0,0.07) 0%, transparent 55%);
    animation: rotate-bg 25s linear infinite;
}
@keyframes rotate-bg { to { transform: rotate(360deg); } }
.urgency-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,0,0.18); border: 1px solid rgba(255,107,0,0.45);
    color: var(--orange-light); padding: 7px 18px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.5rem;
}
.urgency-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.urgency-title span { color: var(--orange); }
.urgency-subtitle { color: rgba(255,255,255,0.72); font-size: 1rem; margin-bottom: 2rem; line-height: 1.65; }
.urgency-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 2.5rem; }
.urgency-feature { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.urgency-feature i { color: var(--orange); width: 18px; flex-shrink: 0; }

.countdown-box {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,107,0,0.25);
    border-radius: 18px; padding: 2rem 1.5rem; text-align: center;
}
.countdown-label { color: rgba(255,255,255,0.55); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.2rem; }
.countdown-timer { display: flex; justify-content: center; align-items: center; gap: 0.8rem; }
.countdown-unit { text-align: center; }
.countdown-num {
    background: var(--orange); color: white; font-size: 2.2rem; font-weight: 900;
    width: 64px; height: 64px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; line-height: 1;
    box-shadow: 0 6px 20px rgba(255,107,0,0.4);
}
.countdown-unit-label { color: rgba(255,255,255,0.5); font-size: 0.7rem; margin-top: 6px; text-transform: uppercase; }
.countdown-sep { color: var(--orange); font-size: 2rem; font-weight: 900; align-self: center; margin-bottom: 20px; }

.urgency-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-urgency-call {
    background: var(--orange); color: white; border: none; padding: 18px 36px;
    border-radius: 12px; font-size: 1.1rem; font-weight: 800; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s;
    animation: pulse-call 2s infinite; cursor: pointer;
}
.btn-urgency-call:hover { background: var(--orange-dark); color: white; transform: translateY(-3px); }
.btn-urgency-wa {
    background: var(--green); color: white; border: none; padding: 18px 36px;
    border-radius: 12px; font-size: 1.1rem; font-weight: 800; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s; cursor: pointer;
}
.btn-urgency-wa:hover { background: #1da851; color: white; transform: translateY(-3px); }

/* CONTACT */
.contact-section { background: var(--white); }
.contact-card {
    background: var(--gray-light); border-radius: 16px; padding: 2rem;
    height: 100%; border: 1px solid var(--gray-mid);
}
.contact-card h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.contact-phone-big {
    font-size: 2rem; font-weight: 900; color: var(--orange); text-decoration: none;
    display: flex; align-items: center; gap: 10px; transition: color 0.2s;
}
.contact-phone-big:hover { color: var(--orange-dark); }
.form-control, .form-select {
    border: 1px solid var(--gray-mid); border-radius: 10px; padding: 12px 16px;
    font-size: 0.9rem; transition: border-color 0.2s;
}
.form-control:focus, .form-select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,0.1); }
.btn-form-submit {
    background: var(--orange); color: white; border: none; padding: 14px 30px;
    border-radius: 10px; font-size: 0.95rem; font-weight: 700; width: 100%;
    transition: all 0.3s; cursor: pointer;
}
.btn-form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }
.map-placeholder {
    background: var(--gray-mid); border-radius: 16px; height: 250px;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    color: var(--muted); font-size: 0.9rem; gap: 10px;
}
.map-placeholder i { font-size: 2.5rem; color: var(--orange); }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 50px 0 20px; }
.footer-brand { font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: 0.8rem; }
.footer-brand span { color: var(--orange); }
.footer p { font-size: 0.85rem; line-height: 1.6; }
.footer h6 { color: var(--white); font-weight: 700; margin-bottom: 1rem; font-size: 0.9rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 2rem; padding-top: 1.5rem; font-size: 0.82rem; }
.social-links { display: flex; gap: 10px; margin-top: 1rem; }
.social-link {
    width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
    text-decoration: none; transition: all 0.2s; font-size: 0.9rem;
}
.social-link:hover { background: var(--orange); color: white; }

/* FLOATING WHATSAPP */
.floating-wa {
    position: fixed; bottom: 90px; right: 20px; z-index: 999;
    width: 56px; height: 56px; background: var(--green); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5rem; text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4); animation: float-wa 3s ease-in-out infinite;
    transition: transform 0.2s;
}
.floating-wa:hover { color: white; transform: scale(1.1); }
@keyframes float-wa {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.floating-wa .wa-tooltip {
    position: absolute; right: 70px; background: var(--dark); color: white;
    padding: 6px 12px; border-radius: 8px; font-size: 0.78rem; font-weight: 600;
    white-space: nowrap; opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.floating-wa:hover .wa-tooltip { opacity: 1; }

/* STICKY MOBILE CTA */
.sticky-mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
    display: none; background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    padding: 10px 16px; gap: 10px;
}
.sticky-mobile-cta .sticky-btn-call {
    flex: 1; background: var(--orange); color: white; border: none;
    padding: 14px; border-radius: 10px; font-size: 0.95rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none; animation: pulse-call 2s infinite;
}
.sticky-mobile-cta .sticky-btn-wa {
    flex: 1; background: var(--green); color: white; border: none;
    padding: 14px; border-radius: 10px; font-size: 0.95rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none;
}

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* RESPONSIVE */
@media (max-width: 991px) {
    .trust-divider { display: none; }
    .trust-bar-inner { gap: 16px; }
    .hero-card { margin-top: 2rem; }
}
@media (max-width: 767px) {
    section { padding: 60px 0; }
    .hero-section { padding: 60px 0 50px; }
    .hero-cta-group { flex-direction: column; }
    .btn-call, .btn-whatsapp { justify-content: center; }
    .sticky-mobile-cta { display: flex; }
    .floating-wa { bottom: 90px; }
    .trust-bar-item { min-width: 100%; }
    .district-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    .countdown-num { width: 54px; height: 54px; font-size: 1.8rem; }
    .urgency-cta-group { flex-direction: column; }
    .btn-urgency-call, .btn-urgency-wa { justify-content: center; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .hero-stats-grid { grid-template-columns: 1fr 1fr; }
    .countdown-timer { gap: 0.5rem; }
    .countdown-num { width: 48px; height: 48px; font-size: 1.5rem; }
}