/* ========================================
   VELVET RIDE - LUXURY VIP TRANSFER
   CSS STYLESHEET
   ======================================== */

/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
    --color-obsidian: #050505;
    --color-caramel: #3d2b1f;
    --color-gold: #c2a382;
    --color-gold-light: #d4b896;
    --color-cream: #f5f0e8;
    --color-gray: #1a1a1a;
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-obsidian);
    color: var(--color-cream);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* Film Grain Noise Texture Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-option:hover .booking-option__label {
    color: var(--color-gold);
}

.booking-option__checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(194, 163, 130, 0.4);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.booking-option__checkbox:checked {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.booking-option__checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-obsidian);
    font-size: 12px;
    font-weight: bold;
}

.booking-option__label {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.7);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-hidden-field {
    display: none !important;
}

/* ========================================
   SCROLL PROGRESS BAR - GOLD
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 1001;
    background: rgba(194, 163, 130, 0.1);
}

.scroll-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        var(--color-gold) 0%, 
        #e8d4b8 50%, 
        var(--color-gold) 100%);
    box-shadow: 0 0 10px var(--color-gold), 0 0 20px rgba(194, 163, 130, 0.5);
    transition: width 0.1s linear;
}

/* ========================================
   LUXURY SHIMMER EFFECTS
   ======================================== */
.shimmer-border {
    position: relative;
    overflow: hidden;
}

.shimmer-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(194, 163, 130, 0.4) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Gold Glow Effect */
.gold-glow {
    transition: all 0.4s var(--transition-luxury);
}

.gold-glow:hover {
    box-shadow: 
        0 0 20px rgba(194, 163, 130, 0.3),
        0 0 40px rgba(194, 163, 130, 0.2),
        0 0 60px rgba(194, 163, 130, 0.1);
}

/* Text Shine Effect */
.text-shine {
    background: linear-gradient(
        120deg,
        var(--color-gold) 0%,
        #fff 50%,
        var(--color-gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
}

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

/* Smooth Section Reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--transition-luxury);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Magnetic Button Enhancement */
.btn--magnetic {
    position: relative;
    overflow: hidden;
}

.btn--magnetic::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(194, 163, 130, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.btn--magnetic:hover::after {
    width: 300%;
    height: 300%;
}

/* ========================================
   VIP BADGE
   ======================================== */
.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, 
        rgba(194, 163, 130, 0.2) 0%, 
        rgba(194, 163, 130, 0.05) 100%);
    border: 1px solid rgba(194, 163, 130, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.vip-badge__icon {
    color: var(--color-gold);
    font-size: 1rem;
}

.vip-badge__text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
}

/* Enhanced Glassmorphism Card */
.glass-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(194, 163, 130, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Luxury Corner Accent */
.corner-accent {
    position: relative;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--color-gold);
    border-style: solid;
    transition: all 0.4s var(--transition-luxury);
}

.corner-accent::before {
    top: -2px;
    left: -2px;
    border-width: 2px 0 0 2px;
}

.corner-accent::after {
    bottom: -2px;
    right: -2px;
    border-width: 0 2px 2px 0;
}

.corner-accent:hover::before,
.corner-accent:hover::after {
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: rgba(194, 163, 130, 0.3);
    color: var(--color-cream);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-obsidian);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gold), var(--color-caramel));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s var(--transition-smooth), 
                width 0.3s var(--transition-luxury), 
                height 0.3s var(--transition-luxury),
                background 0.3s var(--transition-luxury);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(194, 163, 130, 0.1);
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
}

@media (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-dot { display: none; }
}

