/* Style System - Golden Horizon Bali (Luxury Redesign) */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --color-gold: #D0A154;
    --color-gold-light: #E3BC7A;
    --color-gold-dark: #B5893D;
    --color-navy: #050E17;
    --color-navy-light: #0A1826;
    --color-navy-dark: #02070C;
    --color-cream: #FAF9F6;
    --color-white: #FFFFFF;
    --color-charcoal: #1A1D20;
    --color-gray: #68727D;
    --color-gray-light: #EBEBEB;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 20px 50px rgba(5, 14, 23, 0.08);
    --shadow-luxury: 0 30px 70px rgba(5, 14, 23, 0.2);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Borders */
    --border-gold-alpha: 1px solid rgba(208, 161, 84, 0.2);
    --border-navy-alpha: 1px solid rgba(10, 24, 38, 0.1);
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 120px 0;
}

.bg-dark {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.text-gold {
    color: var(--color-gold);
}

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

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
}

.bg-dark .section-title {
    color: var(--color-white);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(208, 161, 84, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-navy);
}

.btn-white:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-2px);
}

/* Header & Navigation */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 25px 0;
}

header.site-header.scrolled {
    background-color: rgba(5, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.site-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.site-header .logo img {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

header.site-header.scrolled .logo img {
    height: 40px;
}

header.site-header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

header.site-header nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

header.site-header nav ul li a:hover,
header.site-header nav ul li.active a {
    color: var(--color-gold-light);
}

header.site-header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

header.site-header nav ul li a:hover::after,
header.site-header nav ul li.active a::after {
    width: 100%;
}

/* Navigation Dropdowns */
header.site-header nav ul li.has-dropdown {
    position: relative;
}

header.site-header nav ul li .arrow {
    display: inline-block;
    font-size: 10px;
    margin-left: 6px;
    transition: var(--transition-smooth);
    vertical-align: middle;
}

header.site-header nav ul li.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu Desktop */
@media (min-width: 769px) {
    header.site-header nav ul li .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background-color: var(--color-navy);
        border: var(--border-gold-alpha);
        border-radius: 4px;
        min-width: 200px;
        padding: 15px 0;
        box-shadow: var(--shadow-luxury);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        gap: 2px;
        list-style: none;
        z-index: 1000;
    }

    header.site-header nav ul li .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        height: 15px;
        background-color: transparent;
    }

    /* Small upward pointing caret centered under parent link */
    header.site-header nav ul li .dropdown-menu::after {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 10px;
        height: 10px;
        background-color: var(--color-navy);
        border-left: var(--border-gold-alpha);
        border-top: var(--border-gold-alpha);
        z-index: -1;
    }

    header.site-header nav ul li.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    header.site-header nav ul li .dropdown-menu li {
        width: 100%;
        margin: 0;
    }

    header.site-header nav ul li .dropdown-menu li a {
        display: block;
        padding: 10px 24px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.75);
        transition: var(--transition-smooth);
        position: relative;
    }

    header.site-header nav ul li .dropdown-menu li a::after {
        display: none; /* Disable underline hover for dropdown links */
    }

    header.site-header nav ul li .dropdown-menu li a:hover,
    header.site-header nav ul li .dropdown-menu li.active a {
        color: var(--color-gold-light);
        background-color: rgba(208, 161, 84, 0.05);
        padding-left: 28px;
    }
}

/* Dropdown Menu Mobile */
@media (max-width: 768px) {
    header.site-header nav ul li.has-dropdown .dropdown-menu {
        display: none; /* Hidden on mobile by default */
        list-style: none;
        padding-left: 20px;
        margin-top: 10px;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    header.site-header nav ul li.has-dropdown.open .dropdown-menu {
        display: flex; /* Shown when toggled open on mobile */
    }

    header.site-header nav ul li.has-dropdown.open .arrow {
        transform: rotate(180deg);
    }

    header.site-header nav ul li .dropdown-menu li a {
        font-size: 16px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        text-transform: uppercase;
    }

    header.site-header nav ul li .dropdown-menu li.active a {
        color: var(--color-gold-light) !important;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-white);
    margin: 6px 0;
    transition: var(--transition-smooth);
}

/* Footer Section */
footer.site-footer {
    background-color: var(--color-navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 30px 0;
    border-top: 1px solid rgba(208, 161, 84, 0.15);
}

footer.site-footer h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

footer.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 70px;
}

footer.site-footer .footer-logo img {
    height: 50px;
    margin-bottom: 25px;
}

footer.site-footer .footer-logo p {
    font-size: 15px;
    line-height: 1.8;
}

footer.site-footer .footer-links ul {
    list-style: none;
}

footer.site-footer .footer-links ul li {
    margin-bottom: 12px;
}

footer.site-footer .footer-links ul li a {
    font-size: 15px;
}

footer.site-footer .footer-links ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

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

footer.site-footer .footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

footer.site-footer .footer-contact ul li svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

footer.site-footer .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

footer.site-footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

footer.site-footer .social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

footer.site-footer .social-icon:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* Page Headers (Hero Subpages) */
.page-hero {
    height: 380px;
    background-color: var(--color-navy);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-white);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 14, 23, 0.8), rgba(5, 14, 23, 0.95));
}

