/* ============================================================
   Pressure Washing Lead-Gen Template — Master Stylesheet
   ============================================================ */

/* — Custom Properties — */
:root {
  --primary: #1A56DB;
  --primary-rgb: 26, 86, 219;
  --accent: #F97316;
  --accent-rgb: 249, 115, 22;
  --bg: #FFFFFF;
  --bg-alt: #F3F4F6;
  --bg-dark: #111827;
  --text: #111827;
  --text-light: #6B7280;
  --text-on-dark: #F9FAFB;
  --border: #E5E7EB;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --max-width: 1200px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --transition: 0.3s ease;
}

/* — Reset — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* — Typography — */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; color: var(--bg-dark); }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
p { margin-bottom: 1rem; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

/* — Layout — */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3 { color: var(--text-on-dark); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { color: var(--text-light); font-size: 1.125rem; max-width: 640px; margin: 12px auto 0; }
.section-label { display: inline-block; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 12px; }
.section-dark .section-label { color: var(--accent); }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* — Buttons — */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem; transition: all var(--transition); white-space: nowrap; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #EA580C; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.3); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #1E40AF; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--bg-alt); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.125rem; }
.btn svg, .btn i { width: 20px; height: 20px; }

/* — Top Bar — */
.top-bar { background: var(--primary); color: #fff; padding: 8px 0; font-size: 0.875rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: #fff; font-weight: 500; }
.top-bar a:hover { opacity: 0.85; }
.top-bar-left { display: flex; gap: 24px; align-items: center; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-badge { background: var(--accent); padding: 2px 10px; border-radius: 20px; font-weight: 700; font-size: 0.75rem; }

/* — Header — */
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-weight: 500; color: var(--text); transition: color var(--transition); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width var(--transition); }
.nav-links a:hover::after { width: 100%; }
.header-cta { display: flex; gap: 12px; align-items: center; }
.header-phone { font-weight: 700; color: var(--primary); font-size: 1.0625rem; }
.hamburger { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 6px; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text); transition: all var(--transition); }

/* — Hero — */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.85) 0%, rgba(17, 24, 39, 0.75) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; color: #fff; padding: 40px 0; }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content h1 .highlight { color: var(--accent); }
.hero-content p { font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 560px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); padding: 8px 16px; border-radius: 30px; font-size: 0.875rem; font-weight: 600; margin-bottom: 20px; }
.hero-badge svg { color: var(--accent); }

/* — Trust Bar — */
.trust-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar .container { display: flex; justify-content: center; gap: 48px; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; font-weight: 600; color: var(--text); }
.trust-item svg { width: 28px; height: 28px; color: var(--primary); flex-shrink: 0; }
.trust-item .stars { color: #FBBF24; }
.trust-item strong { color: var(--primary); }

/* — Service Cards — */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body h3 a { color: var(--bg-dark); transition: color var(--transition); }
.service-card-body h3 a:hover { color: var(--primary); }
.service-card-body p { color: var(--text-light); font-size: 0.9375rem; margin-bottom: 16px; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.9375rem; }
.service-card-link:hover { gap: 10px; }

/* — Stats Counter — */
.stats { background: var(--bg-dark); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { color: #fff; }
.stat-number { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.9375rem; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* — Before/After Gallery — */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 24px; }
.ba-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: grab; box-shadow: var(--shadow); }
.ba-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-card .ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0.05s linear; }
.ba-card .ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; z-index: 10; transform: translateX(-50%); pointer-events: none; }
.ba-card .ba-divider::before { content: '\2039\00a0\203A'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; background: #fff; border-radius: 50%; box-shadow: 0 2px 12px rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; color: var(--primary); letter-spacing: 4px; z-index: 1; }
.ba-label { position: absolute; bottom: 12px; padding: 4px 12px; background: rgba(0,0,0,0.7); color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; border-radius: 4px; z-index: 5; }
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* — Why Choose Us — */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.feature-card { padding: 32px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); text-align: center; transition: all var(--transition); }
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.feature-icon { width: 56px; height: 56px; background: rgba(var(--primary-rgb), 0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); }
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-light); font-size: 0.9375rem; margin: 0; }

/* — Process Steps — */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 20%; right: 20%; height: 2px; background: var(--border); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 72px; height: 72px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3); }
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--text-light); font-size: 0.9375rem; max-width: 280px; margin: 0 auto; }

/* — Testimonials — */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.testimonial-stars { color: #FBBF24; font-size: 1.25rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: 1.125rem; }
.testimonial-name { font-weight: 700; font-size: 0.9375rem; }
.testimonial-role { font-size: 0.8125rem; color: var(--text-light); }

/* — Service Area — */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.area-card { padding: 20px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border); display: flex; align-items: center; gap: 12px; transition: all var(--transition); }
.area-card:hover { border-color: var(--primary); background: rgba(var(--primary-rgb), 0.03); }
.area-card svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.area-card span { font-weight: 600; }

