/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif; color: #1a1a2e; line-height: 1.7; background: #fff; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0f7a3e;
  --primary-dark: #0a5c2e;
  --primary-light: #e8f5ee;
  --secondary: #1565c0;
  --secondary-light: #e3f2fd;
  --accent: #ff6f00;
  --accent-light: #fff3e0;
  --dark: #1a1a2e;
  --gray-900: #212529;
  --gray-700: #495057;
  --gray-500: #6c757d;
  --gray-300: #dee2e6;
  --gray-100: #f8f9fa;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-width: 1280px;
  --transition: .3s ease;
}

/* ===== UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--gray-100); }
.section-green { background: var(--primary-light); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 2.4rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.section-header p { font-size: 1.15rem; color: var(--gray-500); max-width: 640px; margin: 0 auto; }
.section-badge { display: inline-block; background: var(--primary-light); color: var(--primary); font-weight: 700; font-size: .85rem; padding: 6px 18px; border-radius: 50px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--primary-dark); color: var(--white); padding: 0; font-size: .82rem; line-height: 1.4; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; min-height: 36px; gap: 16px; }
.top-bar a { color: var(--white); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.top-bar a:hover { color: var(--accent); }
.top-bar a svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.top-bar-left { display: flex; align-items: center; gap: 12px; overflow: hidden; }
.top-bar-left span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-bar-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; white-space: nowrap; }
.top-bar-right span { opacity: .85; }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.25); flex-shrink: 0; }

/* ===== HEADER / NAV ===== */
.header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 42px; height: 42px; background: var(--primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 24px; height: 24px; fill: var(--white); }
.logo-text { font-size: 1.2rem; font-weight: 800; color: var(--primary-dark); line-height: 1.15; white-space: nowrap; }
.logo-text span { display: block; font-size: .65rem; font-weight: 500; color: var(--gray-500); text-transform: uppercase; letter-spacing: .8px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 12px; font-weight: 600; font-size: .88rem; color: var(--gray-700); border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap; }
.nav a:hover, .nav a.active { background: var(--primary-light); color: var(--primary); }
.nav .btn { padding: 10px 20px; font-size: .88rem; margin-left: 4px; }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: '▾'; margin-left: 4px; font-size: .7rem; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 260px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); z-index: 100; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 16px; border-radius: var(--radius-sm); font-size: .9rem; white-space: normal; }
.nav-dropdown-menu a:hover { background: var(--primary-light); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { font-size: 1rem; font-weight: 800; color: var(--primary); white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.header-phone svg { width: 18px; height: 18px; fill: var(--primary); flex-shrink: 0; }
.header-cta .btn { padding: 10px 20px; font-size: .88rem; white-space: nowrap; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #e65100; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: var(--radius-md); }
.btn svg { width: 20px; height: 20px; fill: currentColor; }

/* Nav CTA button: hidden on desktop, visible in mobile slide-out */
.nav-cta-btn { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--dark); border-radius: 3px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; background: linear-gradient(135deg, #0a5c2e 0%, #1565c0 100%); overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.35); z-index: 1; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding-top: 60px; padding-bottom: 60px; }
.hero-content { color: var(--white); }
.hero-badge { display: inline-block; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); color: var(--white); padding: 8px 20px; border-radius: 50px; font-size: .85rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(255,255,255,.2); }
.hero-content h1 { font-size: 3.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-content h1 .highlight { color: #7cfc00; }
.hero-content p { font-size: 1.2rem; opacity: .9; margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 2rem; font-weight: 900; display: block; }
.hero-stat-label { font-size: .85rem; opacity: .8; }
.hero-image { display: flex; align-items: center; justify-content: center; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); max-height: 420px; object-fit: cover; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--white); padding: 24px 0; border-bottom: 1px solid var(--gray-300); }
.trust-bar .container { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--gray-700); font-size: .95rem; }
.trust-item svg { width: 24px; height: 24px; fill: var(--primary); flex-shrink: 0; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--gray-300); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card-img { height: 200px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-badge { position: absolute; top: 14px; left: 14px; background: var(--primary); color: var(--white); padding: 4px 14px; border-radius: 50px; font-size: .78rem; font-weight: 700; }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card-body p { font-size: .92rem; color: var(--gray-500); margin-bottom: 16px; }
.service-card-body .btn { width: 100%; }

/* Sub-service list inside cards */
.sub-services-list { margin: 12px 0; }
.sub-services-list li { padding: 6px 0; font-size: .9rem; color: var(--gray-700); display: flex; align-items: flex-start; gap: 8px; }
.sub-services-list li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===== WHY CHOOSE US ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.feature-card { background: var(--white); padding: 32px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-300); transition: var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { width: 64px; height: 64px; background: var(--primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.feature-icon svg { width: 32px; height: 32px; fill: var(--primary); }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: .92rem; color: var(--gray-500); }

/* ===== COUPONS ===== */
.coupons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.coupon-card { background: var(--white); border: 2px dashed var(--primary); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; position: relative; overflow: hidden; transition: var(--transition); }
.coupon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.coupon-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.coupon-ribbon { position: absolute; top: 14px; right: -32px; background: var(--accent); color: var(--white); padding: 4px 40px; font-size: .75rem; font-weight: 700; transform: rotate(45deg); text-transform: uppercase; }
.coupon-icon { font-size: 2.5rem; margin-bottom: 12px; }
.coupon-discount { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.coupon-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.coupon-desc { font-size: .9rem; color: var(--gray-500); margin-bottom: 16px; }
.coupon-code { display: inline-block; background: var(--gray-100); border: 1px dashed var(--gray-300); padding: 6px 20px; border-radius: var(--radius-sm); font-family: monospace; font-size: .95rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
.coupon-terms { font-size: .75rem; color: var(--gray-500); margin-top: 10px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 1.05rem; color: var(--dark); gap: 16px; }
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 28px; height: 28px; background: var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); font-size: .85rem; font-weight: 700; color: var(--primary); }
.faq-item.active .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--gray-700); font-size: .95rem; line-height: 1.8; }

/* ===== SERVICE AREAS / CITIES ===== */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.city-tag { display: flex; align-items: center; gap: 8px; padding: 12px 18px; background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-weight: 600; font-size: .92rem; color: var(--gray-700); transition: var(--transition); }
.city-tag:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.city-tag svg { width: 16px; height: 16px; fill: var(--primary); flex-shrink: 0; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 64px 0; text-align: center; color: var(--white); }
.cta-banner h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.cta-banner p { font-size: 1.15rem; opacity: .9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { font-size: 1.15rem; padding: 18px 40px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-300); }
.testimonial-stars { color: #f5a623; font-size: 1.2rem; margin-bottom: 14px; }
.testimonial-text { font-size: .95rem; color: var(--gray-700); margin-bottom: 18px; font-style: italic; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.testimonial-name { font-weight: 700; font-size: .95rem; }
.testimonial-location { font-size: .82rem; color: var(--gray-500); }

/* ===== PROCESS STEPS ===== */
.process-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 32px; counter-reset: process; }
.process-step { text-align: center; position: relative; counter-increment: process; }
.process-step::before { content: counter(process); display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--primary); color: var(--white); font-size: 1.4rem; font-weight: 800; border-radius: 50%; margin: 0 auto 20px; }
.process-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: .9rem; color: var(--gray-500); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 48px; }
.footer-col h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 3px; }
.footer-col p { font-size: .9rem; line-height: 1.8; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: .9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.footer-contact svg { width: 18px; height: 18px; fill: var(--primary); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; text-align: center; font-size: .85rem; }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--primary); padding: 12px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.2); }
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--white); font-size: 1.15rem; font-weight: 800; }
.sticky-cta svg { width: 24px; height: 24px; fill: var(--white); animation: pulse-phone 1.5s infinite; }
@keyframes pulse-phone {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--gray-100); padding: 14px 0; border-bottom: 1px solid var(--gray-300); }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: .88rem; flex-wrap: wrap; }
.breadcrumb-list a { color: var(--primary); font-weight: 600; }
.breadcrumb-list span { color: var(--gray-500); }
.breadcrumb-list .separator { color: var(--gray-300); }

