/* ========================================
   PNWLights.com - Premium Christmas Light Installation
   Christmas Holiday Color Palette:
   - Primary: Deep midnight blue #0B1E3D
   - Secondary: Pure white #FFFFFF
   - Accent 1: Festive red #DC2626
   - Accent 2: Golden star #FFD700
   - Trust blue: #1E3A8A
   - CTA: Bright red #DC2626 (for CTAs)
======================================== */

/* ========================================
   RESET & BASE STYLES
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0A1628;
    --deep-frozen-blue: #0D1B2A;
    --ice-blue: #1B2838;
    --accent-gold: #FFD700;
    --accent-red: #DC2626;
    --trust-blue: #1E3A8A;
    --cta-red: #DC2626;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #E8E8E8;
    --border-light: #2C3E50;
    --white: #ffffff;
    --success-green: #2C5530;
    --christmas-blue: #0A1628;
    --snowflake-white: #FFFFFF;
    --frozen-overlay: rgba(10, 22, 40, 0.85);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(180deg, var(--deep-frozen-blue) 0%, var(--primary-blue) 50%, var(--ice-blue) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Subtle snow texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px, 250px 250px, 350px 350px, 180px 180px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 150px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ========================================
   CONTAINER & LAYOUT
======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

/* ========================================
   STICKY HEADER
======================================== */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--accent-gold);
}

.phone-icon {
    width: 20px;
    height: 20px;
}

.phone-number {
    display: none;
}

@media (min-width: 768px) {
    .phone-number {
        display: inline;
    }
}

/* ========================================
   BUTTONS & CTAs
======================================== */

.cta-button {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-primary {
    background-color: var(--cta-red);
    color: var(--white);
}

.cta-primary:hover {
    background-color: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(220, 38, 38, 0.4);
}

.cta-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.header-cta {
    padding: 10px 20px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .header-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ========================================
   HERO SECTION - Whimsical Christmas Village
======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 0;
    background: linear-gradient(180deg, #0a0a1a 0%, #0d1525 40%, #152035 100%);
    color: var(--white);
    overflow: hidden;
}

/* Hero Background - Starry Night Sky */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

/* Stars Effect */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 160px 120px, #fff, transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 250px 160px, #fff, transparent),
        radial-gradient(2px 2px at 300px 100px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 350px 60px, #fff, transparent),
        radial-gradient(2px 2px at 400px 140px, rgba(255,255,255,0.9), transparent);
    background-size: 400px 200px;
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Moon */
.moon {
    position: absolute;
    top: 80px;
    right: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #fffde8 0%, #ffedc0 50%, #e8d5a0 100%);
    border-radius: 50%;
    box-shadow:
        0 0 40px rgba(255, 248, 200, 0.4),
        0 0 80px rgba(255, 240, 180, 0.2),
        0 0 120px rgba(255, 230, 150, 0.1);
}

/* Magic Particles */
.magic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.magic-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffd700, 0 0 20px #ffa500;
    animation: float-particle 15s infinite ease-in-out;
}

.magic-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.magic-particles span:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; }
.magic-particles span:nth-child(3) { left: 35%; top: 30%; animation-delay: 4s; }
.magic-particles span:nth-child(4) { left: 50%; top: 70%; animation-delay: 1s; }
.magic-particles span:nth-child(5) { left: 65%; top: 25%; animation-delay: 3s; }
.magic-particles span:nth-child(6) { left: 75%; top: 55%; animation-delay: 5s; }
.magic-particles span:nth-child(7) { left: 85%; top: 35%; animation-delay: 2.5s; }
.magic-particles span:nth-child(8) { left: 90%; top: 65%; animation-delay: 4.5s; }
.magic-particles span:nth-child(9) { left: 5%; top: 45%; animation-delay: 1.5s; }
.magic-particles span:nth-child(10) { left: 45%; top: 15%; animation-delay: 3.5s; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

/* Village Scene */
.village-scene {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    min-height: 300px;
    z-index: 1;
}

.village-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Window Glow Animation */
.glow-window {
    filter: drop-shadow(0 0 8px rgba(255, 150, 50, 0.8));
    animation: window-flicker 4s infinite ease-in-out;
}

.glow-window:nth-child(odd) {
    animation-delay: 0.5s;
}

.glow-window:nth-child(even) {
    animation-delay: 1.5s;
}

@keyframes window-flicker {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 8px rgba(255, 150, 50, 0.8)); }
    50% { opacity: 0.9; filter: drop-shadow(0 0 12px rgba(255, 170, 70, 0.9)); }
}

