/* ═══════════════════════════════════════════════════════════════════════════════
   TOP NOTCH MIAMI - Premium Yacht Broker & Exotic Rentals
   Luxury Design System with GSAP Integration
   ═══════════════════════════════════════════════════════════════════════════════ */

:root {
    /* Premium Color Palette */
    --color-bg: #0a0f14;
    --color-bg-deep: #060a0e;
    --color-surface: #0f1419;
    --color-surface-elevated: #141c24;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-light: rgba(255, 255, 255, 0.1);

    /* Accent Colors */
    --color-gold: #c9a962;
    --color-gold-light: #e4d5a8;
    --color-gold-dark: #9a7b3c;
    --color-gold-rgb: 201, 169, 98;

    /* Text Colors */
    --color-text: #ffffff;
    --color-text-secondary: #8a9199;
    --color-text-muted: #5a6167;

    /* State Colors */
    --color-success: #4ade80;
    --color-error: #f87171;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 160px);
    --container-width: 1440px;
    --container-padding: clamp(24px, 5vw, 80px);

    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 32px rgba(201, 169, 98, 0.15);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Reset & Base
   ═══════════════════════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    max-width: 100%;
}

@media (min-width: 1024px) {
    body {
        cursor: none;
    }
}

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

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

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

/* ═══════════════════════════════════════════════════════════════════════════════
   Custom Cursor
   ═══════════════════════════════════════════════════════════════════════════════ */

.cursor-follower,
.cursor-dot {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    mix-blend-mode: difference;
    display: none;
}

@media (min-width: 1024px) {
    .cursor-follower,
    .cursor-dot {
        display: block;
    }
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease-out);
}

/* Cursor hover states */
.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-gold);
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Fallback for browsers that support :has() */
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower,
body:has(.fleet-card:hover) .cursor-follower,
body:has(.testimonial-card:hover) .cursor-follower {
    width: 60px;
    height: 60px;
    border-color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Preloader
   ═══════════════════════════════════════════════════════════════════════════════ */

.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 40px;
}

.preloader-logo .logo-top {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-text);
}

.preloader-logo .logo-bottom {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5em;
    color: var(--color-gold);
}

.preloader-line {
    width: 120px;
    height: 1px;
    background: var(--color-border);
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    animation: preloaderLine 1.5s ease-in-out infinite;
}

@keyframes preloaderLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

.preloader-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    transition: all 0.4s var(--ease-out);
    will-change: background, padding;
}

/* Prevent transform animations on navigation items */
.nav *,
.nav .btn,
.nav .nav-link,
.nav .nav-cta {
    will-change: color, border-color;
}

