:root {
    --primary-color: #0A0A0A;
    --secondary-color: #1A1A1A;
    --accent-color: #7B2FBE;
    --accent-gradient: linear-gradient(135deg, #7B2FBE, #9B59B6);
    --text-color: #FFFFFF;
    --text-muted: #CCCCCC;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --backdrop-blur: blur(10px);
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--accent-color);
}

.section-padding {
    padding: 80px 0;
}

.dark-bg {
    background-color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(123, 47, 190, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 47, 190, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: white;
}

.btn-outline:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-sm:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: var(--glass-border);
    border-radius: 15px;
    box-shadow: var(--glass-shadow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(123, 47, 190, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-img {
    height: 180px;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 2px 6px rgba(123, 47, 190, 0.2));
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    filter: brightness(1.2) drop-shadow(0 3px 10px rgba(123, 47, 190, 0.4));
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 200px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.2);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-top: 10px;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 1.5rem;
    color: var(--text-muted);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Animations */
.fade-in-up {
    opacity: 1;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.hero-logo {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    height: 150px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 4px 15px rgba(123, 47, 190, 0.4));
    opacity: 0.9;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search & Filter Section */
.search-section {
    margin-top: -50px;
    z-index: 10;
    position: relative;
    padding-bottom: 50px;
}

.search-box {
    display: flex;
    padding: 20px;
    gap: 15px;
    background: rgba(26, 26, 26, 0.9);
    flex-wrap: wrap;
    align-items: center;
}

.search-group,
.filter-group {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-group input,
.filter-group select {
    width: 100%;
    padding: 12px 15px 12px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 5px;
    font-family: var(--font-body);
}

.filter-group select {
    padding-left: 15px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Inventory Section */
option {
    background-color: var(--secondary-color);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.car-card {
    overflow: hidden;
    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(123, 47, 190, 0.2);
    border-color: var(--accent-color);
}

.car-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.car-card:hover .car-overlay {
    opacity: 1;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 3px;
    z-index: 2;
}

.badge.highlight-bg {
    background: var(--accent-gradient);
}

.car-details {
    padding: 20px;
}

.car-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.car-title h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.car-specs li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mt-5 {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image .image-wrapper {
    height: 400px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: transform 0.5s ease;
    display: block;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    background: rgba(123, 47, 190, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--accent-gradient);
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px;
    text-align: center;
    position: relative;
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #ececec;
}

.reviewer .avatar {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 10px;
}

.reviewer h4 {
    margin-bottom: 5px;
}

.reviewer span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
}

.contact-info {
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
}

.contact-info h2 {
    margin-bottom: 10px;
}

.contact-info>p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
}

.contact-form-container {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    background: #050505;
    padding: 60px 0 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Cars Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
        /* More compact spacing */
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-img {
        height: 80px;
        /* Smaller logo for mobile */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-btns {
        gap: 10px;
    }

    .hero-btns .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-logo {
        margin-top: 30px;
    }

    .hero-logo img {
        height: 80px;
        /* Smaller hero logo for mobile */
    }

    .container {
        padding: 0 15px;
        /* Optimize spacing */
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        flex-direction: column;
    }

    .search-group,
    .filter-group {
        width: 100%;
    }

    .search-box button {
        width: 100%;
    }

    .cars-grid {
        grid-template-columns: 1fr;
    }

}

/* Pricing Section */
.pricing {
    background-color: var(--primary-color);
}

.price-category {
    margin-bottom: 50px;
}

.price-category-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-category-title i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.price-table thead tr {
    background: rgba(123, 47, 190, 0.18);
}

.price-table thead th {
    padding: 14px 12px;
    text-align: center;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-color);
    font-weight: 700;
    border-bottom: 2px solid rgba(123, 47, 190, 0.25);
    white-space: nowrap;
}

.price-table thead th i {
    display: block;
    margin-bottom: 4px;
    color: var(--accent-color);
}

.price-table thead .th-paket {
    text-align: left;
    width: 38%;
    min-width: 240px;
}

.price-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: rgba(123, 47, 190, 0.08);
}

.price-table tbody td {
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    white-space: nowrap;
}

.price-table tbody .td-paket {
    text-align: left;
    white-space: normal;
    padding-right: 20px;
}

.td-paket strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.td-paket small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
    font-weight: 400;
}

.price-note {
    margin-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Responsive pricing tables */
@media (max-width: 768px) {
    .price-table {
        min-width: unset;
    }

    .table-wrapper {
        border-right: none;
        overflow-x: hidden;
        /* Disable horizontal scroll as we use tabs */
    }

    /* Tabs Styling */
    .price-tabs {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 15px;
        margin-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        position: relative;
        /* Ensure z-index works */
        z-index: 20;
        /* Bring to front */
    }

    .price-tabs::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .tab-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--text-muted);
        padding: 8px 16px;
        border-radius: 20px;
        white-space: nowrap;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        position: relative;
        /* Ensure z-index works */
        z-index: 21;
        /* Bring buttons to front */
        -webkit-tap-highlight-color: transparent;
        /* Remove highlight on tap */
    }

    .tab-btn.active {
        background: var(--accent-color);
        color: white;
        border-color: var(--accent-color);
        box-shadow: 0 4px 15px rgba(123, 47, 190, 0.3);
    }

    /* Hide all data columns by default on mobile */
    .price-table th,
    .price-table td {
        display: none;
    }

    /* Always show first column (Paket Name) */
    .price-table th:first-child,
    .price-table td:first-child {
        display: table-cell;
        width: 40%;
    }

    /* Show only selected column */
    .price-table th.visible,
    .price-table td.visible {
        display: table-cell;
        width: 60%;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

}

/* Hide tabs on desktop */
@media (min-width: 769px) {
    .price-tabs {
        display: none;
    }
}

/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(123, 47, 190, 0.15);
}

.testimonial-card .stars {
    display: flex;
    gap: 3px;
}

.testimonial-card .stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-card .review-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
    flex: 1;
    font-style: italic;
}

.testimonial-card .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-card .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(123, 47, 190, 0.2);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.testimonial-card .info h4 {
    font-size: 0.9rem;
    font-family: var(--font-heading);
    margin-bottom: 2px;
}

.testimonial-card .info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Skeleton Loading */
@keyframes skeleton-pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.4;
    }
}