/* Star on top of church */
.star-top {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    animation: star-pulse 2s infinite ease-in-out;
}

@keyframes star-pulse {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 230, 100, 1)); }
}

/* Lamp glow animation */
.lamp-glow {
    animation: lamp-pulse 3s infinite ease-in-out;
}

@keyframes lamp-pulse {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Christmas Lights Animation */
.christmas-lights circle {
    filter: drop-shadow(0 0 4px currentColor);
}

.light-red {
    fill: #ff3333;
    filter: drop-shadow(0 0 6px #ff3333) drop-shadow(0 0 10px #ff0000);
    animation: light-twinkle-red 1.5s infinite ease-in-out;
}

.light-green {
    fill: #33ff33;
    filter: drop-shadow(0 0 6px #33ff33) drop-shadow(0 0 10px #00ff00);
    animation: light-twinkle-green 1.8s infinite ease-in-out;
}

.light-yellow {
    fill: #ffff33;
    filter: drop-shadow(0 0 6px #ffff33) drop-shadow(0 0 10px #ffff00);
    animation: light-twinkle-yellow 2s infinite ease-in-out;
}

@keyframes light-twinkle-red {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 6px #ff3333) drop-shadow(0 0 10px #ff0000); }
    50% { opacity: 0.7; filter: drop-shadow(0 0 3px #ff3333) drop-shadow(0 0 5px #ff0000); }
}

@keyframes light-twinkle-green {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 6px #33ff33) drop-shadow(0 0 10px #00ff00); }
    50% { opacity: 0.6; filter: drop-shadow(0 0 3px #33ff33) drop-shadow(0 0 5px #00ff00); }
}

@keyframes light-twinkle-yellow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 6px #ffff33) drop-shadow(0 0 10px #ffff00); }
    50% { opacity: 0.65; filter: drop-shadow(0 0 3px #ffff33) drop-shadow(0 0 5px #ffff00); }
}

/* Blue lights */
.light-blue {
    fill: #33ccff;
    filter: drop-shadow(0 0 6px #33ccff) drop-shadow(0 0 10px #00aaff);
    animation: light-twinkle-blue 1.7s infinite ease-in-out;
}

@keyframes light-twinkle-blue {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 6px #33ccff) drop-shadow(0 0 10px #00aaff); }
    50% { opacity: 0.65; filter: drop-shadow(0 0 3px #33ccff) drop-shadow(0 0 5px #00aaff); }
}

/* Star light - extra bright */
.light-star {
    fill: #ffffcc;
    filter: drop-shadow(0 0 10px #ffffaa) drop-shadow(0 0 20px #ffdd00) drop-shadow(0 0 30px #ffaa00);
    animation: light-star-pulse 2s infinite ease-in-out;
}

@keyframes light-star-pulse {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px #ffffaa) drop-shadow(0 0 20px #ffdd00) drop-shadow(0 0 30px #ffaa00);
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        filter: drop-shadow(0 0 15px #ffffcc) drop-shadow(0 0 30px #ffee00) drop-shadow(0 0 45px #ffcc00);
        transform: scale(1.15);
    }
}

/* Stagger the light animations */
.christmas-lights circle:nth-child(odd) {
    animation-delay: 0.3s;
}

.christmas-lights circle:nth-child(3n) {
    animation-delay: 0.6s;
}

.christmas-lights circle:nth-child(5n) {
    animation-delay: 0.9s;
}

/* ========================================
   JEALOUS VS FEATURED HOUSE STYLES
======================================== */

/* Dim windows for jealous/plain houses */
.dim-window {
    fill: #3a2810;
    filter: none;
    opacity: 0.7;
}

/* Some jealous houses have slightly warmer (but still dim) windows - they want lights too */
.house-plain:nth-child(3) .dim-window {
    fill: #4a3818;
    opacity: 0.8;
}

/* Bright windows for featured house */
.bright-window {
    filter: drop-shadow(0 0 15px rgba(255, 200, 60, 0.9))
            drop-shadow(0 0 30px rgba(255, 180, 40, 0.6))
            drop-shadow(0 0 50px rgba(255, 150, 20, 0.3));
    animation: bright-window-glow 3s infinite ease-in-out;
}

@keyframes bright-window-glow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 200, 60, 0.9))
                drop-shadow(0 0 30px rgba(255, 180, 40, 0.6))
                drop-shadow(0 0 50px rgba(255, 150, 20, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 220, 80, 1))
                drop-shadow(0 0 40px rgba(255, 200, 60, 0.7))
                drop-shadow(0 0 60px rgba(255, 170, 40, 0.4));
    }
}

/* Featured house - ambient glow around the whole house */
.house-featured {
    filter: drop-shadow(0 0 40px rgba(255, 200, 100, 0.3))
            drop-shadow(0 0 80px rgba(255, 180, 80, 0.15));
}

/* Spectacular roof lights - bigger glow */
.roof-lights circle {
    filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 15px currentColor);
}

/* Eave lights - subtle gradient shimmer */
.eave-lights circle {
    animation-duration: 1.2s;
}

/* Window frame lights - delicate */
.window-lights circle {
    opacity: 0.95;
}

/* Door frame lights */
.door-lights circle {
    animation-duration: 1.4s;
}

/* Yard lights - ground level glow */
.yard-lights circle {
    filter: drop-shadow(0 0 10px currentColor) drop-shadow(0 0 20px currentColor);
    animation-duration: 2s;
}

/* Tree lights near featured house */
.tree-light {
    filter: drop-shadow(0 0 6px currentColor) drop-shadow(0 0 12px currentColor);
}

/* Lit tree is brighter */
.lit-tree polygon {
    filter: drop-shadow(0 0 10px rgba(100, 200, 100, 0.3));
}

/* Bright lamp near featured house */
.bright-lamp {
    animation: bright-lamp-pulse 2.5s infinite ease-in-out;
}

@keyframes bright-lamp-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 230, 150, 0.5));
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
        filter: drop-shadow(0 0 30px rgba(255, 240, 180, 0.6));
    }
}

/* Chimney smoke animation */
.chimney-smoke circle {
    animation: smoke-rise 4s infinite ease-out;
}

.chimney-smoke circle:nth-child(1) {
    animation-delay: 0s;
}

.chimney-smoke circle:nth-child(2) {
    animation-delay: 1.3s;
}

.chimney-smoke circle:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes smoke-rise {
    0% {
        opacity: 0.3;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(1.5);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 180px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #ffd700;
}

.badge-star {
    font-size: 16px;
}

/* Hero Headline - Whimsical Style */
.hero-headline {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    color: #fff;
    text-shadow:
        0 0 40px rgba(255, 200, 100, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.headline-accent {
    color: #ffd700;
    display: block;
    text-shadow:
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 180, 50, 0.3);
}

/* Hero Supporting Text */
.hero-supporting {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin-bottom: 36px;
}

@media (min-width: 768px) {
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
}

/* Primary CTA - Glowing Effect */
.cta-glow {
    background: linear-gradient(135deg, #ff6b35 0%, #dc2626 100%);
    box-shadow:
        0 4px 15px rgba(220, 38, 38, 0.4),
        0 0 30px rgba(255, 107, 53, 0.3);
    border: none;
    transition: all 0.3s ease;
}

.cta-glow:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 20px rgba(220, 38, 38, 0.5),
        0 0 40px rgba(255, 107, 53, 0.4);
}

.cta-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-glow:hover .cta-icon {
    transform: translateX(4px);
}

/* Secondary CTA */
.hero .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.hero .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

.cta-icon-left {
    width: 18px;
    height: 18px;
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item-hero {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.trust-item-hero svg {
    width: 18px;
    height: 18px;
    color: #ffd700;
}

.trust-item-hero .stars {
    color: #ffd700;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Mobile Responsive - Hero */
@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 90px 16px 0;
    }

    .hero-content {
        padding-bottom: 220px;
    }

    .moon {
        width: 50px;
        height: 50px;
        top: 70px;
        right: 10%;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-headline {
        font-size: 34px;
    }

    .hero-headline br {
        display: none;
    }

    .headline-accent {
        display: inline;
    }

    .hero-supporting {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-cta-group {
        width: 100%;
        max-width: 320px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .village-scene {
        height: 35%;
        min-height: 200px;
    }

    .hero-trust {
        gap: 16px;
    }

    .trust-item-hero {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .hero-content {
        padding-bottom: 180px;
    }

    .village-scene {
        height: 30%;
        min-height: 150px;
    }
}

/* ========================================
   SECTION STYLES
======================================== */

section {
    padding: 80px 0;
}

.section-headline {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.section-subheadline {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtext {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .section-headline {
        font-size: 32px;
    }

    .section-subheadline {
        font-size: 18px;
    }
}

/* ========================================
   GALLERY SECTION
======================================== */

.gallery {
    background: linear-gradient(180deg, var(--ice-blue) 0%, var(--deep-frozen-blue) 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 25% 50%, rgba(255, 255, 255, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.025) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 100% 100%, 250px 250px, 300px 300px, 200px 200px;
    background-position: 0 0, 0 0, 0 0, 50px 50px, 100px 25px;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(27, 40, 56, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.gallery-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-blue);
}

.gallery-caption {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

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

/* ========================================
   SERVICE SECTION
======================================== */

.service-section {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--ice-blue) 100%);
    position: relative;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 15% 70%, rgba(255, 255, 255, 0.025) 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 55% 85%, rgba(255, 255, 255, 0.03) 2px, transparent 2px);
    background-size: 100% 100%, 100% 100%, 220px 220px, 280px 280px, 240px 240px;
    background-position: 0 0, 0 0, 0 0, 75px 100px, 50px 150px;
    pointer-events: none;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-column {
    text-align: center;
    padding: 30px 20px;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--accent-gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Process Timeline */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    padding: 0 20px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.timeline-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.timeline-step p {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.timeline-line {
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0 10px;
}

@media (max-width: 767px) {
    .timeline-line {
        width: 40px;
        margin: 0 5px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .timeline-step p {
        font-size: 12px;
    }
}

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

/* ========================================
   WHY PROFESSIONAL SECTION
======================================== */

.why-professional {
    background: linear-gradient(180deg, var(--deep-frozen-blue) 0%, var(--primary-blue) 100%);
    position: relative;
}

.why-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 35% 60%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 45% 90%, rgba(255, 255, 255, 0.025) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 100% 100%, 260px 260px, 290px 290px, 230px 230px;
    background-position: 0 0, 0 0, 0 0, 60px 80px, 120px 40px;
    pointer-events: none;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 1024px) {
    .comparison-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.comparison-column {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(27, 40, 56, 0.8) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.comparison-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-icon.beauty {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
}

.comparison-icon.safety {
    background-color: rgba(46, 91, 126, 0.2);
    color: var(--trust-blue);
}

.comparison-icon.time {
    background-color: rgba(44, 85, 48, 0.2);
    color: var(--primary-blue);
}

.comparison-icon svg {
    width: 32px;
    height: 32px;
}

.comparison-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
}

.safety-warning {
    font-weight: 600;
    color: var(--accent-red);
}

.value-proposition {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.value-math {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

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

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials {
    background: linear-gradient(180deg, var(--ice-blue) 0%, var(--deep-frozen-blue) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 45%, rgba(255, 255, 255, 0.025) 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 2px, transparent 2px);
    background-size: 100% 100%, 100% 100%, 270px 270px, 310px 310px, 245px 245px;
    background-position: 0 0, 0 0, 0 0, 90px 45px, 30px 120px;
    pointer-events: none;
}

.google-review-banner {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(27, 40, 56, 0.8) 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.google-review-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.google-icon {
    flex-shrink: 0;
}

.google-review-text {
    text-align: left;
}

.google-stars {
    color: #FFC107;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.google-rating {
    font-size: 16px;
    color: var(--white);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .google-review-content {
        flex-direction: column;
        text-align: center;
    }

    .google-review-text {
        text-align: center;
    }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(27, 40, 56, 0.7) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
}

.social-proof-stats {
    text-align: center;
    padding: 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 12px;
}

.stats-line {
    font-size: 20px;
    margin-bottom: 10px;
}

/* ========================================
   LOCAL CREDIBILITY SECTION
======================================== */

.local-credibility {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--ice-blue) 100%);
    position: relative;
}

.local-credibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 80% 75%, rgba(255, 255, 255, 0.025) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 100% 100%, 255px 255px, 295px 295px, 235px 235px;
    background-position: 0 0, 0 0, 0 0, 110px 70px, 45px 135px;
    pointer-events: none;
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 1024px) {
    .credibility-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.credibility-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.credentials {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(27, 40, 56, 0.8) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.credentials-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 12px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--success-green);
    flex-shrink: 0;
}

.service-area {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(27, 40, 56, 0.8) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-area-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.service-area-map {
    max-width: 400px;
    margin: 0 auto 30px;
    background: rgba(10, 22, 40, 0.5);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.counties-served {
    margin: 30px 0;
}

.counties-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.county-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--white);
    font-size: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.county-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.county-item.primary {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.6);
    position: relative;
}

.county-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
    text-transform: uppercase;
}

.cities-details {
    background: rgba(10, 22, 40, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.cities-summary {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    list-style: none;
    padding: 10px;
    text-align: center;
    user-select: none;
    transition: color 0.3s ease;
}

.cities-summary::-webkit-details-marker {
    display: none;
}

.cities-summary::after {
    content: ' ▼';
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cities-details[open] .cities-summary::after {
    transform: rotate(180deg);
}

.cities-summary:hover {
    color: var(--white);
}

.cities-by-county {
    padding: 15px 10px 5px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.county-group {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.county-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.county-group h5 {
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.county-group p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.service-note {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    text-align: center;
    margin: 0;
}

/* ========================================
   FAQ SECTION
======================================== */

.faq {
    background: linear-gradient(180deg, var(--deep-frozen-blue) 0%, var(--primary-blue) 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.025) 1.5px, transparent 1.5px),
        radial-gradient(circle at 65% 70%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.03) 2px, transparent 2px);
    background-size: 100% 100%, 100% 100%, 265px 265px, 285px 285px, 250px 250px;
    background-position: 0 0, 0 0, 0 0, 70px 90px, 140px 30px;
    pointer-events: none;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(27, 40, 56, 0.7) 100%);
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ========================================
   URGENCY SECTION
======================================== */

.urgency {
    background: linear-gradient(180deg, var(--ice-blue) 0%, var(--deep-frozen-blue) 100%);
    position: relative;
}

.urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 35% 65%, rgba(255, 255, 255, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.025) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 100% 100%, 275px 275px, 305px 305px, 260px 260px;
    background-position: 0 0, 0 0, 0 0, 85px 60px, 155px 110px;
    pointer-events: none;
}

.urgency-text {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.availability-notice {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(27, 40, 56, 0.8) 100%);
    border-left: 4px solid var(--accent-red);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.availability-notice > div {
    flex: 1;
}

.calendar-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.availability-text {
    font-size: 18px;
    color: var(--white);
    margin: 0 0 8px 0;
}

.availability-subtext {
    font-size: 15px;
    color: var(--text-medium);
    margin: 0;
    font-weight: 600;
}

.urgency-benefit {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(27, 40, 56, 0.8) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.urgency-benefit-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
}

.urgency-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.urgency-benefit-list li {
    font-size: 16px;
    color: var(--white);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* ========================================
   CONVERSION FORM SECTION
======================================== */

.conversion-form {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--ice-blue) 100%);
    padding: 80px 0;
    position: relative;
}

.conversion-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 35% 45%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 65% 55%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.025) 1.5px, transparent 1.5px),
        radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 85% 40%, rgba(255, 255, 255, 0.03) 2px, transparent 2px);
    background-size: 100% 100%, 100% 100%, 280px 280px, 320px 320px, 270px 270px;
    background-position: 0 0, 0 0, 0 0, 95px 75px, 50px 145px;
    pointer-events: none;
}

.form-trust-badges {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.form-badge-separator {
    margin: 0 15px;
    color: var(--accent-gold);
}

.jobber-form-container {
    max-width: 700px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(27, 40, 56, 0.9) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
    .jobber-form-container {
        padding: 30px 20px;
    }
}

.form-footer-text {
    text-align: center;
    color: var(--text-light);
}

.form-footer-text p {
    font-size: 14px;
    margin-bottom: 5px;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
}

.footer-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.footer-contact {
    font-size: 14px;
    line-height: 1.8;
}

.footer-link {
    color: var(--white);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-credentials {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   UTILITY CLASSES
======================================== */

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

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

/* ========================================
   ANIMATIONS
======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   ACCESSIBILITY
======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ========================================
   PRINT STYLES
======================================== */

@media print {
    .sticky-header,
    .hero,
    .cta-button,
    .conversion-form {
        display: none;
    }
}

/* ========================================
   INTERACTIVE GALLERY ENHANCEMENTS
======================================== */

.gallery-item {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.gallery-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.view-project {
    font-size: 14px;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    font-weight: 600;
}

.gallery-item:hover .view-project {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   3D PROJECT MODAL
======================================== */

.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    perspective: 1500px;
}

.project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-modal.active .modal-overlay {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(27, 40, 56, 0.95) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    opacity: 0;
    transform: rotateX(20deg) scale(0.8);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-modal.active .modal-container {
    opacity: 1;
    transform: rotateX(0deg) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: var(--accent-gold);
    transform: rotate(90deg) scale(1.1);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-blue);
    transition: stroke 0.3s ease;
}

.modal-close:hover svg {
    stroke: var(--white);
}

.modal-content {
    overflow-y: auto;
    max-height: 90vh;
    padding: 40px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

/* Modal Gallery Carousel */
.modal-gallery {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(10, 22, 40, 0.5);
}

.modal-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-image.loaded {
    opacity: 1;
    transform: scale(1);
}

.image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 85, 48, 0.9);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-nav:hover {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-blue);
    transition: stroke 0.3s ease;
}

.gallery-nav:hover svg {
    stroke: var(--white);
}

/* Modal Details */
.modal-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
}

.detail-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
}

.detail-item ul {
    list-style: none;
    padding: 0;
}

.detail-item ul li {
    font-size: 16px;
    color: var(--white);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.detail-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}

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

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 16px;
    }

    .modal-image-container {
        height: 300px;
    }

    .modal-details {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* ========================================
   CHRISTMAS SNOWFLAKES ANIMATION
======================================== */

.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: var(--snowflake-white);
    font-size: 2em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 12px rgba(255, 255, 255, 0.6), 0 0 16px rgba(135, 206, 235, 0.4);
    animation: fall linear infinite;
    opacity: 0.85;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.7));
}

@keyframes fall {
    0% {
        top: -10%;
        opacity: 0.8;
    }
    100% {
        top: 110%;
        opacity: 0.3;
    }
}

.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
    font-size: 1.2em;
}

.snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
    font-size: 1.5em;
}

.snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 10s;
    animation-delay: 4s;
    font-size: 1em;
}

.snowflake:nth-child(4) {
    left: 40%;
    animation-duration: 14s;
    animation-delay: 1s;
    font-size: 1.3em;
}

.snowflake:nth-child(5) {
    left: 50%;
    animation-duration: 11s;
    animation-delay: 3s;
    font-size: 1.4em;
}

.snowflake:nth-child(6) {
    left: 60%;
    animation-duration: 13s;
    animation-delay: 5s;
    font-size: 1.1em;
}

.snowflake:nth-child(7) {
    left: 70%;
    animation-duration: 16s;
    animation-delay: 2s;
    font-size: 1.6em;
}

.snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 9s;
    animation-delay: 6s;
    font-size: 0.9em;
}

.snowflake:nth-child(9) {
    left: 90%;
    animation-duration: 12s;
    animation-delay: 1s;
    font-size: 1.2em;
}

.snowflake:nth-child(10) {
    left: 15%;
    animation-duration: 14s;
    animation-delay: 4s;
    font-size: 1.3em;
}

.snowflake:nth-child(11) {
    left: 25%;
    animation-duration: 11s;
    animation-delay: 0s;
    font-size: 1.1em;
}

.snowflake:nth-child(12) {
    left: 35%;
    animation-duration: 13s;
    animation-delay: 3s;
    font-size: 1.4em;
}

.snowflake:nth-child(13) {
    left: 45%;
    animation-duration: 10s;
    animation-delay: 5s;
    font-size: 1.2em;
}

.snowflake:nth-child(14) {
    left: 55%;
    animation-duration: 15s;
    animation-delay: 2s;
    font-size: 1.5em;
}

.snowflake:nth-child(15) {
    left: 65%;
    animation-duration: 12s;
    animation-delay: 6s;
    font-size: 1em;
}

.snowflake:nth-child(16) {
    left: 75%;
    animation-duration: 14s;
    animation-delay: 1s;
    font-size: 1.3em;
}

.snowflake:nth-child(17) {
    left: 85%;
    animation-duration: 11s;
    animation-delay: 4s;
    font-size: 1.1em;
}

.snowflake:nth-child(18) {
    left: 95%;
    animation-duration: 13s;
    animation-delay: 0s;
    font-size: 1.4em;
}

.snowflake:nth-child(19) {
    left: 5%;
    animation-duration: 16s;
    animation-delay: 3s;
    font-size: 1.2em;
}

.snowflake:nth-child(20) {
    left: 50%;
    animation-duration: 10s;
    animation-delay: 5s;
    font-size: 1.5em;
}

/* ========================================
   FESTIVE THEME ENHANCEMENTS
   Adds the "dressed" Christmas feel
======================================== */

/* === ANIMATED LIGHT BORDER EFFECT === */
@keyframes light-chase {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes light-chase-reverse {
    0% { background-position: 200% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes warm-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 200, 100, 0.2), 0 4px 20px rgba(0, 0, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 200, 100, 0.35), 0 4px 25px rgba(0, 0, 0, 0.6); }
}

/* Light string gradient for borders */
.festive-border {
    position: relative;
}

.festive-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg,
        #ff3333, #33ff33, #ffff33, #33ccff,
        #ff3333, #33ff33, #ffff33, #33ccff,
        #ff3333);
    background-size: 200% 100%;
    border-radius: 14px;
    z-index: -1;
    animation: light-chase 3s linear infinite;
    filter: blur(1px);
}

/* === GALLERY ITEMS WITH LIGHT BORDERS === */
.gallery-item {
    position: relative;
    border: none;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(27, 40, 56, 0.95) 100%);
    overflow: visible;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg,
        rgba(255, 51, 51, 0.8),
        rgba(51, 255, 51, 0.8),
        rgba(255, 255, 51, 0.8),
        rgba(51, 204, 255, 0.8),
        rgba(255, 51, 51, 0.8),
        rgba(51, 255, 51, 0.8),
        rgba(255, 255, 51, 0.8),
        rgba(51, 204, 255, 0.8),
        rgba(255, 51, 51, 0.8));
    background-size: 200% 100%;
    border-radius: 14px;
    z-index: -1;
    animation: light-chase 4s linear infinite;
    opacity: 0.7;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.98) 0%, rgba(27, 40, 56, 0.98) 100%);
    border-radius: 12px;
    z-index: -1;
}

.gallery-item:hover::before {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 200, 100, 0.5));
}

/* Stagger animations for gallery items */
.gallery-item:nth-child(2)::before { animation-delay: 0.5s; }
.gallery-item:nth-child(3)::before { animation-delay: 1s; }
.gallery-item:nth-child(4)::before { animation-delay: 1.5s; }
.gallery-item:nth-child(5)::before { animation-delay: 2s; }
.gallery-item:nth-child(6)::before { animation-delay: 2.5s; }

/* === SERVICE CARDS WITH WARM GLOW === */
.service-column {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.6) 0%, rgba(27, 40, 56, 0.6) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 200, 100, 0.2);
    transition: all 0.3s ease;
}