.nav.scrolled {
    background: rgba(10, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

/* Subpage navigation - always fixed and visible */
.subpage .nav,
body.subpage .nav {
    background: rgba(10, 15, 20, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15) !important;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s var(--ease-out), filter 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.logo-mark {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    transition: transform 0.4s var(--ease-out);
}

.nav-logo:hover .logo-mark {
    transform: rotate(45deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-text);
}

.logo-tagline {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--color-gold);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 36px;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.nav-cta {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.4s var(--ease-out);
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* Mobile Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 6px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.toggle-line {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s var(--ease-out);
}

.toggle-close {
    display: none;
    font-size: 20px;
    color: var(--color-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s var(--ease-out);
    line-height: 1;
}

.nav-toggle.active .toggle-line {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active .toggle-close {
    display: block;
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-bg-deep);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
    padding: 20px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(24px, 6vw, 32px);
    font-weight: 400;
    color: var(--color-text-secondary);
    transition: color 0.3s;
    padding: 8px 16px;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-link:hover,
.mobile-link:active {
    color: var(--color-gold);
}

.mobile-link.cta {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 16px;
    padding: 16px 40px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 4px;
    min-height: 48px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--color-bg-deep);
    padding-bottom: 60px;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hero-media {
        position: absolute;
        height: 100%;
        min-height: 100vh;
    }
}

.hero-video,
.hero-media img,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-image {
    transform: scale(1.1);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.1);
        object-position: center center;
    }
    100% {
        transform: scale(1.2);
        object-position: center 40%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 20, 0.7) 0%,
        rgba(10, 15, 20, 0.5) 40%,
        rgba(10, 15, 20, 0.7) 100%
    );
    /* Additional vignette effect */
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px var(--container-padding) 40px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 30px var(--container-padding) 20px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 32px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.word.highlight {
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 32px;
    }
}

.char-wrapper {
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .hero-cta {
        gap: 12px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: 8px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

@media (max-width: 768px) {
    .stat-divider {
        display: none;
    }
}

/* Hero Tagline */
.hero-tagline {
    max-width: 500px;
    margin: 0 auto 32px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.hero-tagline p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* Hero CTA Buttons */
.btn-book {
    background: linear-gradient(135deg, var(--color-gold) 0%, #e6a33e 100%);
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(201, 169, 98, 0.6); }
}

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

.btn-call:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn-call i {
    margin-right: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PASS 97 - VIRAL VIDEO SHOWCASE (Pure CSS/GSAP Animated Frame)
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero-video-showcase {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 500px;
    height: 281px;
    z-index: 10;
}

/* Animated Corner Brackets */
.frame-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 5;
}

.frame-corner-tl { top: -8px; left: -8px; }
.frame-corner-tr { top: -8px; right: -8px; }
.frame-corner-bl { bottom: -8px; left: -8px; }
.frame-corner-br { bottom: -8px; right: -8px; }

.corner-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.8));
}

.corner-svg path {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: drawCorner 1.5s ease-out forwards;
}

.frame-corner-tr .corner-svg path { animation-delay: 0.2s; }
.frame-corner-bl .corner-svg path { animation-delay: 0.4s; }
.frame-corner-br .corner-svg path { animation-delay: 0.6s; }

@keyframes drawCorner {
    to { stroke-dashoffset: 0; }
}

/* Animated Border Lines */
.frame-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    z-index: 4;
}

.frame-line-top {
    top: -1px;
    left: 40px;
    right: 40px;
    height: 1px;
    animation: lineGlow 3s ease-in-out infinite;
}

.frame-line-bottom {
    bottom: -1px;
    left: 40px;
    right: 40px;
    height: 1px;
    animation: lineGlow 3s ease-in-out infinite 0.5s;
}

.frame-line-left {
    left: -1px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
    animation: lineGlow 3s ease-in-out infinite 1s;
}

.frame-line-right {
    right: -1px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
    animation: lineGlow 3s ease-in-out infinite 1.5s;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Glow Effect Behind Video */
.frame-glow {
    position: absolute;
    inset: -20px;
    border-radius: 20px;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.3) 0%, transparent 70%);
    filter: blur(25px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.03); }
}

/* Video Container */
.video-container {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    background: #000;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(201, 169, 98, 0.2);
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-video-showcase:hover .showcase-video {
    transform: scale(1.03);
}

/* Scanlines */
.video-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.05) 0px,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 3;
    opacity: 0.4;
}

/* Play Overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    z-index: 4;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hero-video-showcase:hover .video-play-overlay {
    opacity: 1;
}

.video-play-overlay i {
    font-size: 48px;
    color: var(--color-gold);
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.9));
}

.play-btn-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Floating Sparks */
.showcase-particles {
    position: absolute;
    inset: -40px;
    pointer-events: none;
    z-index: 6;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-gold), 0 0 15px var(--color-gold);
    animation: sparkFloat 10s ease-in-out infinite;
}

.spark-1 { top: 15%; left: -10px; animation-delay: 0s; }
.spark-2 { top: 35%; right: -10px; animation-delay: 2s; }
.spark-3 { bottom: 25%; left: 0; animation-delay: 4s; }
.spark-4 { bottom: 45%; right: 0; animation-delay: 1s; }
.spark-5 { top: 55%; left: -15px; animation-delay: 3s; }
.spark-6 { top: 25%; right: -15px; animation-delay: 5s; }

