/* 
====================================================================
   ROYAL GATE TRAVELS & TOURS - ULTRA-MODERN LUXURY STYLESHEET
   Version: 4.0 (Platinum & Obsidian Edition)
   Author: Google Deepmind AGENT
   Design Philosophy: "Elegant Motion & Deep Luxury"
==================================================================== 
*/

/* --- 1. VARIABLES & THEME CONFIGURATION --- */
:root {
    /* Color Palette: Light Luxury Branding */
    --primary-brand: #0B1D3A;
    /* Elegant Sky Blue */
    --primary-light: #1E3A5F;
    --secondary-teal: #4FB3BF;
    /* Soft Teal */

    --accent-gold: #E6B325;
    /* Warm Gold */
    --accent-gold-light: #F7D784;
    --accent-gold-hover: #D4A31E;

    --text-main: #2B2B28;
    /* Charcoal */
    --text-muted: #64748B;
    --text-light: #F8FAFC;

    --white: #FFFFFF;
    --off-white: #f7f7f7;
    /* Light Luxury Background 1 */
    --bg-light: #EEF2F6;
    /* Light Luxury Background 2 (Light Grey) */

    /* --- Gradients --- */
    --grad-gold: linear-gradient(135deg, #E6B325 0%, #F7D784 100%);
    --grad-dark: linear-gradient(135deg, #0B1D3A 0%, #1E3A5F 100%);
    --grad-teal: linear-gradient(135deg, #4FB3BF 0%, #A5D8DD 100%);

    /* --- Typography (Simplified) --- */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Responsive Sizing */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.75rem;
    --text-5xl: 3.5rem;

    /* --- Layout & Spacing --- */
    --section-padding: 100px 0;
    --container-width: 1300px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;

    /* --- Effects --- */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(197, 160, 89, 0.15);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-blur: blur(15px);

    /* --- Animation --- */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
    --duration-fast: 0.3s;
    --duration-normal: 0.5s;
    --duration-slow: 0.8s;
}

/* --- 2. GLOBAL RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base for rem */
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: var(--text-base);
}

::selection {
    background: var(--accent-gold);
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-out);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul {
    list-style: none;
}

/* --- 3. UTILITY CLASSES --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    /* For parallax/shapes */
}

/* Backgrounds */
.bg-dark {
    background-color: var(--primary-brand);
    color: var(--text-light);
}

.bg-light {
    background-color: var(--off-white);
    color: var(--text-main);
}

.bg-white {
    background-color: var(--white);
}

/* Text & Colors */
.text-gold {
    color: var(--accent-gold) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-center {
    text-align: center;
}

/* --- 4. TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    color: var(--primary-brand);
}

h1 {
    font-size: var(--text-5xl);
    letter-spacing: -2px;
}

h2 {
    font-size: var(--text-4xl);
    letter-spacing: -1px;
}

h3 {
    font-size: var(--text-2xl);
    letter-spacing: -0.5px;
}

h4 {
    font-size: var(--text-xl);
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.section-title {
    font-size: var(--text-4xl);
    color: var(--primary-brand);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-line {
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- 5. BUTTONS & UI ELEMENTS --- */
/* --- 5. BUTTONS & UI ELEMENTS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width var(--duration-normal) var(--ease-out);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--grad-gold);
    color: var(--primary-brand);
    border: none;
    box-shadow: 0 10px 20px rgba(230, 179, 37, 0.2);
}

.btn-teal {
    background: var(--grad-teal);
    color: var(--white);
    border: none;
}

.btn-teal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 179, 191, 0.2);
}

.btn-sky {
    background: var(--grad-dark);
    color: var(--white);
    border: none;
}

.btn-sky:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 29, 58, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-brand);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--primary-brand);
    border: 1px solid var(--accent-gold);
}

.btn-gold-outline:hover {
    background: var(--grad-gold);
    color: var(--primary-brand);
    transform: translateY(-3px);
}

/* Scroll to Top */
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--grad-gold);
    color: var(--primary-brand);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-md);
}

#scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

#scroll-top:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-glow);
}

/* --- 6. HEADER & NAVIGATION (Sophisticated Glassmorphism) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 35px 0;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(11, 29, 58, 0.05);
    border-bottom: 1px solid rgba(230, 179, 37, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.header.scrolled .logo a {
    color: var(--primary-brand);
}

.logo a:hover {
    transform: scale(1.05);
    color: var(--accent-gold) !important;
}

.logo span {
    color: var(--accent-gold);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.header.scrolled .nav-links li a {
    color: var(--primary-brand);
    font-weight: 600;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-gold) !important;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 60%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header.scrolled .mobile-menu-btn {
    color: var(--primary-brand);
}

/* --- 7. HERO SECTION WITH VIDEO BACKGROUND --- */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-brand);
    padding: 120px 0 60px;
}