.service-column::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
        rgba(255, 180, 80, 0.3) 0%,
        rgba(255, 215, 0, 0.1) 50%,
        rgba(255, 180, 80, 0.3) 100%);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-column:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 200, 100, 0.4);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 200, 100, 0.15);
}

.service-column:hover::before {
    opacity: 1;
}

.service-icon {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    animation: warm-pulse 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.service-column:nth-child(1) .service-icon { --delay: 0s; }
.service-column:nth-child(2) .service-icon { --delay: 0.5s; }
.service-column:nth-child(3) .service-icon { --delay: 1s; }
.service-column:nth-child(4) .service-icon { --delay: 1.5s; }

/* === PROCESS TIMELINE AS LIGHT STRING === */
.timeline-number {
    background: linear-gradient(135deg, #1a3a5c 0%, #0a1628 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow:
        0 0 15px rgba(255, 215, 0, 0.3),
        inset 0 0 10px rgba(255, 215, 0, 0.1);
    animation: warm-pulse 2s ease-in-out infinite;
}

.timeline-step:nth-child(1) .timeline-number { animation-delay: 0s; }
.timeline-step:nth-child(3) .timeline-number { animation-delay: 0.5s; }
.timeline-step:nth-child(5) .timeline-number { animation-delay: 1s; }
.timeline-step:nth-child(7) .timeline-number { animation-delay: 1.5s; }

.timeline-line {
    background: linear-gradient(90deg,
        rgba(255, 51, 51, 0.8),
        rgba(51, 255, 51, 0.8),
        rgba(255, 255, 51, 0.8),
        rgba(51, 204, 255, 0.8));
    background-size: 200% 100%;
    animation: light-chase 2s linear infinite;
    height: 4px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 200, 100, 0.5);
}

/* === COMPARISON CARDS WITH CORNER LIGHTS === */
.comparison-column {
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

.comparison-column::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.4) 0%,
        transparent 20%,
        transparent 80%,
        rgba(255, 215, 0, 0.4) 100%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.5;
}