@keyframes sparkFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-20px) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translateY(-35px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.7;
    }
}

/* Showcase Badges */
.showcase-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.showcase-badge i {
    color: var(--color-gold);
    font-size: 12px;
}

/* LIVE Badge */
.badge-live {
    top: -14px;
    left: 12px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: #ef4444;
    padding: 5px 12px;
}

.live-pulse {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: liveBlink 1s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Views Badge */
.badge-views {
    top: -14px;
    right: 12px;
}

.badge-views .counter {
    color: var(--color-gold);
    font-weight: 800;
}

/* Branding */
.showcase-branding {
    position: absolute;
    bottom: 12px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 10;
    opacity: 0.85;
}

.brand-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.brand-sub {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Hero Book Now Button (Next to Video on Left)
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero-book-btn {
    position: absolute;
    top: 50%;
    left: calc(5% + 520px);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 36px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4a843 100%);
    border-radius: 12px;
    color: var(--color-bg);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 15;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    box-shadow:
        0 15px 40px rgba(201, 169, 98, 0.4),
        0 0 60px rgba(201, 169, 98, 0.2);
    text-decoration: none;
    overflow: hidden;
}

.hero-book-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-book-btn:hover::before {
    opacity: 1;
}

.hero-book-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 25px 60px rgba(201, 169, 98, 0.5),
        0 0 80px rgba(201, 169, 98, 0.3);
    color: var(--color-bg);
}

.hero-book-btn i {
    font-size: 28px;
}

.hero-book-btn svg {
    margin-top: 4px;
    transition: transform 0.3s;
}

.hero-book-btn:hover svg {
    transform: translateX(4px);
}

.book-btn-glow {
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--color-gold), transparent, var(--color-gold));
    opacity: 0.5;
    filter: blur(8px);
    z-index: -1;
    animation: bookBtnPulse 2s ease-in-out infinite;
}

@keyframes bookBtnPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Responsive adjustments for Book Now button */
@media (max-width: 1600px) {
    .hero-book-btn {
        left: calc(5% + 440px);
        padding: 20px 28px;
        font-size: 13px;
    }

    .hero-book-btn i {
        font-size: 24px;
    }
}

@media (max-width: 1400px) {
    .hero-book-btn {
        left: calc(3% + 380px);
        padding: 18px 24px;
    }
}

/* Tablet/Mobile - Hide floating book btn, use CTA buttons in content instead */
@media (max-width: 1100px) {
    .hero-book-btn {
        display: none;
    }
}

/* Hero Brand Tagline - Right side of video */
.hero-brand-tagline {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    max-width: 280px;
    z-index: 10;
}

.tagline-wrapper {
    position: relative;
    padding-left: 24px;
}

.tagline-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
}

.tagline-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.tagline-text em {
    color: var(--color-gold);
    font-style: italic;
}

.tagline-subtext {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive - Hide on smaller screens */
@media (max-width: 1400px) {
    .hero-brand-tagline {
        right: 5%;
        max-width: 240px;
    }

    .tagline-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 1200px) {
    .hero-brand-tagline {
        right: 3%;
        max-width: 200px;
    }

    .tagline-text {
        font-size: 1.2rem;
    }
}

/* Mobile - Show tagline above stats/prices */
@media (max-width: 768px) {
    .hero-brand-tagline {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        transform: none !important;
        max-width: 100% !important;
        margin: 30px auto 20px !important;
        order: 2 !important;
        z-index: 50 !important;
        display: block !important;
        text-align: center;
        padding: 0 var(--container-padding);
    }

    .tagline-wrapper {
        padding-left: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tagline-accent {
        display: none;
    }

    .tagline-text {
        font-size: clamp(20px, 6vw, 28px) !important;
        margin-bottom: 12px;
        text-align: center;
    }

    .tagline-subtext {
        font-size: 11px;
        text-align: center;
    }

    /* Stats appear after brand tagline */
    .hero-content .hero-stats {
        order: 3 !important;
        margin: 0 auto 30px !important;
    }
}

/* Watch CTA - REMOVED, keeping styles for reference */
.showcase-cta {
    display: none; /* Hidden per user request */
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4a843 100%);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-bg);
    z-index: 10;
    box-shadow:
        0 8px 30px rgba(201, 169, 98, 0.5),
        0 0 40px rgba(201, 169, 98, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    white-space: nowrap;
}

.showcase-cta:hover {
    transform: translateX(-50%) scale(1.06) translateY(-2px);
    box-shadow:
        0 12px 40px rgba(201, 169, 98, 0.7),
        0 0 60px rgba(201, 169, 98, 0.4);
}

.showcase-cta i {
    font-size: 14px;
}

.cta-pulse {
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    border: 1px solid var(--color-gold);
    animation: ctaPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes ctaPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.12); opacity: 0; }
}

