/**
 * Aqua Dunes - Luxury Travel Experience
 * Premium UI Design for Exclusive Tours & Adventures
 */

/* ========== LUXURY COLOR PALETTE ========== */
:root {
    /* Luxury Gold & Deep Blues */
    --gold-primary: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941E;
    --gold-shimmer: #FFD700;
    
    --navy-deep: #0A1628;
    --navy-primary: #1B2B44;
    --navy-medium: #2C3E5A;
    --navy-light: #3D5275;
    
    --teal-luxury: #008B8B;
    --teal-light: #20B2AA;
    --azure: #007BA7;
    
    /* Elegant Neutrals */
    --white-pure: #FFFFFF;
    --cream: #FAF9F6;
    --pearl: #F5F5DC;
    --silver: #C0C0C0;
    --charcoal: #36454F;
    --black-soft: #1C1C1C;
    
    /* Semantic */
    --success: #2D7A4F;
    --warning: #C7A94D;
    --error: #8B3A3A;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    --gradient-navy: linear-gradient(180deg, #0A1628 0%, #1B2B44 100%);
    --gradient-luxury: linear-gradient(135deg, #0A1628 0%, #1B2B44 50%, #008B8B 100%);
    --gradient-shine: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    
    /* Shadows - Elegant & Soft */
    --shadow-subtle: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-soft: 0 4px 16px rgba(10, 22, 40, 0.08);
    --shadow-medium: 0 8px 24px rgba(10, 22, 40, 0.12);
    --shadow-strong: 0 12px 32px rgba(10, 22, 40, 0.16);
    --shadow-luxury: 0 16px 48px rgba(212, 175, 55, 0.15);
    --shadow-inset: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --border-width: 1px;
    --border-luxury: 2px solid var(--gold-primary);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-elegant: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Elegant background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 139, 139, 0.04) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(212,175,55,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: -1;
    pointer-events: none;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-deep);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

a {
    color: var(--teal-luxury);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--gold-primary);
}

/* Gold accent text */
.gold-text {
    color: var(--gold-primary);
    font-weight: 600;
}

.luxury-title {
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-sm);
}

.luxury-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* ========== LAYOUT CONTAINERS ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ========== NAVIGATION ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    overflow: visible;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    min-height: 70px;
    position: relative;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition-fast);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
    transition: var(--transition-fast);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-luxury);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-pure);
    font-size: 1.25rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav-links a {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy-medium);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-links a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: var(--space-sm);
    z-index: 100;
    height: auto;
    contain: layout style;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: var(--white-pure);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-deep);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    height: auto;
    min-height: 36px;
}

.lang-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.current-lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.current-lang-name {
    font-size: 0.85rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.lang-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-toggle:hover .dropdown-arrow {
    color: var(--gold-primary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 200px;
    background: var(--white-pure);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-luxury);
    display: none !important;
    z-index: 1001;
    overflow: hidden;
    margin: 0;
    pointer-events: all;
}

.lang-dropdown.show {
    display: block !important;
    animation: fadeInDown 0.2s ease-out;
}

.lang-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.lang-dropdown li {
    margin: 0;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--navy-deep);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.lang-dropdown a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.lang-dropdown li.active a {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    font-weight: 600;
}

.lang-flag {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.flag-image {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
}

.current-lang-flag .flag-image {
    width: 20px;
    height: 15px;
}

.lang-check {
    margin-left: auto;
    color: var(--gold-primary);
    font-weight: bold;
}

/* Currency Switcher */
.currency-switcher {
    position: relative;
    margin-left: var(--space-sm);
    z-index: 100;
    height: auto;
    contain: layout style;
}

.currency-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: var(--white-pure);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-deep);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    height: auto;
    min-height: 36px;
}

.currency-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.current-currency-symbol {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}

.current-currency-name {
    font-size: 0.85rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.currency-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.currency-toggle:hover .dropdown-arrow {
    color: var(--gold-primary);
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 140px;
    background: var(--white-pure);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-luxury);
    display: none !important;
    z-index: 1001;
    overflow: hidden;
    margin: 0;
    pointer-events: all;
}

.currency-dropdown.show {
    display: block !important;
    animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.currency-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.currency-dropdown li {
    margin: 0;
}

.currency-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--navy-deep);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.currency-dropdown a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.currency-dropdown li.active a {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    font-weight: 600;
}

.currency-symbol {
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.currency-check {
    margin-left: auto;
    color: var(--gold-primary);
    font-weight: bold;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--silver);
    background: var(--white-pure);
    color: var(--navy-medium);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gradient-gold);
    color: var(--navy-deep);
    border-color: var(--gold-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--navy-deep);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 90vh;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    margin-bottom: 0;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Placeholder for missing images */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white-pure);
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><circle cx="50" cy="50" r="40" fill="rgba(212,175,55,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.placeholder-image span {
    position: relative;
    z-index: 1;
}