/* ========================================
   PAGE LOADER
   ======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-obsidian);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 5vh 20px 10vh;
    transition: opacity 0.8s var(--transition-luxury), visibility 0.8s;
    overflow: hidden;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader__logo {
    position: relative;
    z-index: 2;
    color: var(--color-gold);
    text-shadow: 0 0 15px rgba(194, 163, 130, 0.7), 0 0 30px rgba(194, 163, 130, 0.4);
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    animation: loaderPulse 2.5s infinite ease-in-out;
    margin-bottom: auto;
}

.page-loader__content-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.page-loader__bar {
    width: 200px;
    height: 2px;
    background: rgba(194, 163, 130, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.page-loader__progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-gold);
    box-shadow: 0 0 15px rgba(194, 163, 130, 0.6);
    transition: width 0.3s ease;
}

.page-loader__tagline {
    color: var(--color-gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 20px;
    text-align: center;
    opacity: 0;
    animation: fadeInTagline 2s ease forwards 0.8s;
}

@keyframes loaderPulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

@keyframes fadeInTagline {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 0.8; transform: translateY(0); }
}

@keyframes fadeInLogo {
    to { opacity: 1; }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.heading {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.heading--hero {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.1;
    font-style: italic;
    color: var(--color-cream);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.heading--section {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.heading--card {
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 0.75rem;
}

.text {
    font-weight: 300;
    color: rgba(245, 240, 232, 0.8);
}

.text--small {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal__word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s var(--transition-luxury), opacity 0.8s;
}

.text-reveal.revealed .text-reveal__word {
    transform: translateY(0);
    opacity: 1;
}

/* ========================================
   NAVIGATION - MAGNETIC
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), transparent);
    backdrop-filter: blur(10px);
    transition: background 0.3s var(--transition-smooth), padding 0.3s;
}

.nav.scrolled {
    background: rgba(5, 5, 5, 0.95);
    padding: 1rem 3rem;
}

.nav__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--color-gold);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s var(--transition-smooth);
}

.nav__logo:hover {
    color: var(--color-gold-light);
}

.nav__menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav__item {
    position: relative;
}

.nav__link {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s var(--transition-smooth);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: all 0.4s var(--transition-luxury);
    transform: translateX(-50%);
}

.nav__link:hover {
    color: var(--color-gold);
}

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

/* Magnetic Effect */
.nav__link--magnetic {
    display: inline-block;
    transition: transform 0.3s var(--transition-smooth);
}

/* Language Switcher */
.nav__lang {
    position: relative;
    margin-left: 2rem;
}

.nav__lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(194, 163, 130, 0.3);
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    cursor: none;
    transition: all 0.3s var(--transition-smooth);
}

.nav__lang-btn:hover {
    border-color: var(--color-gold);
    background: rgba(194, 163, 130, 0.1);
}

.nav__lang-current {
    font-weight: 600;
    min-width: 24px;
}

.nav__lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    border: 1px solid rgba(194, 163, 130, 0.3);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--transition-luxury);
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.nav__lang.active .nav__lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__lang-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--color-cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    text-align: left;
    cursor: none;
    transition: all 0.3s var(--transition-smooth);
}

.nav__lang-option:hover {
    background: rgba(194, 163, 130, 0.2);
    color: var(--color-gold);
}

.nav__lang-option.active {
    color: var(--color-gold);
    background: rgba(194, 163, 130, 0.1);
}

/* ========================================
   HERO SECTION - CINEMATIC
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, 
            rgba(5, 5, 5, 0.4) 0%, 
            rgba(5, 5, 5, 0.5) 40%,
            rgba(5, 5, 5, 0.7) 70%,
            var(--color-obsidian) 100%);
    z-index: 1;
}

/* Fallback background if video fails */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, 
            rgba(5, 5, 5, 0.3) 0%, 
            rgba(5, 5, 5, 0.6) 50%,
            var(--color-obsidian) 100%),
        url('https://images.unsplash.com/photo-1563720360172-67b8f3dce741?w=1920&q=80') center/cover no-repeat;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero__tagline {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--transition-luxury) forwards;
}

.hero__title {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s var(--transition-luxury) 0.3s forwards;
}

.hero__subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--transition-luxury) 0.6s forwards;
    color: rgba(245, 240, 232, 0.9);
}

