/* =========================================
   AISEOlift.com - Main Stylesheet
   Brand: Black #1E1E1E | Orange #F27828
   ========================================= */

:root {
  --orange: #F27828;
  --orange-dark: #d4661a;
  --black: #1E1E1E;
  --dark: #111111;
  --gray: #6b7280;
  --light-gray: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Inter', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: #4b5563; font-size: 1rem; line-height: 1.75; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,120,40,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ── Badge ── */
.badge { display: inline-block; background: rgba(242,120,40,0.12); color: var(--orange); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }

/* ── Section Titles ── */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { color: var(--black); margin-bottom: 12px; }
.section-title p { color: var(--gray); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Highlight ── */
.highlight { color: var(--orange); }
.text-center { text-align: center; }

/* =========================================
   HEADER / NAV
   ========================================= */
#header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 44px; }
.logo-text { font-size: 1.3rem; font-weight: 800; }
.logo-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--black); transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.2s; z-index: 100; }
.nav-links .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 8px 12px; border-radius: 6px; font-size: 0.88rem; color: var(--black); }
.dropdown-menu a:hover { background: var(--light-gray); color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }

/* =========================================
   HERO
   ========================================= */
.hero { padding: 140px 0 90px; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(242,120,40,0.15) 0%, transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(242,120,40,0.15); border: 1px solid rgba(242,120,40,0.3); color: var(--orange); padding: 8px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--orange); }
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; width: 100%; max-width: 380px; backdrop-filter: blur(10px); }
.hero-card-title { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.rank-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.rank-item:last-child { border: none; }
.rank-pos { width: 28px; height: 28px; border-radius: 6px; background: var(--orange); color: white; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rank-info { flex: 1; }
.rank-info strong { display: block; color: var(--white); font-size: 0.88rem; }
.rank-info span { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.rank-arrow { color: #22c55e; font-size: 0.85rem; font-weight: 700; }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.6} }

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar { background: var(--light-gray); padding: 20px 0; border-bottom: 1px solid var(--border); }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--gray); }
.trust-item .icon { color: var(--orange); font-size: 1.1rem; }

/* =========================================
   SERVICES
   ========================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 0.3s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: rgba(242,120,40,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; }
.service-card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.service-card ul li { font-size: 0.88rem; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.service-card ul li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* =========================================
   WHY US
   ========================================= */
.why-us { background: var(--light-gray); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { margin-bottom: 20px; }
.why-content p { margin-bottom: 28px; }
.why-points { display: flex; flex-direction: column; gap: 16px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-point-icon { width: 40px; height: 40px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; flex-shrink: 0; }
.why-point-text strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.why-point-text span { font-size: 0.88rem; color: var(--gray); }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat-card { background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); }
.why-stat-card strong { display: block; font-size: 2rem; font-weight: 800; color: var(--orange); margin-bottom: 4px; }
.why-stat-card span { font-size: 0.85rem; color: var(--gray); }

/* =========================================
   CITIES SECTION
   ========================================= */
.cities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.city-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; transition: all 0.2s; cursor: pointer; }
.city-card:hover { border-color: var(--orange); background: rgba(242,120,40,0.05); transform: translateY(-2px); }
.city-card a { display: block; }
.city-card .city-name { font-size: 0.95rem; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.city-card .city-pop { font-size: 0.78rem; color: var(--gray); }

/* =========================================
   PROCESS
   ========================================= */
.process { background: var(--dark); }
.process .section-title h2 { color: var(--white); }
.process .section-title p { color: rgba(255,255,255,0.6); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--orange), transparent); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 80px; height: 80px; border-radius: 50%; background: rgba(242,120,40,0.15); border: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: var(--orange); margin: 0 auto 20px; }
.process-step h3 { color: var(--white); margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* =========================================
   PRICING
   ========================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; position: relative; transition: all 0.3s; }
.pricing-card.popular { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,120,40,0.15); transform: scale(1.03); }
.popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; padding: 4px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; white-space: nowrap; }
.pricing-card h3 { font-size: 1rem; color: var(--gray); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-price { font-size: 2.8rem; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 10px; }
.pricing-price sub { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.pricing-desc { font-size: 0.88rem; color: var(--gray); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.pricing-features li .check { color: var(--orange); font-weight: 700; flex-shrink: 0; }
.pricing-features li .cross { color: #d1d5db; flex-shrink: 0; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--light-gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.testi-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 0.95rem; color: var(--black); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testi-name strong { display: block; font-size: 0.92rem; }
.testi-name span { font-size: 0.82rem; color: var(--gray); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section { background: linear-gradient(135deg, var(--orange) 0%, #e05a10 100%); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   QUOTE FORM
   ========================================= */
.quote-section { background: var(--dark); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.quote-info h2 { color: var(--white); margin-bottom: 16px; }
.quote-info p { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.quote-benefits { display: flex; flex-direction: column; gap: 14px; }
.quote-benefit { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.quote-benefit .icon { color: var(--orange); font-size: 1.1rem; }
.quote-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; }
.quote-form-wrap h3 { margin-bottom: 6px; }
.quote-form-wrap > p { font-size: 0.88rem; color: var(--gray); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.92rem; color: var(--black); font-family: var(--font); transition: border-color 0.2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 80px; }
.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-pill { display: inline-block; padding: 7px 14px; border: 1.5px solid var(--border); border-radius: 20px; font-size: 0.82rem; cursor: pointer; transition: all 0.2s; color: var(--gray); user-select: none; }
.radio-pill:hover { border-color: var(--orange); color: var(--orange); }
.radio-pill input { display: none; }
.radio-pill.selected { background: var(--orange); border-color: var(--orange); color: white; }
.form-submit { width: 100%; padding: 14px; background: var(--orange); color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 4px; }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* =========================================
   FOOTER
   ========================================= */
footer { background: #0a0a0a; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 14px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* =========================================
   CITY / LOCATION PAGES
   ========================================= */
.page-hero { padding: 130px 0 70px; background: linear-gradient(135deg, #0a0a0a, #1a1a2e); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 620px; margin-bottom: 28px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

.local-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.local-feature { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.local-feature h4 { margin-bottom: 8px; }
.local-feature p { font-size: 0.88rem; }

.faq-section { background: var(--light-gray); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { padding: 18px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 0.97rem; }
.faq-q .arrow { transition: transform 0.3s; color: var(--orange); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 0.92rem; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* =========================================
   BLOG
   ========================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, #1a1a2e, #16213e); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.blog-body { padding: 20px; }
.blog-meta { display: flex; gap: 10px; font-size: 0.78rem; color: var(--gray); margin-bottom: 10px; }
.blog-cat { color: var(--orange); font-weight: 600; }
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.88rem; margin-bottom: 14px; }
.blog-card a.read-more { color: var(--orange); font-size: 0.88rem; font-weight: 600; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-hero { padding: 130px 0 70px; background: linear-gradient(135deg, #0a0a0a, #1a1a2e); text-align: center; }
.about-hero h1 { color: var(--white); margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { background: linear-gradient(135deg, var(--orange), #e05a10); border-radius: var(--radius-lg); height: 380px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.value-card { background: var(--light-gray); border-radius: var(--radius); padding: 24px; }
.value-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.value-card h4 { margin-bottom: 6px; }
.value-card p { font-size: 0.88rem; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(242,120,40,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.2rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.contact-item span { font-size: 0.88rem; color: var(--gray); }
.calendly-embed { background: var(--light-gray); border-radius: var(--radius-lg); padding: 28px; text-align: center; border: 2px dashed var(--orange); }
.calendly-embed h3 { margin-bottom: 8px; }
.calendly-embed p { font-size: 0.9rem; margin-bottom: 20px; }

/* =========================================
   MOBILE NAV
   ========================================= */
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 24px; z-index: 999; box-shadow: var(--shadow-lg); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--black); }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .btn { margin-top: 14px; display: block; text-align: center; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid, .quote-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: scale(1); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .why-visual { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .trust-items { gap: 20px; }
  .local-features { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   BACK TO TOP
   ========================================= */
.back-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 999; box-shadow: 0 4px 14px rgba(242,120,40,0.4); }
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-3px); }

/* =========================================
   NOTICE BAR
   ========================================= */
.notice-bar { background: var(--orange); color: white; text-align: center; padding: 10px 24px; font-size: 0.88rem; font-weight: 500; }
.notice-bar a { color: white; text-decoration: underline; }
