/* =============================================================
   WIN ELECTRIC LA — ELECTRIC NEON NOIR
   Dark backgrounds, electric blue + amber neon accents
   ============================================================= */

:root {
    --bg-dark: #0a0a12;
    --bg-section: #0d0d18;
    --bg-card: #12121f;
    --bg-card-hover: #181830;
    --blue: #00b4ff;
    --blue-glow: rgba(0, 180, 255, 0.3);
    --blue-dim: #0078aa;
    --amber: #ffbf00;
    --amber-glow: rgba(255, 191, 0, 0.3);
    --amber-dim: #c89400;
    --white: #f0f0f5;
    --gray: #8a8a9e;
    --gray-light: #b0b0c0;
    --text: #e0e0ea;
    --text-dim: #9090a5;
    --font-display: 'Chakra Petch', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --max-width: 1200px;
    --header-h: 64px;
}

/* 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-body);
    font-weight: 500;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Utility */
.text-blue { color: var(--blue); }
.text-amber { color: var(--amber); }
.text-left .section-title, .text-left { text-align: left; }

/* ---- HEADER ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 10, 18, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 180, 255, 0.1);
    transition: background 0.3s;
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
}
.logo-icon { font-size: 1.4rem; filter: drop-shadow(0 0 6px var(--blue-glow)); }
.logo-text { color: var(--white); }
.logo-accent { color: var(--blue); }

.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-light);
    transition: color 0.2s;
    position: relative;
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s;
    box-shadow: 0 0 8px var(--blue-glow);
}
.nav-desktop a:hover { color: var(--blue); }
.nav-desktop a:hover::after { width: 100%; }

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: var(--bg-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 20px var(--amber-glow);
}
.header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--amber-glow), 0 0 60px rgba(255, 191, 0, 0.15);
}
.phone-icon { font-size: 1.1rem; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--amber);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--amber-glow), 0 4px 15px rgba(0,0,0,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 40px var(--amber-glow), 0 8px 25px rgba(0,0,0,0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    box-shadow: 0 0 15px var(--blue-glow);
}
.btn-secondary:hover {
    background: var(--blue);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--blue-glow);
}
.btn-outline {
    background: transparent;
    color: var(--amber);
    border: 2px solid var(--amber);
}
.btn-outline:hover {
    background: var(--amber);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--amber-glow);
}
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-icon { font-size: 1.2rem; }

/* Pulse animation */
.btn-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 25px var(--amber-glow), 0 4px 15px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 0 45px var(--amber-glow), 0 0 80px rgba(255,191,0,0.15), 0 4px 15px rgba(0,0,0,0.3); }
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 20px) 24px 80px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,180,255,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(255,191,0,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0,180,255,0.04) 0%, transparent 40%),
        var(--bg-dark);
    overflow: hidden;
}

/* Spark particles */
.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--amber), 0 0 20px var(--amber-glow);
}
.spark-1 { top: 20%; left: 15%; animation: sparkle 3s ease-in-out infinite; }
.spark-2 { top: 60%; right: 20%; animation: sparkle 4s ease-in-out 1s infinite; }
.spark-3 { top: 40%; left: 70%; animation: sparkle 3.5s ease-in-out 0.5s infinite; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.5); }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.hero-glow-blue {
    width: 400px; height: 400px;
    background: rgba(0, 180, 255, 0.07);
    top: 10%; left: -5%;
    animation: float-glow 8s ease-in-out infinite;
}
.hero-glow-amber {
    width: 300px; height: 300px;
    background: rgba(255, 191, 0, 0.05);
    bottom: 10%; right: -5%;
    animation: float-glow 10s ease-in-out 2s infinite;
}
@keyframes float-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 191, 0, 0.1);
    border: 1px solid rgba(255, 191, 0, 0.3);
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--amber);
    margin-bottom: 24px;
    animation: hero-fade-in 0.8s ease-out;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--amber);
    border-radius: 50%;
    animation: badge-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--amber-glow);
}
@keyframes badge-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 20px;
}
.hero-line {
    display: block;
    animation: hero-text-in 0.8s ease-out both;
}
.hero-line-1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--white);
    letter-spacing: 8px;
    text-shadow: 0 0 40px var(--blue-glow);
    animation-delay: 0.1s;
}
.hero-line-2 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--blue);
    letter-spacing: 8px;
    text-shadow: 0 0 60px var(--blue-glow), 0 0 120px rgba(0,180,255,0.1);
    animation-delay: 0.25s;
}
.hero-line-3 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--amber);
    letter-spacing: 12px;
    margin-top: 8px;
    text-shadow: 0 0 30px var(--amber-glow);
    animation-delay: 0.4s;
}

@keyframes hero-text-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gray-light);
    margin-bottom: 16px;
    animation: hero-fade-in 0.8s ease-out 0.5s both;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    animation: hero-fade-in 0.8s ease-out 0.6s both;
}
.stars { display: flex; gap: 4px; }
.star {
    width: 18px; height: 18px;
    display: inline-block;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.star.filled { background: var(--amber); box-shadow: 0 0 8px var(--amber-glow); }
.rating-text {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--gray-light);
    letter-spacing: 1px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    animation: hero-fade-in 0.8s ease-out 0.7s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: hero-fade-in 0.8s ease-out 0.8s both;
}
.trust-item {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}
.trust-sep { color: var(--blue); font-size: 0.7rem; }

.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
}

