/* ================================
   CSS Variables / Design Tokens
   ================================ */
:root {
    /* Colors - Premium Dark Theme */
    --primary: #D4AF37;
    --primary-hover: #B8941F;
    --secondary: #1e293b;
    --accent: #FDB71A;
    --success: #10b981;
    --danger: #ef4444;

    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-inverse: #0f172a;

    --bg-body: #0f172a;
    --bg-muted: #1e293b;
    --bg-dark: #020617;
    --bg-overlay: rgba(15, 23, 42, 0.85);

    --border-color: #334155;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;

    /* Hero Overlay - Dark Theme */
    --hero-overlay: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.70) 50%, rgba(15, 23, 42, 0.85) 100%);
    --text-hero: #ffffff;
    --text-hero-subtitle: rgba(255, 255, 255, 0.95);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;

    /* Layout */
    --container-max-width: 1280px;
    --header-height: 80px;

    /* Vehicles Section - Dark Mode Default */
    --vehicle-overlay-color: rgba(15, 23, 42, 0.85);
    --cta-box-bg: rgba(15, 23, 42, 0.75);
    --cta-box-border: rgba(255, 255, 255, 0.1);
}

/* Colors - Premium Light Theme */
[data-theme="light"] {
    --primary: #D4AF37;
    /* Gold - Keep as brand color */
    --primary-hover: #B8941F;
    --secondary: #f1f5f9;
    /* Light Slate */
    --accent: #FDB71A;

    --text-primary: #0f172a;
    /* Dark Blue */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-inverse: #0f172a;
    /* Dark Blue */

    --bg-body: #ffffff;
    /* White */
    --bg-muted: #f8fafc;
    /* Very Light Slate */
    --bg-dark: #0f172a;
    /* Dark Blue (for footer etc) */
    --bg-overlay: rgba(255, 255, 255, 0.95);

    --border-color: #e2e8f0;
    /* Slate 200 */

    --hero-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0.90) 100%);
    --text-hero: #0f172a;
    --text-hero-subtitle: #334155;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Vehicles Section - Light Mode */
    --vehicle-overlay-color: rgba(255, 255, 255, 0.85);
    --cta-box-bg: rgba(255, 255, 255, 0.75);
    --cta-box-border: rgba(15, 23, 42, 0.1);
}

/* ================================
   Reset & Base Styles
   ================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-body);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Accessibility: Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ================================
   Layout & Container
   ================================ */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.section {
    padding: var(--space-16) 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Header & Navigation
   ================================ */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.98);
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

[data-theme="light"] .header {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header.scrolled {
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo img {
    height: 250px;
    width: auto;
    transform: scale(1.4);
    transform-origin: left center;
}

@media (max-width: 768px) {
    .logo img {
        height: 280px;
        transform: scale(1.6);
    }
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.nav__link {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-primary);
    padding: var(--space-2) 0;
    position: relative;
    transition: all var(--transition-base);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width var(--transition-slow);
}

.nav__link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:active {
    transform: translateY(0);
}

.nav__link--cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-inverse);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-base);
    position: relative;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 28px;
    height: 28px;
    padding: 0;
    position: relative;
    transition: transform var(--transition-base);
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger:active {
    transform: scale(0.95);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--text-primary));
    border-radius: 2px;
    transition: all var(--transition-slow);
}

[data-theme="light"] .hamburger span {
    background: linear-gradient(90deg, var(--primary), var(--text-primary));
}

.hamburger:hover span {
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.hamburger span:nth-child(1) {
    transform-origin: left;
}

.hamburger span:nth-child(3) {
    transform-origin: left;
}

.nav.open~.hamburger span:nth-child(1) {
    transform: rotate(45deg);
}

.nav.open~.hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.nav.open~.hamburger span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav__close {
    display: none;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--text-primary);
    transition: all var(--transition-base);
    margin-left: var(--space-4);
    border: 1px solid transparent;
}

