/* Reset and Base Styles */
:root {
    --header-height: 80px;
    
    /* Luxury Color Palette */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --charcoal: #2a2a2a;
    --warm-gold: #D4AF37;
    --champagne: #F7E7CE;
    --silver: #C0C0C0;
    --platinum: #E5E4E2;
    --cream: #F5F5DC;
    --deep-navy: #1e3a8a;
    --luxury-purple: #4c1d95;
    
    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing Scale */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-luxury: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 20px 40px -12px rgba(212, 175, 55, 0.3);
    --shadow-elegant: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* iOS safe area support */
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
}

/* HTML5 Semantic Elements */
main {
    display: block;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

section {
    display: block;
    position: relative;
}

article {
    display: block;
    position: relative;
}

aside {
    display: block;
    position: relative;
}

header {
    display: block;
    position: relative;
}

footer {
    display: block;
    position: relative;
}

nav {
    display: block;
    position: relative;
}

figure {
    display: block;
    margin: 1em 40px;
}

figcaption {
    display: block;
    text-align: center;
    font-style: italic;
    color: var(--champagne);
    margin-top: var(--spacing-sm);
}

/* Common Block Elements */
div {
    display: block;
}

p {
    display: block;
    margin: 0 0 1em 0;
}

h1, h2, h3, h4, h5, h6 {
    display: block;
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

ul, ol {
    display: block;
    margin: 1em 0;
    padding-left: 2em;
}

li {
    display: list-item;
    margin-bottom: 0.5em;
}

blockquote {
    display: block;
    margin: 1em 40px;
    padding: var(--spacing-lg);
    border-left: 4px solid var(--warm-gold);
    background: rgba(212, 175, 55, 0.05);
    font-style: italic;
    color: var(--champagne);
}

hr {
    display: block;
    height: 1px;
    border: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 20%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent 100%
    );
    margin: var(--spacing-xl) 0;
}

/* Form Elements */
form {
    display: block;
    margin: 0;
}

fieldset {
    display: block;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
}

legend {
    display: block;
    padding: 0 var(--spacing-md);
    color: var(--warm-gold);
    font-weight: 600;
}

label {
    display: inline-block;
    margin-bottom: var(--spacing-xs);
    color: var(--champagne);
    font-weight: 500;
}

input, textarea, select {
    display: inline-block;
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--platinum);
    font-family: inherit;
    font-size: inherit;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--warm-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-sm);
    background: var(--warm-gold);
    color: var(--primary-black);
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #B8860B;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Table Elements */
table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    overflow: hidden;
}

thead {
    display: table-header-group;
    background: rgba(212, 175, 55, 0.1);
}

tbody {
    display: table-row-group;
}

tfoot {
    display: table-footer-group;
    background: rgba(212, 175, 55, 0.05);
}

tr {
    display: table-row;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

th, td {
    display: table-cell;
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    vertical-align: middle;
}

th {
    color: var(--warm-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: var(--font-size-sm);
}

td {
    color: var(--champagne);
}

/* Media Elements */
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

video, audio {
    display: inline-block;
    max-width: 100%;
}

canvas, svg {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

/* Text Elements */
a {
    color: var(--warm-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #B8860B;
    text-decoration: underline;
}

strong, b {
    font-weight: 700;
    color: var(--platinum);
}

em, i {
    font-style: italic;
    color: var(--champagne);
}

code {
    display: inline;
    padding: 2px 4px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--warm-gold);
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    border-radius: var(--radius-sm);
}

pre {
    display: block;
    padding: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.3);
    color: var(--platinum);
    font-family: 'Courier New', monospace;
    border-radius: var(--radius-md);
    overflow-x: auto;
    line-height: 1.4;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* List Styling */
ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

ul ul {
    list-style-type: circle;
    margin: 0.5em 0;
}

ul ul ul {
    list-style-type: square;
}

dl {
    display: block;
    margin: var(--spacing-lg) 0;
}

dt {
    display: block;
    font-weight: 600;
    color: var(--warm-gold);
    margin-top: var(--spacing-md);
}

dd {
    display: block;
    margin-left: var(--spacing-xl);
    color: var(--champagne);
    margin-bottom: var(--spacing-sm);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    /* Initial glassy state - will be overridden by JavaScript */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: env(safe-area-inset-top, 0);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Fallback for browsers without backdrop-filter support */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .header {
        background: rgba(26, 26, 26, 0.95);
    }
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 61px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link:hover::after {
    width: 100%;
}

/* Book Now Button with Circular Gradient */
.nav-cta {
    flex-shrink: 0;
}

.book-now-btn {
    display: inline-block;
    padding: 12px 25px;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 100%);
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.book-now-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #B8860B 0%, var(--warm-gold) 100%);
}

.book-now-btn.large {
    padding: 19px 48px;
    font-size: 16.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    min-width: 256px;
    line-height: 1.2;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Luxury Professional Theme */
.hero {
    position: relative;
    margin-top: 0;
    height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Adjust for iOS safe area */
    min-height: calc(100vh - env(safe-area-inset-top));
}

/* Hero background container for rotating images */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 2s ease-in-out;
}

.hero-background.active {
    opacity: 1;
}

/* Desktop - Hero Background Images */
@media (min-width: 769px) {
    .hero-background[data-bg="images/hero-a.jpg"] {
        background-image: url('../images/hero-a.jpg');
    }
    .hero-background[data-bg="images/hero-b.jpg"] {
        background-image: url('../images/hero-b.jpg');
    }
    .hero-background[data-bg="images/hero-c.jpg"] {
        background-image: url('../images/hero-c.jpg');
    }
    .hero-background[data-bg="images/hero-d.jpg"] {
        background-image: url('../images/hero-d.jpg');
    }
    .hero-background[data-bg="images/hero-e.jpg"] {
        background-image: url('../images/hero-e.jpg');
    }
    .hero-background[data-bg="images/hero-f.jpg"] {
        background-image: url('../images/hero-f.jpg');
    }
    .hero-background[data-bg="images/hero-g.jpg"] {
        background-image: url('../images/hero-g.jpg');
    }
    .hero-background[data-bg="images/hero-h.jpg"] {
        background-image: url('../images/hero-h.jpg');
    }
    .hero-background[data-bg="images/hero-i.jpg"] {
        background-image: url('../images/hero-i.jpg');
    }
    .hero-background[data-bg="images/hero-j.jpg"] {
        background-image: url('../images/hero-j.jpg');
    }
}

/* Luxury overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

/* Add subtle floating animation */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--platinum);
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--spacing-xl);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-6xl);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    line-height: 1.2;
    color: var(--platinum);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Luxury gradient text for emphasis */