/* Dark overlay for text readability */
.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.3) 0%,
        rgba(10, 22, 40, 0.5) 50%,
        rgba(10, 22, 40, 0.7) 100%
    );
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 900px;
    color: var(--white-pure);
    padding: 2rem 1rem;
}

.slide-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--white-pure);
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.slide-content p {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--pearl);
    margin-bottom: var(--space-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
}

.slide-info {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.slide-info span {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--navy-deep);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.carousel-control:hover {
    background: var(--gold-primary);
    color: var(--white-pure);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: var(--space-lg);
}

.carousel-control.next {
    right: var(--space-lg);
}

.carousel-indicators {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active,
.indicator:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: scale(1.2);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2.5rem;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: translateY(-1px) !important;
    transition: transform 0.1s ease;
}

/* Ripple effect for buttons */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy-deep);
    box-shadow: var(--shadow-luxury);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

.btn-primary:active {
    transform: translateY(-1px) !important;
}

.btn-secondary {
    background: var(--white-pure);
    color: var(--navy-deep);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(-1px) !important;
}

.btn-outline {
    background: transparent;
    color: var(--white-pure);
    border: 2px solid var(--white-pure);
}

.btn-outline:hover {
    background: var(--white-pure);
    color: var(--navy-deep);
}

.btn-outline:active {
    transform: translateY(-1px) !important;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* ========== SECTION STYLING ========== */
section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.featured-destinations,
.featured-trips {
    position: relative;
    z-index: 10;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-deep);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    max-width: 600px;
    margin: var(--space-md) auto 0;
}

/* Page Header for Destinations and Trips Pages */
.page-header {
    background: var(--gradient-luxury);
    color: var(--white-pure);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 139, 139, 0.06) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    color: var(--white-pure);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--pearl);
    max-width: 700px;
    margin: 0 auto;
}

.page-header .breadcrumb {
    margin-bottom: 1rem;
    color: var(--gold-light);
    font-size: 1rem;
}

.page-header .breadcrumb a {
    color: var(--gold-light);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.page-header .breadcrumb a:hover {
    color: var(--gold-primary);
}

/* ========== TRIP HERO SECTION ========== */
.trip-hero {
    position: relative;
    min-height: 55vh;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.trip-hero-image,
.trip-hero-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trip-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.trip-hero-placeholder {
    background: var(--gradient-luxury);
}

.trip-hero-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 3rem 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.5) 0%,
        rgba(10, 22, 40, 0.7) 100%
    );
}

.breadcrumb-hero {
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    font-size: 0.95rem;
    font-family: var(--font-accent);
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s ease both;
}

.breadcrumb-hero a {
    color: var(--gold-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-hero a:hover {
    color: var(--gold-primary);
    text-decoration: underline;
}

.breadcrumb-hero span {
    color: var(--white-pure);
    font-weight: 600;
}

.trip-hero-title {
    color: var(--white-pure);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.trip-hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pearl);
    font-size: 1rem;
    font-family: var(--font-body);
}

.hero-meta-item svg {
    opacity: 0.8;
}

.hero-meta-item.hero-price {
    color: var(--gold-light);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-accent);
}

.hero-meta-item.hero-price svg {
    width: 20px;
    height: 20px;
}

.hero-booking-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-booking-actions .btn {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.hero-booking-actions .btn:hover {
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.booking-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.booking-note svg {
    opacity: 0.9;
}

.booking-closed-notice {
    background: rgba(231, 76, 60, 0.15);
    color: var(--pearl);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid rgba(231, 76, 60, 0.6);
}

.booking-closed-notice p {
    margin: 0;
    font-size: 0.95rem;
}

/* ========== DESTINATION HERO CUSTOMIZATION ========== */
.destination-hero-description {
    color: var(--pearl);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    max-width: 800px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.4s both;
    font-family: var(--font-body);
}

/* ========== RESERVATION FORM STYLING ========== */
.reservation-section {
    padding: var(--space-2xl) 0;
}

.reservation-layout {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-form-container {
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-luxury);
}

.reservation-form-container h2 {
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy-deep);
    background: var(--white-pure);
    border: 2px solid var(--silver);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: var(--silver);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-text {
    display: block;
    font-size: 0.875rem;
    color: var(--silver);
    margin-top: var(--space-xs);
}

.alert {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.alert-error strong {
    display: block;
    margin-bottom: var(--space-xs);
}

.alert-error ul {
    margin: var(--space-xs) 0 0 var(--space-md);
    list-style: disc;
}

.alert-error li {
    margin-bottom: var(--space-xs);
}

/* Reservation Success Styling */
.reservation-success {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl);
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-luxury);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    color: var(--navy-deep);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto var(--space-lg);
    font-weight: bold;
    box-shadow: var(--shadow-luxury);
}

.reservation-success h2 {
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.reservation-success p {
    color: var(--navy-medium);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.confirmation-details {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

.confirmation-details h3 {
    color: var(--navy-deep);
    font-family: var(--font-accent);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.confirmation-code {
    font-family: var(--font-mono, monospace);
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    padding: var(--space-md);
    background: var(--white-pure);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    user-select: all;
}

.small-text {
    font-size: 0.9rem;
    color: var(--silver);
    margin-top: var(--space-sm);
}

.booking-closed-notice.large {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl);
    background: var(--white-pure);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-luxury);
}

.booking-closed-notice.large h2 {
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.booking-closed-notice.large p {
    font-size: 1.1rem;
    color: var(--navy-medium);
    margin-bottom: var(--space-lg);
}

/* ========== DESTINATION CARDS ========== */
.destinations-grid,
.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.destination-card,
.trip-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white-pure);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-elegant);
    cursor: pointer;
}

.destination-card:hover,
.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.destination-image,
.trip-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.destination-image img,
.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-elegant);
}