.hero-video {

    position: absolute;

    top: 50%;

    left: 50%;

    min-width: 100%;

    min-height: 100%;

    width: auto;

    height: auto;

    z-index: 0;

    transform: translate(-50%, -50%);

    object-fit: cover;

    filter: brightness(0.8) contrast(1.1);

}



.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(to bottom,

            rgba(11, 29, 58, 0.6) 0%,

            rgba(11, 29, 58, 0.3) 50%,

            rgba(11, 29, 58, 0.6) 100%);

    z-index: 1;

}



.hero-content {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 900px;

}

.hero-content span {
    display: block;
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-content p {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.4s;
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* --- 8. CARD SYSTEM (TOURS & CARS) --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card,
.modern-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11, 29, 58, 0.05);
    transition: all 0.5s var(--ease-out);
    height: 100%;
    border: 1px solid rgba(230, 179, 37, 0.1);
    background: linear-gradient(145deg, #ffffff, var(--bg-light));
    position: relative;
    display: flex;
    flex-direction: column;
}

.card:hover,
.modern-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 60px rgba(11, 29, 58, 0.1);
    border-color: rgba(230, 179, 37, 0.3);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .card-img-wrapper img,
.modern-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card .card-content,
.modern-card .card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Ensure cards with footers push footer to bottom */
.card:has(.card-footer) .card-content,
.modern-card:has(.card-footer) .card-content {
    justify-content: space-between;
}

.card .card-title,
.modern-card .card-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--primary-brand);
    font-family: var(--font-heading);
}

.card .card-description,
.modern-card .card-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card .card-footer,
.modern-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(11, 29, 58, 0.05);
    margin-top: auto;
}

/* Staggered Animation Delays */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}

/* --- 9. ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up,
.fade-in-left,
.fade-in-right,
.scale-in {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-right {
    transform: translateX(50px);
}

.scale-in {
    transform: scale(0.9);
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.scale-in.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger Delays (applied via n-th child or JS, or inline styles) */
/* We will rely on inline styles for delays in HTML or simple CSS classes */


/* --- 10. PAGE HEADER (SUBPAGES) --- */
.page-header {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 120px 0 80px;
    margin: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* --- 13. BOOKING SEARCH WIDGET --- */
.booking-widget-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 100;
    padding: 0 15px;
}

.booking-widget {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: 35px;
    box-shadow: 0 40px 80px rgba(11, 29, 58, 0.12);
    border: 1px solid rgba(255, 255, 255, 1);
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.search-field {
    flex: 1;
    min-width: 200px;
}

.search-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding-left: 5px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-group i {
    position: absolute;
    left: 20px;
    color: var(--accent-gold);
    font-size: 1rem;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8fafc;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--primary-brand);
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-field select:focus,
.search-field input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.search-btn {
    padding: 18px 45px;
    background: var(--primary-brand);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 58px;
    flex: 0 0 auto;
}

.search-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-brand);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 179, 37, 0.3);
}

/* Enhanced Tour Card Refinements */
.modern-card .card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-brand);
}

.card-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
}

/* No results message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    display: none;
}

.no-results i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}


.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    display: block;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* --- 11. FEATURE BOXES (Why Choose Us) --- */
.feature-box {
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
}


/* --- 12. FOOTER --- */
/* --- 10. PREMIUM FOOTER --- */
.footer {
    background-color: var(--primary-brand);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand .logo a {
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-brand);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 35px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 18px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(8px);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-contact li i {
    color: var(--accent-gold);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .container {
        max-width: 100%;
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .header {
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(230, 179, 37, 0.1);
    }

    .logo a {
        font-size: 1.5rem;
        color: var(--primary-brand) !important;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: all 0.5s var(--ease-in-out);
        z-index: 2000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li a {
        color: var(--primary-brand);
        font-size: 1.1rem;
        font-weight: 700;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--grad-gold);
        color: var(--primary-brand) !important;
        border-radius: 12px;
        font-size: 1.2rem;
        box-shadow: 0 5px 15px rgba(230, 179, 37, 0.3);
        z-index: 2001;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 130px 20px 60px;
        /* more top-padding for fixed header */
        align-items: flex-start;
    }

    .hero-content {
        padding: 0;
    }

    .hero-content span {
        font-size: 0.85rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 2.8rem !important;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.6;
        margin-bottom: 35px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 15px 30px;
    }

    .page-title {
        font-size: 2.5rem !important;
    }

    .modern-card {
        padding: 25px !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

    .logo a {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 0.85rem;
    }
}

/* --- Testimonials Professional Carousel (Appended) --- */
.testimonial-section {
    position: relative;
    /* High quality dark overlay background */
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9)), url('assets/banner.jpg') fixed center/cover;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    /* Increased height for content */
}

.testimonial-card {
    display: none;
    /* JS handles display */
    padding: 20px;
    animation: fadeIn 0.8s ease;
}

.testimonial-card.active {
    display: block;
    /* Important for JS toggle */
    animation: fadeIn 0.8s ease;
}

.client-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-rating {
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 5px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.client-role {
    display: block;
    font-size: 0.9rem;
    opacity: 0.6;
    font-family: var(--font-body);
}

/* Dots & Controls */
.testimonial-controls {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

.slider-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-slate);
}

/* --- 11. FAQ SECTION --- */
.faq-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.2);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-brand);
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.4s var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-gold);
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 30px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- New Animations & Utilities --- */
@keyframes revealImage {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

.reveal-img {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s var(--ease-out);
}

.reveal-img.visible {
    clip-path: inset(0 0 0 0);
}

.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1) !important;
}