/* — CTA Banner — */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, #1E3A5F 100%); padding: 64px 0; text-align: center; color: #fff; }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.125rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { margin: 0 8px; }

/* — FAQ — */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 1.0625rem; font-weight: 600; text-align: left; color: var(--text); cursor: pointer; }
.faq-question svg { width: 24px; height: 24px; color: var(--primary); transition: transform var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 20px; color: var(--text-light); line-height: 1.7; }

/* — Contact Form — */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(var(--primary-rgb), 0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-text strong { display: block; margin-bottom: 4px; }
.contact-info-text span, .contact-info-text a { color: var(--text-light); }
.contact-info-text a:hover { color: var(--primary); }
.contact-form { background: #fff; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 1rem; transition: border-color var(--transition); background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* — Blog Cards — */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 0.8125rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.125rem; margin-bottom: 8px; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--text-light); font-size: 0.9375rem; }

/* — Footer — */
.site-footer { background: var(--bg-dark); color: var(--text-on-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; max-width: 320px; }
.footer-col h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.9375rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; align-items: start; margin-bottom: 12px; color: rgba(255,255,255,0.6); font-size: 0.9375rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8125rem; margin: 0; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-social a:hover { color: var(--accent); }

/* — Mobile Bottom Bar — */
.mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--bg-dark); padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-bottom-bar .container { display: flex; gap: 12px; }
.mobile-bottom-bar .btn { flex: 1; justify-content: center; padding: 14px; font-size: 0.9375rem; }

/* — Page Hero (inner pages) — */
.page-hero { background: var(--bg-dark); padding: 100px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%); }
.page-hero h1 { color: #fff; margin-bottom: 16px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 600px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; font-size: 0.875rem; position: relative; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* — Service Detail Page — */
.service-detail { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.service-content h2 { font-size: 1.5rem; margin: 32px 0 16px; }
.service-content p { color: var(--text-light); line-height: 1.8; }
.service-content ul { margin: 16px 0; padding-left: 0; }
.service-content ul li { padding: 8px 0 8px 28px; position: relative; color: var(--text-light); }
.service-content ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.service-sidebar { position: sticky; top: 100px; }
.sidebar-cta { background: var(--primary); color: #fff; padding: 32px; border-radius: var(--radius); text-align: center; margin-bottom: 24px; }
.sidebar-cta h3 { color: #fff; margin-bottom: 12px; font-size: 1.25rem; }
.sidebar-cta p { color: rgba(255,255,255,0.85); margin-bottom: 20px; font-size: 0.9375rem; }
.sidebar-services { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.sidebar-services h4 { font-size: 1rem; margin-bottom: 16px; }
.sidebar-services ul li { border-bottom: 1px solid var(--border); }
.sidebar-services ul li:last-child { border-bottom: none; }
.sidebar-services ul a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; color: var(--text); font-weight: 500; transition: color var(--transition); }
.sidebar-services ul a:hover { color: var(--primary); }
.sidebar-services ul a.active { color: var(--primary); font-weight: 700; }

/* — Gallery Page — */
.gallery-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background var(--transition); }
.gallery-item:hover::after { background: rgba(0,0,0,0.15); }
.gallery-filters { display: flex; gap: 12px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.gallery-filter-btn { padding: 8px 20px; border-radius: 30px; border: 1px solid var(--border); font-weight: 500; font-size: 0.875rem; transition: all var(--transition); }
.gallery-filter-btn:hover, .gallery-filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* — Reviews Page — */
.reviews-summary { display: flex; align-items: center; gap: 32px; background: #fff; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 40px; }
.reviews-score { text-align: center; min-width: 140px; }
.reviews-score .big-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.reviews-score .stars { color: #FBBF24; font-size: 1.5rem; margin: 8px 0 4px; }
.reviews-score p { color: var(--text-light); font-size: 0.875rem; }

/* — Animations — */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 24px 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .top-bar-right { display: none; }
  .trust-bar .container { gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .services-grid, .testimonials-grid, .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 72px; }
  .reviews-summary { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-bar .container { flex-direction: column; gap: 16px; }
  .area-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr; }
}

/* — Mobile Nav Overlay — */
.mobile-nav { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel { position: absolute; right: 0; top: 0; bottom: 0; width: 300px; background: #fff; padding: 24px; transform: translateX(100%); transition: transform var(--transition); }
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; margin-left: auto; margin-bottom: 24px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 1.0625rem; }
.mobile-nav-links a:hover { color: var(--primary); }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }
