/* ============================================
   FIRDAUS RENTAL MOBIL - MODERN TEAL THEME
   Color Scheme: Dark Navy + Teal/Cyan
   Fresh, Modern, Professional
   ============================================ */

/* Color Variables */
:root {
    /* Main Palette */
    --primary-teal: #06b6d4;
    --primary-hover: #0891b2;
    --accent-gold: #f59e0b;
    /* New Vibrant Accent */
    --accent-gold-hover: #d97706;

    /* Dark & Light */
    --dark-navy: #0f172a;
    --dark-surface: #1e293b;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-light: #f0fdf4;
    /* Slight tint */
    --white: #ffffff;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Prevent focus scroll on mobile */
    scroll-margin: 0 !important;
    scroll-padding: 0 !important;
}

html {
    scroll-behavior: auto !important;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: none;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--text-main);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
    overscroll-behavior-y: none;
}

/* Prevent focus-induced scroll on buttons and links */
button,
a,
input,
select,
textarea {
    scroll-margin-block: 0 !important;
    scroll-margin-inline: 0 !important;
}

/* ============================================
   NAVIGATION - RESPONSIVE
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    background: white;
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.brand-title {
    font-size: 1.5rem;
    color: #2d3748;
    font-weight: 800;
}

.brand-text p {
    font-size: 0.9rem;
    background: #06b6d4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    position: relative;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    transition: all 0.3s ease;
    left: 0;
    border-radius: 3px;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    top: 8px;
}

.menu-toggle.active .hamburger-icon {
    background: transparent;
}

.menu-toggle.active .hamburger-icon::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--dark-navy);
}

.menu-toggle.active .hamburger-icon::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--dark-navy);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        /* Hide desktop menu on mobile */
    }
}

.nav-menu a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: capitalize;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #06b6d4;
    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 {
    background: #06b6d4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ea580c 100%);
    /* Gold/Orange Gradient */
    color: white;
    padding: 0.8rem 2.2rem;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .navbar .cta-btn {
        display: none;
        /* Hide desktop CTA button */
    }
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

/* ============================================
   HERO SECTION - RESPONSIVE
   ============================================ */
.hero {
    margin-top: 100px;
    padding: 4rem 5%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: white;
    width: 100%;
    max-width: 100vw;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    /* Larger */
    margin-bottom: 1.2rem;
    color: var(--dark-navy);
    line-height: 1.1;
    animation: fadeInUp 1s ease;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
    max-width: 90%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: #f8fafc;
    border-color: #06b6d4;
}

.stat-box h3 {
    font-size: 2.5rem;
    background: #06b6d4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-box p {
    font-size: 1rem;
    color: #4a5568;
}

/* ============================================
   SLIDER - SWIPE & PROGRESS BAR
   ============================================ */
.slider-section {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 125%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    cursor: grab;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.slider-section:active {
    cursor: grabbing;
}

/* Touch feedback untuk mobile */
@media (hover: none) and (pointer: coarse) {
    .slider-section {
        cursor: default;
    }

    .slider-section:active {
        cursor: default;
    }
}

.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    overscroll-behavior: contain;
}

/* On mobile, allow vertical scroll through slider */
@media (max-width: 768px) {
    .slider-wrapper {
        touch-action: pan-y !important;
        pointer-events: none;
    }

    .slider-wrapper img {
        pointer-events: auto;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 300px;
    z-index: 100;
    padding-bottom: 20px;
}


.progress-bar {
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 2px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-fill {
    height: 100%;
    background: #06b6d4;
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 15px rgba(15, 23, 42, 0.6);
}

.slide-counter {
    position: absolute;
    bottom: 0;
    /* Align with the bottom of the progress bar container */
    right: 0;
    color: #2d3748;
    /* Change color to be visible against white background */
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 101;
}

/* Katalog Slide */
.katalog-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    width: 100%;
    height: 100%;
}

.katalog-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
}

/* Responsive image sizing untuk katalog */
@media (max-width: 768px) {
    .katalog-slide img {
        object-fit: contain;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .katalog-slide img {
        object-fit: contain;
        padding: 0.3rem;
    }
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: var(--dark-navy);
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 10px;
}

/* ============================================
   WHY CHOOSE US - RESPONSIVE
   ============================================ */
.why-section {
    padding: 6rem 5%;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotateY(360deg);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: #06b6d4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.why-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* ============================================
   SERVICES - RESPONSIVE
   ============================================ */
.services-section {
    padding: 6rem 5%;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: #06b6d4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
}

.service-features li:hover {
    padding-left: 10px;
    color: #2d3748;
}

.service-features li:before {
    content: "✓ ";
    background: #06b6d4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-right: 10px;
}

/* ============================================
   CARS SECTION - IMPROVED WITH CONSISTENT IMAGE SIZING
   ============================================ */
.cars-section {
    padding: 6rem 5%;
    background: #f8fafc;
}

/* Armada Search Container */
.armada-search-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
    border-color: #06b6d4;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}

.search-box input::placeholder {
    color: #94a3b8;
}

.search-clear-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #e2e8f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-clear-btn:hover {
    background: #cbd5e1;
    color: #334155;
}

.search-result-info {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Prevent single card from stretching too wide */
.car-card {
    max-width: 450px;
    justify-self: start;
}

.car-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    opacity: 1;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

/* Improved Image Container with Consistent Sizing */
.car-image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.car-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.car-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.car-card:hover img {
    transform: scale(1.15) rotate(1deg);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.car-info {
    padding: 2rem;
    position: relative;
}

.car-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.car-price-container {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.car-price {
    font-size: 2rem;
    background: #06b6d4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.car-duration {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(6, 182, 212, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.feature-tag:hover {
    background: #06b6d4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
}

.book-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--dark-navy);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.book-btn:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.book-btn:active {
    transform: translateY(0);
}

/* Responsive adjustments for car section */
@media (max-width: 768px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cars-section .car-card .car-image-container {
        height: 400px !important;
        min-height: 400px !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 24px 24px 0 0 !important;
        overflow: hidden !important;
    }

    .cars-section .car-card img {
        padding: 0 !important;
        margin: 0 !important;
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
    }

    .car-info {
        padding: 1.5rem;
    }

    .car-info h3 {
        font-size: 1.4rem;
    }

    .car-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .cars-section .car-card .car-image-container {
        height: 400px !important;
        min-height: 400px !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 24px 24px 0 0 !important;
        overflow: hidden !important;
    }

    .cars-section .car-card img {
        padding: 0 !important;
        margin: 0 !important;
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
    }

    .car-info {
        padding: 1.2rem;
    }

    .car-info h3 {
        font-size: 1.3rem;
    }

    .car-price {
        font-size: 1.6rem;
    }

    .book-btn {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* ============================================
   GALERI PREVIEW - RESPONSIVE
   ============================================ */
.galeri-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.9) 100%);
}

.galeri-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #4a5568;
    margin-top: -2rem;
    margin-bottom: 4rem;
    font-style: italic;
    animation: fadeIn 1.5s ease;
}

/* Filter Buttons */
.galeri-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    color: #4a5568;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: #0891b2;
    color: #2d3748;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-color: #06b6d4;
    color: white;
    box-shadow: 0 5px 25px rgba(6, 182, 212, 0.5);
    transform: translateY(-3px);
}

/* Gallery Grid Preview */
.galeri-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.galeri-item-preview {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    height: 350px;
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.galeri-item-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    border-color: var(--accent-gold);
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 20;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.5);
    animation: pulse 2s infinite;
}

