/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


:root {
    --bg-dark: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #666666;
    --yellow: #f5c518;
    --yellow-hover: #e6b800;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.92) 100%),
        url('background.png') center center no-repeat;
    background-size: cover, cover;
    background-attachment: scroll, fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.parallax-section > * {
    position: relative;
    z-index: 1;
}

/* Parallax Dividers */
.parallax-hero {
    height: 400px;
    background-image:
        linear-gradient(rgba(26, 26, 46, 0.6), rgba(26, 26, 46, 0.8)),
        url('cars/dodge-charger.jpg');
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
}

.parallax-1 {
    height: 300px;
    background-image:
        linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)),
        url('cars/jeep-wrangler.jpg');
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
}

.parallax-2 {
    height: 300px;
    background-image:
        linear-gradient(rgba(245, 197, 24, 0.3), rgba(26, 26, 46, 0.8)),
        url('cars/ram-1500.jpg');
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: rgba(245, 197, 24, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(245, 197, 24, 0.7);
}


.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(26, 26, 46, 0.2);
    border-radius: 50px;
    transition: var(--transition);
}

.phone-link:hover {
    background: var(--yellow);
    color: #1a1a2e;
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 197, 24, 0.3);
}

.phone-link svg {
    transition: var(--transition);
}

.phone-link:hover svg {
    transform: rotate(15deg);
}

/* =====================================================
   MODERN HEADER
   ===================================================== */
.modern-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 3rem;
    background: #ffffff;
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.03);
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-cta svg {
    transition: transform 0.3s ease;
}

.header-cta:hover svg {
    transform: rotate(15deg);
}

/* =====================================================
   SOCIAL CTA BANNER
   ===================================================== */
.social-cta-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 2rem;
    background: #1a1a2e;
}

.social-cta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

.social-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.social-cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.social-cta-button svg {
    transition: transform 0.3s ease;
}

.social-cta-button:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .social-cta-banner {
        padding: 0.6rem 1rem;
    }

    .social-cta-content {
        flex-direction: column;
        gap: 0.4rem;
    }

    .social-cta-text {
        font-size: 0.75rem;
        text-align: center;
    }
}

/* =====================================================
   MODERN HERO SECTION
   ===================================================== */
.hero-modern {
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding: 4rem 3rem 8rem;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, transparent 100%);
    overflow: hidden;
}

/* Background Elements - simplified */
.hero-bg-elements {
    display: none;
}

/* Hero Container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side */
.hero-left {
    max-width: 600px;
    position: relative;
}

/* Full-page parallax bubbles */
.parallax-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pbubble {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

.pb-1 {
    width: 220px;
    height: 220px;
    background: var(--yellow);
    opacity: 0.12;
    top: 5%;
    right: 8%;
}

.pb-2 {
    width: 140px;
    height: 140px;
    background: #1a1a2e;
    opacity: 0.06;
    top: 25%;
    left: 5%;
}

.pb-3 {
    width: 300px;
    height: 300px;
    background: var(--yellow);
    opacity: 0.08;
    top: 45%;
    right: -5%;
}

.pb-4 {
    width: 80px;
    height: 80px;
    background: #1a1a2e;
    opacity: 0.08;
    top: 60%;
    left: 15%;
}

.pb-5 {
    width: 180px;
    height: 180px;
    background: var(--yellow);
    opacity: 0.08;
    top: 80%;
    right: 20%;
}

.pb-6 {
    width: 100px;
    height: 100px;
    background: var(--yellow);
    opacity: 0.1;
    top: 35%;
    left: 40%;
}

.pb-7 {
    width: 250px;
    height: 250px;
    background: #1a1a2e;
    opacity: 0.05;
    top: 10%;
    left: -3%;
}

.pb-8 {
    width: 160px;
    height: 160px;
    background: var(--yellow);
    opacity: 0.08;
    top: 70%;
    right: 10%;
}

/* Modern Badge */
.modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 12px;
    background: #ffffff;
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 100px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.modern-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

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

.modern-badge span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modern-badge-arrow {
    display: flex;
    color: var(--text-secondary);
}

/* Headline */
.modern-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    min-height: 2.2em;
}

