/* Base Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #f8fafc;
    --accent-gold: #d4af37;
    --accent-gold-dark: #b8941f;
    --accent-gold-light: #f4e4a6;
    --text-color: #0f172a;
    --text-light: #475569;
    --text-muted: #64748b;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --border-radius: 12px;
    --box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.2s ease;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #9a7c0a 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --gradient-luxury: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-premium: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--text-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 50%, #1e3a8a 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--gradient-light);
    color: var(--text-color);
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: var(--white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-color);
}

/* Animated Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    animation: slideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: height 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header.scrolled .header-content {
    height: 65px;
}

/* Animated Logo */
.logo {
    font-size: 1.4rem;
    font-weight: 600;
    opacity: 0;
    animation: fadeInLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 700;
    position: relative;
}

.logo:hover .logo-text {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Desktop Navigation */
.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-list li {
    opacity: 0;
    animation: fadeInUp 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.nav-list li:nth-child(1) { animation-delay: 0.15s; }
.nav-list li:nth-child(2) { animation-delay: 0.2s; }
.nav-list li:nth-child(3) { animation-delay: 0.25s; }
.nav-list li:nth-child(4) { animation-delay: 0.3s; }
.nav-list li:nth-child(5) { animation-delay: 0.35s; }
.nav-list li:nth-child(6) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-list li a {
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    padding: 0.6rem 0;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-list li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-list li a:hover::before,
.nav-list li.active a::before {
    width: 100%;
}

.nav-list li a:hover {
    color: var(--accent-gold-dark);
    transform: translateY(-2px);
}

.nav-list li.active a {
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.nav-list li.active a::before {
    width: 100%;
}

/* Animated Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.header-actions .btn {
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    background: var(--gradient-primary);
    color: white;
    letter-spacing: 0.4px;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.header-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-actions .btn:hover::before {
    left: 100%;
}

.header-actions .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 50%, #1e3a8a 100%);
}

.header-actions .btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

.mobile-menu-open .hamburger {
    background-color: transparent;
}

.mobile-menu-open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-open .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
    height: auto;
    min-height: calc(100vh - 70px);
    padding: 2rem 0;
}

.mobile-nav-list {
    padding: 0 2rem;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.open .mobile-nav-list li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.open .mobile-nav-list li:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open .mobile-nav-list li:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open .mobile-nav-list li:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open .mobile-nav-list li:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.open .mobile-nav-list li:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open .mobile-nav-list li:nth-child(6) { transition-delay: 0.3s; }

.mobile-nav-list li a {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 0;
    text-decoration: none;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1rem;
}

.mobile-nav-list li.active a {
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.mobile-nav-list li a:hover {
    color: var(--accent-gold-dark);
    transform: translateX(10px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('https://skyprivatzurich.com/img/1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 90px;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(51, 65, 85, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-footer {
    text-align: center;
    margin-top: 4rem;
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 3rem;
    max-width: 1500px;
    margin: 0 auto;
    justify-items: center;
}

.service-card {
    width: 100%;
    max-width: 400px;
    background: var(--gradient-light);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vehicle-card {
    background: var(--gradient-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 1;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    border-color: rgba(212, 175, 55, 0.2);
}

.vehicle-image {
    height: 240px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-details {
    padding: 2rem;
}

.vehicle-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.vehicle-details p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vehicle-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vehicle-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.vehicle-features li:last-child {
    margin-bottom: 0;
}

.vehicle-features li i {
    color: var(--primary-color);
}

/* Viator Tours Slideshow Section */
.viator-tours-slideshow {
    padding: 4rem 0;
    background: var(--gray-50);
}

.viator-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.viator-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.viator-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.viator-slide.active {
    display: block;
    opacity: 1;
}

.viator-tour-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.viator-tour-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--gray-200);
}

.viator-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.viator-slide.active .viator-tour-image img {
    transform: scale(1);
}

.viator-tour-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.viator-tour-badge i {
    font-size: 0.75rem;
}

.viator-tour-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.viator-tour-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.viator-tour-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.viator-tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.viator-tour-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.viator-tour-features i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.viator-tour-content .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.viator-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.viator-prev,
.viator-next {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.viator-prev:hover,
.viator-next:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.viator-prev:active,
.viator-next:active {
    transform: scale(0.95);
}

.viator-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.viator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.viator-dot:hover {
    background: var(--primary-light);
    transform: scale(1.2);
}

.viator-dot.active {
    background: var(--primary-color);
    width: 14px;
    height: 14px;
    border-color: var(--primary-dark);
}

/* Responsive adjustments for Viator tours slideshow */
@media (max-width: 768px) {
    .viator-tours-slideshow {
        padding: 3rem 0;
    }
    
    .viator-tour-image {
        height: 300px;
    }
    
    .viator-tour-content {
        padding: 2rem;
    }
    
    .viator-tour-content h3 {
        font-size: 1.25rem;
    }
    
    .viator-tour-description {
        font-size: 0.95rem;
    }
    
    .viator-tour-features {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .viator-tour-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .viator-slider-controls {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .viator-prev,
    .viator-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .viator-tour-image {
        height: 250px;
    }
    
    .viator-tour-content {
        padding: 1.5rem;
    }
    
    .viator-tour-content h3 {
        font-size: 1.1rem;
    }
    
    .viator-tour-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .viator-tour-features {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 0;
    }
    
    .viator-tour-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    .viator-slider-controls {
        gap: 1rem;
    }
    
    .viator-prev,
    .viator-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .viator-dots {
        gap: 0.5rem;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slide {
    padding: 0 1.5rem;
}

.testimonial-content {
    background: var(--gradient-light);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 16px 16px 0 0;
}

.testimonial-rating {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.author-location {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    gap: 1.5rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--gradient-light);
    border: 1px solid var(--gray-200);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    font-size: 1.25rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gradient-gold);
    transform: scale(1.2);
}

/* Contact CTA Section */
.contact-cta {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

/* Footer */
.site-footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    border-top: 2px solid var(--accent-gold);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--gray-300);
    font-size: 1.1rem;
    max-width: 350px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-300);
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.contact-item i {
    font-size: 1.25rem;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-links a:hover {
    background: var(--gradient-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin: 0;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .header-content {
        height: 75px;
    }
    
    .site-header.scrolled .header-content {
        height: 70px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .mobile-nav {
        top: 75px;
    }
    
    .nav-list {
        gap: 2.8rem;
    }
    
    .nav-list li a {
        font-size: 0.95rem;
    }
    
    .header-actions .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-brand, .footer-contact {
        align-items: flex-start;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .site-header {
        padding: 0;
    }
    
    .header-content {
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }
    
    .site-header.scrolled .header-content {
        height: 75px;
    }
    
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    .logo {
        font-size: 1.6rem;
        flex-shrink: 0;
    }
    
    /* Show desktop navigation - centered */
    .main-nav {
        display: flex;
        flex: 1;
        justify-content: center;
        margin: 0 2rem;
    }
    
    .nav-list {
        gap: 3rem;
    }
    
    .nav-list li a {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
    
    .header-actions .btn {
        padding: 0.7rem 1.6rem;
        font-size: 0.9rem;
    }
    
    /* Hide mobile menu toggle */
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Hide mobile navigation */
    .mobile-nav {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-header h2 {
        font-size: 2.75rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1280px) {
    .container {
        max-width: 1500px;
        padding: 0 4rem;
    }
    
    .header-content {
        height: 85px;
    }
    
    .site-header.scrolled .header-content {
        height: 80px;
    }
    
    .logo {
        font-size: 1.7rem;
    }
    
    .nav-list {
        gap: 3.5rem;
    }
    
    .nav-list li a {
        font-size: 0.95rem;
        padding: 0.8rem 0;
    }
    
    .header-actions .btn {
        padding: 0.75rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Extra Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
        padding: 0 5rem;
    }
    
    .header-content {
        height: 90px;
    }
    
    .site-header.scrolled .header-content {
        height: 85px;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .nav-list {
        gap: 4rem;
    }
    
    .nav-list li a {
        font-size: 1rem;
    }
    
    .header-actions .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 575px) {
    .hero {
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
    
    .vehicle-image {
        height: 200px;
    }
    
    .vehicle-details {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .site-header {
        transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        transition: none;
    }
    
    .site-header {
        animation: none;
    }
    
    .logo,
    .nav-list li,
    .header-actions {
        animation: none;
        opacity: 1;
    }
}





/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Footer */
/* Legal Links Section */
.footer-legal {
    color: white;
    margin: 30px 0 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    color: white;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.legal-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.legal-link i {
    color: white;
    font-size: 0.85rem;
    opacity: 0.8;
}

.legal-link:hover i {
    opacity: 1;
}

/* Responsive adjustments for legal links */
@media (max-width: 768px) {
    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .legal-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .footer-legal {
        margin: 20px 0 15px;
        padding-top: 20px;
    }
    
    .legal-links {
        gap: 10px;
    }
    
    .legal-link {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}