/* ===== Automotive Hero Fullscreen 3e1bd689 ===== */

/* Reset & Wrapper */
.ahf-3e1bd689-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Background */
.ahf-3e1bd689-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    animation: ahf3e1bd689BgZoom 20s ease-in-out infinite alternate;
}

@keyframes ahf3e1bd689BgZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.ahf-3e1bd689-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(5,5,15,0.65) 40%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

/* Moving Gradient Overlay */
.ahf-3e1bd689-gradient-moving {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(125deg, rgba(0,162,255,0.06) 0%, transparent 30%, rgba(255,106,0,0.04) 60%, transparent 100%);
    background-size: 300% 300%;
    animation: ahf3e1bd689GradientMove 12s ease infinite;
    pointer-events: none;
}

@keyframes ahf3e1bd689GradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Light Streaks */
.ahf-3e1bd689-streaks {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.ahf-3e1bd689-streak {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,162,255,0.5), transparent);
    animation: ahf3e1bd689Streak 6s linear infinite;
    opacity: 0;
}

.ahf-3e1bd689-streak-1 {
    top: 25%;
    width: 60%;
    left: -60%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.ahf-3e1bd689-streak-2 {
    top: 55%;
    width: 45%;
    left: -45%;
    animation-delay: 2s;
    animation-duration: 6s;
    background: linear-gradient(90deg, transparent, rgba(255,106,0,0.4), transparent);
}

.ahf-3e1bd689-streak-3 {
    top: 78%;
    width: 55%;
    left: -55%;
    animation-delay: 3.5s;
    animation-duration: 7s;
}

@keyframes ahf3e1bd689Streak {
    0% { left: -60%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}

/* ===== NAVBAR ===== */
.ahf-3e1bd689-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,10,15,0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,162,255,0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ahf-3e1bd689-navbar.ahf-scrolled {
    background: rgba(5,5,12,0.85);
    border-bottom-color: rgba(0,162,255,0.25);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.ahf-3e1bd689-navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.ahf-3e1bd689-logo {
    flex-shrink: 0;
}

.ahf-3e1bd689-logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #00a2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ahf-3e1bd689-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Nav Links */
.ahf-3e1bd689-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.ahf-3e1bd689-nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.ahf-3e1bd689-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00a2ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0,162,255,0.5);
}

.ahf-3e1bd689-nav-link:hover {
    color: #00a2ff;
    background: rgba(0,162,255,0.06);
}

.ahf-3e1bd689-nav-link:hover::after {
    width: 60%;
}

/* Navbar CTA */
.ahf-3e1bd689-navbar-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 26px;
    background: #00a2ff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(0,162,255,0.3);
    flex-shrink: 0;
}

.ahf-3e1bd689-navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0,162,255,0.5), 0 4px 15px rgba(0,162,255,0.3);
    background: #0090e0;
}

/* Hamburger */
.ahf-3e1bd689-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.ahf-3e1bd689-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ahf-3e1bd689-hamburger:hover {
    background: rgba(0,162,255,0.1);
    border-color: rgba(0,162,255,0.3);
}

.ahf-3e1bd689-hamburger.ahf-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.ahf-3e1bd689-hamburger.ahf-active span:nth-child(2) {
    opacity: 0;
}
.ahf-3e1bd689-hamburger.ahf-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.ahf-3e1bd689-mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(5,5,15,0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0,162,255,0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ahf-3e1bd689-mobile-menu.ahf-open {
    max-height: 500px;
}

.ahf-3e1bd689-mobile-menu-inner {
    padding: 20px 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ahf-3e1bd689-mobile-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ahf-3e1bd689-mobile-link:hover {
    color: #00a2ff;
    background: rgba(0,162,255,0.08);
}

.ahf-3e1bd689-mobile-cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
}

/* ===== HERO CONTENT ===== */
.ahf-3e1bd689-hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 80px;
    min-height: 100vh;
}

.ahf-3e1bd689-hero-inner {
    max-width: 900px;
    width: 100%;
    animation: ahf3e1bd689FadeUp 1s ease-out 0.3s both;
}

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

/* Accent Line */
.ahf-3e1bd689-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00a2ff, #ff6a00);
    margin: 0 auto 30px;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0,162,255,0.5);
    animation: ahf3e1bd689AccentPulse 3s ease-in-out infinite;
}

@keyframes ahf3e1bd689AccentPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0,162,255,0.5); width: 60px; }
    50% { box-shadow: 0 0 25px rgba(0,162,255,0.8), 0 0 40px rgba(255,106,0,0.3); width: 80px; }
}

/* Heading */
.ahf-3e1bd689-heading {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(0,162,255,0.15);
}

/* Subtitle */
.ahf-3e1bd689-subtitle {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0 auto 44px;
    max-width: 650px;
    font-weight: 400;
}

/* CTA Group */
.ahf-3e1bd689-cta-group {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.ahf-3e1bd689-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ahf-3e1bd689-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ahf-3e1bd689-cta-btn:hover::before {
    opacity: 1;
}

.ahf-3e1bd689-cta-primary {
    background: #00a2ff;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(0,162,255,0.3), 0 0 50px rgba(0,162,255,0.15);
}

.ahf-3e1bd689-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0,162,255,0.5), 0 8px 30px rgba(0,162,255,0.25);
}

.ahf-3e1bd689-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

.ahf-3e1bd689-cta-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(255,106,0,0.6);
    box-shadow: 0 0 25px rgba(255,106,0,0.2);
    color: #ff6a00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ahf-3e1bd689-navbar-inner {
        padding: 0 24px;
        height: 70px;
    }
    .ahf-3e1bd689-nav-links {
        display: none;
    }
    .ahf-3e1bd689-navbar-cta {
        display: none;
    }
    .ahf-3e1bd689-hamburger {
        display: flex;
    }
    .ahf-3e1bd689-mobile-menu {
        top: 70px;
    }
    .ahf-3e1bd689-hero-content {
        padding: 100px 24px 60px;
    }
}

@media (max-width: 767px) {
    .ahf-3e1bd689-navbar-inner {
        padding: 0 20px;
        height: 64px;
    }
    .ahf-3e1bd689-mobile-menu {
        top: 64px;
    }
    .ahf-3e1bd689-mobile-menu-inner {
        padding: 16px 20px 24px;
    }
    .ahf-3e1bd689-hero-content {
        padding: 90px 20px 50px;
    }
    .ahf-3e1bd689-heading {
        letter-spacing: -0.5px;
    }
    .ahf-3e1bd689-subtitle {
        margin-bottom: 36px;
    }
    .ahf-3e1bd689-cta-btn {
        padding: 14px 32px;
        font-size: 13px;
        width: 100%;
    }
    .ahf-3e1bd689-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .ahf-3e1bd689-logo-text {
        font-size: 18px;
        letter-spacing: 2px;
    }
}