.type-cursor {
    color: var(--yellow);
    animation: cursorBlink 0.7s step-end infinite;
    font-weight: 300;
}

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

.headline-highlight {
    position: relative;
    color: transparent;
    background: linear-gradient(135deg, var(--yellow) 0%, #e6a800 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.headline-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.3) 0%, rgba(245, 197, 24, 0.1) 100%);
    border-radius: 4px;
    z-index: -1;
}

/* Subtitle */
.modern-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-star {
    color: var(--yellow);
    font-size: 1.25rem;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
}

/* Social Icons above CTA */
.cta-social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.cta-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-social-icon.instagram-icon {
    color: #E1306C;
}

.cta-social-icon.facebook-icon {
    color: #1877F2;
}

/* CTA Group */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.3);
    width: fit-content;
}

.primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 26, 46, 0.4);
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd54f 100%);
    color: #1a1a2e;
}

.primary-cta svg {
    transition: transform 0.3s ease;
}

.primary-cta:hover svg {
    transform: translateX(4px);
}

.cta-micro {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.cta-micro svg {
    color: #22c55e;
}

/* Right Side - Video Frame */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-frame {
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}

.hero-video-frame::after {
    display: none;
}

.hero-vid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-vid.active {
    opacity: 1;
    z-index: 1;
}

/* Initial page load fade-in */
.hero-video-frame {
    opacity: 0;
    animation: heroVideoFadeIn 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes heroVideoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-features {
    width: 100%;
    max-width: 480px;
    position: relative;
}


.feature-card-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: #ffffff;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 12px;
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.feature-card::before { display: none; }

.feature-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:nth-child(1) { border-left-color: var(--yellow); }
.feature-card:nth-child(2) { border-left-color: #22c55e; }
.feature-card:nth-child(3) { border-left-color: #3b82f6; }
.feature-card:nth-child(4) { border-left-color: #ef4444; }

.feature-card.featured {
    background: #ffffff;
    border-left-color: var(--yellow);
}

.feature-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.feature-card:nth-child(1) .feature-card-icon { color: var(--yellow); }
.feature-card:nth-child(2) .feature-card-icon { color: #22c55e; }
.feature-card:nth-child(3) .feature-card-icon { color: #3b82f6; }
.feature-card:nth-child(4) .feature-card-icon { color: #ef4444; }

.feature-card.featured .feature-card-icon {
    background: transparent;
}

.feature-card-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.feature-card-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 3px 0;
    letter-spacing: -0.01em;
}

.feature-card-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.feature-card-arrow {
    display: none;
}

.feature-card:hover .feature-card-arrow {
    color: var(--yellow);
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        max-width: none;
    }

    .modern-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .stats-row {
        justify-content: center;
    }

    .cta-group {
        align-items: center;
    }

    .hero-right {
        order: -1;
    }

    .hero-features {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-video-frame {
        position: relative;
        width: 100%;
        height: 250px;
        margin: 0 auto;
    }

    .hero-video-frame::after {
        background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.2) 40%, transparent 100%);
    }
}

@media (max-width: 768px) {
    .modern-header {
        padding: 1rem 1.5rem;
    }

    .header-logo img {
        height: 55px;
    }

    .header-center {
        display: none;
    }

    .header-cta {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-modern {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .modern-headline {
        font-size: 2rem;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .primary-cta {
        width: 100%;
        padding: 18px 32px;
    }

    .hero-features {
        max-width: 100%;
    }

    .feature-card {
        padding: 16px 18px;
        gap: 12px;
    }

    .feature-card-icon {
        width: 42px;
        height: 42px;
    }

    .feature-card-content h3 {
        font-size: 0.92rem;
    }

    .feature-card-content p {
        font-size: 0.78rem;
    }

    .header-cta span {
        display: none;
    }

    .header-cta {
        padding: 12px;
        border-radius: 50%;
    }
}

/* Top Navigation Bar */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.03);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 24px;
    border: 2px solid var(--yellow);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 197, 24, 0.3);
}

.nav-phone svg {
    transition: transform 0.3s ease;
}

.nav-phone:hover svg {
    transform: rotate(10deg);
}

@media (max-width: 768px) {
    .top-nav {
        padding: 0.75rem 1rem;
    }

    .nav-logo img {
        height: 45px;
    }

    .nav-phone {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .nav-phone span {
        display: none;
    }

    .nav-phone {
        padding: 10px;
        border-radius: 50%;
    }
}

/* Billboard Header */
.billboard-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    position: relative;
    overflow: visible;
    width: 100%;
}

.billboard-container {
    height: 70px;
}

html, body {
    margin: 0;
    padding: 0;
}

.billboard-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 2rem;
    margin: 0 auto;
    min-height: 80px;
    position: relative;
    text-align: center;
}

/* Left: Swinging Lady */
.billboard-lady {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: top center;
    animation: ladySwing 4s ease-in-out infinite;
}

@keyframes ladySwing {
    0%, 100% {
        transform: translateY(-50%) rotate(-8deg);
    }
    50% {
        transform: translateY(-50%) rotate(8deg);
    }
}

.swing-rope {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background: linear-gradient(180deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
    border-radius: 2px;
    z-index: 1;
}

.swing-lady-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
    position: relative;
    z-index: 2;
}

@keyframes ladySwing {
    0%, 100% {
        transform: translateY(-50%) rotate(-8deg);
    }
    50% {
        transform: translateY(-50%) rotate(8deg);
    }
}

/* Center: Main Text */
.billboard-text {
    text-align: center;
    margin: 0 auto;
}

.billboard-headline {
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    font-weight: 800;
    color: var(--yellow);
    line-height: 1.1;
    margin-bottom: 0.2rem;
    letter-spacing: 0.02em;
}

.billboard-tagline {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* Logo Section - Below Header */
.logo-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.header-phone {
    position: absolute;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid #f5c518;
    background: transparent;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: #f5c518;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 197, 24, 0.4);
}

.header-phone svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.header-phone:hover svg {
    transform: scale(1.1);
}

.main-logo {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.03);
}

/* Right: Logo & Nav */
.billboard-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.billboard-logo .logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.billboard-nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--yellow);
}

.billboard-header .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1a1a2e;
    background: var(--yellow);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.billboard-header .phone-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Gold Bottom Border */
.billboard-border {
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, #ffd54f 50%, var(--yellow) 100%);
}

/* Marquee */

/* Typewriter Effect */
.typewriter {
    display: inline;
}

.typewriter.done {
    border-right-color: transparent;
}


/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    margin-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.12) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.3), transparent);
}