/* Motion Animation Classes */
[data-motion] {
    opacity: 0;
}

[data-motion="fade-in-up"] {
    transform: translateY(40px);
}

[data-motion="fade-in-down"] {
    transform: translateY(-40px);
}

[data-motion="fade-in-left"] {
    transform: translateX(60px);
}

[data-motion="fade-in-right"] {
    transform: translateX(-60px);
}

[data-motion].motion-active {
    opacity: 1;
    transform: translate(0, 0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Responsive Video Showcase */

/* Mobile - Video BELOW content */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-content {
        position: relative;
        z-index: 50;
        margin-top: 0;
        margin-bottom: 0;
        padding: 30px var(--container-padding) 0;
        order: 1 !important;
        width: 100%;
        max-width: 100%;
        display: contents;
    }

    /* Reorder elements - now direct children of hero */
    .hero-content .hero-badge {
        order: 1;
        padding: 0 var(--container-padding);
        margin-bottom: 24px;
    }

    .hero-content .hero-title {
        order: 2;
        padding: 0 var(--container-padding);
        margin-bottom: 20px;
    }

    .hero-content .hero-subtitle {
        order: 3;
        padding: 0 var(--container-padding);
        margin-bottom: 24px;
    }

    .hero-content .hero-tagline {
        order: 4;
        padding: 0 var(--container-padding);
        margin-bottom: 24px;
    }

    .hero-content .hero-cta {
        order: 5;
        padding: 0 var(--container-padding);
        margin-bottom: 0;
    }

    .hero-content .hero-stats {
        order: 6;
        padding: 0 var(--container-padding);
    }

    .hero-badge {
        font-size: 10px;
        padding: 10px 20px;
        margin-bottom: 24px;
        gap: 8px;
    }

    .hero-title {
        font-size: clamp(36px, 12vw, 56px);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .hero-tagline {
        margin-bottom: 24px;
    }

    .hero-tagline p {
        font-size: 14px;
        line-height: 1.6;
    }

    .typed-wrapper {
        min-width: 200px;
    }

    .hero-video-showcase {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 90% !important;
        max-width: 380px !important;
        height: 214px !important;
        margin: 30px auto 0 !important;
        display: block !important;
        z-index: 100 !important;
        flex-shrink: 0;
        order: 4 !important;
    }

    .video-container {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

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

    .hero-book-btn {
        display: none !important;
    }

    .frame-corner {
        width: 30px;
        height: 30px;
    }

    .showcase-badge {
        font-size: 8px;
        padding: 4px 8px;
        z-index: 10;
    }

    .showcase-branding {
        bottom: 8px;
        right: 10px;
        z-index: 10;
    }

    .brand-text {
        font-size: 10px;
    }

    .brand-sub {
        font-size: 6px;
    }

    .frame-glow {
        display: none;
    }

    .hero-scroll {
        display: none;
    }
}

/* Tablet - Video BELOW content */
@media (min-width: 769px) and (max-width: 1100px) {
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-content {
        order: 1 !important;
        margin-top: 0;
        margin-bottom: 30px;
        z-index: 50;
    }

    .hero-brand-tagline {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        transform: none !important;
        max-width: 100% !important;
        margin: 0 auto 30px !important;
        order: 2 !important;
        z-index: 50 !important;
        display: block !important;
        text-align: center;
        padding: 0 var(--container-padding);
    }

    .tagline-wrapper {
        padding-left: 0;
        text-align: center;
    }

    .tagline-accent {
        display: none;
    }

    .tagline-text {
        font-size: clamp(24px, 4vw, 32px) !important;
        text-align: center;
    }

    .tagline-subtext {
        text-align: center;
    }

    .hero-video-showcase {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 80% !important;
        max-width: 550px !important;
        height: 309px !important;
        margin: 0 auto !important;
        display: block !important;
        z-index: 100 !important;
        order: 3 !important;
    }

    .hero-book-btn {
        display: none !important;
    }

    .frame-corner {
        width: 40px;
        height: 40px;
    }

    .showcase-badge {
        font-size: 9px;
        padding: 5px 10px;
    }

    .hero-scroll {
        display: none;
    }
}

/* Medium Desktop */
@media (min-width: 1101px) and (max-width: 1400px) {
    .hero-video-showcase {
        width: 420px;
        height: 236px;
        left: 3%;
    }

    .frame-corner {
        width: 40px;
        height: 40px;
    }

    .showcase-badge {
        font-size: 9px;
        padding: 5px 10px;
    }
}

/* Large Desktop */
@media (min-width: 1600px) {
    .hero-video-showcase {
        width: 580px;
        height: 326px;
        left: 6%;
    }

    .frame-corner {
        width: 55px;
        height: 55px;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-line {
    position: absolute;
    background: var(--color-border);
}

.deco-line-1 {
    top: 0;
    left: 10%;
    width: 1px;
    height: 30%;
}

.deco-line-2 {
    bottom: 0;
    right: 10%;
    width: 1px;
    height: 30%;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    min-height: 48px;
    text-align: center;
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 28px;
        font-size: 14px;
        min-height: 48px;
    }
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-bg);
    border: 1px solid var(--color-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
}

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

.btn-sm {
    padding: 12px 24px;
    font-size: 12px;
    min-height: 44px;
}

@media (max-width: 768px) {
    .btn-sm {
        padding: 12px 20px;
        font-size: 13px;
        min-height: 44px;
    }
}

.btn-lg {
    padding: 20px 48px;
    font-size: 14px;
    min-height: 52px;
}

@media (max-width: 768px) {
    .btn-lg {
        padding: 16px 36px;
        font-size: 15px;
        min-height: 52px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Section Styling
   ═══════════════════════════════════════════════════════════════════════════════ */

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--section-padding) var(--container-padding);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--color-gold);
}

.section-header.center .section-label {
    padding-left: 0;
}

.section-header.center .section-label::before {
    display: none;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
}

.section-title .line {
    display: block;
    overflow: hidden;
}

.section-title em {
    color: var(--color-gold);
    font-style: italic;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-top: 24px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Fleet Section
   ═══════════════════════════════════════════════════════════════════════════════ */

.fleet {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Fleet Background Image */
.fleet-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.fleet-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.45;
}

.fleet-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 20, 0.6) 0%,
        rgba(10, 15, 20, 0.4) 30%,
        rgba(10, 15, 20, 0.45) 70%,
        rgba(10, 15, 20, 0.8) 100%
    );
}

.fleet .section-container {
    position: relative;
    z-index: 1;
}

.fleet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

@media (min-width: 1024px) {
    .fleet-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .fleet-card-large {
        grid-row: span 2;
    }
}

.fleet-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--ease-out);
    cursor: pointer;
}