/* ---- URGENCY ---- */
.urgency {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(255,191,0,0.05) 0%, transparent 50%),
        var(--bg-section);
    padding: 80px 0;
}
.urgency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.section-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}
.urgency-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
}
.urgency-body {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 28px;
    line-height: 1.7;
}
.urgency-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.stat-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 180, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--amber));
    opacity: 0.6;
}
.stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--amber);
    display: inline;
    text-shadow: 0 0 20px var(--amber-glow);
}
.stat-suffix {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--amber);
    text-shadow: 0 0 20px var(--amber-glow);
}
.stat-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

/* ---- SERVICES ---- */
.services {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0,180,255,0.04) 0%, transparent 50%),
        var(--bg-dark);
    padding: 100px 0;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 180, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0,180,255,0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 180, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 180, 255, 0.08), 0 0 40px rgba(0, 180, 255, 0.04);
}
.service-card:hover::after { opacity: 1; }
.service-icon-wrap {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 180, 255, 0.15);
}
.service-icon { font-size: 1.6rem; }
.service-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.service-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ---- PHOTO BAND ---- */
.photo-band {
    padding: 20px 0;
    background: var(--bg-section);
    border-top: 1px solid rgba(0, 180, 255, 0.08);
    border-bottom: 1px solid rgba(0, 180, 255, 0.08);
    overflow: hidden;
}
.photo-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--blue-dim) var(--bg-card);
}
.photo-scroll::-webkit-scrollbar { height: 6px; }
.photo-scroll::-webkit-scrollbar-track { background: var(--bg-card); }
.photo-scroll::-webkit-scrollbar-thumb { background: var(--blue-dim); border-radius: 3px; }
.photo-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 180, 255, 0.1);
}
.photo-item img {
    width: auto;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.photo-item:hover img { transform: scale(1.05); }

/* ---- REVIEWS ---- */
.reviews {
    background:
        radial-gradient(ellipse at 60% 20%, rgba(255,191,0,0.04) 0%, transparent 50%),
        var(--bg-dark);
    padding: 100px 0;
}
.review-featured {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 191, 0, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}
.review-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--blue), var(--amber));
}
.review-stars, .review-stars-sm { display: flex; gap: 4px; justify-content: center; margin-bottom: 20px; }
.review-stars .star { width: 22px; height: 22px; }
.review-stars-sm .star { width: 16px; height: 16px; }
.review-quote {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
}
.review-author {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--amber);
    letter-spacing: 1px;
    display: block;
    font-style: normal;
}
.review-time {
    font-size: 0.85rem;
    color: var(--gray);
    display: block;
    margin-top: 4px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}
.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 180, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.review-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 16px;
    font-style: italic;
}
.review-card cite {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--amber);
    font-style: normal;
    letter-spacing: 0.5px;
}

.reviews-cta { text-align: center; }

/* ---- WHY US ---- */
.why-us {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0,180,255,0.05) 0%, transparent 50%),
        var(--bg-section);
    padding: 100px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.why-card {
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 180, 255, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s;
}
.why-card:hover {
    border-color: rgba(0, 180, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.why-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--blue);
    text-shadow: 0 0 30px var(--blue-glow);
    margin-bottom: 12px;
}
.why-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.why-card p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ---- CONTACT ---- */
.contact {
    background:
        radial-gradient(ellipse at 70% 80%, rgba(255,191,0,0.05) 0%, transparent 50%),
        var(--bg-dark);
    padding: 100px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}
.contact .section-title { text-align: left; }
.contact-lead {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 36px;
}
.contact-details { margin-bottom: 36px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-icon {
    font-size: 1.4rem;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(0, 180, 255, 0.12);
    flex-shrink: 0;
}
.contact-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    display: block;
}
.contact-value {
    font-size: 1.05rem;
    color: var(--text);
    display: block;
}
.contact-value:hover { color: var(--blue); }

.contact-map {
    background: var(--bg-card);
    border: 1px solid rgba(0, 180, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-link {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.map-link:hover { background: rgba(0, 180, 255, 0.05); }
.map-placeholder { text-align: center; }
.map-pin { font-size: 3rem; display: block; margin-bottom: 12px; }
.map-text {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1px;
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--bg-section);
    border-top: 1px solid rgba(0, 180, 255, 0.08);
    padding: 48px 0 24px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 32px;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo-text { font-size: 1.2rem; }
.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 8px;
    line-height: 1.6;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 1px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }
.footer-phone a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--amber);
    letter-spacing: 1px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ---- FLOATING CTA ---- */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    display: none;
}
.floating-cta.visible { display: block; }
.btn-float {
    padding: 14px 28px;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 30px var(--amber-glow);
}

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--blue-dim); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .urgency-grid { grid-template-columns: 1fr; gap: 40px; }
    .urgency-stats { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { height: 200px; }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .header-phone { display: none; }
    .header-cta { padding: 10px 14px; border-radius: 50%; }

    .hero { min-height: 100svh; padding-top: calc(var(--header-h) + 16px); padding-bottom: 60px; }
    .hero-line-1, .hero-line-2 { font-size: clamp(2.8rem, 12vw, 4.5rem); letter-spacing: 4px; }
    .hero-line-3 { font-size: clamp(0.9rem, 3vw, 1.3rem); letter-spacing: 6px; }

    .services-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-featured { padding: 28px 20px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { flex-direction: column; text-align: center; align-items: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    .floating-cta.visible { display: block; }

    .photo-item img { height: 180px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .urgency-stats { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 340px; }
    .hero-trust { flex-direction: column; gap: 4px; }
    .trust-sep { display: none; }
    .stat-card { padding: 20px 16px; }

    .photo-band { padding: 12px 0; }
    .photo-item img { height: 55vw; width: 80vw; }
}