/* Hero Promo Image */
.hero-promo-img {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    width: 280px;
    height: auto;
    z-index: 2;
    border-radius: 20px;
    background: transparent;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--yellow);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    background: rgba(245, 197, 24, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(245, 197, 24, 0); }
}

.hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto 1rem;
    letter-spacing: -0.02em;
}

.gold-text {
    color: var(--yellow);
    text-shadow: 0 2px 10px rgba(245, 197, 24, 0.3);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 450px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item svg {
    color: var(--yellow);
}

.trust-divider {
    width: 4px;
    height: 4px;
    background: var(--text-secondary);
    border-radius: 50%;
    opacity: 0.3;
}

.hero-micro {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* =====================================================
   NEW SLEEK HERO STYLES
   ===================================================== */

/* Badge */
.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 100px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.15);
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
    position: relative;
}

.badge-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--yellow);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Headline */
.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--yellow) 0%, #e6a800 50%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Subtitle */
.hero-subtitle-new {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Trust Cards */
.trust-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 197, 24, 0.3);
}

.trust-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card-icon.star {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.15) 0%, rgba(245, 197, 24, 0.05) 100%);
    color: var(--yellow);
}

.trust-card-icon.users {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: #3b82f6;
}

.trust-card-icon.check {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #22c55e;
}