/* Wrap hover in media query to prevent sticky hover on mobile */
/* Wrap hover in media query to prevent sticky hover on mobile */
@media (hover: hover) {
    .theme-toggle:hover {
        background-color: rgba(212, 175, 55, 0.1);
        color: var(--primary);
        transform: rotate(15deg);
    }
}

.theme-toggle:active {
    transform: none;
}

.theme-toggle.animating {
    animation: theme-bounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: none;
    /* Removed !important to allow animation to work */
}

@keyframes theme-bounce {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-20deg);
    }

    50% {
        transform: rotate(20deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0);
    }
}

/* Mobile Menu Backdrop - Disabled */
.nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1999;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.nav-backdrop.show {
    display: block;
    opacity: 1;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-hero);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-8);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__title-accent {
    color: var(--primary);
    display: inline-block;
}

.hero__subtitle {
    font-size: var(--font-size-xl);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    color: var(--text-hero-subtitle);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero__scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-hero);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .hero__scroll a {
    background-color: rgba(15, 23, 42, 0.1);
    color: var(--text-primary);
    border-color: rgba(15, 23, 42, 0.1);
}

.hero__scroll a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(4px);
}

[data-theme="light"] .hero__scroll a:hover {
    background-color: rgba(15, 23, 42, 0.2);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes slideInRight {
    from {
        right: -100%;
        opacity: 0;
    }

    to {
        right: 0;
        opacity: 1;
    }
}

@keyframes slideInMenuItem {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-8);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-inverse);
    box-shadow: var(--shadow);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn--primary:active {
    transform: translateY(-1px) scale(1);
}

.btn--secondary {
    background-color: transparent;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    position: relative;
}

[data-theme="light"] .btn--secondary {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.5);
}

.btn--secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: var(--border-radius-sm);
    z-index: -1;
}

.btn--secondary:hover::after {
    opacity: 1;
}

.btn--secondary:hover {
    color: var(--text-inverse);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn--secondary:active {
    transform: translateY(-1px) scale(1);
}

.btn--small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    min-height: 36px;
}

.btn--full {
    width: 100%;
}

.btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ================================
   Services Section
   ================================ */
.services {
    background-color: var(--bg-body);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background-color: var(--bg-muted);
    padding: var(--space-8);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--border-radius);
    padding: var(--space-4);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.service-card__text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================
   Process Section
   ================================ */
.process__steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    width: 2px;
    height: calc(100% + var(--space-10));
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.5;
}

.process-step__number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.process-step__content {
    flex: 1;
    padding-top: var(--space-2);
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.process-step__text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================
   Benefits Section
   ================================ */
.benefits {
    background-color: var(--bg-body);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.benefit-card {
    background-color: var(--bg-muted);
    padding: var(--space-6);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefit-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.benefit-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary);
    margin-bottom: var(--space-4);
    transition: all var(--transition-base);
}

.benefit-card:hover .benefit-card__icon {
    background-color: rgba(212, 175, 55, 0.25);
    transform: rotate(360deg) scale(1.1);
}

.benefit-card__icon svg {
    display: block;
}

.benefit-card__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.benefit-card__text {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

/* ================================
   Vehicles Section
   ================================ */
/* ================================
   Vehicles Section
   ================================ */
#vozila {
    position: relative;
    overflow: hidden;
    padding: var(--space-20) 0;
}

.vehicles__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    z-index: 0;
}

.vehicles__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(30%);
    /* Slightly desaturate to not distract too much */
}

/* Dark overlay to match page color */
.vehicles__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            var(--bg-body) 0%,
            var(--vehicle-overlay-color) 20%,
            var(--vehicle-overlay-color) 80%,
            var(--bg-body) 100%);
    z-index: 1;
    pointer-events: none;
}

#vozila .container {
    padding-top: var(--space-12);
    /* Add content padding */
    padding-bottom: var(--space-12);
    position: relative;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vehicles__bg {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}


/* CTA Box Styling */
.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-10);
    background: var(--cta-box-bg);
    /* Dark semi-transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--cta-box-border);
    position: relative;
    z-index: 10;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.cta-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
    /* Subtle gold border on hover */
}