.hero__cta {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--transition-luxury) 0.9s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BUTTONS - LIQUID FILL
   ======================================== */
.btn {
    position: relative;
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-cream);
    background: transparent;
    border: 1px solid var(--color-gold);
    cursor: none;
    overflow: hidden;
    transition: all 0.5s var(--transition-luxury);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--transition-luxury), height 0.6s var(--transition-luxury);
    z-index: -1;
}

.btn:hover {
    color: var(--color-obsidian);
    border-color: var(--color-gold);
}

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

.btn--primary {
    background: var(--color-gold);
    color: var(--color-obsidian);
    border: none;
}

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

.btn--primary:hover {
    color: var(--color-cream);
}

/* ========================================
   VIP STATS SECTION
   ======================================== */
.stats {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, rgba(61, 43, 31, 0.4), rgba(5, 5, 5, 0.8));
    border-top: 1px solid rgba(194, 163, 130, 0.1);
    border-bottom: 1px solid rgba(194, 163, 130, 0.1);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}

.stat-item__number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item__label {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
}

/* ========================================
   SERVICES SECTION - HOVER REVEAL
   ======================================== */
.services {
    padding: 8rem 3rem;
    position: relative;
    background: var(--color-obsidian);
}

.services__header {
    text-align: center;
    margin-bottom: 5rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(61, 43, 31, 0.3), rgba(5, 5, 5, 0.8));
    border: 1px solid rgba(194, 163, 130, 0.2);
    overflow: hidden;
    cursor: none;
    transition: all 0.5s var(--transition-luxury);
}

.service-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s var(--transition-luxury);
    z-index: 0;
}

.service-card__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.7));
}

.service-card:hover .service-card__bg {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(194, 163, 130, 0.5);
    transform: translateY(-5px);
}

.service-card__content {
    position: relative;
    z-index: 1;
}

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.service-card__text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.7);
}

/* ========================================
   VIDEO SHOWCASE - HOTEL TRANSFER
   ======================================== */
.video-showcase {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-showcase__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-showcase__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-showcase__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, 
            rgba(5, 5, 5, 0.85) 0%, 
            rgba(5, 5, 5, 0.4) 50%,
            rgba(5, 5, 5, 0.85) 100%),
        linear-gradient(to bottom, 
            rgba(5, 5, 5, 0.3) 0%, 
            rgba(5, 5, 5, 0.5) 100%);
    z-index: 1;
}

.video-showcase__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.video-showcase__content .heading--section {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.video-showcase__text {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.9);
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .video-showcase {
        height: 60vh;
        min-height: 400px;
    }
    
    .video-showcase__content .heading--section {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* ========================================
   VEHICLE SHOWCASE - VERTICAL LIST & DISPLAY
   ======================================== */
.vehicles {
    position: relative;
    padding: 8rem 0;
    background: var(--color-obsidian);
}

.vehicles__container {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.vehicles__sidebar {
    position: sticky;
    top: 120px;
}

.vehicles__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vehicle-item {
    background: transparent;
    border: none;
    border-left: 2px solid rgba(194, 163, 130, 0.1);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.4s var(--transition-luxury);
    text-align: left;
    width: 100%;
}

.vehicle-item:hover {
    background: rgba(194, 163, 130, 0.05);
    border-left-color: rgba(194, 163, 130, 0.4);
}

.vehicle-item.active {
    background: rgba(194, 163, 130, 0.1);
    border-left-color: var(--color-gold);
}

.vehicle-item__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(194, 163, 130, 0.5);
    font-weight: 600;
}

.vehicle-item.active .vehicle-item__number {
    color: var(--color-gold);
}

.vehicle-item__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-cream);
    letter-spacing: 0.05em;
    transition: all 0.4s var(--transition-luxury);
}

.vehicle-item.active .vehicle-item__name {
    color: var(--color-gold);
    transform: translateX(10px);
}