.trust-card-content {
    display: flex;
    flex-direction: column;
}

.trust-card-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.trust-card-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Button */
.claim-button-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.3);
}

.claim-button-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd54f 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.claim-button-new:hover::before {
    opacity: 1;
}

.claim-button-new:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(245, 197, 24, 0.4);
    color: #1a1a2e;
}

.claim-button-new .btn-text,
.claim-button-new .btn-icon {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.claim-button-new:hover .btn-text,
.claim-button-new:hover .btn-icon {
    color: #1a1a2e;
}

.claim-button-new .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.claim-button-new:hover .btn-icon {
    transform: translateX(4px);
}

/* Micro text */
.hero-micro-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.hero-micro-new svg {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-subtitle-new {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .trust-cards {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .trust-card {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .claim-button-new {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1.5rem 4rem;
    }

    .hero-headline {
        font-size: 1.9rem;
    }

    .hero-badge-new {
        padding: 6px 16px 6px 12px;
    }

    .badge-text {
        font-size: 0.7rem;
    }
}

/* Claim Button */
.claim-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd54f 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(245, 197, 24, 0.4),
        0 10px 40px rgba(245, 197, 24, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.claim-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.claim-button:hover::before {
    left: 100%;
}

.claim-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 6px 20px rgba(245, 197, 24, 0.5),
        0 15px 50px rgba(245, 197, 24, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.claim-button svg {
    transition: transform 0.3s ease;
}

.claim-button:hover svg {
    transform: translateX(5px);
}

/* Form Section */
.form-section {
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    min-height: calc(100vh - 100px);
    background: linear-gradient(135deg, #fafbfc 0%, #f0f2f5 100%);
}

/* Form Container */
.form-container {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border: 2px solid var(--yellow);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 40px rgba(245, 197, 24, 0.15);
}

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

/* Progress Bar */
.progress-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--yellow), #ffd54f);
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(245, 197, 24, 0.6);
}

.progress-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
}

.form-step.active {
    display: block;
    animation: slideIn 0.4s ease forwards;
}

.form-step.exit-left {
    animation: slideOutLeft 0.3s ease forwards;
}

.form-step.exit-right {
    animation: slideOutRight 0.3s ease forwards;
}

.form-step.enter-left {
    animation: slideInFromLeft 0.4s ease forwards;
}

.form-step.enter-right {
    animation: slideInFromRight 0.4s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutLeft {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-30px); }
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(30px); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-step h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

/* Referral Options */
.referral-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.referral-option {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.875rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.referral-option:hover {
    border-color: var(--yellow);
    background: rgba(245, 197, 24, 0.15);
    transform: translateX(3px);
}

.referral-option input[type="radio"] {
    width: 16px;
    height: 16px;
    margin-right: 0.6rem;
    accent-color: var(--yellow);
    cursor: pointer;
}

.referral-option:has(input:checked) {
    border-color: var(--yellow);
    background: rgba(245, 197, 24, 0.2);
    box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.2);
}

.referral-option input[type="radio"]:checked + .referral-label {
    color: var(--yellow);
    font-weight: 600;
}

.referral-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

/* Single Field Input */
.single-field {
    margin-bottom: 0.75rem;
}

.single-field input {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #ffffff;
    text-align: center;
    transition: var(--transition);
}

.single-field input:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.single-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Vehicle Search */
.vehicle-search-container {
    position: relative;
    margin-bottom: 0.75rem;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper input {
    width: 100%;
    padding: 0.7rem 2.5rem 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #ffffff;
    transition: var(--transition);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

/* Vehicle Dropdown */
.vehicle-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid rgba(245, 197, 24, 0.4);
    border-radius: 12px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.vehicle-dropdown.active {
    display: block;
    animation: dropdownSlide 0.2s ease;
}

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

.vehicle-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vehicle-option:hover {
    background: rgba(245, 197, 24, 0.12);
}

.vehicle-option:last-child {
    border-bottom: none;
}

.vehicle-option img {
    width: 70px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    background: var(--bg-secondary);
}

.vehicle-option-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    display: block;
}

.vehicle-option-type {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Selected Vehicle */
.selected-vehicle {
    display: none;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid var(--yellow);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    animation: fadeInScale 0.3s ease;
}

.selected-vehicle.active {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.selected-vehicle img {
    width: 100px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
}

.selected-vehicle-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.change-vehicle-btn {
    background: none;
    border: none;
    color: var(--yellow);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    transition: var(--transition);
}

.change-vehicle-btn:hover {
    text-decoration: underline;
}

/* Summary Box */
.summary-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.summary-grid {
    display: grid;
    gap: 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    border: none;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateX(-3px);
}

.btn-next {
    background: var(--yellow);
    color: #1a1a2e;
    margin-left: auto;
    font-weight: 700;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.4);
}

.btn-submit {
    background: var(--yellow);
    color: #1a1a2e;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 197, 24, 0.5);
}

/* Success Step */
.success-step {
    padding: 1.5rem 0;
}

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

.success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd54f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #1a1a2e;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--yellow);
}

.success-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.success-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Statement Section */
.statement {
    padding: 6rem 2rem;
    text-align: center;
    background: transparent;
    border-top: none;
    border-bottom: none;
    margin: 0;
}

.statement h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.3;
    color: var(--yellow);
}

/* =====================================================
   COMMUNITY HEROES SECTION - NEW SLEEK VERSION
   ===================================================== */

.community-heroes-new {
    position: relative;
    padding: 10rem 2rem 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.community-heroes-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
}

.community-heroes-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.community-header-new {
    text-align: center;
    margin-bottom: 4rem;
}

.community-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.1) 0%, rgba(245, 197, 24, 0.05) 100%);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.cbadge-icon {
    color: var(--yellow);
    display: flex;
}

.cbadge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.community-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.community-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Deals Grid */
.hero-deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 4rem;
}

/* Deal Card */
.hero-deal-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.deal-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-deal-card.firefighter .deal-card-glow {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%);
}

