/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --background: hsl(210, 25%, 98%);
    --foreground: hsl(222, 47%, 11%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 47%, 11%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(222, 47%, 11%);
    --primary: hsl(45, 93%, 47%);
    --primary-foreground: hsl(222, 47%, 11%);
    --secondary: hsl(222, 47%, 11%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(210, 20%, 94%);
    --muted-foreground: hsl(215, 16%, 47%);
    --accent: hsl(45, 93%, 47%);
    --accent-foreground: hsl(222, 47%, 11%);
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --border: hsl(214, 20%, 88%);
    --input: hsl(214, 20%, 88%);
    --ring: hsl(45, 93%, 47%);
    --radius: 0.75rem;

    /* Custom tokens */
    --gold: hsl(45, 93%, 47%);
    --gold-light: hsl(45, 93%, 58%);
    --gold-dark: hsl(45, 93%, 38%);
    --navy: hsl(222, 47%, 11%);
    --navy-light: hsl(222, 35%, 20%);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-elevated: 0 12px 48px rgba(0, 0, 0, 0.1);
    --shadow-button: 0 4px 16px rgba(234, 179, 8, 0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.bg-muted {
    background-color: var(--muted);
}

/* Icon Sizes */
.icon-xs {
    width: 12px;
    height: 12px;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 24px;
    height: 24px;
}

.icon-lg {
    width: 40px;
    height: 40px;
}

.icon-primary {
    color: var(--primary);
}

.icon-accent {
    color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
}

.animate-slide-left.visible {
    animation: slideInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-slide-right {
    opacity: 0;
}

.animate-slide-right.visible {
    animation: slideInRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-scale-in {
    opacity: 0;
}

.animate-scale-in.visible {
    animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.3s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.45s;
    opacity: 0;
}

.delay-4 {
    animation-delay: 0.6s;
    opacity: 0;
}

.stagger-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-child.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 0;
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
}

.header-contact-link:hover {
    opacity: 0.8;
}

.hide-mobile {
    display: inline;
}

.header-main {
    background: white;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.logo-icon {
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--foreground);
    display: none;
    letter-spacing: -0.01em;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.125rem;
}

.nav-link {
    color: var(--foreground);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: var(--primary);
    background-color: rgba(234, 179, 8, 0.06);
}

.nav-link.active-link {
    color: var(--primary);
    background-color: rgba(234, 179, 8, 0.1);
}

.nav-link:first-child,
.nav-link:nth-child(2) {
    color: var(--navy);
    font-weight: 700;
}

.nav-link:first-child:hover,
.nav-link:nth-child(2):hover {
    color: white;
    background-color: var(--primary);
}

.mobile-menu-btn {
    color: var(--foreground);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.2s ease-out;
}

.nav-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile-link {
    color: var(--foreground);
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.nav-mobile-link:hover {
    color: var(--primary);
    background-color: rgba(234, 179, 8, 0.06);
}

.nav-mobile-link:first-child,
.nav-mobile-link:nth-child(2) {
    color: var(--navy);
    font-weight: 700;
    background-color: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.15);
}

.nav-mobile-link:first-child:hover,
.nav-mobile-link:nth-child(2):hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 3rem 1rem;
}

.hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Hero CTA Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-cta-btn {
    gap: 0.5rem;
    min-width: 12rem;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* Language Switcher */
.lang-switch {
    font-weight: 700 !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.lang-switch:hover {
    background-color: var(--primary);
    color: var(--navy) !important;
}

.nav-mobile-link.lang-switch {
    display: inline-block;
    width: auto;
    margin-top: 0.5rem;
}

/* Booking Card */
.booking-card {
    background-color: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-elevated);
    padding: 2rem;
    max-width: 42rem;
    margin: 0 auto;
}

.booking-section {
    margin-bottom: 1.5rem;
}

.booking-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.label-text {
    font-weight: 600;
    color: var(--foreground);
}

.route-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.route-btn {
    height: 3rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    border: 2px solid var(--border);
    background: white;
    color: var(--foreground);
}

.route-btn.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.route-btn:hover {
    opacity: 0.9;
}

.input-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    display: block;
    text-align: left;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
    width: 1.25rem;
    height: 1.25rem;
}

.form-input {
    width: 100%;
    height: 3rem;
    padding-left: 2.75rem;
    padding-right: 1rem;
    border: 1px solid var(--input);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.2s;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4);
}

.btn-lg {
    height: 3rem;
    padding: 0 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-shadow {
    box-shadow: var(--shadow-button);
}

/* Feature Badges */
.feature-badges {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.badge-icon {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
    flex-shrink: 0;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgba(234, 179, 8, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-title {
    font-weight: 600;
    color: var(--foreground);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--accent);
    color: var(--accent-foreground);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-elevated);
}

.about-badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.badge-text {
    font-size: 0.875rem;
}

.about-content {
    padding: 0;
}

.about-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.about-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-subtitle {
    font-weight: 600;
    color: var(--foreground);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-list-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: rgba(234, 179, 8, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.list-item-title {
    font-weight: 500;
    color: var(--foreground);
}

.list-item-desc {
    color: var(--muted-foreground);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(234, 179, 8, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background-color 0.3s;
}

.service-card:hover .service-icon {
    background-color: var(--accent);
}

.service-card:hover .service-icon i {
    color: var(--accent-foreground) !important;
}

.service-icon i {
    color: var(--accent);
    transition: color 0.3s;
}

.service-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.vehicle-card {
    position: relative;
    background-color: var(--card);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

.vehicle-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-6px);
}

.vehicle-popular {
    border: 2px solid var(--accent);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.vehicle-image {
    height: 12rem;
    overflow: hidden;
}

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

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
}

.vehicle-type {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.vehicle-features {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.vehicle-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto 3rem;
}

.step-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    width: 5rem;
    height: 5rem;
    margin-left: auto;
    margin-right: auto;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgba(234, 179, 8, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--accent-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    z-index: 2;
}

.step-title {
    font-weight: 600;
    color: var(--foreground);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Stats Section */
.stats-section {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.stats-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.stats-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.stats-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.faq-image-wrapper {
    position: relative;
}

.faq-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.faq-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.faq-content {
    padding: 0;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.faq-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--card);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion-trigger:hover {
    color: var(--primary);
}

.accordion-trigger i {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.accordion-item.active .accordion-trigger i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--muted-foreground);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-top: 1rem;
}

/* Reviews Section */
.reviews-summary {
    max-width: 64rem;
    margin: 0 auto 3rem;
}

.reviews-summary-card {
    background-color: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    padding: 2rem;
    text-align: center;
}

.reviews-rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.reviews-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star-filled {
    width: 1.5rem;
    height: 1.5rem;
    fill: #facc15;
    color: #facc15;
}

.reviews-count {
    color: var(--muted-foreground);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background-color: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(234, 179, 8, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent);
}

.review-name {
    font-weight: 600;
    color: var(--foreground);
}

.review-country {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.review-stars-small {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
}

.star-small {
    width: 1rem;
    height: 1rem;
    fill: #facc15;
    color: #facc15;
}

.review-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
}

.reviews-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: background 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--border);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card:hover .contact-cta {
    opacity: 1;
    transform: translateY(0);
}

.contact-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-icon i {
    color: white;
}

.contact-icon-phone {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.contact-card:hover .contact-icon-phone {
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
}

.contact-icon-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact-card:hover .contact-icon-whatsapp {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.contact-icon-email {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    box-shadow: 0 8px 24px rgba(234, 179, 8, 0.3);
}

.contact-card:hover .contact-icon-email {
    box-shadow: 0 12px 32px rgba(234, 179, 8, 0.4);
}

.contact-title {
    font-weight: 700;
    color: var(--foreground);
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
}

.contact-info {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
}

.contact-desc {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--secondary), hsl(222, 47%, 11%, 0.9));
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-container {
    position: relative;
    z-index: 10;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--secondary-foreground);
    margin-bottom: 1.5rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, hsl(222, 47%, 13%) 0%, hsl(222, 47%, 9%) 100%);
    color: hsl(210, 20%, 90%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.footer-container {
    padding: 4rem 1rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo-icon {
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand {
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.footer-brand-accent {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1.125rem;
    margin-left: 0.25rem;
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-heading {
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links a {
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 0.25rem;
}

.footer-links a:hover::before {
    width: 0.75rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact li i {
    margin-top: 0.125rem;
}

.footer-contact a {
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-cta {
    margin-top: 1.5rem;
    padding: 1.125rem 1.25rem;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(234, 179, 8, 0.05) 100%);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 0.75rem;
    text-align: center;
}

.footer-cta-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-cta-phone {
    color: var(--gold-light);
    font-weight: 800;
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.payment-method {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

/* Responsive Design */
@media (min-width: 640px) {
    .logo-text {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .booking-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

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

    .stat-number {
        font-size: 3.75rem;
    }

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

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

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-bottom {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }

    .nav-desktop {
        display: flex;
    }

    .hide-mobile {
        display: inline;
    }

    .header-content {
        height: 4rem;
    }

    .logo-icon {
        width: 4.25rem;
        height: 4.25rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo {
        gap: 0.75rem;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .services-grid .service-card {
        padding: 1.25rem;
    }

    .services-grid .service-title {
        font-size: 0.875rem;
    }

    .services-grid .service-desc {
        font-size: 0.8125rem;
    }

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

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 639px) {
    .hide-mobile {
        display: none;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .hero-section {
        min-height: 85vh;
        padding-top: 6rem;
    }

    .hero-container {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-btn {
        min-width: 0;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .feature-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .feature-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }

    .badge-icon {
        width: 14px;
        height: 14px;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -2rem;
        margin-left: 1rem;
        display: inline-flex;
        z-index: 2;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-icon {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 0.75rem;
    }

    .contact-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .stats-title {
        font-size: 1.375rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .cta-title {
        font-size: 1.375rem;
    }

    .cta-description {
        font-size: 0.9375rem;
    }

    .footer-container {
        padding: 2.5rem 1rem;
    }

    .reviews-rating-number {
        font-size: 2.25rem;
    }

    .accordion-item {
        padding: 1rem;
    }

    .accordion-trigger {
        font-size: 0.9375rem;
    }

    .step-icon-wrapper {
        margin-bottom: 1rem;
        width: 4rem;
        height: 4rem;
    }

    .step-icon {
        width: 4rem;
        height: 4rem;
    }
}

@media (max-width: 374px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .feature-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }

    .contact-grid {
        gap: 1rem;
    }
}

/* ===== Subpage Styles ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 9rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 36rem;
    margin: 0 auto;
}

.page-booking-section {
    padding: 4rem 0;
}

.page-booking-card {
    background-color: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-elevated);
    padding: 2.5rem;
    max-width: 36rem;
    margin: 0 auto;
}

.page-info-section {
    padding: 4rem 0;
}

.page-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.page-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

.page-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(234, 179, 8, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-info-icon i {
    color: var(--accent);
}

.page-info-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.page-info-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .page-hero-title {
        font-size: 3rem;
    }

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

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 3.5rem;
    }
}

/* ===== MODERN ENHANCEMENTS ===== */

/* Animated gradient overlay on hero */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(15, 23, 42, 0.5) 25%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(15, 23, 42, 0.6) 75%,
        rgba(0, 0, 0, 0.7) 100%
    );
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
}

/* Floating animation for badges */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.about-badge {
    animation: float 4s ease-in-out infinite;
}

/* Pulse animation for CTA elements */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 16px rgba(234, 179, 8, 0.35); }
    50% { box-shadow: 0 8px 32px rgba(234, 179, 8, 0.55); }
}

.btn-shadow {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.hero-cta-btn.btn-primary {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Gradient text for hero title */
.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Improved section transitions */
.section {
    position: relative;
}

/* Card shine effect on hover */
.feature-card::after,
.service-card::after,
.vehicle-card::after,
.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.feature-card,
.service-card,
.review-card {
    position: relative;
    overflow: hidden;
}

.feature-card:hover::after,
.service-card:hover::after,
.vehicle-card:hover::after,
.review-card:hover::after {
    left: 120%;
}

/* Smooth number counter styling */
.stat-number {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

/* Active nav indicator handled in base nav-link styles */

/* Smooth scroll-revealed sections */
.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header scroll transform */
.header-fixed {
    transition: box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header-fixed.scrolled {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Better button hover states */
.btn {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

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

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Stats section parallax-ready */
.stats-section {
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .stats-section {
        background-attachment: fixed;
    }
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Accordion smooth animation */
.accordion-content {
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                padding-top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-item {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.accordion-item.active {
    box-shadow: var(--shadow-elevated);
    border-color: rgba(234, 179, 8, 0.2);
}

/* Step card connector line */
@media (min-width: 768px) {
    .steps-grid {
        position: relative;
    }

    .steps-grid::before {
        content: '';
        position: absolute;
        top: 2.5rem;
        left: calc(16.67% + 1rem);
        right: calc(16.67% + 1rem);
        height: 2px;
        background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
        opacity: 0.4;
        z-index: 0;
    }

    .step-card {
        position: relative;
        z-index: 1;
    }
}

/* Better vehicle image hover */
.vehicle-image {
    overflow: hidden;
    position: relative;
}

.vehicle-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    pointer-events: none;
}

.vehicle-image img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.08);
}

/* Review card quote styling */
.review-text::before {
    content: '"';
    font-size: 2rem;
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 0.125rem;
    color: var(--gold-light);
    font-family: Georgia, serif;
}

/* CTA section enhanced */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, hsl(222, 47%, 16%) 50%, var(--navy) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

/* Smooth page loading */
@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: pageLoad 0.4s ease-out;
}

/* Global interactive element transitions */
a, button, .feature-card, .service-card, .vehicle-card, .review-card,
.contact-card, .step-card, .accordion-item {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Touch device: always show contact CTA */
@media (hover: none) {
    .contact-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .feature-card:hover,
    .service-card:hover,
    .vehicle-card:hover,
    .review-card:hover,
    .contact-card:hover {
        transform: none;
    }
}

/* iOS fix for gradient text */
@supports (-webkit-touch-callout: none) {
    .hero-title {
        -webkit-text-fill-color: white;
    }
}

/* Selection color */
::selection {
    background: var(--gold-light);
    color: var(--navy);
}
