/* ============================================
   COMPLETE EASYDRIVE CSS - RESPONSIVE
   Desktop design TIDAK BERUBAH, Mobile responsive
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #65BDED;
    --secondary-color: #99D6DD;
    --light-blue: #7DD3FC;
    --white: #FFFFFF;
    --dark-color: #1F2937;
    --light-bg: #F3F4F6;
    --text-color: #374151;
    --border-radius: 12px;
}

body {
    font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: #99D6DD;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(153, 214, 221, 0.6);
}

.btn-primary:hover {
    background: #B8E5EA;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(153, 214, 221, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-hero {
    background: #99D6DD;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(153, 214, 221, 0.6);
}

.btn-hero:hover {
    background: #B8E5EA;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(153, 214, 221, 0.5);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-test-drive {
    background: #99D6DD;
    color: var(--white);
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(153, 214, 221, 0.6);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-test-drive:hover {
    background: #B8E5EA;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(153, 214, 221, 0.5);
}

/* ============================================
   HEADER / NAVIGATION — TIDAK DIUBAH
   ============================================ */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: none;
}

.header.scrolled {
    background: linear-gradient(90deg, #65BDED 0%, #99D6DD 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 40px;
    transition: padding 0.4s ease;
    margin-right: -15rem;
}

.header.scrolled .navbar {
    padding: 0.8rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.header.scrolled .logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin-left: auto;
    margin-right: 0rem;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.header.scrolled .nav-menu a {
    text-shadow: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.navbar .btn-primary {
    flex-shrink: 0;
    padding: 10px 22px;
    white-space: nowrap;
    margin-left: 0;
}

.header:not(.scrolled) .btn-primary {
    box-shadow: 0 4px 12px rgba(153, 214, 221, 0.7);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* ============================================
   HERO SLIDER — BAHARU (ganti .hero lama)
   ============================================ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #0d1b2a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide.slide-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.slide-video {
    background: #000;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 40, 60, 0.45);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-content {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-slide.active .hero-content {
    animation: heroFadeUp 0.75s ease 0.15s both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(153, 214, 221, 0.2);
    border: 1px solid rgba(153, 214, 221, 0.5);
    color: #cdf0f7;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(6px);
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.5);
}

.highlight {
    color: #7DD3FC;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7), 0 0 15px rgba(0,0,0,0.5);
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 5px;
    border-color: var(--white);
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 10;
}

.hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #65BDED, #99D6DD);
    width: 0%;
}

/* ============================================
   WHY CHOOSE US — TIDAK DIUBAH
   ============================================ */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.feature-card.animate-in:hover {
    transform: translateY(-10px);
}

.feature-card:nth-child(1) { transition-delay: 0s;    }
.feature-card:nth-child(2) { transition-delay: 0.15s; }
.feature-card:nth-child(3) { transition-delay: 0.30s; }
.feature-card:nth-child(4) { transition-delay: 0.45s; }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #50a8d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ============================================
   FEATURED CARS - MULTI-CARD SLIDER — TIDAK DIUBAH
   ============================================ */
.featured-cars {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.featured-cars .container {
    max-width: 100%;
    padding: 0;
}

.featured-cars .section-title {
    padding: 0 20px;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px;
    max-width: 100%;
    margin: 0 auto;
}

.featured-cars::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(101, 189, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cars-slider {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 0 20px;
    justify-content: flex-start;
}

.car-card {
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    background: transparent;
    position: relative;
    transition: all 0.4s ease;
    user-select: none;
}

.car-card:hover {
    transform: translateY(-12px);
}

.car-image-wrapper {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
    margin-bottom: 1.5rem;
    background: transparent;
}

.car-image {
    width: 105%;
    height: 105%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    pointer-events: none;
}

.car-card:hover .car-image {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.3));
}

.car-info {
    padding: 0 1rem;
    text-align: center;
    background: transparent;
}

.car-card h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.car-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.car-price-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.4;
}

/* ============================================
   ARROWS - COMPLETELY HIDDEN
   ============================================ */
.slider-arrow {
    display: none !important;
}

.slider-arrow.prev,
.slider-arrow.next {
    display: none !important;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: #d0d0d0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: var(--light-blue);
    transform: scale(1.2);
}

/* ============================================
   PROMOTION — BAHARU (minimalist professional)
   ============================================ */
.promotion {
    padding: 80px 0;
    background: #f9f9f9;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.promo-timer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-timer-units {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px 16px;
    min-width: 56px;
}