.gradient-text {
    background: linear-gradient(
        135deg,
        var(--warm-gold) 0%,
        var(--champagne) 50%,
        var(--warm-gold) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    color: var(--champagne);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.btn {
    display: inline-block;
    padding: 24px 60px;
    text-decoration: none;
    border-radius: var(--radius-full) !important;
    font-weight: 700;
    font-size: 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: var(--shadow-elegant);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    min-width: 320px;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--warm-gold) 0%, #B8860B 100%);
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--warm-gold);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #B8860B 0%, var(--warm-gold) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: var(--platinum);
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--warm-gold);
    color: var(--warm-gold);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: #2a2a2a;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Recommended Routes Section - Luxury Theme */
.recommended-routes {
    padding: calc(var(--spacing-3xl) + 80px) var(--spacing-xl) var(--spacing-3xl);
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/golden-globe.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.recommended-routes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(180, 137, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.recommended-routes .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.recommended-routes h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-5xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--platinum);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-xl);
    font-weight: 300;
    margin-bottom: var(--spacing-3xl);
    color: var(--champagne);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    overflow: visible;
}

.carousel-viewport {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    /* Ensure we show complete cards */
    min-width: calc(3 * 300px + 2 * 48px); /* 3 cards + 2 gaps (48px = 3rem) */
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.routes-carousel {
    display: flex;
    gap: var(--spacing-2xl);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-xl) 0;
    will-change: transform;
    transform: translateX(0);
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.route-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--warm-gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.route-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.05);
}

.route-card:hover::before {
    opacity: 1;
}


.route-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

.route-content {
    padding: var(--spacing-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.route-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--platinum);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.route-countries {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--warm-gold);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.route-cities {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--champagne);
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
    font-weight: 400;
}

.route-description {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--champagne);
    line-height: 1.6;
    opacity: 0.8;
    font-weight: 300;
}

.route-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.8rem;
    color: #666;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-unit {
    font-size: 0.8rem;
    color: #666;
}

.route-btn {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #2c3e50;
    border: 2px solid #FFD700;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.route-btn:hover {
    background: #FFD700;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    color: var(--warm-gold);
    font-size: var(--font-size-xl);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: var(--shadow-elegant);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--warm-gold) 0%, #B8860B 100%);
    border-color: var(--warm-gold);
    color: var(--primary-black);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.carousel-dot:hover {
    background: rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

    .carousel-dot.active {
        background: linear-gradient(135deg, var(--warm-gold) 0%, #B8860B 100%);
        border-color: var(--warm-gold);
        transform: scale(1.2);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }



/* Luxury Experience Section */
.luxury-experience {
    padding: var(--spacing-3xl) var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

/* Desktop - Luxury Experience Background */
@media (min-width: 769px) {
    .luxury-experience {
        background: 
            linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
            url('../images/luxury-experience.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }
}

.luxury-experience::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.luxury-intro {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 2;
}

.luxury-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-5xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--platinum);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.luxury-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-xl);
    color: var(--champagne);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

.luxury-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-elegant);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--warm-gold);
    margin-bottom: var(--spacing-sm);
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--platinum);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* VIP Services Section */
.vip-services {
    padding: var(--spacing-3xl) var(--spacing-xl);
    position: relative;
}

/* Desktop - VIP Services Background */
@media (min-width: 769px) {
    .vip-services {
        background: 
            linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
            url('../images/vip-services.jpg');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-4xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--platinum);
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-xl);
    color: var(--champagne);
    margin-bottom: var(--spacing-3xl);
    font-weight: 300;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-elegant);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--warm-gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--warm-gold) 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    color: var(--primary-black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--platinum);
    margin-bottom: var(--spacing-md);
}