/* ===== CONTENT PAGE ===== */
.page-hero { background: linear-gradient(135deg, #0a5c2e 0%, #1565c0 100%); padding: 80px 0; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,.08)"/><circle cx="60" cy="40" r="1" fill="rgba(255,255,255,.06)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,.05)"/></svg>') repeat; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.8rem; font-weight: 900; margin-bottom: 16px; line-height: 1.15; }
.page-hero p { font-size: 1.15rem; opacity: .9; max-width: 680px; margin: 0 auto 28px; }

.content-section { padding: 60px 0; }
.content-section h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; color: var(--dark); }
.content-section h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.content-section p { margin-bottom: 16px; color: var(--gray-700); }
.content-section ul { margin-bottom: 16px; padding-left: 0; }
.content-section ul li { padding: 6px 0; padding-left: 24px; position: relative; color: var(--gray-700); }
.content-section ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.sidebar-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); padding: 28px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.sidebar-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: var(--dark); }

/* ===== SCHEMA RICH SNIPPETS ===== */
.rating-display { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.rating-stars { color: #f5a623; font-size: 1.1rem; }
.rating-text { font-size: .9rem; color: var(--gray-500); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */

/* Tablet & small desktop: collapse nav to hamburger, hide top bar */
@media (max-width: 1024px) {
  .top-bar { display: none; }
  .nav { position: fixed; top: 0; right: -100%; width: 85%; max-width: 380px; height: 100vh; background: var(--white); flex-direction: column; align-items: stretch; padding: 24px; box-shadow: var(--shadow-xl); transition: right .3s ease; z-index: 999; overflow-y: auto; gap: 0; }
  .nav.open { right: 0; }
  .nav a { padding: 16px 18px; font-size: 1.05rem; border-bottom: 1px solid var(--gray-100); border-radius: 0; white-space: normal; }
  .nav a:first-child { margin-top: 48px; }
  .nav .nav-cta-btn { display: inline-flex !important; margin: 16px 0 0; padding: 16px 24px; font-size: 1.1rem; text-align: center; border-radius: var(--radius-sm); border-bottom: none; justify-content: center; color: var(--white); }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 0 16px; background: var(--gray-100); border-radius: var(--radius-sm); margin: 4px 0 8px; min-width: unset; }
  .nav-dropdown-menu a { padding: 12px 16px; font-size: 1rem; }
  .nav-dropdown > a::after { content: '▾'; }
  .hamburger { display: flex; z-index: 1001; }
  .header-cta .btn { display: none; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { display: none; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 1.9rem; }
  .header-cta .header-phone { font-size: .92rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .cta-banner h2 { font-size: 1.7rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: block; }
  body { padding-bottom: 60px; }
  .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 576px) {
  .header .container { gap: 8px; }
  .header-cta .header-phone { display: none; }
  .header-cta { gap: 8px; }
  .logo-text { font-size: 1.05rem; }
  .logo-text span { font-size: .6rem; }
  .logo-icon { width: 36px; height: 36px; }
  .logo-icon svg { width: 20px; height: 20px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .coupons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 24px; justify-content: flex-start; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; }
.nav-overlay.show { display: block; }

/* ===== PRINT ===== */
@media print {
  .header, .footer, .sticky-cta, .cta-banner { display: none; }
  .section { padding: 20px 0; }
}