.comparison-column:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 200, 100, 0.2);
}

.comparison-column:hover::before {
    opacity: 1;
}

/* Corner light bulbs on comparison cards */
.comparison-column::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #ffdd44 0%, #ff9900 50%, transparent 70%);
    border-radius: 50%;
    animation: light-twinkle-yellow 2s ease-in-out infinite;
}

.comparison-column:nth-child(1)::after { animation-delay: 0s; }
.comparison-column:nth-child(2)::after { animation-delay: 0.3s; }
.comparison-column:nth-child(3)::after { animation-delay: 0.6s; }

/* === TESTIMONIAL CARDS WITH FESTIVE WARMTH === */
.testimonial-card {
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 200, 100, 0.15);
}

.testimonial-card::before {
    content: '★';
    position: absolute;
    top: -8px;
    right: 20px;
    font-size: 20px;
    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    animation: star-pulse 2s ease-in-out infinite;
}

.testimonial-card:nth-child(2)::before { animation-delay: 0.5s; }
.testimonial-card:nth-child(3)::before { animation-delay: 1s; }
.testimonial-card:nth-child(4)::before { animation-delay: 1.5s; }

.testimonial-card:hover {
    border-color: rgba(255, 200, 100, 0.4);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(255, 200, 100, 0.15);
}