.service-card p {
    color: var(--champagne);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.service-features {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--warm-gold);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust & Credentials Section */
.trust-section {
    padding: var(--spacing-3xl) var(--spacing-xl);
    position: relative;
}

/* Desktop - Trust & Credentials Background */
@media (min-width: 769px) {
    .trust-section {
        background: 
            linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
            url('../images/trust-and-credentials.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }
}

 .trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-3xl);
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}


.certifications h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--platinum);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.cert-badge {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-elegant);
}

.cert-badge:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.cert-badge i {
    font-size: var(--font-size-2xl);
    color: var(--warm-gold);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.cert-badge span {
    color: var(--platinum);
    font-weight: 500;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial {
    text-align: center;
}

.testimonial-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(212, 175, 55, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-elegant);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    z-index: -1;
}

.stars {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
}

.stars i {
    color: var(--warm-gold);
    font-size: var(--font-size-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-xl);
    color: var(--platinum);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

.testimonial-author strong {
    color: var(--warm-gold);
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.testimonial-author span {
    color: var(--champagne);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    min-height: 400px;
    overflow: visible;
}

.testimonials-carousel .testimonial-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-2xl);
    min-height: auto;
}

.testimonials-carousel .testimonial-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonials-carousel .testimonial-content.next {
    opacity: 0;
    transform: translateY(-30px);
}

/* Ensure blockquotes in carousel have proper spacing */
.testimonials-carousel .testimonial-content blockquote {
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials-carousel {
        min-height: 450px;
    }
    
    .testimonials-carousel .testimonial-content {
        padding: var(--spacing-lg);
    }
    
    .testimonials-carousel .testimonial-content blockquote {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        min-height: 500px;
    }
    
    .testimonials-carousel .testimonial-content {
        padding: var(--spacing-md);
    }
}

/* CTA Section - Luxury Theme */
.cta-section {
    padding: var(--spacing-3xl) var(--spacing-xl);
    text-align: center;
    color: var(--platinum);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

/* Desktop - CTA Section Background */
@media (min-width: 769px) {
    .cta-section {
        background: 
            linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
            url('../images/cta.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl) var(--spacing-2xl);
    box-shadow: var(--shadow-luxury);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-content:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-5xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--platinum);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-section p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    color: var(--champagne);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.cta-section .book-now-btn {
    padding: 19px 48px;
    font-size: 16.5px;
    background: linear-gradient(135deg, var(--warm-gold) 0%, #B8860B 100%);
    color: var(--primary-black);
    border: 1px solid var(--warm-gold);
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-full);
    min-width: 256px;
    line-height: 1.2;
    text-align: center;
}

.cta-section .book-now-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #B8860B 0%, var(--warm-gold) 100%);
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--warm-gold) 0%, #FFA500 100%);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Footer - Luxury Theme */
.footer {
    color: var(--platinum);
    padding: var(--spacing-3xl) var(--spacing-xl) var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

/* Desktop - Footer Background */
@media (min-width: 769px) {
    .footer {
        background: 
            linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
            url('../images/footer.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 20%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent 100%
    );
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-elegant);
}

.footer-section:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.05);
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--warm-gold);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section p {
    font-family: 'Inter', sans-serif;
    color: var(--champagne);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: var(--spacing-md);
}

.footer-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--warm-gold);
    font-weight: bold;
}

.footer-section a {
    font-family: 'Inter', sans-serif;
    color: var(--champagne);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.9;
}

.footer-section a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--warm-gold);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--warm-gold);
    opacity: 1;
    transform: translateX(3px);
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--champagne);
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
}

/* Footer responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
    }
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    .footer-section {
        padding: var(--spacing-md);
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .footer-section h3 {
        font-size: var(--font-size-xl);
    }
    .footer-section p {
        font-size: var(--font-size-sm);
    }
    .footer-bottom {
        margin-top: var(--spacing-xl);
        padding-top: var(--spacing-lg);
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    .footer-section {
        padding: var(--spacing-md);
    }
    .footer-section h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-md);
    }
    .footer-section p {
        margin-bottom: var(--spacing-sm);
    }
    .footer-bottom {
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-md);
        padding: var(--spacing-sm);
        font-size: var(--font-size-sm);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-none { display: none; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }

.z-index-1 { z-index: 1; }
.z-index-2 { z-index: 2; }
.z-index-10 { z-index: 10; }
.z-index-100 { z-index: 100; }

/* Text Colors */
.text-gold { color: var(--warm-gold); }
.text-champagne { color: var(--champagne); }
.text-platinum { color: var(--platinum); }
.text-white { color: #ffffff; }
.text-black { color: var(--primary-black); }

/* Background Colors */
.bg-gold { background-color: var(--warm-gold); }
.bg-champagne { background-color: var(--champagne); }
.bg-black { background-color: var(--primary-black); }
.bg-transparent { background-color: transparent; }

/* Border Utilities */
.border-gold { border: 1px solid var(--warm-gold); }
.border-champagne { border: 1px solid var(--champagne); }
.border-none { border: none; }

.rounded { border-radius: var(--radius-md); }
.rounded-full { border-radius: var(--radius-full); }
.rounded-lg { border-radius: var(--radius-lg); }

/* Flex Utilities */
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1; }