.destination-card:hover .destination-image img,
.trip-card:hover .trip-image img {
    transform: scale(1.1);
}

/* Gold overlay on hover */
.destination-image::after,
.trip-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.3) 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.destination-card:hover .destination-image::after,
.trip-card:hover .trip-image::after {
    opacity: 1;
}

.destination-info,
.trip-info {
    padding: var(--space-md);
}

.destination-info h3,
.trip-info h3 {
    font-size: 1.5rem;
    color: var(--navy-deep);
    margin-bottom: var(--space-sm);
}

.destination-info p,
.trip-info p {
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.trip-destination-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: rgba(212, 175, 55, 0.95);
    color: var(--navy-deep);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.trip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: var(--space-sm);
}

.trip-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.trip-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.trip-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--charcoal);
}

/* Placeholder images for cards */
.destination-card .placeholder-image,
.trip-card .placeholder-image {
    width: 100%;
    height: 300px;
    background: var(--gradient-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white-pure);
    text-align: center;
    padding: var(--space-md);
    position: relative;
}

.destination-card .placeholder-image::before,
.trip-card .placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="30" fill="rgba(212,175,55,0.1)"/></svg>') center repeat;
    opacity: 0.4;
}

.destination-card .placeholder-image span,
.trip-card .placeholder-image span {
    position: relative;
    z-index: 1;
}

/* ========== FEATURED SECTION ========== */
.featured-section {
    background: var(--gradient-luxury);
    color: var(--white-pure);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="rgba(255,255,255,0.02)"/></svg>') repeat;
    opacity: 0.5;
}

.featured-section .section-title,
.featured-section .section-subtitle {
    color: var(--white-pure);
}

.featured-section .section-title::after {
    background: var(--white-pure);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--gradient-luxury);
    color: var(--white-pure);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 139, 139, 0.08) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-section .container {
    position: relative;
    z-index: 10;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white-pure);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--pearl);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.cta-section .btn:hover {
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--navy-deep);
    color: var(--pearl);
    padding: var(--space-xl) 0 var(--space-md);
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-section h3 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: var(--pearl);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: var(--space-md);
    text-align: center;
    color: var(--silver);
}

/* ========== NEWSLETTER FORM ========== */
.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--gold-primary);
    border-right: none;
    background: var(--white-pure);
    color: var(--navy-deep);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-input::placeholder {
    color: var(--silver);
}

.newsletter-button {
    flex-shrink: 0;
    padding: 1rem 2.5rem;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-gold);
    color: var(--navy-deep);
    border: 2px solid var(--gold-primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.newsletter-button:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-luxury);
}

.newsletter-button:active {
    transform: translateY(0);
}

#newsletterMessage {
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    margin-top: var(--space-md);
}

#newsletterMessage.success-message {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