.page-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 60px;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-white);
}

.breadcrumb {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--color-gold);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

/* Home Page Component Styles */

/* Hero Banner */
.hero-banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

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

.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 14, 23, 0.9) 0%, rgba(5, 14, 23, 0.6) 50%, rgba(5, 14, 23, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Tour Cards Grid */
.tours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tour-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: var(--border-navy-alpha);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

.tour-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-image img {
    transform: scale(1.08);
}

.tour-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--color-navy);
    color: var(--color-gold);
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    border: var(--border-gold-alpha);
}

.tour-price-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: rgba(5, 14, 23, 0.85);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-price-badge span {
    color: var(--color-gold);
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-info {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.tour-info p {
    color: var(--color-gray);
    margin-bottom: 30px;
    font-size: 15px;
}

.tour-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--color-gray-light);
    border-bottom: 1px solid var(--color-gray-light);
}

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

.meta-item svg {
    width: 16px;
    height: 16px;
    fill: var(--color-gold-dark);
}

.tour-actions {
    display: flex;
    gap: 15px;
}

.tour-actions .btn {
    flex: 1;
}

/* Why Choose Us Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-box {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: 6px;
    border: var(--border-navy-alpha);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(208, 161, 84, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(208, 161, 84, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--color-gold-dark);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Testimonial slider styles */
.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
    min-width: 100%;
    padding: 0 40px;
    text-align: center;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
}

.review-quote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 30px;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.review-source {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border: var(--border-navy-alpha);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.faq-question {
    padding: 24px 30px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background-color: rgba(208, 161, 84, 0.03);
    color: var(--color-gold-dark);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: var(--transition-smooth);
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 9px;
    top: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-inner {
    padding: 0 30px 24px 30px;
    color: var(--color-gray);
    font-size: 15px;
    line-height: 1.8;
    border-top: 1px solid rgba(10, 24, 38, 0.05);
    padding-top: 20px;
}

/* Call to Action Banner */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0;
    text-align: center;
    color: var(--color-white);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 14, 23, 0.8);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Tours Comparison Page */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.comparison-table th, .comparison-table td {
    padding: 24px 30px;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-light);
}

.comparison-table th {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 20px;
}

.comparison-table th:nth-child(2) {
    color: var(--color-gold);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--color-navy);
    width: 25%;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Tour Details Pages (Specific) */
.tour-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.detail-main h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-navy);
    margin: 40px 0 20px 0;
}

.detail-main p {
    color: var(--color-gray);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.highlights-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    margin: 30px 0;
    background: var(--color-white);
    padding: 35px;
    border-radius: 6px;
    border: var(--border-navy-alpha);
}

.highlights-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    color: var(--color-navy);
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold-dark);
    font-weight: bold;
    font-size: 18px;
}

.itinerary-timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    width: 2px;
    height: 100%;
    background-color: var(--color-gold-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-navy);
    border: 2px solid var(--color-gold);
    z-index: 2;
}

.timeline-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-navy);
    margin: 5px 0;
}

.timeline-desc {
    color: var(--color-gray);
    font-size: 14px;
}

/* Sidebar Booking Card */
.sidebar-booking-card {
    background-color: var(--color-white);
    border: var(--border-navy-alpha);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    position: sticky;
    top: 120px;
}

.sidebar-booking-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.sidebar-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 25px;
}

.sidebar-price span {
    font-size: 14px;
    color: var(--color-gray);
    font-weight: normal;
}

.sidebar-features {
    list-style: none;
    margin-bottom: 30px;
}

.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-light);
    font-size: 14px;
    color: var(--color-navy);
}

.sidebar-features li svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
}

/* Know Before You Go Section */
.know-before-you-go {
    margin-top: 50px;
    background-color: var(--color-cream);
    border-radius: 8px;
    padding: 40px 45px;
    border: var(--border-navy-alpha);
    box-shadow: var(--shadow-subtle);
}

.know-before-you-go h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-navy);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(208, 161, 84, 0.25);
}

.know-before-you-go ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.know-before-you-go ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-navy);
}

.know-before-you-go ul li:last-child {
    margin-bottom: 0;
}

.know-before-you-go ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    top: 0;
    color: var(--color-gold-dark);
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
}