/* Animation Utilities */
.transition { transition: all 0.3s ease; }
.transition-fast { transition: all 0.2s ease; }
.transition-slow { transition: all 0.5s ease; }

.hover-scale:hover { transform: scale(1.05); }
.hover-gold:hover { color: var(--warm-gold); }
.hover-shadow:hover { box-shadow: var(--shadow-elegant); }

/* Form Utilities */
.form-control {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--platinum);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--warm-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Enhanced dropdown option styling */
select.form-control {
    background: rgba(255, 255, 255, 0.05);
    color: var(--platinum);
    cursor: pointer;
}

select.form-control option {
    background: var(--secondary-black);
    color: var(--platinum);
    padding: 8px 12px;
    border: none;
    font-weight: 400;
}

select.form-control option:hover,
select.form-control option:focus,
select.form-control option:checked {
    background: var(--charcoal);
    color: var(--warm-gold);
    font-weight: 500;
}

/* Specific styling for subject dropdown */
#subject {
    background: rgba(255, 255, 255, 0.05);
    color: var(--platinum);
    font-weight: 500;
}

#subject option {
    background: var(--secondary-black);
    color: var(--platinum);
    padding: 10px 15px;
    font-weight: 400;
    border: none;
}

#subject option:hover,
#subject option:focus,
#subject option:checked {
    background: var(--charcoal);
    color: var(--warm-gold);
    font-weight: 500;
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--champagne);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Button Variants - Standardized System */
.btn {
    display: inline-block;
    padding: 19px 48px;
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16.5px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    min-width: 256px;
    line-height: 1.2;
    box-shadow: var(--shadow-elegant);
}

.btn-primary {
    background: linear-gradient(135deg, var(--warm-gold) 0%, #B8860B 100%);
    color: var(--primary-black);
    border: 1px solid var(--warm-gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #B8860B 0%, var(--warm-gold) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: var(--platinum);
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--warm-gold);
    color: var(--warm-gold);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--warm-gold);
    border: 2px solid var(--warm-gold);
}

.btn-outline:hover {
    background: var(--warm-gold);
    color: var(--primary-black);
}

.btn-sm { padding: var(--spacing-xs) var(--spacing-sm); font-size: var(--font-size-sm); }
.btn-lg { padding: var(--spacing-md) var(--spacing-xl); font-size: var(--font-size-lg); }

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Card Components */
.card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-elegant);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.card-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.card-body {
    flex: 1;
}

.card-footer {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Form Error Styling */
.form-group.error .form-control,
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

.form-group.error .form-control:focus,
.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3) !important;
}

.field-error {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: #ef4444;
    margin-top: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(-5px);
}

.form-group.error .field-error {
    opacity: 1;
    transform: translateY(0);
}

.field-error::before {
    content: "⚠";
    font-size: 14px;
    color: #ef4444;
    font-weight: 700;
    display: inline-block;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(239, 68, 68, 0.3);
    flex-shrink: 0;
}

/* Alternative hazard triangle icon */
.field-error.triangle::before {
    content: "▲";
    color: #ef4444;
    background: transparent;
    border: none;
    font-size: 12px;
    transform: rotate(0deg);
    position: relative;
}

.field-error.triangle::after {
    content: "!";
    position: absolute;
    left: 8px;
    top: 0;
    font-size: 10px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 1px #000000;
}

/* Alert Components */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-left-color: #22c55e;
    color: #86efac;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #ef4444;
    color: #fca5a5;
}

.alert-warning {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--warm-gold);
    color: var(--champagne);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
    color: #93c5fd;
}

/* Destinations Hero Specific Styles */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.3) 0%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--platinum);
    max-width: 800px;
    padding: 0 var(--spacing-xl);
}