.promo-timer-unit span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.promo-timer-unit small {
    font-size: 0.6rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.promo-timer-colon {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 12px;
}

.promo-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.promo-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.promo-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.promo-card-featured {
    background: linear-gradient(160deg, #FF8C00, #FF6B00);
    border-color: transparent;
}

.promo-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #FF6B00;
    background: #fff4ec;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
}

.promo-card-featured .promo-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.promo-plan {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.promo-card-featured .promo-plan {
    color: var(--white);
}

.promo-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.promo-card-featured .promo-price {
    border-color: rgba(255,255,255,0.2);
}

.promo-price-from {
    font-size: 0.78rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-card-featured .promo-price-from {
    color: rgba(255,255,255,0.7);
}

.promo-price-amount {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1.1;
}

.promo-card-featured .promo-price-amount {
    color: var(--white);
}

.promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.promo-list li {
    font-size: 0.88rem;
    color: #555;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}

.promo-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background: #FF6B00;
    border-radius: 50%;
}

.promo-card-featured .promo-list li {
    color: rgba(255,255,255,0.9);
}

.promo-card-featured .promo-list li::before {
    background: rgba(255,255,255,0.7);
}

.btn-claim {
    display: block;
    text-align: center;
    background: var(--dark-color);
    color: var(--white);
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-claim:hover {
    background: #111;
    transform: translateY(-1px);
}

.btn-claim-light {
    background: var(--white);
    color: #FF6B00;
}

.btn-claim-light:hover {
    background: #fff5ee;
    transform: translateY(-1px);
}

/* ================================
   TESTIMONY SECTION — GOOGLE REVIEW SLIDER
   ================================ */
/* Avatar initials — ganti gambar yang broken */
.testimony-avatar-init {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}
 
/* Warna avatar — setiap reviewer lain warna */
.av1 { background: #E6F1FB; color: #185FA5; }
.av2 { background: #E1F5EE; color: #0F6E56; }
.av3 { background: #FAEEDA; color: #854F0B; }
.av4 { background: #EEEDFE; color: #534AB7; }
.av5 { background: #FAECE7; color: #993C1D; }
.av6 { background: #FBEAF0; color: #993556; }
.av7 { background: #EAF3DE; color: #3B6D11; }
 
/* "...more" link — tekan terus pergi Google Review */
.testimony-read-more {
    color: #65BDED;
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: inline;
}
.testimony-read-more:hover {
    text-decoration: underline;
}
 
/* Bintang rating di footer card */
.testimony-stars {
    color: #FBBF24;
    font-size: 12px;
    letter-spacing: 1px;
}
 
/* Buang photo wrap — tak perlu lagi */
.testimony-photo-wrap,
.testimony-review-photo {
    display: none !important;
}

/* ============================================
   RESPONSIVE — Testimony only
   ============================================ */
@media (max-width: 968px) {
    .testimony-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .testimony-heading {
        font-size: 2rem;
    }
    .testimony-card {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .testimony-card {
        width: 260px;
    }
    .testimony-text {
        font-size: 0.85rem;
    }
}

/* ============================================
   FOOTER — TIDAK DIUBAH
   ============================================ */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
}

.contact-info i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ============================================
   RESPONSIVE - MOBILE ONLY — TIDAK DIUBAH
   Desktop design KEKAL SAMA
   ============================================ */

@media (max-width: 968px) {
    .navbar {
        margin-right: 0;
    }

    .navbar .btn-primary {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        margin: 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        color: var(--dark-color);
        text-shadow: none;
        font-size: 1.1rem;
    }
    
    .hero-slider {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .promo-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    
    .slider-container {
        padding: 0 50px;
    }
    
    .car-card {
        min-width: 320px;
        max-width: 320px;
    }
    
    .car-image-wrapper {
        height: 220px;
    }

    .testimony-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .testimony-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimony-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-slider {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .slider-container {
        padding: 0 40px;
    }
    
    .car-card {
        min-width: 300px;
        max-width: 300px;
    }
    
    .car-image-wrapper {
        height: 200px;
    }
    
    .car-card h3 {
        font-size: 1.4rem;
    }
    
    .car-price {
        font-size: 1.7rem;
    }
    
    .btn-test-drive {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .promo-price-amount {
        font-size: 2.2rem;
    }

    .testimony-img-wrap {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero-slider {
        min-height: 450px;
    }

    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero,
    .btn-hero-outline {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .promo-timer {
        flex-direction: column;
        gap: 0.8rem;
    }

    .promo-timer-unit span {
        font-size: 1.3rem;
    }
    
    .slider-container {
        padding: 0 30px;
    }
    
    .car-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .car-image-wrapper {
        height: 180px;
    }
    
    .car-card h3 {
        font-size: 1.3rem;
    }
    
    .car-price {
        font-size: 1.5rem;
    }
    
    .car-price-note {
        font-size: 0.75rem;
    }

    .testimony-img-wrap {
        height: 200px;
    }

    .testimony-text {
        font-size: 0.9rem;
    }
}