.fleet-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fleet-card-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.fleet-card-large .fleet-card-media {
    aspect-ratio: auto;
    flex: 1;
    min-height: 300px;
}

.fleet-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.fleet-card:hover .fleet-card-media img {
    transform: scale(1.05);
}

.fleet-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 15, 20, 0.9) 0%,
        rgba(10, 15, 20, 0.3) 50%,
        transparent 100%
    );
}

.fleet-card-content {
    padding: 32px;
    position: relative;
    z-index: 2;
}

.fleet-card-large .fleet-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.fleet-card-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.fleet-card-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
}

.fleet-card-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.fleet-card-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.meta-item i {
    color: var(--color-gold);
    font-size: 14px;
}

.price-from {
    font-size: 11px;
    color: var(--color-text-muted);
}

.price {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-gold);
}

.fleet-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text);
    transition: color 0.3s;
}

.fleet-card-cta svg {
    transition: transform 0.3s;
}

.fleet-card:hover .fleet-card-cta {
    color: var(--color-gold);
}

.fleet-card:hover .fleet-card-cta svg {
    transform: translateX(8px);
}

.fleet-card-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Featured Section
   ═══════════════════════════════════════════════════════════════════════════════ */

.featured {
    background: var(--color-bg-deep);
    overflow: hidden;
    position: relative;
}