/* Mobile Background Images */
@media (max-width: 768px) {
    /* Hero Section Mobile Background - Multiple rotating images */
    .hero {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
    }
    
    /* Hero background containers - Mobile versions */
    .hero-background[data-bg="images/hero-a.jpg"] {
        background-image: url('../images/hero-a-mobile.jpg') !important;
    }
    .hero-background[data-bg="images/hero-b.jpg"] {
        background-image: url('../images/hero-b-mobile.jpg') !important;
    }
    .hero-background[data-bg="images/hero-c.jpg"] {
        background-image: url('../images/hero-c-mobile.jpg') !important;
    }
    .hero-background[data-bg="images/hero-d.jpg"] {
        background-image: url('../images/hero-d-mobile.jpg') !important;
    }
    .hero-background[data-bg="images/hero-e.jpg"] {
        background-image: url('../images/hero-e-mobile.jpg') !important;
    }
    .hero-background[data-bg="images/hero-f.jpg"] {
        background-image: url('../images/hero-f-mobile.jpg') !important;
    }
    .hero-background[data-bg="images/hero-g.jpg"] {
        background-image: url('../images/hero-g-mobile.jpg') !important;
    }
    .hero-background[data-bg="images/hero-h.jpg"] {
        background-image: url('../images/hero-h-mobile.jpg') !important;
    }
    .hero-background[data-bg="images/hero-i.jpg"] {
        background-image: url('../images/hero-i-mobile.jpg') !important;
    }
    .hero-background[data-bg="images/hero-j.jpg"] {
        background-image: url('../images/hero-j-mobile.jpg') !important;
    }
    
    /* Luxury Experience Mobile Background */
    .luxury-experience {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/luxury-experience-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    /* VIP Services Mobile Background */
    .vip-services {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/vip-services-mobile.jpg') !important;
        background-size: 100% 100% !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
    
    /* Why Choose Us Mobile Background */
    .why-choose-us {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/why-choose-us-mobile.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }
    
    /* Client Gallery Mobile Background */
    .client-gallery {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/client-gallery-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    /* Trust & Credentials Mobile Background */
    .trust-section {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/trust-and-credentials-mobile.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }
    
    /* CTA Section Mobile Background */
    .cta-section {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/cta-mobile.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }
    
    /* Footer Mobile Background */
    .footer {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/footer-mobile.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }
    
    /* Page-specific Mobile Backgrounds */
    
    /* Destinations Page Mobile Backgrounds */
    .hero-image-bottom {
        background-image: url('../images/destinations-hero-mobile.jpg') !important;
    }
    
    .page-destinations .recommended-routes {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/featured-routes-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .page-destinations .countries-explorer {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/countries-explorer-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .page-destinations .cta-section {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/destinations-cta-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    /* Vehicles Page Mobile Backgrounds */
    .page-vehicles .cta-section {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/vehicles-cta-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .luxury-vehicles {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/luxury-vehicles-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    /* Contact Page Mobile Backgrounds */
    .page-contact .contact-section {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/contact-section-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .page-contact .locations-section {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/contact-locations-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .contact-hero {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/golden-globe-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .locations-section {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/golden-globe-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    /* General Section Mobile Backgrounds */
    .recommended-routes {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/golden-globe-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .countries-explorer {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/golden-globe-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    .contact-section {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/golden-globe-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
    
    /* Legal Pages Mobile Backgrounds */
    .legal-hero {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/golden-globe-mobile.jpg') center/cover no-repeat !important;
        background-attachment: scroll !important;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-left {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .nav-left {
        gap: 18px;
    }
    
    .nav-link {
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
        order: -1;
        margin-right: 15px;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 215, 0, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 215, 0, 0.2);
        padding: 30px 0;
        gap: 0;
        margin-left: 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
        justify-content: flex-start;
        padding-top: 50px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 25px 0;
    }
    
    .nav-link {
        font-size: 20px;
        padding: 15px 0;
    }
    
    .nav-cta {
        order: 2;
        margin-left: auto;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: var(--header-height);
    }
    
    .hamburger {
        display: flex;
        order: -1;
        margin-right: 15px;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 215, 0, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 215, 0, 0.2);
        padding: 20px 0;
        gap: 0;
        margin-left: 0;
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 20px 0;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 0;
    }
    
    .nav-cta {
        order: 2;
        margin-left: auto;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        margin-top: 0;
        height: 100vh;
    }
    
    .hero-content {
        text-align: center;
        margin-left: 0;
        max-width: 100%;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .hero-overlay {
        justify-content: center;
    }

    .features {
        padding: calc(var(--header-height) + 60px) 20px 60px;
    }

    .features h2 {
        font-size: 2rem;
    }

    
    /* Recommended Routes Responsive */
    .recommended-routes {
        padding: 80px 20px;
        background-attachment: scroll; /* Fixed backgrounds can cause issues on mobile */
    }
    
    .recommended-routes h2 {
        font-size: 2rem;
    }
    
    .carousel-container {
        max-width: 100%; /* Use full available width */
        padding: 0 60px;
        position: relative;
    }
    
    .carousel-viewport {
        width: 590px; /* Exactly 2 cards * 280px + 1 gap * 30px */
        max-width: 590px; /* Maintain size constraint */
        overflow: hidden;
        margin: 0 auto; /* Center the viewport */
    }
    
    .route-card {
        flex: 0 0 280px; /* Keep tablet at 2 cards */
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn-prev {
        left: -20px;
    }
    
    .carousel-btn-next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        height: 70px;
    }


    .logo-img {
        height: 56px;
    }
    
    .book-now-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .hamburger {
        margin-right: 10px;
    }
    
    .bar {
        width: 20px;
        height: 2px;
    }

    .hero {
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-container {
        max-width: 100%; /* Use full available width */
        padding: 0 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .carousel-viewport {
        width: 70vw; /* 70% of screen */
        max-width: 70vw; /* Match container */
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        margin: 0 auto; /* Center the viewport */
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }
    .carousel-viewport::-webkit-scrollbar { display: none; }
    
    /* Ensure card width matches viewport on small phones */
    .route-card { flex: 0 0 70vw; scroll-snap-align: center; }
    
    /* Fix carousel button positioning on small mobile screens */
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        z-index: 10;
    }
    
    .carousel-btn-prev {
        left: 5px;
    }
    
    .carousel-btn-next {
        right: 5px;
    }
}

@media (max-width: 320px) {
    .nav-container {
        padding: 0 8px;
    }
    
    .logo-img {
        height: 47px;
    }
    
    .book-now-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}

/* Countries Explorer - Slideshow dots spacing fix (mobile only) */
@media (max-width: 480px) {
    /* Hide dots on mobile */
    .countries-explorer .slideshow-dots { display: none !important; }
}

/* Home page mobile overflow fixes */
@media (max-width: 480px) {
    /* Prevent any horizontal scroll on small phones */
    html { overflow-x: hidden; }

    /* Hero full-bleed fix: avoid 100vw + negative margin overflow */
    .hero {
        width: 100%;
        margin-left: 0;
    }

    /* Trust grid: force single column to avoid min-width overflow */
    .trust-content {
        grid-template-columns: 1fr;
    }
}

/* Featured Destinations Section */
.featured-destinations {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
}

.featured-destinations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(180, 137, 0, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.destination-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 450px;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-badge {
    background: linear-gradient(135deg, #FFD700 0%, #B8892A 100%);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.destination-link:hover {
    background: rgba(255, 215, 0, 0.9);
    color: #1a1a1a;
    transform: scale(1.1);
    border-color: transparent;
}

.destination-content {
    padding: 25px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.destination-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.destination-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.destination-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.destination-features .feature-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.destination-features .feature-tag i {
    font-size: 10px;
}

.destinations-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-outline {
    background: transparent;
    color: #FFD700;
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #B8892A 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: #1a1a1a;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.btn-outline:hover::before {
    left: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Desktop - Why Choose Us Background */
@media (min-width: 769px) {
    .why-choose-us {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
                   url('../images/why-choose-us.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(180, 137, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--warm-gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--warm-gold) 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-black);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--platinum);
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--champagne);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 14px;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--champagne);
    font-size: 13px;
    margin-bottom: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.benefit-features li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.benefit-features li i {
    color: var(--warm-gold);
    font-size: 11px;
    width: 12px;
    text-align: center;
}

/* Responsive Design for Why Choose Us */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 80px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 20px 18px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
}

/* Destinations page-only background overrides */
.page-destinations .recommended-routes {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/featured-routes.jpg') center/cover no-repeat;
    background-attachment: scroll;
}

.page-destinations .countries-explorer {
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/countries-explorer.jpg') center/cover no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.page-destinations .cta-section {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/destinations-cta.jpg') center/cover no-repeat;
}

/* Vehicles page-only background overrides */
.page-vehicles .cta-section {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/vehicles-cta.jpg') center/cover no-repeat;
}

/* Contact page-only background overrides */
.page-contact .contact-section {
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/contact-section.jpg') center/cover no-repeat;
    background-attachment: scroll;
    position: relative;
}
.page-contact .locations-section {
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/contact-locations.jpg') center/cover no-repeat;
    background-attachment: scroll;
}

/* Client Gallery Section */
.client-gallery {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Desktop - Client Gallery Background */
@media (min-width: 769px) {
    .client-gallery {
        background: 
            linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
            url('../images/client-gallery.jpg') center/cover no-repeat;
        background-attachment: scroll;
    }
}

.client-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(180, 137, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.client-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.client-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--warm-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.gallery-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #ffffff;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.gallery-quote::before {
    content: '"';
    font-size: 2rem;
    color: var(--warm-gold);
    opacity: 0.7;
    position: absolute;
    top: -10px;
    left: -10px;
}

.gallery-quote::after {
    content: '"';
    font-size: 2rem;
    color: var(--warm-gold);
    opacity: 0.7;
    position: absolute;
    bottom: -20px;
    right: -10px;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 20px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.stat-badge i {
    font-size: 1.5rem;
    color: var(--warm-gold);
    width: 30px;
    text-align: center;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--champagne);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    opacity: 0.8;
}

/* Responsive Design for Client Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .gallery-stats {
        gap: 30px;
        margin-top: 60px;
    }
    
    .stat-badge {
        padding: 18px 25px;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .client-gallery {
        padding: 80px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 18px;
        margin-top: 40px;
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    .client-name {
        font-size: 1.1rem;
    }
    
    .gallery-quote {
        font-size: 1rem;
    }
    
    .gallery-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 50px;
    }
    
    .stat-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
    
    .client-name {
        font-size: 1rem;
    }
    
    .client-location {
        font-size: 0.75rem;
    }
    
    .gallery-quote {
        font-size: 0.9rem;
    }
    
    .stat-badge {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Responsive Design for Featured Destinations */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .destination-card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .featured-destinations {
        padding: 80px 20px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .destination-card {
        height: 400px;
    }
    
    .destination-image {
        height: 220px;
    }
    
    .destination-content {
        height: 180px;
        padding: 20px;
    }
    
    .destination-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card {
        height: 380px;
    }
    
    .destination-image {
        height: 200px;
    }
    
    .destination-content {
        height: 180px;
        padding: 18px;
    }
    
    .destination-content h3 {
        font-size: 1.3rem;
    }
    
    .destination-content p {
        font-size: 13px;
    }
}

/* Section Dividers - Clean spacing between blocks */
.section-divider {
    height: 0px;
    background: transparent;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Luxury Vehicles Section */
.luxury-vehicles {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/luxury-vehicles.jpg') center/cover no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.luxury-vehicles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(180, 137, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-elegant);
    height: 550px;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.05);
}

.vehicle-slideshow {
    position: relative;
    height: 300px;
}

.slideshow-container-vehicle {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.vehicle-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-slide.active {
    opacity: 1;
}

.vehicle-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-slide.active img {
    transform: scale(1.05);
}

.slide-description-vehicle {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.8) 100%
    );
    padding: 30px 20px 20px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-slide.active .slide-description-vehicle {
    transform: translateY(0);
}

.slide-description-vehicle h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--warm-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description-vehicle p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    line-height: 1.5;
    color: var(--champagne);
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.vehicle-header {
    position: absolute;
    top: 250px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 12px 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vehicle-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--platinum);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

.vehicle-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--warm-gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.vehicle-content {
    position: absolute;
    top: 320px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vehicle-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--champagne);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 400;
    opacity: 0.9;
}

.feature-item i {
    color: var(--warm-gold);
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.vehicle-price {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--warm-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price-period {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--champagne);
    opacity: 0.8;
    margin-left: 5px;
}

.vehicle-description {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--champagne);
    text-align: center;
    line-height: 1.5;
    opacity: 0.9;
}

.slideshow-dots-vehicle {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot-vehicle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

.dot-vehicle:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.dot-vehicle.active {
    background: var(--warm-gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Responsive Design for Vehicles */
@media (max-width: 1200px) {
    .vehicles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
        padding: 0 15px;
    }
    
    .vehicle-card {
        height: 510px;
    }
}

@media (max-width: 900px) {
    .luxury-vehicles {
        padding: 80px 0;
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .vehicle-card {
        height: 490px;
    }
    
    .vehicle-slideshow {
        height: 270px;
    }
    
    .slideshow-container-vehicle {
        height: 220px;
    }
    
    .vehicle-header {
        top: 220px;
    }
    
    .vehicle-content {
        top: 270px;
    }
    
    .vehicle-header h3 {
        font-size: var(--font-size-xl);
    }
}

@media (max-width: 600px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .vehicle-card {
        height: 480px;
    }
    
    .vehicle-slideshow {
        height: 250px;
    }
    
    .slideshow-container-vehicle {
        height: 200px;
    }
    
    .vehicle-header {
        top: 200px;
        padding: 12px 15px;
    }
    
    .vehicle-content {
        top: 250px;
        padding: 20px;
    }
    
    .vehicle-header h3 {
        font-size: var(--font-size-lg);
    }
    
    .vehicle-subtitle {
        font-size: var(--font-size-xs);
    }
    
    .vehicle-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .slide-description-vehicle {
        padding: 20px 15px 15px;
    }
    
    .slide-description-vehicle h4 {
        font-size: var(--font-size-base);
    }
    
    .slide-description-vehicle p {
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 480px) {
    .luxury-vehicles {
        padding: 60px 0;
    }
    
    .vehicle-card {
        height: 460px;
    }
    
    .vehicle-slideshow {
        height: 230px;
    }
    
    .slideshow-container-vehicle {
        height: 180px;
    }
    
    .vehicle-header {
        top: 180px;
    }
    
    .vehicle-content {
        top: 230px;
    }
    
    .dot-vehicle {
        width: 8px;
        height: 8px;
    }
    
    .slideshow-dots-vehicle {
        gap: 6px;
        bottom: 10px;
    }
    
    .price-amount {
        font-size: var(--font-size-2xl);
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    padding: 140px 0 100px;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/golden-globe.jpg') center/cover no-repeat;
    background-attachment: scroll;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(180, 137, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/golden-globe.jpg') center/cover no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(180, 137, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-elegant);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.05);
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-3xl);
    font-weight: 600;
    color: var(--platinum);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-elegant);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.05);
}

.contact-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--platinum);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.contact-method:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--warm-gold) 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--warm-gold);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--champagne);
    line-height: 1.5;
    opacity: 0.9;
}

.emergency-support-card {
    background: linear-gradient(135deg, var(--warm-gold) 0%, #B8860B 100%);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
}

.emergency-support-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.emergency-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.emergency-description {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.emergency-number {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-black);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.locations-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/golden-globe.jpg') center/cover no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(180, 137, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.location-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-elegant);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.05);
}

.location-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--warm-gold);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-address {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--champagne);
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.location-phone {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--warm-gold);
    margin: 10px 0 0 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-phone:hover {
    color: #B8860B;
    transform: scale(1.05);
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .contact-section,
    .locations-section {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px;
    }
    
    .form-title,
    .contact-info-title {
        font-size: var(--font-size-2xl);
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .location-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 20px;
    }
    
    .form-title,
    .contact-info-title {
        font-size: var(--font-size-xl);
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .emergency-support-card {
        padding: 25px 20px;
    }
    
    .emergency-number {
        font-size: var(--font-size-xl);
    }
    
    .location-card {
        padding: 25px 20px;
    }
}

/* Countries Explorer Section */
.countries-explorer {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/golden-globe.jpg') center/cover no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.countries-explorer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(180, 137, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.country-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-elegant);
}

.country-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.05);
}

.country-slideshow {
    position: relative;
    height: 450px;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-card:hover .slide.active img {
    transform: scale(1.05);
}

.slide-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.8) 100%
    );
    padding: 30px 20px 20px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-card:hover .slide.active .slide-description {
    transform: translateY(0);
}

.slide-description h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--warm-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    line-height: 1.5;
    color: var(--champagne);
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.country-header {
    position: absolute;
    top: 320px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.country-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--font-size-3xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--platinum);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

.country-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--warm-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

.dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--warm-gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Responsive Design for Countries Explorer */
@media (max-width: 1200px) {
    .countries-grid {
        gap: 25px;
        padding: 0 15px;
    }
    
    .country-slideshow {
        height: 420px;
    }
    
    .slideshow-container {
        height: 300px;
    }
    
    .country-header {
        top: 300px;
    }
}

@media (max-width: 900px) {
    .countries-explorer {
        padding: 80px 0;
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .country-slideshow {
        height: 370px;
    }
    
    .slideshow-container {
        height: 280px;
    }
    
    .country-header {
        top: 280px;
    }
    
    .country-header h3 {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 600px) {
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .country-slideshow {
        height: 320px;
    }
    
    .slideshow-container {
        height: 250px;
    }
    
    .country-header {
        top: 250px;
    }
    
    .country-header h3 {
        font-size: var(--font-size-xl);
    }
    
    .country-subtitle {
        font-size: var(--font-size-xs);
    }
    
    .slide-description {
        padding: 20px 15px 15px;
    }
    
    .slide-description h4 {
        font-size: var(--font-size-lg);
    }
    
    .slide-description p {
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 480px) {
    .countries-explorer {
        padding: 60px 0;
    }
    
    .country-slideshow {
        height: 300px;
    }
    
    .slideshow-container {
        height: 220px;
    }
    
    .country-header {
        top: 220px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slideshow-dots {
        gap: 6px;
        bottom: 10px;
    }
}

/* Legal Pages Styles */
.legal-page {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    min-height: 100vh;
    padding-bottom: 80px;
}

.legal-hero {
    position: relative;
    padding: 140px 0 60px;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%),
        url('../images/golden-globe.jpg') center/cover no-repeat;
    background-attachment: scroll;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(180, 137, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.legal-header {
    position: relative;
    z-index: 2;
    text-align: center;
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--warm-gold);
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.legal-header p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--silver);
    opacity: 0.8;
}

.legal-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-elegant);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--warm-gold);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.legal-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--platinum);
    margin: 25px 0 15px;
}

.legal-section p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--champagne);
    margin-bottom: 15px;
    opacity: 0.9;
}

.legal-section ul, 
.legal-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    color: var(--champagne);
    margin-bottom: 10px;
    line-height: 1.5;
    opacity: 0.9;
}

.legal-section strong {
    color: var(--warm-gold);
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    margin-top: 20px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    margin-top: 20px;
}

.contact-box h3 {
    margin-top: 0;
    text-align: center;
    color: var(--warm-gold);
}

.refund-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.refund-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.refund-header {
    background: rgba(212, 175, 55, 0.1);
}

.refund-row:nth-child(odd):not(.refund-header) {
    background: rgba(255, 255, 255, 0.02);
}

.refund-row:nth-child(even):not(.refund-header) {
    background: rgba(255, 255, 255, 0.01);
}

.refund-cell {
    padding: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--champagne);
    font-size: var(--font-size-base);
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    display: flex;
    align-items: center;
}

.refund-header .refund-cell {
    font-weight: 600;
    color: var(--warm-gold);
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 0 50px;
    }
    
    .legal-header h1 {
        font-size: var(--font-size-3xl);
    }
    
    .content-wrapper {
        padding: 40px;
        margin: 0 15px;
    }
    
    .legal-section h2 {
        font-size: var(--font-size-xl);
    }
    
    .legal-section h3 {
        font-size: var(--font-size-lg);
    }
    
    .refund-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .legal-hero {
        padding: 100px 0 40px;
    }
    
    .legal-header h1 {
        font-size: var(--font-size-2xl);
    }
    
    .content-wrapper {
        padding: 30px 20px;
        border-radius: var(--radius-lg);
    }
    
    .legal-section h2 {
        font-size: var(--font-size-lg);
    }
    
    .legal-section h3 {
        font-size: var(--font-size-base);
        font-weight: 600;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: var(--font-size-sm);
    }
    
    .refund-row {
        grid-template-columns: 1fr;
    }
    
    .refund-cell {
        padding: 10px;
        font-size: var(--font-size-sm);
    }
}