.overflow-hidden {
    overflow: hidden;
}

/* Parallax Container */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --- 12. PREMIUM TOUR DETAIL PAGE --- */
.tour-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    margin-top: 60px;
}

@media (max-width: 1114px) {
    .tour-detail-layout {
        grid-template-columns: 1fr;
    }
}

/* Section Navigation */
.tour-nav-tabs {
    position: sticky;
    top: 111px;
    background: var(--white);
    z-index: 1001;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    margin-bottom: 50px;
}

.tour-nav-tabs .container {
    display: flex;
    justify-content: center;
}

.tour-nav-tabs ul {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
}

.tour-nav-tabs a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 10px;
}

.tour-nav-tabs a:hover,
.tour-nav-tabs a.active {
    color: var(--accent-gold);
}

.tour-nav-tabs a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

/* Content Sections */
.tour-section {
    margin-bottom: 80px;
    scroll-margin-top: 170px;
}

.tour-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-brand);
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tour-section-title i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    opacity: 0.7;
}

/* Itinerary Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(197, 160, 89, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -42px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--white);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.1);
}

.timeline-day {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-brand);
    margin-bottom: 15px;
}

/* Inclusions Grid */
.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.inclusion-item {
    display: flex;
    gap: 15px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #22c55e;
}

.inclusion-item.exclusion {
    border-left-color: #ef4444;
}

.inclusion-icon {
    font-size: 1.2rem;
    color: #22c55e;
}

.exclusion .inclusion-icon {
    color: #ef4444;
}

.inclusion-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.booking-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-price {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-brand);
}

.price-suffix {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-brand);
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.booking-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.booking-btn {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    font-size: 1.1rem;
}

.help-box {
    margin-top: 30px;
    padding: 25px;
    background: var(--primary-brand);
    color: var(--white);
    border-radius: var(--border-radius-md);
    text-align: center;
}