.skeleton-card .car-details {
    padding: 20px;
}

.skeleton-img {
    height: 200px;
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.08) 0%, rgba(26, 26, 26, 0.5) 100%);
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.skeleton-line {
    height: 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.skeleton-line.w60 {
    width: 60%;
}

.skeleton-line.w40 {
    width: 40%;
}

.skeleton-line.w80 {
    width: 80%;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 10, 10, 0.97);
    border-top: 1px solid rgba(123, 47, 190, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px 30px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-text h3 i {
    color: var(--accent-color);
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    font-size: 0.85rem !important;
    padding: 10px 22px !important;
    white-space: nowrap;
}

.cookie-settings-link {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.cookie-settings-link:hover {
    color: var(--accent-color);
}

/* Cookie Details Panel */
.cookie-details {
    max-width: 1200px;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.cookie-details.open {
    max-height: 300px;
    padding-top: 20px;
}

.cookie-category {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(26, 26, 26, 0.5);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-category-header strong {
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.cookie-category-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked+.toggle-slider {
    background-color: var(--accent-color);
}

.cookie-toggle input:checked+.toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle.disabled .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle.disabled input:checked+.toggle-slider {
    background-color: #555;
}

.cookie-save-row {
    text-align: right;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Service Card Interaction */
.service-card {
    cursor: pointer;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: sepia(100%) hue-rotate(240deg) saturate(300%) brightness(0.7) contrast(1.2);
    /* Tint it purple */
    opacity: 0.9;
}

.icon-box {
    overflow: hidden;
    /* Clip image to circle */
    padding: 0;
}

/* Service Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    /* Above cookie banner */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #1a1a1a;
    margin: auto;
    padding: 40px;
    border: 1px solid rgba(123, 47, 190, 0.3);
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 50px rgba(123, 47, 190, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-content h3 {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    color: white;
}

.modal-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Mobile Navigation Active State */
.nav-links.active {
    display: flex;
}

@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-cta.active {
        display: none;
        /* Simplify mobile menu */
    }
}

/* Animation State */
.animate-on-scroll.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}