.galeri-item-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
}

.galeri-item-preview:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Overlay Effect - Subtle (Hidden by default) */
.galeri-overlay-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.galeri-item-preview:hover .galeri-overlay-preview {
    opacity: 0;
    /* Keep hidden on hover */
}

.galeri-icon-preview {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    display: none;
    /* Hide icon */
}

.galeri-overlay-preview p {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    display: none;
    /* Hide text */
}

/* View More Button */
.galeri-more {
    text-align: center;
    margin-top: 4rem;
}

.view-more-btn {
    padding: 1.3rem 3.5rem;
    background: var(--dark-navy);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.4);
    background: var(--primary-teal);
}

.view-more-btn:active {
    transform: translateY(-2px) scale(1.05);
}

/* ============================================
   LIGHTBOX MODAL - RESPONSIVE
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 99999 !important;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
    transform: none !important;
}

.lightbox.active {
    display: flex !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Lightbox Image */
.lightbox-image {
    max-width: 90%;
    max-height: 85%;
    border-radius: 15px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 99998;
    transform: none !important;
    -webkit-transform: none !important;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 100000 !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.5);
    transform: none !important;
    -webkit-transform: none !important;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close span {
    font-size: 2rem;
    line-height: 1;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-close:hover {
    background: #06b6d4;
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.9);
    border-color: white;
}

.lightbox-prev:hover {
    background: #06b6d4;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.9);
    border-color: white;
}

.lightbox-next:hover {
    background: #06b6d4;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.9);
    border-color: white;
}

.lightbox-close:active,
.lightbox-prev:active,
.lightbox-next:active {
    transform: scale(0.95);
}