/* Featured Background Image */
.featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.featured-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}

.featured-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 12, 16, 0.7) 0%,
        rgba(8, 12, 16, 0.5) 40%,
        rgba(8, 12, 16, 0.5) 60%,
        rgba(8, 12, 16, 0.8) 100%
    );
}

.featured .section-container {
    position: relative;
    z-index: 1;
}

.featured-carousel {
    position: relative;
}

.featured-track {
    display: flex;
    gap: 24px;
    padding-bottom: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.featured-track::-webkit-scrollbar {
    display: none;
}

.featured-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.4s var(--ease-out);
}

@media (max-width: 768px) {
    .featured-card {
        width: 300px;
    }

    .featured-content {
        padding: 20px;
    }

    .featured-name {
        font-size: 20px;
    }

    .featured-specs {
        gap: 12px;
    }

    .featured-specs span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .featured-card {
        width: 280px;
    }
}

.featured-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.featured-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.featured-card:hover .featured-media img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
}

.featured-badge.hot {
    background: #ef4444;
}

.featured-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.3s;
    cursor: pointer;
}

.featured-favorite:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.featured-content {
    padding: 24px;
}

.featured-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 8px;
    display: block;
}

.featured-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
}

.featured-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.featured-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-text-secondary);
}

.featured-specs i {
    color: var(--color-gold);
    font-size: 12px;
}

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

.featured-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-gold);
}

.price-period {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: all 0.3s;
    cursor: pointer;
}

.carousel-arrow:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.carousel-progress {
    width: 120px;
    height: 2px;
    background: var(--color-border);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 33%;
    height: 100%;
    background: var(--color-gold);
    transition: width 0.3s;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Experience Section
   ═══════════════════════════════════════════════════════════════════════════════ */

.experience {
    position: relative;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
}

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

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 20, 0.95) 0%,
        rgba(10, 15, 20, 0.8) 50%,
        rgba(10, 15, 20, 0.6) 100%
    );
}