.help-box h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.help-box p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Design Refinements */
.text-gradient-gold {
    background: linear-gradient(135deg, #b4975a 0%, #d4af37 50%, #b4975a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.tour-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
}

.timeline-content {
    border: 1px solid rgba(230, 179, 37, 0.1) !important;
    background: linear-gradient(145deg, #ffffff, var(--off-white)) !important;
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-gold);
    box-shadow: 0 0 15px rgba(180, 151, 90, 0.5);
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Enquiry Form Section */
/* Enquiry Form Section - Ultra Modern Overhaul */
.enquiry-section {
    margin-top: 100px;
    padding: 80px 60px;
    background: var(--grad-dark);
    border-radius: var(--border-radius-xl);
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 40px 100px -20px rgba(11, 29, 58, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.enquiry-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.enquiry-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.enquiry-header {
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.enquiry-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.enquiry-header p {
    opacity: 0.6;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.enquiry-form {
    position: relative;
    z-index: 1;
}

.enquiry-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.enquiry-form .form-group {
    position: relative;
}

.enquiry-form .form-group i {
    position: absolute;
    left: 20px;
    top: 50px;
    color: var(--accent-gold);
    opacity: 0.6;
    font-size: 1rem;
}

.enquiry-form label {
    display: block;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    padding: 18px 20px 18px 50px !important;
    border-radius: 12px !important;
    font-family: var(--font-body);
    transition: all 0.4s var(--ease-out);
}

.enquiry-form textarea {
    padding-left: 20px !important;
    grid-column: 1 / -1;
    min-height: 150px;
    margin-top: 10px;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: var(--accent-gold) !important;
    outline: none;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
}

.enquiry-submit-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.btn-enquiry {
    background: var(--grad-gold);
    color: var(--primary-brand);
    border: none;
    padding: 20px 60px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-enquiry:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
    color: var(--primary-brand);
}

/* New Animations */
@keyframes fadeInUpRich {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fade-in-up-rich {
    animation: fadeInUpRich 1s var(--ease-out) forwards;
}

.hover-float {
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.hover-float:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Light Luxury Utilities */
.bg-teal-soft {
    background-color: var(--secondary-teal) !important;
    color: var(--white) !important;
}

.text-teal {
    color: var(--secondary-teal) !important;
}

.bg-sky-dark {
    background-color: var(--primary-brand) !important;
    color: var(--white) !important;
}

/* --- Light Theme Enquiry Section (Professional Redesign) --- */
.enquiry-section-light {
    margin-top: 100px;
    padding: 80px 0;
    background: #F8FAFC;
    /* Light Grey Background */
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.enquiry-card-light {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 60px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    /* Soft, deep shadow */
    border: 1px solid rgba(11, 29, 58, 0.05);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative accent */
.enquiry-card-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--grad-gold);
}

.enquiry-header-light {
    text-align: center;
    margin-bottom: 50px;
}

.enquiry-header-light h2 {
    color: var(--primary-brand);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.enquiry-header-light p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Light Input Styles */
.light-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-brand);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.light-input {
    width: 100%;
    padding: 18px 25px;
    background: #F1F5F9;
    /* Very light grey input bg */
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--primary-brand);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.light-input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.light-input::placeholder {
    color: #94a3b8;
}

.btn-enquiry-light {
    background: var(--primary-brand);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(11, 29, 58, 0.15);
}

.btn-enquiry-light:hover {
    background: var(--accent-gold);
    color: var(--primary-brand);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}


/* --- 14. TOUR PAGE SPECIFIC STYLES --- */
.tour-header-bg {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.tour-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.7));
}

.tour-meta-header {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: 500;
    opacity: 0.95;
    margin-top: 25px;
    flex-wrap: wrap;
}

.tour-meta-header span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tour-meta-header span:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.tour-overview-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.tour-highlight-box {
    background: #f8fafc;
    padding: 35px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.tour-highlight-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    background: var(--white);
    border-color: rgba(197, 160, 89, 0.2);
}

.tour-highlight-box h4 {
    margin-bottom: 20px;
    color: var(--primary-brand);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.tour-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.tour-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 280px;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .tour-header-bg {
        height: 60vh;
        min-height: 400px;
    }

    .tour-meta-header {
        gap: 12px;
        margin-top: 20px;
    }

    .tour-meta-header span {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .tour-list li {
        font-size: 0.95rem;
        padding-left: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 15. LIGHTBOX & MODAL --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 29, 58, 0.95);
    backdrop-filter: blur(15px);
    display: none;
    z-index: 100000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    z-index: 100001;
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

/* 
====================================================================
   HOMEPAGE COMPONENTS (Moved from Index.php)
==================================================================== 
*/

/* Hero Booking Bar */
.booking-bar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 28px 30px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr auto;
    gap: 15px;
    align-items: end;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left;
    width: 100%;
}

.booking-field label {
    display: block;
    font-size: 0.78rem;
    color: var(--primary-brand);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-field select,
.booking-field input {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #fff;
    outline: none;
    transition: 0.3s;
    color: #333;
    font-family: var(--font-body);
}

.booking-field select:focus,
.booking-field input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(230, 179, 37, 0.15);
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .booking-bar {
        grid-template-columns: 1fr 1fr;
        padding: 22px;
    }

    .booking-field:first-child {
        grid-column: 1 / -1;
    }

    .booking-bar>button {
        grid-column: 1 / -1;
        height: 52px;
    }
}

/* Mobile: single column */
@media (max-width: 600px) {
    .booking-bar {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 14px;
        border-radius: 14px;
    }

    .booking-field,
    .booking-bar>button {
        grid-column: 1 / -1;
    }

    .booking-field label {
        font-size: 0.75rem;
    }

    .booking-field select,
    .booking-field input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .booking-bar>button {
        height: 50px;
        font-size: 1rem;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-pill-card {
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: block;
    text-decoration: none;
}

.service-pill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grad-dark);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.service-pill-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-pill-card:hover::before {
    opacity: 1;
}

.service-pill-card:hover h3,
.service-pill-card:hover p,
.service-pill-card:hover i {
    color: white !important;
}

.service-pill-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
    transition: 0.4s;
}

.service-pill-card:hover .service-pill-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

@media(max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}