#newsletterMessage.error-message {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    animation: shimmer 3s infinite;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 1000px 100%;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }
    
    .destinations-grid,
    .trips-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--space-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-form-container {
        padding: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo-image {
        height: 55px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .header-content {
        padding: 0.5rem 0;
        min-height: 60px;
    }
    
    .main-nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: var(--space-lg);
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-medium);
        align-items: flex-start;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        margin-bottom: var(--space-md);
    }
    
    .nav-links a {
        display: block;
        padding: var(--space-sm);
        text-align: center;
        width: 100%;
    }
    
    .language-switcher {
        width: 100%;
        margin-left: 0;
        margin-top: var(--space-sm);
    }
    
    .lang-toggle {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem;
    }
    
    .lang-dropdown {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .currency-switcher {
        width: 100%;
        margin-left: 0;
        margin-top: var(--space-sm);
    }
    
    .currency-toggle {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem;
    }
    
    .currency-dropdown {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .carousel-control.prev {
        left: var(--space-sm);
    }
    
    .carousel-control.next {
        right: var(--space-sm);
    }
    
    .destinations-grid,
    .trips-grid {
        grid-template-columns: 1fr;
    }
    
    .trip-hero {
        min-height: 50vh;
        max-height: 500px;
        margin-top: 60px;
    }
    
    .trip-hero-overlay {
        padding: 2rem 0;
    }
    
    .trip-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .trip-hero-meta {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero-meta-item.hero-price {
        font-size: 1.3rem;
    }
    
    .hero-booking-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-booking-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .booking-note {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .destination-hero-description {
        font-size: 1rem;
        margin-top: 1rem;
        line-height: 1.6;
    }
    
    .reservation-form-container,
    .reservation-success,
    .booking-closed-notice.large {
        padding: var(--space-md);
    }
    
    .reservation-success h2 {
        font-size: 2rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .confirmation-code {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-input {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border-right: 2px solid var(--gold-primary);
        border-bottom: none;
    }
    
    .newsletter-button {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border-top: none;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
    }
    
    .hero-section {
        min-height: 85vh;
        max-height: 700px;
        padding-top: 60px;
    }
    
    .slide-content {
        padding: 1rem 0.5rem;
        width: 95%;
    }
    
    .slide-content h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .slide-info {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .slide-info span {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .newsletter-input,
    .newsletter-button {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none; }
.visible { display: block; }

/* ========== Trip Details Page ========== */
.trip-details {
    padding: 2rem 0 4rem;
}

.trip-detail-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.trip-main-content {
    max-width: 100%;
}

.trip-image-large {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-large);
    position: relative;
}

.trip-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--transition-smooth);
}

.trip-image-large:hover img {
    transform: scale(1.05);
}

.placeholder-image-large {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gold-light), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    border-radius: var(--radius-xl);
}

.trip-meta-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,250,252,0.9));
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-light);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-item strong {
    color: var(--navy-deep);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.meta-item a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.meta-item a:hover {
    color: var(--gold-accent);
}

.trip-description {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.95));
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gold-light);
}

.trip-description h2 {
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    color: var(--navy-deep);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.trip-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
    border-radius: 2px;
}

.trip-description p {
    line-height: 1.8;
    color: var(--text-body);
    font-size: 1.0625rem;
}

.trip-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 
        var(--shadow-large),
        0 0 0 1px var(--gold-light),
        inset 0 1px 0 rgba(255,255,255,0.95);
    border: 2px solid transparent;
    position: relative;
    transition: all var(--transition-base);
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 25px 70px rgba(0,0,0,0.15),
        0 0 0 1px var(--gold-primary),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.booking-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent), var(--gold-light));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.15;
    transition: opacity var(--transition-base);
}

.booking-card:hover::before {
    opacity: 0.25;
}

.booking-card h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.75rem;
    color: var(--navy-deep);
    font-weight: 700;
}

.price-display {
    text-align: center;
    padding: 2.25rem 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.08));
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-light);
    position: relative;
    overflow: hidden;
}

.price-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.price-display:hover::before {
    left: 100%;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.price-amount {
    display: block !important;
    font-size: 3.5rem;
    font-weight: 900 !important;
    color: #D4AF37 !important; /* Gold color - always visible */
    line-height: 1;
    margin-bottom: 0.75rem;
}

.price-unit {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-block {
    width: 100%;
    display: block;
}

.booking-closed-notice {
    text-align: center;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-lg);
    color: var(--error-color);
}

.small-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.trip-additional-info {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.95));
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gold-light);
}

.trip-additional-info h3 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-light);
    color: var(--navy-deep);
    font-weight: 700;
    position: relative;
}

.trip-additional-info h3:first-child {
    margin-top: 0;
}

.trip-additional-info h3::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
}

.designer-note {
    display: none; /* Hidden in production - designer placeholders only */
}

.trip-inclusions,
.trip-itinerary {
    padding: 1.5rem 0;
    line-height: 1.8;
    color: var(--text-body);
    font-size: 1rem;
}

.trip-inclusions p,
.trip-itinerary p {
    margin-bottom: 1rem;
}

.trip-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gold-light);
}

.trip-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trip-features li {
    padding: 0.875rem 0;
    font-size: 1rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
}

.trip-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.trip-features li:hover {
    padding-left: 0.5rem;
    color: var(--navy-deep);
}

@media (max-width: 1024px) {
    .trip-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .trip-sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .trip-image-large {
        max-height: 300px;
    }
    
    .trip-meta-details {
        grid-template-columns: 1fr;
    }
    
    .trip-description,
    .trip-additional-info {
        padding: 1.5rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .carousel-control,
    .carousel-indicators,
    .menu-toggle {
        display: none !important;
    }
}