/* Contact Page Form & Details */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-item-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 6px;
    border: var(--border-navy-alpha);
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-subtle);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(208, 161, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-item-details h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-navy);
    margin-bottom: 5px;
}

.contact-item-details p, .contact-item-details a {
    color: var(--color-gray);
    font-size: 15px;
}

.contact-form-card {
    background-color: var(--color-white);
    padding: 50px;
    border-radius: 8px;
    border: var(--border-navy-alpha);
    box-shadow: var(--shadow-premium);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.contact-form-card p {
    color: var(--color-gray);
    font-size: 15px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--color-gray-light);
    background-color: #FAFAFA;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: var(--color-white);
}

/* Map Iframe Styling */
.map-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin-top: 60px;
    border: var(--border-navy-alpha);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* About Us Story Styling */
.about-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.about-story-content p {
    color: var(--color-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-collage {
    position: relative;
    height: 500px;
}

.about-image-collage img {
    position: absolute;
    border-radius: 6px;
    box-shadow: var(--shadow-premium);
    border: 4px solid var(--color-white);
}

.about-img-1 {
    width: 70%;
    height: 70%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 60%;
    height: 60%;
    object-fit: cover;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* Gallery Photo Grid & Lightbox styles */
.gallery-filter-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--color-navy);
    background-color: var(--color-white);
    box-shadow: var(--shadow-subtle);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
    border: var(--border-navy-alpha);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 14, 23, 0.4);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-overlay-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay-icon {
    transform: scale(1);
}

.gallery-overlay-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 7, 12, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border: 4px solid #111;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--color-white);
    font-size: 35px;
    cursor: pointer;
    background: none;
    border: none;
}

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

/* Destinations Guide cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.destination-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: var(--border-navy-alpha);
}

.destination-img {
    height: 300px;
}

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

.destination-body {
    padding: 40px;
}

.destination-body h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.destination-body p {
    color: var(--color-gray);
    font-size: 15px;
    margin-bottom: 25px;
}

.dest-features {
    background-color: var(--color-cream);
    padding: 20px 25px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.dest-features h5 {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--color-gold-dark);
}

.dest-features ul {
    list-style: none;
    font-size: 14px;
    color: var(--color-navy);
}

.dest-features ul li {
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.dest-features ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Reviews Page Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--color-white);
    padding: 35px;
    border-radius: 6px;
    border: var(--border-navy-alpha);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--color-navy);
    font-size: 16px;
}

.review-date {
    font-size: 12px;
    color: var(--color-gray);
}

.review-card p {
    color: var(--color-gray);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
}

.review-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-gray-light);
    padding-top: 15px;
}

.review-platform {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--color-navy);
}

/* 404 Styles */
.error-404-container {
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.error-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.error-desc {
    color: var(--color-gray);
    max-width: 500px;
    margin-bottom: 40px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .section-padding {
        padding: 90px 0;
    }
    
    .hero-content h1 {
        font-size: 54px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-collage {
        height: 400px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    header.site-header {
        padding: 20px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    header.site-header .logo {
        position: relative;
        z-index: 1001;
    }
    
    header.site-header nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-navy);
        transition: var(--transition-smooth);
        padding: 120px 30px 40px 30px;
        z-index: 999;
        overflow-y: auto;
    }
    
    header.site-header nav.open {
        left: 0;
    }
    
    header.site-header nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    header.site-header nav ul li a {
        font-size: 18px;
    }
    
    footer.site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tour-details-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-list {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-card {
        padding: 30px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filter-nav {
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Hamburger active micro-animations */
.mobile-menu-toggle span.active:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle span.active:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle span.active:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Skeleton Loader (Shimmer Placeholders) */
.skeleton-container {
    position: relative;
    overflow: hidden;
    background-color: var(--color-gray-light);
    border-radius: 4px;
    display: block;
}

.bg-dark .skeleton-container,
.hero-banner .skeleton-container {
    background-color: var(--color-navy-light);
}

/* Shimmer overlay gradient */
.skeleton-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0) 100%
    );
    animation: skeleton-shimmer-anim 1.5s infinite;
    z-index: 2;
    transition: opacity 0.4s ease-out;
}

.bg-dark .skeleton-shimmer,
.hero-banner .skeleton-shimmer {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.06) 50%, 
        rgba(255,255,255,0) 100%
    );
}

@keyframes skeleton-shimmer-anim {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Transition media opacity */
.skeleton-container img,
.skeleton-container video {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Loaded state overrides */
.skeleton-container.loaded img,
.skeleton-container.loaded video {
    opacity: 1;
}

.skeleton-container.loaded .skeleton-shimmer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Gallery skeleton: fill the gallery-item height */
.gallery-item .skeleton-container {
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-item .skeleton-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