.cta-box__icon {
    margin-bottom: var(--space-6);
    display: inline-flex;
    padding: var(--space-4);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.cta-box__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.cta-box__text {
    margin-bottom: var(--space-8);
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive for CTA Box */
@media (max-width: 768px) {
    .cta-box {
        padding: var(--space-6);
        margin: 0 var(--space-4);
        background: rgba(15, 23, 42, 0.85);
        /* Slightly more opaque on mobile for readability */
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .cta-box__title {
        font-size: var(--font-size-xl);
    }

    .cta-box__text {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-6);
    }
}


.vehicle-card {
    background-color: var(--bg-muted);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.vehicle-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.vehicle-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.vehicle-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.vehicle-card:hover .vehicle-card__image img {
    transform: scale(1.05);
}

.vehicle-card__badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background-color: var(--success);
    color: var(--text-inverse);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-card__badge--reserved {
    background-color: var(--text-secondary);
}

.vehicle-card__content {
    padding: var(--space-6);
}

.vehicle-card__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.vehicle-card__specs {
    list-style: none;
    margin-bottom: var(--space-6);
}

.vehicle-card__specs li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.vehicle-card__specs li:last-child {
    border-bottom: none;
}

.vehicle-card__specs strong {
    color: var(--text-primary);
    font-weight: 500;
}

.vehicle-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-color);
}

.vehicle-card__price {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials {
    background-color: var(--bg-body);
}

/* Carousel Container */
.testimonial-carousel {
    position: relative;
    padding: var(--space-6) 0;
    margin-bottom: var(--space-10);
}

.testimonial-carousel__viewport {
    overflow: hidden;
    margin: 0 -20px;
    /* Slight overflow for nicer interaction on edges if needed */
    padding: 20px;
    /* Space for shadows */
}

.testimonial-carousel__track {
    display: flex;
    gap: var(--space-8);
    width: max-content;
    will-change: transform;
    /* Transformation will be handled by JS */
}

/* Card Styling */
.testimonial-card {
    flex: 0 0 320px;
    /* Fixed width for desktop smooth look */
    background-color: var(--bg-muted);
    /* Dark background to match theme */
    padding: var(--space-8);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    /* Deeper shadow for dark theme */
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(212, 175, 55, 0.1);
    /* Subtle gold border */
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card__rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
    color: var(--accent);
    /* Gold/Yellow from variables */
}

.testimonial-card__text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-secondary);
    /* Light text for readability on dark */
    margin-bottom: var(--space-4);
    font-style: italic;
    position: relative;
    /* transition: max-height 0.3s ease-out; */
}

.testimonial-card__text.truncated {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-card__read-more {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: var(--space-4);
    align-self: flex-start;
    transition: color var(--transition-base);
}

.testimonial-card__read-more:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.testimonial-card__author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card__avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-card__name {
    font-weight: 700;
    color: var(--text-primary);
    /* White/Light text */
    margin-bottom: 2px;
}

.testimonial-card__role {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    /* Muted text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-muted);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-nav:hover {
    background-color: var(--primary);
    color: var(--text-inverse);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--primary);
}

.testimonial-nav--prev {
    left: -20px;
}

.testimonial-nav--next {
    right: -20px;
}

/* Dots Pagination */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background-color: rgba(212, 175, 55, 0.5);
}

/* Mobile Responsiveness for Carousel */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 85vw;
        /* Show 1 full card mostly */
        /* Removed margin-right to use gap for consistent JS calculation */
        align-items: center;
        text-align: center;
    }

    .testimonial-card__read-more {
        align-self: center;
        margin-top: 0;
        margin-bottom: var(--space-4);
    }

    .testimonial-carousel__track {
        /* Reduce gap on mobile */
        gap: 16px;
        /* Start closer to edge as requested */
        padding-left: 10px;
        padding-right: 10px;
    }

    .testimonial-carousel__viewport {
        overflow-x: hidden;
        padding-bottom: 20px;
        /* Negative margin to match container padding (16px) exactly, 
           making viewport full width of screen */
        margin: 0 -16px;
    }

    .testimonial-nav {
        display: flex;
        width: 36px;
        height: 36px;
        background-color: rgba(30, 41, 59, 0.9);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .testimonial-nav--prev {
        left: 0;
        /* Adjust from -10px to fit screen */
    }

    .testimonial-nav--next {
        right: 0;
        /* Adjust from -10px to fit screen */
    }
}

