:root {
    --primary: #00D2FF;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--dark);
    line-height: 1.5;
    overflow-x: hidden;
    /* Premium Dark Fixed Background */
    background: radial-gradient(circle at top, #2C3E50 0%, #000000 100%);
    background-attachment: fixed;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    /* White logo */
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav__link {
    text-decoration: none;
    color: #fff;
    /* White links */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav__link:hover::after {
    width: 100%;
}

/* Burger */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--light);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-secondary);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu__link {
    color: var(--light);
    text-decoration: none;
    font-size: 18px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    /* Restored */
    font-weight: 600;
    transition: all 0.3s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn--primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn--primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn--primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.telegram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 10px;
}

.btn--full {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 70vh;
    min-height: 500px;
    max-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: 60% center;
    background-repeat: no-repeat;
    color: var(--light);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 0;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 18px 40px;
    font-size: 14px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 210, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

.hero-form-container {
    background-color: var(--light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 400px;
    width: 100%;
}

.hero-form {
    width: 100%;
}

/* Modal Content (Keep for other modals if any, or status) */
.modal__content {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    padding: 40px;
    border-radius: 0;
    text-align: center;
    position: relative;
    max-width: 450px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal__subtitle {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-body);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

/* Form Labels */
.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-select {
    flex-shrink: 0;
    width: 110px;
    padding: 16px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-body);
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
}

.country-select:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.country-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.form-input--phone {
    flex: 1;
}

.form-policy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
}

.form-policy a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.form-policy a:hover {
    opacity: 0.8;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close:hover {
    color: #fff;
}

/* ... */



.form-policy {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
    text-align: center;
    line-height: 1.4;
}

.form-policy a {
    color: var(--primary);
    text-decoration: none;
}

/* Stats Section - Premium Strict Style */
.stats {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item__value {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: countUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stat-item:nth-child(1) .stat-item__value {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) .stat-item__value {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) .stat-item__value {
    animation-delay: 0.3s;
}

.stat-item__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Common */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
    /* White title for dark background */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Services */
.services {
    background-color: transparent;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.service-card__icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.service-card__text {
    color: #ccc;
    font-size: 15px;
}

/* Why Choose Us Section - Premium Dark Ice */
.why-us {
    background: radial-gradient(ellipse at top, rgba(44, 62, 80, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 100px 0;
    position: relative;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.why-us-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.why-us-card:hover::before {
    opacity: 1;
}

.why-us-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.why-us-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.why-us-card__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}





/* How It Works */
.how-it-works {
    background-color: transparent;
    /* Remove container bg */
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    /* Dark Glass */
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.step__number {
    font-family: var(--font-heading);
    font-size: 32px;
    /* Reduced from 60px */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    /* Slightly more visible but smaller */
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
}

.step__title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    /* White Text */
    position: relative;
    z-index: 2;
}

.step__text {
    color: #ccc;
    /* Light Gray Text */
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

/* Video Carousel */
.video-carousel-wrapper {
    max-width: 100%;
    margin: 0 auto 50px;
    position: relative;
    padding: 0 40px;
}

.video-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: hidden;
    /* Hide overflow on desktop usually, but user wants scroll if 5 items. 5 items in 3 cols needs scroll or wrap. User said "carousel by 3 videos on screen". */
    /* Implementation choice: Scrollable container for all screens, but desktop shows 3 */
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    /* Space for scrollbar if visible, or aesthetics */
    gap: 20px;
    scrollbar-width: none;
    /* Firefox */
}

.video-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.video-item {
    min-width: calc(33.333% - 14px);
    /* 3 items per screen minus gap */
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill container to remove black bars */
    max-height: 50vh;
    display: block;
}

.carousel-btn {
    /* Reusing existing btn styles but positioned */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

.prev-video-btn {
    left: 0;
}

.next-video-btn {
    right: 0;
}

@media (max-width: 900px) {
    .video-item {
        min-width: calc(50% - 10px);
        /* 2 items on tablet */
    }
}

@media (max-width: 600px) {
    .video-carousel-wrapper {
        padding: 0;
        /* Full width on mobile */
    }

    .video-item {
        min-width: 85%;
        /* 1 item peek on mobile */
        margin-right: 15px;
    }

    .video-item:first-child {
        margin-left: 15px;
    }

    .carousel-btn {
        display: none;
        /* Swipe only on mobile */
    }
}

/* FAQ */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: rgba(255, 255, 255, 0.05);
    /* Dark Glass */
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    /* White Text */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq__question:hover {
    color: var(--primary);
}

.faq__question.active {
    color: var(--primary);
}

.faq__icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
    color: var(--primary);
}

.faq__question.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: #e0e0e0;
}

.faq__answer p {
    padding-bottom: 20px;
    line-height: 1.6;
}

/* Reviews Carousel - Premium Redesign */
.reviews-wrapper {
    position: relative;
    max-width: 100%;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    /* Allow glow and shadow to spill */
    padding: 20px 0;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    /* Space for shadow */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
    padding: 0 10px;
    /* Slight padding */
}

.review-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
    /* Fully visible */
    transform: none;
    /* No scaling */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-card.active {
    /* Only highlight border/glow, no size change for strict look */
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 210, 255, 0.4);
    box-shadow: 0 15px 50px rgba(0, 210, 255, 0.1);
    z-index: 2;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
}

.review-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.verified-badge {
    font-size: 12px;
    color: var(--primary);
    /* Ice Blue */
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 210, 255, 0.1);
    padding: 4px 8px;
    border-radius: 20px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.car-purchased {
    font-size: 14px;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-purchased i {
    color: var(--primary);
}

.review-rating {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
    font-style: italic;
    flex-grow: 1;
}

.review-date {
    display: block;
    margin-top: 20px;
    font-size: 12px;
    color: #666;
    text-align: right;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 1200px) {
    .review-card {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: 85vw;
        opacity: 1;
        transform: none;
    }

    .review-card.active {
        transform: none;
    }

    .nav-btn {
        display: none;
    }

    .carousel-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0;
        gap: 15px;
    }

    .review-card {
        scroll-snap-align: center;
    }
}



.review-card {
    min-width: calc(33.333% - 14px);
    /* Default Desktop: 3 items */
    background: rgba(255, 255, 255, 0.05);
    /* Dark Glass */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.carousel-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .review-card {
        min-width: calc(50% - 10px);
        /* Tablet: 2 items */
    }
}

@media (max-width: 600px) {
    .review-card {
        min-width: calc(100%);
        /* Mobile: 1 item */
    }

    .carousel-btn {
        display: none;
        /* Hide arrows on mobile, rely on swipe */
    }
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-card__avatar {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.review-card__name {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
    /* White */
}

.review-card__rating {
    font-size: 14px;
    margin-bottom: 5px;
    color: #FFD700;
    /* Gold stars */
}

.review-card__car {
    font-size: 13px;
    color: #999;
    /* Light gray */
    display: block;
}

.review-card__text {
    font-size: 15px;
    color: #ccc;
    /* Light gray text */
    font-style: italic;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding-top: 30px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.logo--footer {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.footer__title {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer__text {
    color: var(--gray);
    margin-bottom: 10px;
}

.socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    color: var(--light);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.footer__bottom {
    padding: 15px 0;
    text-align: center;
    color: #555;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

/* Responsive Design */

/* Tablet (Portrait) */
@media (max-width: 900px) {
    .hero {
        height: 60vh;
        min-height: 450px;
        background-position: 65% center;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item {
        padding: 30px 15px;
    }

    .stat-item__value {
        font-size: 42px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }
}

/* Mobile (Landscape) */
@media (max-width: 768px) {
    .hero {
        background-position: 70% center;
    }

    .hero-form-container {
        max-width: 100%;
        padding: 25px;
    }

    .modal__content {
        width: 95%;
        padding: 30px 25px;
    }
}

/* Mobile (Portrait) */
@media (max-width: 600px) {
    .hero {
        height: auto;
        min-height: 550px;
        padding: 80px 0 40px;
        background-position: 75% center;
        background-size: cover;
    }

    .hero__container {
        text-align: center;
        max-width: 100%;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero__subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-btn {
        padding: 16px 30px;
        font-size: 13px;
    }

    .stats__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item {
        padding: 35px 20px;
    }

    .stat-item__value {
        font-size: 48px;
    }

    .services__grid,
    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step {
        padding: 25px;
    }

    .step__number {
        font-size: 24px;
        top: 10px;
        right: 15px;
    }

    .reviews-carousel {
        padding: 0;
    }

    .review-card {
        min-width: 100%;
    }

    .faq-item {
        padding: 20px;
    }

    .footer__container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .hero {
        min-height: 600px;
        background-position: 80% center;
    }

    .hero__title {
        font-size: 24px;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .hero-btn {
        padding: 14px 25px;
        font-size: 12px;
        min-width: 100%;
    }

    .hero-form-container {
        padding: 20px;
    }

    .form-input {
        padding: 12px;
        font-size: 14px;
    }

    .stat-item__value {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .hero {
        background-position: 55% center;
    }

    .container {
        max-width: 1400px;
    }
}

/* Extra Large Screens (Full HD) */
@media (min-width: 1600px) {
    .hero {
        background-position: 50% center;
        max-height: 700px;
    }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
    .hero {
        background-position: center center;
        max-height: 750px;
    }

    .container {
        max-width: 1600px;
    }
}

/* 4K and beyond */
@media (min-width: 2560px) {
    .hero {
        background-position: center center;
        max-height: 800px;
    }

    .container {
        max-width: 1800px;
    }
}

@media (max-width: 768px) {
    .reviews-wrapper .nav-btn {
        display: none;
    }

    .carousel-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        /* Space for scrollbar if visible */
    }

    .carousel-track {
        width: max-content;
        /* Ensure track takes full width of content */
        transform: none !important;
        /* Disable JS transform on mobile */
    }

    .review-card {
        scroll-snap-align: center;
        margin: 0 10px;
    }
}

/* Reviews Action */
.reviews-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 14px 40px;
    transition: all 0.3s ease;
}

.btn--outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

/* Rating Stars */
.rating-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-label {
    color: #ccc;
    font-size: 14px;
}

.stars {
    display: flex;
    gap: 5px;
    cursor: pointer;
}

.stars span {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s, transform 0.2s;
}

.stars span.active,
.stars span:hover,
.stars span:hover~span {
    color: #FFD700;
    /* Gold for stars */
}

.stars span:hover {
    transform: scale(1.2);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Reviews Action Button Container */
.reviews-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 20px;
    position: relative;
    z-index: 5;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Only hide if explicitly NOT active (for future JS enhancement) */
.reveal:not(.active) {
    /* Sections visible by default to avoid CORS issues with file:// protocol */
}

/* Success Modal Styles */
.success-modal {
    text-align: center;
    padding: 50px 40px;
    max-width: 420px;
}

.success-icon {
    margin-bottom: 25px;
    animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.success-icon svg circle {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: drawCircle 0.8s ease-out 0.2s forwards;
}

.success-icon svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawCheck 0.4s ease-out 0.8s forwards;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #00D2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-btn {
    padding: 16px 50px;
    font-size: 14px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.3) 0%, rgba(0, 210, 255, 0.1) 100%);
    border: 1px solid rgba(0, 210, 255, 0.5);
    transition: all 0.3s ease;
}

.success-btn:hover {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.5) 0%, rgba(0, 210, 255, 0.2) 100%);
    border-color: rgba(0, 210, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3);
}

/* ===== RESPONSIVE MOBILE STYLES ===== */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .burger-btn {
        display: flex;
        z-index: 1001;
        padding: 10px;
        transition: all 0.3s ease;
    }

    .burger-btn span {
        display: block;
        transition: all 0.3s ease;
    }

    .burger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .burger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 40px 40px;
        flex-direction: column;
        gap: 25px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu__link {
        font-size: 24px;
        font-family: var(--font-heading);
        color: #fff;
        text-decoration: none;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .mobile-menu__link:hover {
        color: var(--primary);
        padding-left: 10px;
    }

    .header__container {
        padding: 15px 20px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item__value {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .footer__container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: auto;
        min-height: 60vh;
        padding: 80px 0 40px;
    }

    .hero__title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .stats__grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .section {
        padding: 50px 0;
    }

    .modal__content {
        padding: 30px 20px;
        width: 95%;
    }

    .success-modal {
        padding: 40px 25px;
    }

    .success-title {
        font-size: 22px;
    }
}

.video-carousel-wrapper--bottom {
    margin-top: 80px;
}

.faq {
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    .carousel-container {
        padding-bottom: 0 !important;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }

    .carousel-container::-webkit-scrollbar {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: 85vw;
        max-width: 85vw;
        margin: 0 10px;
    }

    /* Ensure container hides scrollbar completely */
    .carousel-container {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    /* Targeting all possible scrollbar pseudo-elements */
    .carousel-container::-webkit-scrollbar,
    .carousel-container::-webkit-scrollbar-track,
    .carousel-container::-webkit-scrollbar-thumb {
        display: none;
        width: 0;
        height: 0;
        background: transparent;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 20px;
    }

    .footer__container {
        gap: 10px;
        padding-bottom: 10px;
    }

    .footer__col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .logo--footer {
        margin-bottom: 5px;
        font-size: 24px;
    }

    .footer__title {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .footer__text {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .socials {
        margin-top: 15px;
        gap: 10px;
    }

    .social-link {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* Scam Warning Button Animation */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
}

.btn--warning {
    background-color: #ff4444;
    color: white;
    border: none;
    animation: pulse-red 2s infinite;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn--warning:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    animation: none;
}

.btn--warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .btn--warning {
        width: 100%;
        margin-top: 15px;
        order: 3;
    }
}

/* Pricing Section Styles */
.pricing-section {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    margin-top: 60px;
    background: linear-gradient(145deg, #1a1a1a, #151515);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-image {
    flex: 0 0 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pricing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-title {
    font-size: 36px;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    color: #ffffff;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    transition: background-color 0.3s;
}

.pricing-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
    margin-left: -10px;
    margin-right: -10px;
    border-bottom-color: transparent;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-name {
    font-weight: 600;
    width: 35%;
    color: #ffffff;
}

.pricing-time {
    color: #e0e0e0;
    width: 20%;
    text-align: center;
}

.pricing-price {
    font-weight: 700;
    color: #ffffff;
    width: 15%;
    text-align: right;
}

.pricing-action {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 25%;
    justify-content: flex-end;
    opacity: 0.8;
    transition: all 0.3s;
}

.pricing-action:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
}

.pricing-btn {
    padding: 15px 40px;
    font-size: 16px;
    margin-top: 10px;
    align-self: flex-start;
}

@media (max-width: 900px) {
    .pricing-section {
        flex-direction: column;
    }

    .pricing-image {
        flex: auto;
        height: 250px;
        width: 100%;
    }

    .pricing-item {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 0;
    }

    .pricing-name {
        width: 100%;
        margin-bottom: 5px;
        font-size: 15px;
    }

    .pricing-time,
    .pricing-price {
        width: auto;
        flex: 1;
        text-align: left;
        font-size: 14px;
    }

    .pricing-action {
        width: 100%;
        text-align: right;
        justify-content: flex-end;
        margin-top: 5px;
        color: var(--primary);
    }

    .pricing-title {
        text-align: center;
        margin-top: 20px;
        font-size: 28px;
    }

    .pricing-btn {
        width: 100%;
        align-self: center;
        text-align: center;
        justify-content: center;
    }
}