/* === GOOGLE REVIEW BANNER WITH LIGHT BORDER === */
.google-review-banner {
    position: relative;
    overflow: visible;
}

.google-review-banner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg,
        rgba(255, 215, 0, 0.6),
        rgba(255, 180, 80, 0.3),
        rgba(255, 215, 0, 0.6),
        rgba(255, 180, 80, 0.3),
        rgba(255, 215, 0, 0.6));
    background-size: 200% 100%;
    border-radius: 18px;
    z-index: -1;
    animation: light-chase 5s linear infinite;
}

/* === VALUE PROPOSITION BOX === */
.value-proposition {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(27, 40, 56, 0.95) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.1);
}

/* === URGENCY BENEFIT BOX WITH LIGHTS === */
.urgency-benefit {
    position: relative;
    overflow: visible;
}

.urgency-benefit::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg,
        rgba(255, 215, 0, 0.8),
        rgba(255, 107, 53, 0.6),
        rgba(255, 215, 0, 0.8),
        rgba(255, 107, 53, 0.6),
        rgba(255, 215, 0, 0.8));
    background-size: 200% 100%;
    border-radius: 14px;
    z-index: -1;
    animation: light-chase 3s linear infinite;
}

/* === FAQ SECTION === */
.faq-question {
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 200, 100, 0.15);
}