/* ================================
   Contact Section
   ================================ */
.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea {
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    background-color: var(--bg-muted);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background-color: rgba(30, 41, 59, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background-color: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
    border-radius: var(--border-radius-sm);
    color: var(--success);
}

.form-success.show {
    display: flex;
}

.form-success svg {
    flex-shrink: 0;
}

.form-success p {
    margin: 0;
    font-weight: 500;
}

.contact__mailto {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.contact__mailto p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info-card {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-6);
    background-color: var(--bg-muted);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.contact-info-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    transition: all var(--transition-base);
}

.contact-info-card:hover .contact-info-card__icon {
    background-color: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.contact-info-card__icon svg {
    display: block;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--text-primary);
}

.contact-info-card p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary);
    transition: color var(--transition-base);
}

.contact-info-card a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.contact-info-card p a[href^="https://www.google.com/maps"] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-base);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card p a[href^="https://www.google.com/maps"]:hover {
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateX(4px);
}

.contact__map {
    margin-top: var(--space-4);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
}

.contact__map:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.contact__map img,
.contact__map iframe {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================
   Owner Section
   ================================ */
.owner {
    background-color: var(--bg-body);
    padding: var(--space-16) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.owner__wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    max-width: 900px;
    margin: 0 auto;
}

.owner__image-wrapper {
    flex-shrink: 0;
    position: relative;
}

.owner__image-frame {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    position: relative;
    transition: all var(--transition-slow);
}

.owner__image-frame::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.owner__image-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.5);
}

.owner__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all var(--transition-slow);
}

.owner__image-frame:hover img {
    transform: scale(1.1);
}

.owner__content {
    flex: 1;
}

.owner__label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.owner__name {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.owner__role {
    font-size: var(--font-size-lg);
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.owner__description {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.owner__contact {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.owner__contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary);
    border-radius: var(--border-radius-sm);
    color: var(--primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-base);
}

.owner__contact-link:hover {
    background-color: var(--primary);
    color: var(--text-inverse);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.owner__contact-link svg {
    display: block;
}

/* ================================
   Footer
   ================================ */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: block;
    margin-bottom: var(--space-4);
}

.footer__text {
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    color: rgba(255, 255, 255, 0.7);
}

.footer__social {
    display: flex;
    gap: var(--space-4);
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-inverse);
    transition: all var(--transition-base);
}

.footer__social a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-6);
    position: relative;
    display: inline-block;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__links a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
}

.footer__links a:hover {
    color: var(--primary);
    padding-left: var(--space-2);
    transform: translateX(4px);
}

.footer__links a::before {
    content: '›';
    margin-right: 8px;
    font-weight: bold;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
    font-size: 1.2em;
    line-height: 1;
}

.footer__links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--space-8);
}