.vehicles__main {
    position: relative;
    min-height: 600px;
}

.vehicle-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-luxury);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.vehicle-detail.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.vehicle-detail__image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(194, 163, 130, 0.2);
}

.vehicle-detail__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-luxury);
}

.vehicle-detail.active .vehicle-detail__image {
    transform: scale(1.05);
}

.vehicle-detail__price {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--color-gold);
    color: var(--color-obsidian);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vehicle-detail__content {
    padding: 2rem 0;
}

.vehicle-detail__header {
    margin-bottom: 2rem;
}

.vehicle-detail__specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.vehicle-detail__spec {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(194, 163, 130, 0.1);
    border-radius: 4px;
}

.spec-icon {
    font-size: 1.2rem;
}

.spec-label {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.8);
}

@media (max-width: 1024px) {
    .vehicles__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .vehicles__sidebar {
        position: relative;
        top: 0;
        z-index: 10;
        background: transparent;
        padding: 0;
        margin: 0;
    }
    .vehicles__list {
        flex-direction: column;
        overflow-x: visible;
        padding: 0;
        gap: 0.5rem;
        display: flex;
    }
    .vehicle-item {
        width: 100%;
        border: 1px solid rgba(194, 163, 130, 0.2);
        border-radius: 8px;
        padding: 0.8rem 1.25rem;
        background: rgba(255, 255, 255, 0.03);
        justify-content: center;
        transition: all 0.3s ease;
    }
    .vehicle-item:hover {
        background: rgba(194, 163, 130, 0.1);
        border-color: rgba(194, 163, 130, 0.4);
    }
    .vehicle-item.active {
        background: var(--color-gold);
        border-color: var(--color-gold);
    }
    .vehicle-item__name {
        font-size: 0.95rem;
        text-align: center;
        color: var(--color-cream);
    }
    .vehicle-item:hover .vehicle-item__name {
        color: var(--color-gold);
        transform: none;
    }
    .vehicle-item.active .vehicle-item__name {
        color: var(--color-obsidian) !important;
        transform: none !important;
        font-weight: 600;
    }
    .vehicle-detail {
        padding: 0.75rem;
    }
    .vehicle-detail__image-wrapper {
        max-width: 90%;
        margin: 0 auto;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    .vehicles {
        padding: 3rem 0;
    }
    .vehicle-detail__image-wrapper {
        max-width: 100%;
        aspect-ratio: 3 / 2;
    }
    .vehicle-detail__specs {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .vehicle-detail__spec {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .vehicle-detail__specs {
        grid-template-columns: 1fr 1fr; /* 2 sütun daha iyi */
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 8rem 3rem;
    background: linear-gradient(to bottom, var(--color-obsidian), rgba(61, 43, 31, 0.3), var(--color-obsidian));
    position: relative;
    overflow: hidden;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials__slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    text-align: center;
    padding: 3rem;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.8s var(--transition-luxury);
}

.testimonial.active {
    opacity: 1;
    position: relative;
}

.testimonial__quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    line-height: 1.8;
    color: var(--color-cream);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial__quote::before {
    content: '"';
    font-size: 6rem;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: 'Playfair Display', serif;
}

.testimonial__author {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.testimonial__role {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 0.5rem;
}

.testimonials__nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(194, 163, 130, 0.3);
    cursor: none;
    transition: all 0.3s var(--transition-smooth);
}

.testimonials__dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* ========================================
   PRESS/LOGOS SECTION
   ======================================== */
.press {
    padding: 5rem 3rem;
    background: var(--color-obsidian);
    border-top: 1px solid rgba(194, 163, 130, 0.1);
    border-bottom: 1px solid rgba(194, 163, 130, 0.1);
}

.press__header {
    text-align: center;
    margin-bottom: 3rem;
}

.press__header p {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
}

.press__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.press__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 0.1em;
    transition: all 0.5s var(--transition-luxury);
    filter: grayscale(100%);
}

.press__logo:hover {
    color: var(--color-gold);
    filter: grayscale(0%);
}

/* ========================================
   BOOKING SECTION - GLASSMORPHISM
   ======================================== */
.booking {
    padding: 8rem 3rem;
    position: relative;
    background: 
        linear-gradient(to bottom, 
            var(--color-obsidian) 0%, 
            rgba(61, 43, 31, 0.3) 50%,
            var(--color-obsidian) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.booking__container {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.booking__header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking__glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.booking__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking__group {
    position: relative;
}

.booking__group--full {
    grid-column: 1 / -1;
}

.booking__label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.booking__input,
.booking__select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(5, 5, 5, 0.5);
    border: 1px solid rgba(194, 163, 130, 0.3);
    color: var(--color-cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s var(--transition-smooth);
    outline: none;
}

.booking__input:focus,
.booking__select:focus {
    border-color: var(--color-gold);
    background: rgba(5, 5, 5, 0.7);
    box-shadow: 0 0 20px rgba(194, 163, 130, 0.1);
}

.booking__input::placeholder {
    color: rgba(245, 240, 232, 0.4);
}

.booking__select {
    cursor: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c2a382' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.booking__select option {
    background: var(--color-obsidian);
    color: var(--color-cream);
}

.booking__submit {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
}

/* Price Calculator Display */
.booking__estimate {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1.5rem;
    background: rgba(194, 163, 130, 0.1);
    border: 1px solid rgba(194, 163, 130, 0.3);
    border-radius: 4px;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--transition-luxury);
}

.booking__estimate.show {
    opacity: 1;
    transform: translateY(0);
}

.booking__estimate-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.booking__estimate-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-cream);
}

/* ========================================
   STICKY CONTACT BUTTON
   ======================================== */
.sticky-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sticky-contact__btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    box-shadow: 0 10px 30px rgba(194, 163, 130, 0.3);
    transition: all 0.4s var(--transition-luxury);
    position: relative;
}

.sticky-contact__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(194, 163, 130, 0.4);
}

.sticky-contact__btn svg {
    width: 24px;
    height: 24px;
    fill: var(--color-obsidian);
}

.sticky-contact__tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-caramel);
    color: var(--color-cream);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--transition-smooth);
}