/* Lightbox Caption - Hidden */
.lightbox-caption {
    display: none;
    /* Hide caption text */
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* OLD TESTIMONIALS CSS REMOVED - SEE NEW GOOGLE REVIEWS STYLE AT END OF FILE */

/* ============================================
   CONTACT SECTION - RESPONSIVE
   ============================================ */
.contact-section {
    padding: 6rem 5%;
    background: #f8fafc;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.contact-container p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 3.5rem;
    line-height: 1.7;
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 25px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 140px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    background: #f8fafc;
    border-color: #06b6d4;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.4);
}

.contact-btn span {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.contact-btn:hover span {
    transform: scale(1.2) rotateY(360deg);
}

.contact-btn-maps {
    position: relative;
    overflow: hidden;
}

.maps-thumbnail {
    width: 100%;
    height: 170px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.maps-thumbnail iframe {
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.contact-btn-maps:hover .maps-thumbnail {
    transform: scale(1.08);
}

/* ============================================
   FOOTER - RESPONSIVE
   ============================================ */
.footer {
    background: white;
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
    border-top: 4px solid var(--primary-teal);
    position: relative;
    color: var(--text-main);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 800;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer-section p,
.footer-section a {
    color: #4a5568;
    line-height: 2.2;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    background: #06b6d4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--dark-navy);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    color: #4a5568;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .slider-section {
        padding-bottom: 120%;
    }

    .slider-progress {
        width: 85%;
        padding-bottom: 15px;
    }

    .progress-bar {
        height: 4px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {

    /* Force layout recalculation */
    body {
        min-width: 0;
        /* Prevent scroll jump on mobile */
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: none;
        touch-action: pan-y;
    }

    html {
        /* Prevent scroll restoration */
        overscroll-behavior: none;
        touch-action: pan-y;
        scroll-behavior: auto !important;
        /* Disable smooth scroll on mobile */
    }

    /* Prevent layout shift - but exclude lightbox */
    body>*:not(.lightbox) {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Ensure lightbox is always on top */
    .lightbox {
        z-index: 99999 !important;
        transform: none !important;
    }

    .lightbox * {
        transform: none !important;
    }

    .menu-toggle {
        display: block;
    }

    /* Navigation */
    .nav-menu {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        max-width: 100vw;
        background: white;
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(6, 182, 212, 0.1);
        font-size: 1.2rem;
        font-weight: 600;
        text-align: left;
    }

    .cta-btn {
        margin-top: 1rem;
        width: 90%;
        text-align: center;
        margin: 1rem auto;
    }

    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    /* Slider */
    .slider-section {
        padding-bottom: 110%;
        border-radius: 15px;
    }

    .slider-progress {
        width: 90%;
        padding-bottom: 15px;
    }

    .progress-bar {
        height: 3px;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Cars Section - Grid 2 kolom untuk tablet */
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .car-card {
        max-width: 100%;
    }

    .search-box input {
        font-size: 0.95rem;
        padding: 0.875rem 3rem 0.875rem 1.25rem;
    }

    /* Gallery */
    .galeri-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .galeri-filter {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .galeri-grid-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .galeri-item-preview {
        height: 200px;
    }

    .view-more-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Lightbox */
    .lightbox-image {
        max-width: 95%;
        max-height: 70%;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-close {
        width: 50px;
        height: 50px;
        top: 1rem;
        right: 1rem;
    }

    .lightbox-close span {
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-caption {
        display: none;
        /* Keep hidden */
    }

    /* Contact */
    .contact-container h2 {
        font-size: 2.2rem;
    }

    .contact-container p {
        font-size: 1.05rem;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .maps-thumbnail {
        height: 140px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero {
        margin-top: 80px;
        padding: 2rem 5%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Lightbox Controls - Extra Small */
    .lightbox-close {
        width: 45px;
        height: 45px;
        top: 0.5rem;
        right: 0.5rem;
    }

    .lightbox-close span {
        font-size: 1.3rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    /* Cars Section - Grid 2 kolom untuk mobile */
    .cars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .car-card {
        max-width: 100%;
        justify-self: center;
    }

    .armada-search-container {
        margin-bottom: 2rem;
    }

    .search-box input {
        font-size: 0.9rem;
        padding: 0.75rem 2.5rem 0.75rem 1rem;
    }

    .search-box input::placeholder {
        font-size: 0.85rem;
    }

    .search-clear-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .search-result-info {
        font-size: 0.85rem;
    }

    .slider-section {
        padding-bottom: 125%;
        border-radius: 12px;
    }

    .slider-progress {
        width: 95%;
        padding-bottom: 12px;
    }

    .progress-bar {
        height: 3px;
    }

    .katalog-slide img {
        padding: 0.5rem;
    }

    .why-card,
    .service-card {
        padding: 1.5rem;
    }

    .contact-btn {
        min-height: 120px;
        padding: 1.5rem 1rem;
    }

    .contact-btn span {
        font-size: 2rem;
    }

    .footer {
        padding: 3rem 5% 1.5rem;
    }
}

/* Mobile kecil (landscape) */
@media (max-width: 480px) and (orientation: landscape) {
    .slider-section {
        padding-bottom: 80%;
    }

    .hero {
        min-height: auto;
        padding: 2rem 5%;
    }

    .hero-container {
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .slider-progress {
        width: 90%;
        padding-bottom: 10px;
    }
}

/* Landscape mode untuk tablet */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .slider-section {
        padding-bottom: 90%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-box h3 {
        font-size: 1.8rem;
    }
}

/* Optimasi untuk tablet kecil */
@media (max-width: 600px) and (min-width: 481px) {
    .slider-section {
        padding-bottom: 115%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .slider-progress {
        width: 92%;
        padding-bottom: 14px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .slider-section {
        padding-bottom: 130%;
        border-radius: 10px;
    }

    .slider-progress {
        width: 95%;
        padding-bottom: 10px;
    }

    .progress-bar {
        height: 2px;
    }

    .stat-box h3 {
        font-size: 1.8rem;
    }

    .stat-box p {
        font-size: 0.85rem;
    }
}

/* Explicitly hide car-badge as requested by user */
.car-badge {
    display: none !important;
}

/* Large Desktop Screens */
@media (min-width: 1600px) {

    .hero-container,
    .why-grid,
    .services-grid,
    .cars-grid,
    .galeri-grid-preview,
    .testimonials-grid,
    .footer-container {
        max-width: 1600px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: #06b6d4;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #06b6d4;
    transition: all 0.3s ease-in-out;
}

.hamburger-icon::before {
    transform: translateY(-8px);
}

.hamburger-icon::after {
    transform: translateY(8px);
}

/* Animation for active state */
.menu-toggle.active .hamburger-icon {
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger-icon::before {
    transform: rotate(90deg) translateX(0);
    opacity: 0;
}

.menu-toggle.active .hamburger-icon::after {
    transform: translateY(0) rotate(90deg);
}

/* Show hamburger menu on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
    }

    .nav-menu {
        display: none !important;
        /* Hide desktop menu on mobile */
    }

    .nav-menu.active {
        display: flex !important;
        /* Show mobile menu when active */
    }

    .navbar .cta-btn {
        display: none !important;
        /* Hide desktop CTA button */
    }
}

/* Ensure desktop menu shows on larger screens */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
    }

    .navbar .cta-btn {
        display: inline-block !important;
    }
}

/* ============================================
   OPTIMASI UNTUK PERANGKAT SENTUH
   ============================================ */
@media (hover: none) and (pointer: coarse) {

    /* Increase touch target sizes for better mobile UX */
    .filter-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .book-btn,
    .contact-btn,
    .view-more-btn {
        min-height: 48px;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        min-width: 48px;
        min-height: 48px;
    }

    /* Remove hover effects on touch devices */
    .car-card:hover,
    .service-card:hover,
    .why-card:hover,
    .testimonial-card:hover {
        transform: none;
    }

    /* Add active states for touch feedback */
    .car-card:active {
        transform: scale(0.98);
    }

    .book-btn:active,
    .contact-btn:active,
    .view-more-btn:active,
    .filter-btn:active {
        transform: scale(0.95);
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

    .navbar,
    .slider-section,
    .lightbox,
    .menu-toggle {
        display: none !important;
    }

    body {
        background: white;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .navbar,
    .car-card,
    .service-card,
    .why-card {
        border: 2px solid currentColor;
    }
}

/* ============================================
   FIX UNTUK BUG INSPECT ELEMENT
   ============================================ */

/* Pastikan semua container tidak overflow */
.hero,
.why-section,
.services-section,
.cars-section,
.galeri-section,
.testimonials-section,
.contact-section,
.footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Force browser untuk mengenali breakpoint */
@media screen and (max-width: 768px) {
    * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}

/* Prevent layout shift saat DevTools dibuka */
@media screen {
    body {
        overflow-x: hidden !important;
        position: relative;
    }
}

/* Fix untuk Chrome DevTools */
@supports (-webkit-appearance: none) {
    @media (max-width: 768px) {
        .nav-menu {
            -webkit-transform: translateX(-100%);
        }

        .nav-menu.active {
            -webkit-transform: translateX(0);
        }
    }
}

/* Fix untuk Firefox DevTools */
@-moz-document url-prefix() {
    @media (max-width: 768px) {
        .menu-toggle {
            display: block !important;
        }
    }
}

/* ============================================
   GALERI FULL PAGE - RESPONSIVE
   ============================================ */

.galeri-full-page {
    min-height: 100vh;
    padding: 120px 5% 4rem;
    background: #f8fafc;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.galeri-full-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.galeri-full-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    font-weight: 800;
}

.galeri-full-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
    border-radius: 2px;
}

.galeri-full-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #4a5568;
    margin-bottom: 4rem;
    font-style: italic;
    animation: fadeIn 1.2s ease;
}

/* Gallery Grid Full */
.galeri-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.galeri-full-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 220px;
    background: white;
}

.galeri-full-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.galeri-full-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.galeri-full-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Overlay Effect - Subtle (Hidden by default) */
.galeri-full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.galeri-full-item:hover .galeri-full-overlay {
    opacity: 0;
    /* Keep hidden on hover */
}

.galeri-full-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    display: none;
    /* Hide icon */
}

.galeri-full-overlay p {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    display: none;
    /* Hide text */
}

/* Back Button Container */
.galeri-back-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.galeri-back-btn,
.galeri-contact-btn {
    padding: 1.3rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.galeri-back-btn {
    background: white;
    background: #06b6d4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 2px solid #06b6d4;
}

.galeri-contact-btn {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.galeri-back-btn::before,
.galeri-contact-btn::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: left 0.5s ease;
}

.galeri-back-btn:hover::before,
.galeri-contact-btn:hover::before {
    left: 100%;
}

.galeri-back-btn:hover {
    background: #06b6d4;
    color: white;
    -webkit-text-fill-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(6, 182, 212, 0.5);
}

.galeri-contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.7);
    background: #06b6d4;
}

/* ============================================
   RESPONSIVE - GALERI FULL PAGE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .galeri-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.875rem;
    }

    .galeri-full-item {
        height: 200px;
    }

    .galeri-full-title {
        font-size: 3rem;
    }

    .galeri-full-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .galeri-full-page {
        padding: 100px 5% 3rem;
    }

    .galeri-full-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .galeri-full-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .galeri-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.75rem;
    }

    .galeri-full-item {
        height: 180px;
    }

    .galeri-full-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .galeri-full-overlay p {
        font-size: 1.2rem;
    }

    .galeri-back-btn-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .galeri-back-btn,
    .galeri-contact-btn {
        width: 100%;
        max-width: 400px;
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .galeri-full-page {
        padding: 90px 4% 2rem;
    }

    .galeri-full-title {
        font-size: 2rem;
    }

    .galeri-full-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .galeri-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .galeri-full-item {
        height: 180px;
    }

    .galeri-full-overlay {
        padding: 2rem;
    }

    .galeri-full-icon {
        font-size: 2.5rem;
    }

    .galeri-full-overlay p {
        font-size: 1.1rem;
    }

    .galeri-back-btn,
    .galeri-contact-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .galeri-filter {
        gap: 0.6rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .galeri-full-title {
        font-size: 1.8rem;
    }

    .galeri-full-subtitle {
        font-size: 0.95rem;
    }

    .galeri-full-item {
        height: 140px;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Landscape mode untuk galeri */
@media (max-width: 900px) and (orientation: landscape) {
    .galeri-full-page {
        padding: 100px 5% 2rem;
    }

    .galeri-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }

    .galeri-full-item {
        height: 150px;
    }

    .galeri-full-title {
        font-size: 2.2rem;
    }

    .galeri-full-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* ============================================
   FIX UNTUK NAVBAR DI GALERI PAGE
   ============================================ */

/* Pastikan navbar tidak overlap dengan konten galeri */
.galeri-full-page .navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Smooth transition untuk filter */
.galeri-full-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        opacity 0.3s ease,
        transform 0.3s ease;
}

/* Prevent layout shift */
.galeri-full-grid {
    width: 100%;
    max-width: 100%;
}

/* Fix untuk gambar yang tidak muncul */
.galeri-full-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f8fafc;
}

/* Loading state untuk gambar */
.galeri-full-item img:not([src]),
.galeri-full-item img[src=""] {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
}

.galeri-full-item img:not([src])::after,
.galeri-full-item img[src=""]::after {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

/* ============================================
   ADDITIONAL FIXES UNTUK GALERI FULL PAGE
   ============================================ */

/* Prevent horizontal scroll */
.galeri-full-page,
.galeri-full-container,
.galeri-full-grid {
    overflow-x: hidden;
    max-width: 100%;
}

/* Better spacing untuk mobile */
@media (max-width: 480px) {
    .galeri-full-page {
        padding-left: 3%;
        padding-right: 3%;
    }

    .category-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Fix untuk touch devices */
@media (hover: none) and (pointer: coarse) {
    .galeri-full-item {
        /* Show overlay on tap instead of hover */
        -webkit-tap-highlight-color: transparent;
    }

    .galeri-full-item:active .galeri-full-overlay {
        opacity: 1;
    }

    /* Reduce transform on mobile for better performance */
    .galeri-full-item:hover {
        transform: translateY(-2px);
    }
}

/* Optimize untuk performance */
.galeri-full-item,
.galeri-full-item img {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Better grid gap untuk tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .galeri-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.75rem;
    }
}

/* Ensure consistent height across all items */
@media (min-width: 769px) {
    .galeri-full-grid {
        grid-auto-rows: 220px;
    }
}

@media (max-width: 768px) {
    .galeri-full-grid {
        grid-auto-rows: 180px;
    }
}

@media (max-width: 480px) {
    .galeri-full-grid {
        grid-auto-rows: 160px;
    }
}

/* Fix untuk lightbox di galeri page */
.galeri-full-page .lightbox {
    z-index: 10000;
}

.galeri-full-page .lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
}

/* Better button spacing di mobile */
@media (max-width: 480px) {
    .galeri-back-btn-container {
        padding: 0 1rem;
    }
}

/* Smooth scroll untuk galeri page */
.galeri-full-page {
    scroll-behavior: smooth;
}

/* Fix untuk filter buttons overflow */
.galeri-filter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.galeri-filter::-webkit-scrollbar {
    display: none;
}

/* Ensure buttons don't wrap awkwardly */
@media (max-width: 480px) {
    .galeri-filter {
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }
}

/* ============================================
   VIBRANT COLOR ENHANCEMENTS
   ============================================ */

/* Animated gradient background untuk sections */
.hero,
.services-section,
.galeri-section,
.contact-section {
    position: relative;
    overflow: hidden;
}

.hero::before,
.services-section::before,
.galeri-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.05) 0%, transparent 50%);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Ensure content is above animated background */
.hero-container,
.services-grid,
.galeri-grid-preview,
.contact-container {
    position: relative;
    z-index: 1;
}

/* Colorful accents untuk cards */
.car-card::after,
.service-card::after,
.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #06b6d4;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.car-card:hover::after,
.service-card:hover::after,
.why-card:hover::after {
    opacity: 1;
}

/* Glowing effect untuk buttons */
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(15, 23, 42, 0.4),
            0 0 40px rgba(6, 182, 212, 0.3),
            0 0 60px rgba(6, 182, 212, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(15, 23, 42, 0.6),
            0 0 60px rgba(6, 182, 212, 0.5),
            0 0 90px rgba(6, 182, 212, 0.4);
    }
}

.cta-btn:hover,
.book-btn:hover,
.view-more-btn:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Colorful hover states untuk images */
.car-card:hover,
.galeri-item-preview:hover,
.galeri-full-item:hover {
    border-color: transparent;
    border-image: #06b6d4 1;
}

/* Testimonial card accent */
.testimonial-card {
    border-left: 4px solid transparent;
    border-image: #06b6d4 1;
}

.testimonial-card:hover {
    border-image: #06b6d4 1;
}

/* Stat box gradient border */
.stat-box {
    border: 2px solid transparent;
    background-image:
        linear-gradient(white, white),
        #06b6d4;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Progress bar animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.progress-fill {
    background: linear-gradient(90deg,
            #0f172a 0%,
            #06b6d4 25%,
            #06b6d4 50%,
            #06b6d4 75%,
            #0f172a 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

/* Filter button gradient border */
.filter-btn {
    border: 2px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(135deg, rgba(15, 23, 42, 0.3), rgba(6, 182, 212, 0.3));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.filter-btn:hover {
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.1), rgba(6, 182, 212, 0.1)),
        #06b6d4;
}

/* Colorful scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #06b6d4;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

/* Selection color */
::selection {
    background: #06b6d4;
    color: white;
}

::-moz-selection {
    background: #06b6d4;
    color: white;
}

/* ============================================
   ELEGANT MINIMALIST OVERRIDES
   ============================================ */

/* Remove focus outline yang mengganggu */
*:focus {
    outline: none !important;
}

a:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove tap highlight di mobile */
* {
    -webkit-tap-highlight-color: transparent !important;
}

/* Clean section backgrounds */
.why-section {
    background: white !important;
}

.services-section {
    background: #f8fafc !important;
}

.cars-section {
    background: white !important;
}

.galeri-section {
    background: #f8fafc !important;
}

.testimonials-section {
    background: white !important;
}

.contact-section {
    background: #f8fafc !important;
}

.galeri-full-page {
    background: white !important;
}

/* Subtle shadows untuk depth */
.car-card,
.service-card,
.why-card,
.testimonial-card {
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08) !important;
}

.car-card:hover,
.service-card:hover,
.why-card:hover,
.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15) !important;
}

/* Clean borders */
.car-card,
.service-card,
.why-card {
    border: 1px solid #e2e8f0 !important;
}

.car-card:hover,
.service-card:hover,
.why-card:hover {
    border-color: #06b6d4 !important;
}

/* Simplify button styles */
.book-btn,
.view-more-btn,
.galeri-contact-btn {
    background: #06b6d4 !important;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25) !important;
}

.book-btn:hover,
.view-more-btn:hover,
.galeri-contact-btn:hover {
    background: #0891b2 !important;
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.35) !important;
}

/* Clean navbar */
.navbar {
    background: white !important;
    border-bottom: 1px solid #e2e8f0;
}

/* Remove heavy animations */
.hero::before,
.services-section::before,
.galeri-section::before,
.contact-section::before {
    display: none !important;
}

/* Simplify progress bar */
.progress-fill {
    background: #06b6d4 !important;
    box-shadow: none !important;
}

/* Clean filter buttons */
.filter-btn.active {
    background: #06b6d4 !important;
    color: white !important;
    border-color: #06b6d4 !important;
}

/* Simplify lightbox */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    background: #06b6d4 !important;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3) !important;
}

.lightbox-caption {
    background: rgba(6, 182, 212, 0.95) !important;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4) !important;
}

/* Clean category badges */
.category-badge {
    background: #06b6d4 !important;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3) !important;
}

/* Simplify footer */
.footer {
    border-top: 1px solid #e2e8f0 !important;
}

/* Clean stat boxes */
.stat-box {
    background: white !important;
    border: 1px solid #e2e8f0 !important;
}

.stat-box:hover {
    border-color: #06b6d4 !important;
    background: white !important;
}

/* Remove gradient text effects */
.section-title::after {
    background: #06b6d4 !important;
}

/* Clean hamburger menu */
.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    background: #06b6d4 !important;
}

/* ============================================
   FIX OUTLINE & FOCUS STATES
   ============================================ */

/* Remove semua outline yang mengganggu */
a,
button,
input,
select,
textarea,
.nav-menu a,
.cta-btn,
.book-btn,
.filter-btn,
.view-more-btn,
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.menu-toggle,
.contact-btn {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Subtle focus state untuk accessibility (tanpa kotak biru) */
a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(6, 182, 212, 0.3) !important;
    outline-offset: 2px;
}

/* Remove default browser focus */
:focus {
    outline: none !important;
}

::-moz-focus-inner {
    border: 0 !important;
}

/* Smooth transitions untuk semua interactive elements */
a,
button,
.nav-menu a,
.cta-btn,
.book-btn,
.filter-btn,
.car-card,
.service-card,
.why-card {
    transition: all 0.3s ease !important;
}

/* ============================================
   TEAL COLOR HARMONY
   ============================================ */

/* Stat box dengan teal accent */
.stat-box h3 {
    color: #06b6d4 !important;
}

/* Section titles dengan teal */
.section-title {
    color: #0f172a !important;
}

/* Nav menu active state */
.nav-menu a.active,
.nav-menu a:hover {
    color: #06b6d4 !important;
}

/* Brand text */
.brand-text p {
    color: #06b6d4 !important;
}

/* Service & Why card titles */
.service-card h3,
.why-card h3 {
    color: #06b6d4 !important;
}

/* Car price dengan teal */
.car-price {
    color: #06b6d4 !important;
}

/* Feature tags */
.feature-tag {
    color: #06b6d4 !important;
    border-color: rgba(6, 182, 212, 0.3) !important;
}

.feature-tag:hover {
    background: #06b6d4 !important;
    color: white !important;
}

/* Contact button hover */
.contact-btn:hover {
    border-color: #06b6d4 !important;
    background: rgba(6, 182, 212, 0.05) !important;
}

/* Footer headings */
.footer-section h3 {
    color: #06b6d4 !important;
}

.footer-section h3::after {
    background: #06b6d4 !important;
}

/* Social links hover */
.social-links a:hover {
    background: #06b6d4 !important;
}

/* Galeri back button */
.galeri-back-btn {
    color: #06b6d4 !important;
    border-color: #06b6d4 !important;
}

.galeri-back-btn:hover {
    background: #06b6d4 !important;
    color: white !important;
}

/* Testimonial card border */
.testimonial-card {
    border-left-color: #06b6d4 !important;
}

/* Hero CTA button in content */
.hero-content .cta-btn {
    background: #06b6d4 !important;
}

.hero-content .cta-btn:hover {
    background: #0891b2 !important;
}

/* ============================================
   ELEGANT NAVY + GOLD COMBINATION
   ============================================ */

/* Gold accents untuk premium feel */
.stat-box h3 {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.car-price {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Section title dengan gradient navy-gold */
.section-title {
    background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.section-title::after {
    background: linear-gradient(90deg, transparent, #06b6d4, #0ea5e9, transparent) !important;
}

/* Hero title dengan gradient */
.hero-content h1 {
    background: linear-gradient(135deg, #0f172a, #06b6d4) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Buttons dengan navy solid */
.cta-btn,
.book-btn,
.view-more-btn,
.galeri-contact-btn {
    background: #06b6d4 !important;
}

.cta-btn:hover,
.book-btn:hover,
.view-more-btn:hover,
.galeri-contact-btn:hover {
    background: #0891b2 !important;
}

/* Gold hover effect untuk cards */
.car-card:hover,
.service-card:hover,
.why-card:hover {
    border-color: #06b6d4 !important;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.15), 0 0 0 1px rgba(14, 165, 233, 0.1) !important;
}

/* Feature tags dengan navy */
.feature-tag {
    color: #06b6d4 !important;
    border-color: rgba(6, 182, 212, 0.3) !important;
}

.feature-tag:hover {
    background: #06b6d4 !important;
    color: white !important;
}

/* Category badge dengan gradient */
.category-badge {
    background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
}

/* Progress bar dengan navy */
.progress-fill {
    background: linear-gradient(90deg, #06b6d4, #0891b2) !important;
}

/* Nav menu active dengan navy */
.nav-menu a.active,
.nav-menu a:hover {
    color: #06b6d4 !important;
}

.nav-menu a::after {
    background: linear-gradient(90deg, #06b6d4, #0ea5e9) !important;
}

/* Brand text dengan navy */
.brand-text p {
    color: #06b6d4 !important;
}

/* Service & Why card titles dengan navy */
.service-card h3,
.why-card h3 {
    color: #06b6d4 !important;
}

/* Footer dengan navy accent */
.footer-section h3 {
    color: #06b6d4 !important;
}

.footer-section h3::after {
    background: linear-gradient(90deg, #06b6d4, #0ea5e9) !important;
}

.footer {
    border-top: 2px solid #e2e8f0 !important;
}

/* Social links dengan navy */
.social-links a {
    background: rgba(6, 182, 212, 0.08) !important;
}

.social-links a:hover {
    background: #06b6d4 !important;
}

/* Contact button dengan navy border */
.contact-btn {
    border-color: rgba(6, 182, 212, 0.2) !important;
}

.contact-btn:hover {
    border-color: #06b6d4 !important;
    background: rgba(6, 182, 212, 0.05) !important;
}

/* Testimonial card dengan navy accent */
.testimonial-card {
    border-left: 4px solid #06b6d4 !important;
}

/* Lightbox dengan navy */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    background: #06b6d4 !important;
}

.lightbox-caption {
    background: rgba(6, 182, 212, 0.95) !important;
}

/* Filter button active dengan navy */
.filter-btn.active {
    background: #06b6d4 !important;
    border-color: #06b6d4 !important;
}

.filter-btn:hover {
    border-color: #06b6d4 !important;
    color: #06b6d4 !important;
}

/* Galeri back button */
.galeri-back-btn {
    color: #06b6d4 !important;
    border-color: #06b6d4 !important;
}

.galeri-back-btn:hover {
    background: #06b6d4 !important;
}

/* Stat box hover dengan subtle gold */
.stat-box:hover {
    border-color: #06b6d4 !important;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.1), 0 0 0 1px rgba(14, 165, 233, 0.05) !important;
}

/* Hamburger menu dengan navy */
.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    background: #06b6d4 !important;
}

/* Subtle gold glow pada hover buttons */
.cta-btn:hover,
.book-btn:hover {
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3), 0 0 20px rgba(14, 165, 233, 0.1) !important;
}

/* ============================================
   COMPLETE OUTLINE REMOVAL - NO MORE BOXES!
   ============================================ */

/* Nuclear option - remove ALL outlines */
* {
    outline: 0 !important;
    outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
}

*:focus,
*:active,
*:hover,
*:focus-visible {
    outline: 0 !important;
    outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    box-shadow: none !important;
}

/* Remove tap highlight di mobile */
* {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Allow text selection */
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
li {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Remove Firefox inner border */
::-moz-focus-inner {
    border: 0 !important;
    outline: 0 !important;
}

/* Remove any browser default focus ring */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0 !important;
    padding: 0 !important;
}

/* ============================================
   VIBRANT PURPLE + PINK - ATTRACTIVE & ENGAGING
   ============================================ */

/* Override semua warna menjadi purple-pink yang menarik */

/* Buttons dengan purple vibrant */
.cta-btn,
.book-btn,
.view-more-btn,
.galeri-contact-btn {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4) !important;
}

.cta-btn:hover,
.book-btn:hover,
.view-more-btn:hover,
.galeri-contact-btn:hover {
    background: linear-gradient(135deg, #0891b2, #06b6d4) !important;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* Section titles dengan gradient purple-pink */
.section-title {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 800 !important;
}

.section-title::after {
    background: linear-gradient(90deg, transparent, #06b6d4, #0ea5e9, transparent) !important;
    height: 3px !important;
}

/* Hero title dengan gradient */
.hero-content h1 {
    background: linear-gradient(135deg, #1e40af, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Stat box dengan purple */
.stat-box {
    border: 2px solid #dbeafe !important;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.02), rgba(14, 165, 233, 0.02)) !important;
}

.stat-box:hover {
    border-color: #06b6d4 !important;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(14, 165, 233, 0.05)) !important;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15) !important;
}

.stat-box h3 {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Cards dengan purple accent */
.car-card,
.service-card,
.why-card {
    border: 1px solid #eff6ff !important;
}

.car-card:hover,
.service-card:hover,
.why-card:hover {
    border-color: #06b6d4 !important;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2), 0 0 0 1px rgba(14, 165, 233, 0.1) !important;
}

/* Service & Why card titles */
.service-card h3,
.why-card h3 {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Car price dengan gradient */
.car-price {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 900 !important;
}

/* Feature tags dengan purple */
.feature-tag {
    background: rgba(6, 182, 212, 0.1) !important;
    color: #06b6d4 !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
}

.feature-tag:hover {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    color: white !important;
    border-color: transparent !important;
}

/* Progress bar dengan gradient */
.progress-bar {
    background: rgba(6, 182, 212, 0.1) !important;
}

.progress-fill {
    background: linear-gradient(90deg, #06b6d4, #60a5fa, #0ea5e9) !important;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5) !important;
}

/* Navigation dengan purple */
.nav-menu a.active,
.nav-menu a:hover {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.nav-menu a::after {
    background: linear-gradient(90deg, #06b6d4, #0ea5e9) !important;
}

.brand-text p {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Category badges dengan gradient */
.category-badge {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4) !important;
}

/* Filter buttons */
.filter-btn {
    border: 2px solid #dbeafe !important;
    color: #06b6d4 !important;
}

.filter-btn:hover {
    border-color: #06b6d4 !important;
    background: rgba(6, 182, 212, 0.05) !important;
}

.filter-btn.active {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    border-color: transparent !important;
    color: white !important;
}

/* Lightbox dengan purple */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4) !important;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, #0891b2, #06b6d4) !important;
}

.lightbox-caption {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.95), rgba(14, 165, 233, 0.95)) !important;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.5) !important;
}

/* Footer dengan purple */
.footer {
    border-top: 2px solid #eff6ff !important;
}

.footer-section h3 {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.footer-section h3::after {
    background: linear-gradient(90deg, #06b6d4, #0ea5e9) !important;
}

.social-links a {
    background: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid rgba(6, 182, 212, 0.2) !important;
}

.social-links a:hover {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    border-color: transparent !important;
}

/* Contact buttons */
.contact-btn {
    border: 2px solid #dbeafe !important;
}

.contact-btn:hover {
    border-color: #06b6d4 !important;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(14, 165, 233, 0.05)) !important;
}

/* Testimonial card */
.testimonial-card {
    border-left: 4px solid #06b6d4 !important;
}

.testimonial-card:hover {
    border-left-color: #0ea5e9 !important;
}

/* Galeri back button */
.galeri-back-btn {
    color: #06b6d4 !important;
    border: 2px solid #06b6d4 !important;
}

.galeri-back-btn:hover {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    color: white !important;
    border-color: transparent !important;
}

/* Hamburger menu */
.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    background: linear-gradient(90deg, #06b6d4, #0ea5e9) !important;
}

/* Navbar dengan subtle purple tint */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid #eff6ff !important;
}

/* Sections dengan subtle purple background */
.why-section {
    background: linear-gradient(180deg, white, rgba(6, 182, 212, 0.02)) !important;
}

.services-section {
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.02), white) !important;
}

.galeri-section {
    background: linear-gradient(180deg, white, rgba(6, 182, 212, 0.02)) !important;
}

.contact-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03), rgba(14, 165, 233, 0.03)) !important;
}

/* ============================================
   ELEGANT BLUE - PROFESSIONAL & TRUSTWORTHY
   ============================================ */

/* Override dengan biru elegan yang konsisten */

/* Feature tags - ALWAYS VISIBLE */
.feature-tag {
    background: rgba(6, 182, 212, 0.1) !important;
    color: #06b6d4 !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    font-weight: 600 !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.feature-tag:hover {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    color: white !important;
    border-color: transparent !important;
}

/* Buttons dengan biru elegan */
.cta-btn,
.book-btn,
.view-more-btn,
.galeri-contact-btn {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3) !important;
}

.cta-btn:hover,
.book-btn:hover,
.view-more-btn:hover,
.galeri-contact-btn:hover {
    background: linear-gradient(135deg, #0891b2, #06b6d4) !important;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4) !important;
}

/* Section titles dengan biru elegan */
.section-title {
    background: linear-gradient(135deg, #1e40af, #06b6d4) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.section-title::after {
    background: linear-gradient(90deg, transparent, #06b6d4, #0ea5e9, transparent) !important;
}

/* Hero title */
.hero-content h1 {
    background: linear-gradient(135deg, #0f172a, #1e40af, #06b6d4) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Stat box dengan biru */
.stat-box {
    border: 2px solid #dbeafe !important;
    background: white !important;
}

.stat-box:hover {
    border-color: #06b6d4 !important;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15) !important;
}

.stat-box h3 {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Cards dengan biru accent */
.car-card,
.service-card,
.why-card {
    border: 1px solid #eff6ff !important;
}

.car-card:hover,
.service-card:hover,
.why-card:hover {
    border-color: #06b6d4 !important;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15) !important;
}

/* Service & Why card titles */
.service-card h3,
.why-card h3 {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Car price dengan biru */
.car-price {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Progress bar dengan biru */
.progress-bar {
    background: rgba(6, 182, 212, 0.1) !important;
}

.progress-fill {
    background: linear-gradient(90deg, #06b6d4, #60a5fa, #0ea5e9) !important;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4) !important;
}

/* Navigation dengan biru */
.nav-menu a.active,
.nav-menu a:hover {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.nav-menu a::after {
    background: linear-gradient(90deg, #06b6d4, #0ea5e9) !important;
}

.brand-text p {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Category badges */
.category-badge {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3) !important;
}

/* Filter buttons */
.filter-btn {
    border: 2px solid #dbeafe !important;
    color: #06b6d4 !important;
}

.filter-btn:hover {
    border-color: #06b6d4 !important;
    background: rgba(6, 182, 212, 0.05) !important;
}

.filter-btn.active {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    border-color: transparent !important;
    color: white !important;
}

/* Lightbox */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3) !important;
}

.lightbox-caption {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.95), rgba(14, 165, 233, 0.95)) !important;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4) !important;
}

/* Footer */
.footer {
    border-top: 2px solid #eff6ff !important;
}

.footer-section h3 {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.footer-section h3::after {
    background: linear-gradient(90deg, #06b6d4, #0ea5e9) !important;
}

.social-links a {
    background: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid rgba(6, 182, 212, 0.2) !important;
}

.social-links a:hover {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    border-color: transparent !important;
}

/* Contact buttons */
.contact-btn {
    border: 2px solid #dbeafe !important;
}

.contact-btn:hover {
    border-color: #06b6d4 !important;
    background: rgba(6, 182, 212, 0.05) !important;
}

/* Testimonial card */
.testimonial-card {
    border-left: 4px solid #06b6d4 !important;
}

/* Galeri back button */
.galeri-back-btn {
    color: #06b6d4 !important;
    border: 2px solid #06b6d4 !important;
}

.galeri-back-btn:hover {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9) !important;
    color: white !important;
}

/* Hamburger menu */
.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    background: linear-gradient(90deg, #06b6d4, #0ea5e9) !important;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid #eff6ff !important;
}

/* Sections dengan subtle blue background */
.why-section {
    background: linear-gradient(180deg, white, rgba(6, 182, 212, 0.02)) !important;
}

.services-section {
    background: white !important;
}

.cars-section {
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.01), white) !important;
}

.galeri-section {
    background: linear-gradient(180deg, white, rgba(6, 182, 212, 0.02)) !important;
}

.contact-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.02), rgba(14, 165, 233, 0.02)) !important;
}

/* ============================================
   CAR INCLUDES - SUPIR, MOBIL, BBM
   ============================================ */

.car-includes {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(14, 165, 233, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.include-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #06b6d4;
    font-weight: 600;
    white-space: nowrap;
}

.include-item::before {
    content: attr(data-icon);
    margin-right: 0.3rem;
}

/* Responsive untuk mobile - KEEP HORIZONTAL */
@media (max-width: 480px) {
    .car-includes {
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
        padding: 1rem !important;
        flex-wrap: nowrap !important;
    }

    .include-item {
        font-size: 1rem !important;
        font-weight: 700 !important;
        flex: 1 !important;
        text-align: center !important;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .car-includes {
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 0.6rem !important;
        padding: 1rem !important;
    }

    .include-item {
        flex: 1 !important;
        text-align: center !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }
}

/* ============================================
   CONTACT ADMIN STYLING
   ============================================ */

/* Contact info di dalam button */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
}

.contact-info strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: inherit;
}

.contact-info span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact button dengan admin info */
.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem !important;
}

.contact-btn span:first-child {
    font-size: 2.5rem;
}

/* Footer contact links yang bisa diklik */
.contact-wa-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    margin: 0.5rem 0;
}

.contact-wa-link:hover {
    transform: translateX(5px);
}

.contact-wa-link p {
    color: #4a5568;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-wa-link:hover p {
    color: #06b6d4;
    font-weight: 600;
}

/* Responsive untuk contact buttons */
@media (max-width: 768px) {
    .contact-buttons {
        grid-template-columns: 1fr 1fr !important;
    }

    .contact-btn-maps {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .contact-buttons {
        grid-template-columns: 1fr !important;
    }

    .contact-info strong {
        font-size: 1rem;
    }

    .contact-info span {
        font-size: 0.85rem;
    }
}

/* ============================================
   FOOTER ADDRESS & EMAIL STYLING
   ============================================ */

/* Footer section dengan alamat panjang */
.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* Alamat dengan line height lebih besar */
.footer-section p:first-of-type {
    line-height: 2;
    font-size: 0.95rem;
}

/* Email link styling */
.contact-wa-link {
    display: block;
    margin: 0.8rem 0;
}

.contact-wa-link p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Social links dengan 4 icons */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    flex-shrink: 0;
}

/* Contact info di email button */
.contact-btn .contact-info span {
    font-size: 0.85rem;
    opacity: 0.95;
}

/* Responsive untuk footer address */
@media (max-width: 768px) {
    .footer-section p:first-of-type {
        font-size: 0.9rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .footer-section p:first-of-type {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .social-links {
        gap: 0.8rem;
    }
}

/* ============================================
   SOCIAL MEDIA LOGO STYLING
   ============================================ */

/* Social links dengan gambar logo */
.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    padding: 0;
}

.social-links a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
    border-color: white;
}

.social-links a:hover img {
    transform: scale(1.1);
}

/* Responsive untuk social links */
@media (max-width: 768px) {
    .social-links a {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .social-links a {
        width: 38px;
        height: 38px;
    }

    .social-links {
        gap: 0.8rem;
    }
}

/* ============================================
   CONTACT BUTTON ICON STYLING
   ============================================ */

/* Logo WhatsApp di contact button */
.contact-btn-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
    transition: transform 0.3s ease;
}

.contact-btn:hover .contact-btn-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive untuk contact button icon */
@media (max-width: 768px) {
    .contact-btn-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .contact-btn-icon {
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   LOGO FIXES - PREVENT SQUISHING
   ============================================ */

/* Ensure logo maintains aspect ratio */
.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Prevent logo from being squished */
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .logo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 45px;
        height: 45px;
    }
}


/* ============================================
   TESTIMONIALS - GOOGLE REVIEWS STYLE
   ============================================ */
.testimonials-section {
    padding: 6rem 5%;
    background: #f8fafc;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.google-logo-main {
    height: 40px;
    width: auto;
}

.rating-info {
    text-align: left;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-score .score {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
}

.rating-score .stars {
    font-size: 1.5rem;
    color: #fbbc04;
    letter-spacing: 2px;
}

.review-count {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

/* Review Action Buttons */
.review-actions-top {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-view-all-reviews,
.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-view-all-reviews {
    background: white;
    color: #2d3748;
    border: 2px solid #e2e8f0;
}

.btn-view-all-reviews:hover {
    background: #f8fafc;
    border-color: #06b6d4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.btn-google-logo {
    height: 20px;
    width: auto;
}

.btn-write-review {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-write-review:hover {
    background: linear-gradient(135deg, #0891b2 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.testimonial-header {
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc04 75%, #ea4335 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-icon-small {
    height: 14px;
    width: auto;
}

.review-time {
    font-size: 0.85rem;
    color: #718096;
}

.testimonial-rating {
    color: #fbbc04;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0;
}

/* Bottom Action */
.review-actions-bottom {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-more-reviews {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #06b6d4;
    border: 2px solid #06b6d4;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.btn-view-more-reviews:hover {
    background: #06b6d4;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .google-rating-summary {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .rating-info {
        text-align: center;
    }

    .rating-score {
        justify-content: center;
    }

    .review-actions-top {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-view-all-reviews,
    .btn-write-review {
        width: 100%;
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 4rem 5%;
    }

    .google-rating-summary {
        padding: 1.2rem;
    }

    .rating-score .score {
        font-size: 2.5rem;
    }

    .rating-score .stars {
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .btn-view-more-reviews {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   NEW: FAQ SECTION
   ============================================ */
.faq-section {
    padding: 6rem 10%;
    background: #f8fafc;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-navy);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fdfdfd;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    /* Max-height will be set by JS, or we can use a large value for CSS-only (less smooth) */
    /* but we will use JS for smooth slide */
    transition: max-height 0.4s ease-in-out;
}

/* ============================================
   NEW: SCROLL ANIMATIONS (ROBUST)
   ============================================ */
/* Base class - hidden state */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Modifier: Fade Up */
.fade-up {
    transform: translateY(30px);
}

/* Visible State */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility: Disable animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Disable animations on mobile to prevent scroll jump */
/* SAFE FIX: Prevent layout shift on mobile */
@media (max-width: 768px) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-margin: 0 !important;
        scroll-padding: 0 !important;
    }

    /* Prevent focus from scrolling */
    input,
    textarea,
    button,
    a {
        scroll-margin: 0 !important;
        scroll-padding: 0 !important;
    }

    /* Prevent image loading from causing layout shift */
    img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .animate-on-scroll.visible {
        opacity: 1 !important;
        transform: none !important;
    }
}

/*
 ============================================
   FINAL OVERRIDE - CONSISTENT MOBILE LAYOUT
   ============================================ */
@media screen and (max-width: 768px) {

    /* Armada/Cars Section - Grid 2 kolom untuk mobile */
    .cars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .car-card .car-image-container,
    .cars-section .car-card .car-image-container,
    section.cars-section .car-card .car-image-container {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        background: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .car-card img,
    .car-card .car-image-container img,
    .cars-section .car-card img {
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Galeri Section - 2-column grid (galeri bisa tetap 2 kolom) */
    .galeri-grid-preview {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .galeri-item-preview {
        height: 200px !important;
    }

    .galeri-item-preview img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

@media screen and (max-width: 480px) {

    /* Grid 2 kolom untuk layar sangat kecil */
    .cars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .car-card .car-image-container,
    .cars-section .car-card .car-image-container,
    section.cars-section .car-card .car-image-container {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        background: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .car-card img,
    .car-card .car-image-container img,
    .cars-section .car-card img {
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Galeri Section - 2-column grid for galeri */
    .galeri-grid-preview {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .galeri-item-preview {
        height: 160px !important;
    }

    .galeri-item-preview img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Compact card info for mobile */
    .car-info {
        padding: 1.2rem !important;
    }

    .car-info h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }

    .car-price {
        font-size: 1.6rem !important;
    }

    .car-features {
        margin-bottom: 1.2rem !important;
    }

    .feature-tag {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    .book-btn {
        padding: 1rem !important;
        font-size: 1rem !important;
    }
}

/* ============================================
   MOBILE LAYOUT OPTIMIZATION
   ============================================ */

@media screen and (max-width: 768px) {

    /* Better spacing for mobile */
    .cars-section,
    .galeri-section {
        padding: 4rem 1% !important;
    }

    /* Ensure cards don't get too wide */
    .car-card {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
}

@media screen and (max-width: 480px) {

    /* Compact sections for small screens */
    .cars-section,
    .galeri-section {
        padding: 3rem 1% !important;
    }

    /* Smaller section titles */
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
    }

    /* Compact filter buttons */
    .filter-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
}

/* ============================================
   MOBILE FULL WIDTH FIX
   ============================================ */
@media screen and (max-width: 768px) {

    /* Remove any max-width constraints on mobile */
    .cars-section {
        padding: 4rem 1% !important;
    }

    .car-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Ensure includes stay horizontal */
    .car-includes {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        text-align: center !important;
    }

    .include-item {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
}

@media screen and (max-width: 480px) {
    .cars-section {
        padding: 3rem 2% !important;
    }

    .car-includes {
        padding: 1rem 0.5rem !important;
        margin-bottom: 1.2rem !important;
    }

    .include-item {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
}

/* ============================================
   SIMPLE MOBILE IMAGE FIX
   ============================================ */
@media screen and (max-width: 768px) {

    .car-card img,
    .car-image-container img,
    .cars-section .car-card img,
    .cars-section .car-image-container img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
}

/* ============================================
   PERBESAR FONT INCLUDES
   ============================================ */
@media screen and (max-width: 768px) {
    .car-includes {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .include-item {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: #06b6d4 !important;
    }
}

@media screen and (max-width: 480px) {
    .include-item {
        font-size: 1rem !important;
        font-weight: 700 !important;
    }
}

/* ============================================
   SIMPLE MOBILE FIX - HANYA UNTUK HP
   ============================================ */
@media screen and (max-width: 768px) {

    /* Section dengan padding minimal */
    .cars-section {
        padding: 4rem 1% !important;
    }

    /* Card full width tanpa constraint */
    .car-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Font includes lebih besar */
    .car-includes {
        padding: 1rem !important;
    }

    .include-item {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
}

@media screen and (max-width: 480px) {

    /* Padding sangat minimal untuk mobile kecil */
    .cars-section {
        padding: 3rem 0.5% !important;
    }

    /* Pastikan tidak ada margin di body */
    body {
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* ============================================
   FORCE FULL WIDTH - MOBILE OVERRIDE
   ============================================ */
@media screen and (max-width: 768px) {

    /* Override semua container yang membatasi lebar */
    .cars-grid {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        padding-left: 1% !important;
        padding-right: 1% !important;
    }

    /* Pastikan card menggunakan space penuh */
    .car-card {
        width: calc(100% - 2%) !important;
        margin: 0 1% !important;
    }
}

@media screen and (max-width: 480px) {
    .cars-grid {
        padding-left: 0.5% !important;
        padding-right: 0.5% !important;
    }

    .car-card {
        width: calc(100% - 1%) !important;
        margin: 0 0.5% !important;
    }
}

/* ============================================
   ULTIMATE MOBILE FULL WIDTH FIX
   ============================================ */
@media screen and (max-width: 768px) {

    /* Override navbar dan container lain */
    .navbar {
        padding: 1rem 2% !important;
    }

    /* Override semua section padding */
    section {
        padding-left: 1% !important;
        padding-right: 1% !important;
    }

    /* Khusus untuk cars section */
    .cars-section {
        padding: 4rem 0% !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Grid tanpa gap yang terlalu besar */
    .cars-grid {
        gap: 1rem !important;
        padding: 0 2% !important;
    }

    /* Card dengan margin minimal */
    .car-card {
        margin: 0 !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .cars-grid {
        padding: 0 1% !important;
    }

    .navbar {
        padding: 1rem 1% !important;
    }
}