.experience .section-container {
    position: relative;
    z-index: 2;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.experience-text {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.experience-features {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
}

.exp-feature {
    display: flex;
    gap: 20px;
}

.exp-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.exp-icon svg {
    width: 100%;
    height: 100%;
}

.exp-content h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.exp-content p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.experience-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 500px;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 4-image grid layout - 2x2 equal grid */
.gallery-1 {
    grid-column: 1;
    grid-row: 1;
}

.gallery-2 {
    grid-column: 2;
    grid-row: 1;
}

.gallery-3 {
    grid-column: 1;
    grid-row: 2;
}

.gallery-4 {
    grid-column: 2;
    grid-row: 2;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Testimonials Section
   ═══════════════════════════════════════════════════════════════════════════════ */

.testimonials {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.testimonials-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.testimonials-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 20, 0.8) 0%,
        rgba(15, 15, 20, 0.6) 50%,
        rgba(15, 15, 20, 0.85) 100%
    );
}

.testimonials .section-container {
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
}

.testimonial-card.active {
    display: block;
}

.testimonial-quote {
    color: var(--color-gold);
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    display: block;
}

.author-title {
    font-size: 13px;
    color: var(--color-text-secondary);
    display: block;
    margin-top: 4px;
}

.author-rating {
    margin-top: 8px;
    color: var(--color-gold);
    font-size: 12px;
}

.author-rating i {
    margin-right: 2px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.test-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    transition: all 0.3s;
    cursor: pointer;
}

.test-nav-btn.active,
.test-nav-btn:hover {
    background: var(--color-gold);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-item img {
    width: 48px;
    height: 48px;
    opacity: 0.7;
}

.trust-info {
    text-align: left;
}

.trust-rating {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-gold);
    display: block;
}

.trust-label {
    font-size: 12px;
    color: var(--color-text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Instagram Section
   ═══════════════════════════════════════════════════════════════════════════════ */

.instagram {
    background: var(--color-bg-deep);
    position: relative;
    overflow: hidden;
}

.instagram-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.instagram-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.instagram-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(10, 10, 15, 0.5) 50%,
        rgba(10, 10, 15, 0.8) 100%
    );
}

.instagram .section-container {
    position: relative;
    z-index: 1;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

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

@media (min-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .instagram-cta {
        margin-top: 32px;
    }
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 98, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-overlay i {
    font-size: 32px;
    color: var(--color-bg);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.instagram-cta {
    text-align: center;
    margin-top: 48px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA Section
   ═══════════════════════════════════════════════════════════════════════════════ */

.cta {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg video,
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 15, 20, 0.95) 0%,
        rgba(10, 15, 20, 0.8) 50%,
        rgba(10, 15, 20, 0.6) 100%
    );
}

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

.cta-content {
    max-width: 600px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-title .line {
    display: block;
}

.cta-title em {
    color: var(--color-gold);
    font-style: italic;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .cta-form {
        gap: 12px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-title {
        font-size: clamp(28px, 8vw, 48px);
    }

    .cta-subtitle {
        font-size: 16px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    color: var(--color-text);
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
    min-height: 48px;
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select {
        padding: 16px 18px;
        font-size: 16px;
        min-height: 48px;
    }
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238a9199' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group select option {
    background: var(--color-surface);
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    font-weight: 500;
    transition: opacity 0.3s;
}

.cta-phone:hover {
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════════════════════ */

.footer {
    background: var(--color-bg-deep);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px var(--container-padding);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1.5fr 2fr 1fr;
    }
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    transition: filter 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(1.15);
}

.footer-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: all 0.3s;
    font-size: 18px;
}

.footer-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

.footer-column h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: color 0.3s;
}

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

.footer-contact h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.footer-contact i {
    color: var(--color-gold);
    width: 16px;
    margin-top: 2px;
}

.footer-contact a {
    color: var(--color-text-secondary);
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-payments {
    display: flex;
    gap: 16px;
}

.footer-payments img {
    height: 24px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.footer-payments img:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   WhatsApp Float
   ═══════════════════════════════════════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: 100;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-surface);
    color: var(--color-text);
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Utility Classes
   ═══════════════════════════════════════════════════════════════════════════════ */

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Responsive Breakpoints
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    :root {
        --section-padding: clamp(60px, 10vw, 120px);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: clamp(48px, 8vw, 80px);
        --container-padding: clamp(20px, 5vw, 40px);
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .hero-stat {
        flex: 0 0 auto;
        min-width: 90px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 11px;
        margin-top: 6px;
    }

    /* Fleet Grid Mobile */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fleet-card-large {
        grid-row: auto;
    }

    /* Section Headers Mobile */
    .section-title {
        font-size: clamp(32px, 8vw, 56px);
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .section-label {
        font-size: 10px;
        padding-left: 32px;
    }

    .section-label::before {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .hero-content {
        padding: 24px 20px 16px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(32px, 14vw, 48px);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-tagline {
        margin-bottom: 20px;
    }

    .hero-tagline p {
        font-size: 13px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero-cta .btn-call {
        font-size: 13px;
    }

    .hero-cta .btn-call i {
        font-size: 14px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat {
        min-width: 80px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 10px;
        margin-top: 6px;
    }

    .stat-divider {
        display: none;
    }

    .section-title {
        font-size: clamp(28px, 10vw, 48px);
    }

    .typed-wrapper {
        min-width: 150px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PASS 97 - PREMIUM FEATURE STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURE 1: Lenis Smooth Scroll
   ═══════════════════════════════════════════════════════════════════════════════ */

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURE 2: Typed.js Cursor & Wrapper
   ═══════════════════════════════════════════════════════════════════════════════ */

.typed-wrapper {
    display: inline-block;
    min-width: 280px;
    text-align: left;
}

#typed-destination {
    color: var(--color-gold);
    font-style: italic;
}

.typed-cursor {
    font-weight: 200;
    color: var(--color-gold);
    animation: typedBlink 0.7s infinite;
    font-size: 0.9em;
    margin-left: 2px;
}

@keyframes typedBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURE 3: Swiper Testimonial Carousel
   ═══════════════════════════════════════════════════════════════════════════════ */

.testimonials-swiper {
    overflow: visible;
    padding-bottom: 60px;
}

.testimonials-swiper .swiper-slide {
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.5s var(--ease-out);
}

.testimonials-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.testimonials-swiper .testimonial-card {
    background: rgba(20, 28, 36, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
}

.testimonials-swiper .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Swiper Navigation */
.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    transition: all 0.3s var(--ease-out);
}

.testimonial-prev::after,
.testimonial-next::after {
    font-size: 18px;
    color: var(--color-gold);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--color-gold);
}

.testimonial-prev:hover::after,
.testimonial-next:hover::after {
    color: var(--color-bg);
}

.testimonial-prev {
    left: -25px;
}

.testimonial-next {
    right: -25px;
}

/* Swiper Pagination */
.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-border-light);
    opacity: 1;
    transition: all 0.3s;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 900px) {
    .testimonial-prev,
    .testimonial-next {
        display: none;
    }

    .testimonials-swiper .testimonial-card {
        padding: 32px 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURE 4: SplitType Character Animations
   ═══════════════════════════════════════════════════════════════════════════════ */

.section-title .char {
    display: inline-block;
    transform-origin: bottom center;
    will-change: transform, opacity;
}

.hero-subtitle .char {
    display: inline-block;
    will-change: transform, opacity;
}

/* Ensure italic styling persists after split */
.section-title em .char,
.section-title .word em .char {
    font-style: italic;
    color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURE 5: CountUp Animations
   ═══════════════════════════════════════════════════════════════════════════════ */

.stat-number,
.trust-rating {
    font-variant-numeric: tabular-nums;
}

.stat-number::after,
.trust-rating::after {
    animation: countPulse 0.3s ease-out;
}

@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURE 6: Parallax & Depth Effects
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero-image,
.fleet-bg-image,
.testimonials-bg img,
.cta-bg img {
    will-change: transform;
    backface-visibility: hidden;
}

/* Smooth stagger reveal for cards */
.fleet-card,
.featured-card,
.instagram-item {
    will-change: transform, opacity;
}

/* Perspective container for 3D effects */
.section-title {
    perspective: 1000px;
}

/* Smooth gradient overlays for parallax sections */
.fleet::after,
.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PREMIUM MICRO-INTERACTIONS
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Enhanced button hover with magnetic effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

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

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

/* Disable magnetic effect for navigation buttons to prevent conflicts */
.nav .btn-primary::before {
    display: none;
}

.nav .btn {
    will-change: color, background, border-color;
}

/* Card hover lift effect */
.fleet-card,
.featured-card {
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.fleet-card:hover,
.featured-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 169, 98, 0.1);
}

/* Image zoom on card hover */
.fleet-card-media img,
.featured-card-media img {
    transition: transform 0.8s var(--ease-out);
}

.fleet-card:hover .fleet-card-media img,
.featured-card:hover .featured-card-media img {
    transform: scale(1.1);
}

/* Golden glow on focus for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

/* Smooth page transitions */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 9999;
    transform: scaleY(0);
    transform-origin: bottom;
}