.footer__bottom p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Light Theme Overrides */
[data-theme="light"] .footer {
    background-color: var(--bg-muted);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

[data-theme="light"] .footer__top {
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .footer__text {
    color: var(--text-secondary);
}

[data-theme="light"] .footer__social a {
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--text-primary);
}

[data-theme="light"] .footer__social a:hover {
    background-color: var(--primary);
    color: var(--text-inverse);
}

[data-theme="light"] .footer__links a {
    color: var(--text-secondary);
}

[data-theme="light"] .footer__links a:hover {
    color: var(--primary);
}

[data-theme="light"] .footer__bottom p {
    color: var(--text-muted);
}

[data-theme="light"] .testimonial-nav:hover {
    background-color: var(--bg-dark);
    color: var(--primary);
    border-color: var(--bg-dark);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

/* ================================
   Animation Classes
   ================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   Responsive Design
   ================================ */

/* Tablets and below (1024px) */
@media (max-width: 1024px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
    }

    .section {
        padding: var(--space-12) 0;
    }

    .footer__top {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__wrapper {
        gap: var(--space-8);
    }
}

/* Tablets and below (768px) */
@media (max-width: 768px) {

    /* Header Mobile Optimization */
    .header__wrapper {
        justify-content: center;
        position: relative;
    }

    .logo {
        position: relative;
        z-index: 100;
    }

    .logo img {
        height: 70px;
        /* Resize logo for mobile */
        width: auto;
        transform: scale(2.5);
        transform-origin: center center;
    }

    /* Reposition Theme Toggle to Top Left */
    .theme-toggle {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        z-index: 1500;
    }

    /* Reposition Hamburger to Top Right */
    .hamburger {
        display: flex;
        z-index: 1500;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
        backdrop-filter: blur(20px);
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
        padding: var(--space-8);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 2000;
        overflow-y: auto;
        border-left: 2px solid rgba(212, 175, 55, 0.3);
    }

    [data-theme="light"] .nav {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.98));
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav.open {
        right: 0;
        animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        pointer-events: auto;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: var(--space-4);
        right: var(--space-4);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        border-radius: 50%;
        transition: all var(--transition-base);
        background-color: rgba(212, 175, 55, 0.1);
    }

    .nav__close:hover {
        background-color: rgba(212, 175, 55, 0.2);
        transform: rotate(90deg) scale(1.1);
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-top: var(--space-12);
    }

    .nav__list li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav.open .nav__list li {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav__link {
        display: block;
        width: 100%;
        padding: var(--space-4) 0;
        font-size: var(--font-size-lg);
        position: relative;
        padding-left: var(--space-4);
        cursor: pointer;
        pointer-events: auto;
    }

    .nav__link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: linear-gradient(180deg, var(--primary), var(--accent));
        transition: height var(--transition-base);
    }

    .nav__link:hover::before {
        height: 60%;
    }

    .nav__link::after {
        display: none;
    }

    .nav__link--cta {
        margin-top: var(--space-4);
        text-align: center;
        padding-left: 0;
        display: flex;
        justify-content: center;
    }

    .nav__link--cta::before {
        display: none;
    }

    .hero__title {
        font-size: var(--font-size-4xl);
    }

    .hero__subtitle {
        font-size: var(--font-size-lg);
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .section__title {
        font-size: var(--font-size-3xl);
    }

    .services__grid,
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .vehicles__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonial-marquee {
        overflow-x: auto;
        padding: var(--space-4);
    }

    .testimonial-marquee__track {
        animation: none;
        padding: 0;
    }

    .testimonial-marquee__card {
        min-width: 260px;
    }

    .contact__wrapper {
        grid-template-columns: 1fr;
    }

    .process-step {
        gap: var(--space-4);
    }

    .process-step__number {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }

    .process-step:not(:last-child)::after {
        left: 20px;
    }

    .owner__wrapper {
        flex-direction: column;
        text-align: center;
        gap: var(--space-8);
    }

    .owner__image-frame {
        width: 180px;
        height: 180px;
    }

    .owner__contact {
        justify-content: center;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
    }

    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    .section {
        padding: var(--space-10) 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero__content {
        padding: var(--space-6);
    }

    .hero__title {
        font-size: var(--font-size-3xl);
    }

    .hero__subtitle {
        font-size: var(--font-size-base);
    }

    .service-card,
    .testimonial-card {
        padding: var(--space-6);
    }

    .vehicle-card__content {
        padding: var(--space-5);
    }

    .vehicle-card__price {
        font-size: var(--font-size-xl);
    }

    .owner__image-frame {
        width: 150px;
        height: 150px;
    }

    .owner__name {
        font-size: var(--font-size-2xl);
    }

    .owner__contact {
        flex-direction: column;
    }

    .owner__contact-link {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {

    .header,
    .hamburger,
    .hero__scroll,
    .footer__social,
    .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .section {
        page-break-inside: avoid;
    }
}