/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
    --red: #c0392b;
    --red-dark: #96281b;
    --red-light: #e74c3c;
    --navy: #1d2a4a;
    --navy-light: #253563;
    --gray: #f8f9fa;
    --gray-mid: #e9ecef;
    --text: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,.10);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --radius: 10px;
    --radius-lg: 16px;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-gray { background: var(--gray); }
.section-navy { background: var(--navy); color: #fff; }
.section-red { background: var(--red); color: #fff; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { color: var(--text); margin-bottom: 1rem; }
.text-white, .section-navy h1,.section-navy h2,.section-navy h3,.section-navy h4,.section-navy p,
.section-red h1,.section-red h2,.section-red h3,.section-red p { color: #fff; }
.text-red { color: var(--red); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title p { color: var(--text-light); font-size: 1.05rem; max-width: 620px; margin: 10px auto 0; }
.lead { font-size: 1.15rem; color: var(--text-light); }
.mt-2 { margin-top: 1rem; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 1rem; transition: all .2s; cursor: pointer; border: 2px solid transparent; }
.btn i { font-size: .95em; }
.btn-emergency { background: var(--red); color: #fff; border-color: var(--red); }
.btn-emergency:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,57,43,.35); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }

/* ===== TOPBAR ===== */
.topbar { background: var(--navy); color: #ced4da; font-size: .82rem; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-left i, .topbar-right i { color: var(--red-light); margin-right: 4px; }
.topbar-phone { color: #fff; font-weight: 700; font-size: .9rem; }
.topbar-phone:hover { color: #f8c8c8; }

/* ===== HEADER ===== */
.site-header { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.10); position: sticky; top: 0; z-index: 999; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; gap: 20px; }
.logo a { display: flex; align-items: center; }
.logo-img { height: 54px; width: auto; object-fit: contain; }

/* ===== NAVIGATION ===== */
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: 6px; font-weight: 500; color: var(--navy); font-size: .95rem; transition: color .2s, background .2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--red); background: #fdf2f2; }
.has-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: #fff; box-shadow: var(--shadow); border-radius: var(--radius); min-width: 270px; z-index: 1000; border-top: 3px solid var(--red); }
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; color: var(--text); font-size: .9rem; border-bottom: 1px solid var(--gray-mid); transition: background .15s, color .15s, padding .15s; }
.dropdown-menu li a i { color: var(--red); width: 16px; text-align: center; }
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: #fdf2f2; color: var(--red); padding-left: 24px; }
.fa-chevron-down { transition: transform .2s; }
.has-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px 8px; font-size: 1.3rem; color: var(--navy); }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a6e 100%); color: #fff; padding: 80px 0 70px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(192,57,43,.2) 0%, transparent 70%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,57,43,.2); border: 1px solid rgba(192,57,43,.4); color: #ffb3b3; padding: 6px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600; margin-bottom: 20px; }
.hero-badge i { font-size: .9rem; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: #f9a8a8; }
.hero p { color: #c8d6e8; font-size: 1.1rem; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.stat-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 18px 14px; text-align: center; }
.stat-item i { font-size: 1.4rem; color: var(--red-light); margin-bottom: 8px; display: block; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: .78rem; color: #a8bfd8; margin-top: 4px; }

/* Hero image box */
.hero-image-box { position: relative; }
.hero-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.5); position: relative; }
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: center; display: block; transition: transform .6s ease; }
.hero-img-wrap:hover img { transform: scale(1.03); }
.hero-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(29,42,74,.15) 0%, rgba(29,42,74,.55) 100%); }
/* Decorative red border accent */
.hero-img-wrap::before { content: ''; position: absolute; inset: -4px; border-radius: calc(var(--radius-lg) + 4px); background: linear-gradient(135deg, var(--red) 0%, transparent 60%); z-index: -1; }
/* Floating badges on image */
.hero-float-badge { position: absolute; z-index: 2; backdrop-filter: blur(12px); border-radius: 12px; border: 1px solid rgba(255,255,255,.25); }
.hero-float-badge.badge-top { top: 18px; left: 18px; background: rgba(192,57,43,.85); color: #fff; padding: 10px 16px; display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 700; }
.hero-float-badge.badge-top i { font-size: 1.1rem; }
.hero-float-badge.badge-bottom { bottom: 18px; left: 18px; right: 18px; background: rgba(29,42,74,.82); color: #fff; padding: 14px 18px; display: flex; align-items: center; justify-content: space-around; gap: 10px; }
.hero-float-stat { text-align: center; }
.hero-float-stat .fs-num { display: block; font-size: 1.25rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-float-stat .fs-lbl { display: block; font-size: .72rem; color: #a8c0d8; margin-top: 3px; }
.hero-float-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Emergency strip */
.emergency-strip { background: var(--red); padding: 12px 0; }
.emergency-strip .container { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.emergency-strip p { color: #fff; font-weight: 600; margin: 0; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.emergency-strip a { color: #fff; font-weight: 800; font-size: 1.1rem; border: 2px solid rgba(255,255,255,.5); padding: 6px 20px; border-radius: 50px; display: flex; align-items: center; gap: 8px; }
.emergency-strip a:hover { background: rgba(255,255,255,.15); }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 28px; transition: all .25s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--red); transition: width .3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::after { width: 100%; }
.service-icon { width: 58px; height: 58px; background: #fdf2f2; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--red); margin-bottom: 16px; transition: background .2s, color .2s; }
.service-card:hover .service-icon { background: var(--red); color: #fff; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--text-light); margin: 0; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--red); font-weight: 600; font-size: .9rem; }
.service-card .card-link i { transition: transform .2s; }
.service-card:hover .card-link i { transform: translateX(4px); }

/* ===== WHY CHOOSE US ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { width: 52px; height: 52px; min-width: 52px; background: var(--red); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; }
.feature-item h4 { margin-bottom: 6px; }
.feature-item p { font-size: .9rem; color: var(--text-light); margin: 0; }

/* ===== STATS BAND ===== */
.stats-band { background: var(--red); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-grid .stat-icon { font-size: 2rem; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.stats-grid .stat-number { font-size: 2.8rem; font-weight: 800; color: #fff; }
.stats-grid .stat-label { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: 4px; }

/* ===== SERVICE AREAS ===== */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.area-tag { background: #fff; border: 1px solid var(--gray-mid); border-radius: 8px; padding: 12px 16px; text-align: center; font-size: .9rem; font-weight: 500; color: var(--navy); transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 7px; }
.area-tag i { color: var(--red); font-size: .8rem; }
.area-tag:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }
.area-tag:hover i { color: #fff; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%); padding: 70px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: #a8bfd8; font-size: 1.1rem; margin-bottom: 30px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 60px 0; color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #a8bfd8; max-width: 640px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb i { font-size: .7rem; }

/* ===== SERVICE PAGE ===== */
.service-detail { padding: 70px 0; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.service-content h2 { margin: 32px 0 14px; }
.service-content h3 { color: var(--red); margin: 28px 0 12px; display: flex; align-items: center; gap: 9px; }
.service-content h3 i { font-size: 1rem; }
.service-content ul { margin: 0 0 20px 0; }
.service-content ul li { padding: 8px 0 8px 28px; position: relative; color: var(--text); font-size: .95rem; border-bottom: 1px solid var(--gray-mid); display: flex; align-items: center; gap: 0; }
.service-content ul li::before { content: ''; }
.service-content ul li .fa-check { position: absolute; left: 0; color: var(--red); font-size: .85rem; }
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--gray); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.sidebar-card h4 { margin-bottom: 16px; color: var(--navy); border-bottom: 2px solid var(--red); padding-bottom: 10px; }
.sidebar-call { background: var(--red); color: #fff; border-radius: var(--radius-lg); padding: 28px; text-align: center; margin-bottom: 24px; }
.sidebar-call h4 { color: #fff; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.sidebar-call p { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 16px; }
.sidebar-call a.big-phone { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.sidebar-services li { padding: 8px 0; border-bottom: 1px solid var(--gray-mid); }
.sidebar-services li a { color: var(--text); font-size: .9rem; display: flex; align-items: center; gap: 10px; transition: color .2s, padding .15s; }
.sidebar-services li a i { color: var(--red); width: 16px; text-align: center; }
.sidebar-services li a:hover { color: var(--red); padding-left: 6px; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-placeholder { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: var(--radius-lg); padding: 60px; text-align: center; color: #fff; }
.about-image-placeholder .big-icon { font-size: 4rem; margin-bottom: 16px; color: var(--red-light); }
.about-image-placeholder p { color: rgba(255,255,255,.7); font-size: 1.1rem; }
.about-checkpoints { margin-top: 24px; }
.about-checkpoints li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid var(--gray-mid); color: var(--text); }
.about-checkpoints li .fa-check { position: absolute; left: 0; top: 13px; color: var(--red); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-box { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 40px; }
.contact-info-box h3 { color: #fff; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-item .ci-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--red-light); }
.contact-info-item h5 { color: rgba(255,255,255,.7); font-size: .8rem; font-weight: 500; margin-bottom: 4px; }
.contact-info-item p { color: #fff; font-size: 1rem; margin: 0; font-weight: 600; }
.contact-form { background: var(--gray); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group label i { color: var(--red); font-size: .85rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-mid); border-radius: 8px;
    font-family: inherit; font-size: .95rem; color: var(--text); background: #fff; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: #d4edda; border: 1px solid #c3e6cb; color: #155724; border-radius: 8px; padding: 14px 18px; margin-top: 14px; font-weight: 500; }

/* ===== PRIVACY PAGE ===== */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 { margin: 36px 0 12px; }
.privacy-content h3 { color: var(--red); margin: 24px 0 8px; }
.privacy-content p { margin-bottom: 14px; }
.privacy-content ul { margin: 0 0 18px 24px; list-style: disc; }
.privacy-content ul li { padding: 4px 0; color: var(--text); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-mid); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 18px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--navy); transition: background .15s; gap: 12px; }
.faq-question:hover { background: var(--gray); }
.faq-question.open { background: #fdf2f2; color: var(--red); }
.faq-answer { display: none; padding: 0 20px 18px; color: var(--text); font-size: .95rem; line-height: 1.7; }
.faq-answer.open { display: block; }
.faq-toggle { color: var(--red); font-size: 1rem; transition: transform .25s; }
.faq-question.open .faq-toggle { transform: rotate(45deg); }

/* ===== FLOATING CALL ===== */
.floating-call { position: fixed; bottom: 24px; right: 24px; background: var(--red); color: #fff; border-radius: 50px; display: flex; align-items: center; gap: 12px; padding: 13px 22px; box-shadow: 0 6px 24px rgba(192,57,43,.45); z-index: 1000; animation: pulse 2s infinite; }
.floating-call i { font-size: 1.3rem; }
.floating-call-text { display: flex; flex-direction: column; line-height: 1.2; }
.floating-call-text small { font-size: .7rem; opacity: .85; }
.floating-call-text strong { font-size: .9rem; }
@keyframes pulse { 0%,100% { box-shadow: 0 6px 24px rgba(192,57,43,.4); } 50% { box-shadow: 0 6px 32px rgba(192,57,43,.7); } }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo-img { height: 52px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-about p { color: #8899bb; font-size: .9rem; line-height: 1.7; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; padding: 10px 20px; border-radius: 8px; font-weight: 700; margin-top: 16px; font-size: 1rem; }
.footer-phone:hover { background: var(--red-dark); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,.1); }
.footer-col ul li { padding: 6px 0; }
.footer-col ul li a { color: #8899bb; font-size: .88rem; display: flex; align-items: center; gap: 8px; transition: color .2s, padding .15s; }
.footer-col ul li a i { color: var(--red-light); width: 14px; text-align: center; font-size: .8rem; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; color: #8899bb; font-size: .9rem; }
.footer-contact .contact-item i { color: var(--red-light); margin-top: 2px; width: 14px; }
.footer-contact .contact-item a { color: #8899bb; }
.footer-contact .contact-item a:hover { color: #fff; }
.footer-bottom { background: rgba(0,0,0,.2); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; color: #8899bb; font-size: .85rem; }
.footer-bottom-inner a { color: #8899bb; }
.footer-bottom-inner a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image-box { display: block; }
    .hero-img-wrap img { height: 300px; }
    .hero-float-badge.badge-bottom { flex-wrap: wrap; gap: 8px; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
}
@media (max-width: 768px) {
    .section { padding: 55px 0; }
    .main-nav { display: none; position: fixed; inset: 0; background: rgba(29,42,74,.97); flex-direction: column; align-items: center; justify-content: center; gap: 10px; z-index: 998; }
    .main-nav.open { display: flex; }
    .nav-list { flex-direction: column; gap: 6px; width: 100%; padding: 0 30px; }
    .nav-link { color: #fff; font-size: 1.1rem; padding: 12px 20px; }
    .nav-link:hover, .nav-link.active { color: #f9a8a8; background: rgba(255,255,255,.08); }
    .dropdown-menu { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.05); border-radius: 8px; border-top: 2px solid rgba(192,57,43,.4); display: none; }
    .dropdown-menu li a { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.1); }
    .dropdown-menu li a:hover { color: #fff; background: rgba(192,57,43,.2); padding-left: 24px; }
    .mobile-toggle { display: block; z-index: 999; }
    .header-cta { display: none; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .topbar-left { display: none; }
    .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
    .floating-call-text { display: none; }
    .floating-call { padding: 14px 16px; border-radius: 50%; }
}
@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    h1 { font-size: 1.7rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