/* === SOCIAL PROOF STATS === */
.social-proof-stats {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(27, 40, 56, 0.95) 100%);
    border: 1px solid rgba(255, 200, 100, 0.3);
    box-shadow: 0 0 20px rgba(255, 200, 100, 0.1);
}

/* === FORM SECTION - CLEAN BUT WARM === */
.jobber-form-container {
    position: relative;
    border: 1px solid rgba(255, 200, 100, 0.2);
}

.jobber-form-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.6),
        transparent);
    border-radius: 2px;
}

/* === FOOTER WITH FESTIVE TOUCHES === */
.site-footer {
    position: relative;
    border-top: 3px solid transparent;
    background-image: linear-gradient(var(--primary-blue), var(--primary-blue)),
        linear-gradient(90deg,
            rgba(255, 51, 51, 0.5),
            rgba(51, 255, 51, 0.5),
            rgba(255, 255, 51, 0.5),
            rgba(51, 204, 255, 0.5),
            rgba(255, 51, 51, 0.5));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.footer-title {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* === CREDENTIALS LIST === */
.credentials-list li {
    transition: all 0.3s ease;
}

.credentials-list li:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.check-icon {
    filter: drop-shadow(0 0 4px rgba(44, 85, 48, 0.5));
}

/* === VIEW PROJECT LINK === */
.view-project {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #ffd700;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gallery-item:hover .view-project {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    .gallery-item::before,
    .timeline-line,
    .google-review-banner::before,
    .urgency-benefit::before {
        animation: none;
    }

    .service-icon,
    .timeline-number,
    .testimonial-card::before {
        animation: none;
    }
}