.hero-deal-card.police .deal-card-glow {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
}

.hero-deal-card.healthcare .deal-card-glow {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.1) 0%, transparent 100%);
}

.hero-deal-card:hover .deal-card-glow {
    opacity: 1;
}

/* Card Image */
.deal-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.deal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-deal-card:hover .deal-card-image img {
    transform: scale(1.08);
}

.deal-card-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #22c55e;
}

/* Card Body */
.deal-card-body {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.deal-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.deal-card-tag.firefighter {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.deal-card-tag.police {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.deal-card-tag.healthcare {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.deal-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.deal-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.deal-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.deal-card-cta:hover {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd54f 100%);
    color: #1a1a2e;
    gap: 12px;
    transform: translateX(4px);
}

/* Community Footer */
.community-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.community-footer-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.eligibility-button-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd54f 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
}

.eligibility-button-new:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(245, 197, 24, 0.4);
    gap: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-deal-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .community-heroes-new {
        padding: 4rem 1.5rem;
    }

    .hero-deals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-deal-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .deal-card-image {
        height: 180px;
    }

    .community-headline {
        font-size: 1.75rem;
    }

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

/* =====================================================
   OLD COMMUNITY HEROES SECTION (LEGACY)
   ===================================================== */
/* Community Heroes Section */
.community-heroes {
    position: relative;
    padding: 2.5rem 1.5rem;
    background: transparent;
    overflow: hidden;
    display: none; /* Hide old version */
}

.community-heroes-content {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.community-heroes-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.community-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: var(--yellow);
    border-radius: 50px;
    color: #1a1a2e;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.community-heroes-header h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.community-heroes-header .highlight {
    color: var(--yellow);
    position: relative;
}

.community-heroes-header p {
    color: #6b7280;
    font-size: 0.8rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Deals Carousel */
.deals-carousel {
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.deals-stack {
    position: relative;
    height: 420px;
    perspective: 1200px;
}

/* Individual slide */
.deal-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
}

/* Fanned stack: cards visible behind active card */
.deal-slide[data-position="prev"] {
    transform: translateX(-12%) translateY(15px) rotate(-4deg) scale(0.88);
    opacity: 0.7;
    z-index: 1;
    filter: brightness(0.95);
}

.deal-slide[data-position="next"] {
    transform: translateX(12%) translateY(15px) rotate(4deg) scale(0.88);
    opacity: 0.7;
    z-index: 1;
    filter: brightness(0.95);
}

/* Third level cards peeking out further */
.deal-slide[data-position="far-prev"] {
    transform: translateX(-20%) translateY(30px) rotate(-6deg) scale(0.78);
    opacity: 0.4;
    z-index: 0;
    filter: brightness(0.9);
}

.deal-slide[data-position="far-next"] {
    transform: translateX(20%) translateY(30px) rotate(6deg) scale(0.78);
    opacity: 0.4;
    z-index: 0;
    filter: brightness(0.9);
}

.deal-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 3;
    filter: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Magazine layout: image + text side by side */
.deal-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Alternate layout: flip image/text sides */
.deal-slide-inner.reverse {
    direction: rtl;
}

.deal-slide-inner.reverse > * {
    direction: ltr;
}

.deal-slide-image {
    overflow: hidden;
    position: relative;
}

.deal-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.deal-slide.active:hover .deal-slide-image img {
    transform: scale(1.05);
}

.deal-slide-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deal-label {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.deal-label.firefighter {
    background: rgba(229, 57, 53, 0.1);
    color: #e53935;
}

.deal-label.police {
    background: rgba(21, 101, 192, 0.1);
    color: #1565c0;
}

.deal-label.healthcare {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
}

.deal-slide-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.deal-slide-desc {
    color: #6b7280;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.deal-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #1a1a2e;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s ease;
}

.deal-slide-cta svg {
    width: 14px;
    height: 14px;
}

.deal-slide-cta:hover {
    background: var(--yellow);
    color: #1a1a2e;
    gap: 0.85rem;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Carousel controls - arrows on sides, dots below */
.deals-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.deal-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.deal-arrow.deal-prev {
    left: -18px;
}

.deal-arrow.deal-next {
    right: -18px;
}

.deal-arrow:hover,
.deal-arrow:active,
.deal-arrow:focus {
    background: #1a1a2e;
    color: #ffffff;
    border-color: #1a1a2e;
    outline: none;
}

.deal-arrow svg {
    width: 14px;
    height: 14px;
}

.deal-dots {
    display: flex;
    gap: 0.4rem;
}

.deal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.deal-dot.active {
    background: #1a1a2e;
    width: 20px;
    border-radius: 4px;
}

/* Community CTA */
.community-cta {
    text-align: center;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.community-cta-text {
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.community-heroes .eligibility-button {
    background: #1a1a2e;
    color: #ffffff;
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(26, 26, 46, 0.2);
}

.community-heroes .eligibility-button:hover {
    background: #2d2d44;
    box-shadow: 0 8px 28px rgba(26, 26, 46, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .community-heroes {
        padding: 2rem 1rem;
    }

    .deals-carousel {
        padding: 0 1.5rem;
    }

    .deal-slide-inner,
    .deal-slide-inner.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .deal-slide-image {
        max-height: 150px;
    }

    .deal-slide-content {
        padding: 1rem;
    }

    .deal-slide-title {
        font-size: 0.95rem;
    }

    .deals-stack {
        height: 520px;
    }

    .deal-slide[data-position="prev"],
    .deal-slide[data-position="next"] {
        opacity: 0.5;
        transform: translateX(0) translateY(20px) scale(0.9);
    }

    .deal-arrow {
        width: 30px;
        height: 30px;
    }

    .deal-arrow.deal-prev {
        left: -12px;
    }

    .deal-arrow.deal-next {
        right: -12px;
    }
}

/* About Section */
.about {
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.about-content, .about-visual {
    position: relative;
    z-index: 1;
}

.about-label {
    font-size: 0.75rem;
    color: var(--yellow-hover);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-visual {
    position: relative;
    height: 280px;
    background: var(--bg-dark);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.visual-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 2px 2px, rgba(245, 197, 24, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.about-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: auto;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
}

/* Benefits Section */
.benefits {
    padding: 5rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 197, 24, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 197, 24, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--yellow-hover);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    overflow: hidden;
    background: var(--bg-dark);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-header h2 {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: slideTestimonials 40s linear infinite;
    width: fit-content;
}

.testimonials:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 300px;
    padding: 1.25rem;
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.testimonial-quote {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--bg-dark);
}

.author-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.author-info p {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Google Reviews Section */
.google-reviews {
    padding: 5rem 2rem;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.reviews-header {
    margin-bottom: 3rem;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.review-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.google-review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.review-stars {
    color: #FBBC05;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.google-review-card p {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.reviewer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.reviewer strong {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.reviewer span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.view-all-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4285F4;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.view-all-reviews:hover {
    gap: 0.75rem;
}

/* Location Map Section */
.location-section {
    padding: 5rem 2rem;
    background: #ffffff;
    position: relative;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.location-info h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.location-tagline {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-item svg {
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.location-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.location-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.directions-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--yellow);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.directions-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 197, 24, 0.4);
}

.map-container {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: transparent;
    position: relative;
}

.cta h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cta > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.cta-detail svg {
    color: var(--yellow);
    width: 16px;
    height: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--yellow);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 197, 24, 0.4);
}

/* Footer */
footer {
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
}

/* Field Validation */
.single-field input.invalid,
.search-input-wrapper input.invalid {
    border-color: #e74c3c;
    animation: shake 0.5s ease;
}

.single-field input.valid {
    border-color: #4CAF50;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .logo-img {
        height: 40px;
    }

    .phone-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-promo-img {
        display: none;
    }

    .form-container {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }

    .about-visual {
        height: 300px;
    }

    .benefits {
        padding: 4rem 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .statement, .testimonials, .cta, .google-reviews, .location-section {
        padding: 4rem 1.5rem;
    }

    /* Disable parallax on mobile - fixed attachment not supported on iOS */
    body {
        background-attachment: scroll !important;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 300px;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Billboard Header Mobile */
    .billboard-container {
        flex-direction: column;
        padding: 1rem;
        min-height: auto;
        gap: 1rem;
    }

    .billboard-lady {
        order: 2;
    }

    .billboard-text {
        order: 1;
        padding: 0;
    }

    .billboard-headline {
        font-size: 1.25rem;
    }

    .billboard-tagline {
        font-size: 0.8rem;
    }

    .billboard-right {
        order: 3;
        align-items: center;
        width: 100%;
    }

    .billboard-nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .swing-lady-img {
        height: 100px;
    }

    .swing-rope {
        height: 50px;
        top: -40px;
    }

    .logo-section {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-phone {
        position: static;
        font-size: 0.95rem;
        padding: 10px 18px;
        background: #f5c518;
        border-radius: 50px;
        border-color: #f5c518;
        box-shadow: 0 2px 8px rgba(245, 197, 24, 0.3);
    }

    .main-logo {
        height: 70px;
    }

    .testimonial-card {
        width: 300px;
    }

    .cta-info {
        flex-direction: column;
        gap: 1rem;
    }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 1rem;
    }

    .form-navigation {
        flex-direction: column;
    }

    .btn-prev, .btn-next, .btn-submit {
        width: 100%;
        margin: 0;
    }

    .btn-prev {
        order: 2;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.25rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-trust {
        gap: 0.75rem;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    .form-step h3 {
        font-size: 1.2rem;
    }

    .referral-option {
        padding: 0.875rem 1rem;
    }

    .referral-label {
        font-size: 0.9rem;
    }
}