.sticky-contact__btn:hover .sticky-contact__tooltip {
    opacity: 1;
}

/* ========================================
   PARTICLES CANVAS
   ======================================== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 4rem 3rem;
    background: var(--color-obsidian);
    border-top: 1px solid rgba(194, 163, 130, 0.2);
    text-align: center;
}

.footer__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.footer__text {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 2rem;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__link {
    color: rgba(245, 240, 232, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s var(--transition-smooth);
}

.footer__link:hover {
    color: var(--color-gold);
}

.footer__copyright {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 0.05em;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-loader {
        padding: 15vh 20px;
    }
    .page-loader__logo { 
        font-size: 1.8rem; 
        letter-spacing: 0.15em; 
    }
    .page-loader__bar { width: 140px; }
    .page-loader__tagline { font-size: 0.9rem; padding: 0 20px; }

    .nav {
        padding: 1rem 1.5rem;
    }

    .nav__menu {
        display: none;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .stats__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item::after {
        display: none;
    }

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

    .vehicle-card {
        width: 300px;
        height: 450px;
    }

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

    .booking__glass {
        padding: 2rem 1.5rem;
    }

    .booking__options-main,
    #mainReturnFields {
        grid-column: 1 / -1 !important;
    }

    #mainReturnFields > div {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .press__logos {
        gap: 2rem;
    }
    
    .sticky-contact {
        bottom: 1rem;
        right: 1rem;
    }
    
    .sticky-contact__btn {
        width: 50px;
        height: 50px;
    }
}

/* Smooth scroll with skew effect */
.skew-on-scroll {
    transition: transform 0.1s linear;
}
