/**
 * Theme Name: Tripvella - Travel Theme
 * Theme URI: https://tripvella.com
 * Author: Tripvella Team
 * Author URI: https://tripvella.com
 * Description: ธีมท่องเที่ยวสำหรับ Tripvella - Modern Minimalist with Warm Accents
 * Version: 1.0.0
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: tripvella
 * Tags: travel, tourism, responsive, custom-menu, featured-images, translation-ready, rtl-language-support
 */

/* ========================================
   CSS VARIABLES - Modern Minimalist with Warm Accents
   Primary: Warm Terracotta, Secondary: Deep Forest Green
   ======================================== */
:root {
    /* Primary Colors - Warm Terracotta */
    --primary: #D97757;
    --primary-hover: #C26A4D;
    --primary-light: #E8956F;
    --primary-bright: #F0B090;
    
    /* Secondary Colors - Deep Forest Green */
    --secondary: #2D5016;
    --secondary-hover: #3D6B1E;
    --secondary-light: #4A7C4F;
    
    /* Accent Colors - Warm Sand */
    --accent: #D4A574;
    --accent-hover: #C49464;
    --accent-bright: #E4C094;
    
    /* Neutral Colors - Warm Cream */
    --background: #FAFAF7;
    --foreground: #2C2C2C;
    --card: #FFFFFF;
    --card-foreground: #2C2C2C;
    
    /* Muted Colors - Soft Beige */
    --muted: #E8E4DF;
    --muted-foreground: #6B6B6B;
    
    /* Border & Input */
    --border: #E8E4DF;
    --input: #F5F1ED;
    --ring: #D97757;
    
    /* Status Colors */
    --destructive: #EF4444;
    --success: #10B981;
    --warning: #F59E0B;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Typography Scale */
    --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: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows - Terracotta Tinted */
    --shadow-sm: 0 1px 2px 0 rgba(217, 119, 87, 0.1);
    --shadow: 0 1px 3px 0 rgba(217, 119, 87, 0.15), 0 1px 2px -1px rgba(217, 119, 87, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(217, 119, 87, 0.2), 0 2px 4px -2px rgba(217, 119, 87, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(217, 119, 87, 0.25), 0 4px 6px -4px rgba(217, 119, 87, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(217, 119, 87, 0.3), 0 8px 10px -6px rgba(217, 119, 87, 0.25);
    --shadow-2xl: 0 25px 50px -12px rgba(217, 119, 87, 0.4);
    --shadow-glow: 0 0 30px rgba(217, 119, 87, 0.5);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    
    /* Container */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
}

/* Dark Mode Variables */
.dark {
    --primary: #E8956F;
    --primary-hover: #D97757;
    --primary-light: #F0B090;
    
    --background: #1A1A1A;
    --foreground: #E8E4DF;
    --card: #2C2C2C;
    --card-foreground: #E8E4DF;
    
    --muted: #3C3C3C;
    --muted-foreground: #B0B0B0;
    
    --border: #3C3C3C;
    --input: #2C2C2C;
}

/* ========================================
   BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-4);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   LAYOUT - CONTAINER
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 1280px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* ========================================
   ELEMENTOR COMPATIBILITY FIXES
   ======================================== */

/* Prevent Elementor from squeezing content */
body.tripvella-elementor,
body.tripvella-elementor-page {
    overflow-x: hidden;
}

/* Override Elementor container styles when using theme */
.tripvella-elementor-page .elementor-section.elementor-section-boxed > .elementor-container,
.tripvella-elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
}

/* Ensure theme container takes full available width */
.tripvella-elementor-page .container {
    max-width: 100%;
    width: 100%;
}

@media (min-width: 1280px) {
    .tripvella-elementor-page .container {
        max-width: 1400px;
    }
}

@media (min-width: 1536px) {
    .tripvella-elementor-page .container {
        max-width: 1600px;
    }
}

/* Fix Elementor default content width */
.tripvella-elementor-page .elementor-section-wrap {
    width: 100%;
}

/* Prevent Elementor from limiting section width */
.tripvella-elementor-page section.elementor-section {
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

/* Full width sections */
.tripvella-elementor-page .elementor-section.elementor-section-full_width {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: relative !important;
}

/* Ensure inner content doesn't get squeezed */
.tripvella-elementor-page .elementor-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Fix for Elementor Pro header/footer if used */
.elementor-location-header,
.elementor-location-footer {
    width: 100%;
}

/* Ensure proper navbar width in Elementor pages */
.tripvella-elementor .navbar,
.tripvella-elementor-page .navbar {
    width: 100%;
}

/* Fix site-main to not be squeezed */
.tripvella-elementor .site-main,
.tripvella-elementor-page .site-main {
    width: 100%;
    max-width: 100%;
}

/* Force full width on Elementor page wrapper */
.tripvella-elementor-page #page,
.tripvella-elementor #page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Override any Elementor boxed container limits */
.tripvella-elementor-page .elementor-section-boxed > .elementor-container {
    width: 100% !important;
    max-width: 100% !important;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--ring);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Primary Button */
.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    color: white;
}

/* Outline Button */
.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Ghost Button */
.btn-ghost {
    background-color: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background-color: var(--muted);
}

/* White Button (for dark backgrounds) */
.btn-white {
    background-color: white;
    color: var(--primary);
}

.btn-white:hover {
    background-color: var(--muted);
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-full {
    width: 100%;
}

/* ========================================
   CARDS
   ======================================== */
.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: var(--space-6);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.card-text {
    color: var(--muted-foreground);
    margin-bottom: var(--space-4);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background-color: var(--primary);
    color: white;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    color: var(--foreground);
    background-color: var(--input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-input::placeholder {
    color: var(--muted-foreground);
}

/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-wrapper .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: var(--space-10);
}

.select-arrow {
    position: absolute;
    right: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--muted-foreground);
    pointer-events: none;
    transition: transform var(--transition-base);
}

.custom-select-wrapper .form-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: 'Playfair Display', serif;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
}

.navbar-brand-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    overflow: hidden;
}

.navbar-brand-logo .brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.navbar-nav {
    display: none;
    align-items: center;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .navbar-nav {
        display: flex;
    }
}

.nav-link {
    color: var(--foreground);
    font-weight: 500;
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-16) var(--space-4);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 100%;
    width: 100%;
    padding: 0 var(--space-4);
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 100%;
        padding: 0 var(--space-8);
    }
}

@media (min-width: 1280px) {
    .hero-content {
        max-width: 100%;
        padding: 0 var(--space-12);
    }
}

.hero-title {
    font-size: var(--text-4xl);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--text-6xl);
    }
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: var(--text-xl);
    }
}

/* Search Box */
.search-box {
    background-color: white;
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-2xl);
    max-width: 100%;
}

@media (min-width: 768px) {
    .search-box {
        padding: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .search-box {
        padding: var(--space-6) var(--space-10);
        width: 100%;
        max-width: none;
    }
}

@media (min-width: 1280px) {
    .search-box {
        padding: var(--space-8) var(--space-16);
        width: 100%;
        max-width: none;
    }
}

/* Search Grid - Auto-sizing layout */
.search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .search-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1.5rem;
        align-items: flex-end;
        justify-content: center;
    }
}

@media (min-width: 1280px) {
    .search-grid {
        gap: 2rem;
    }
}

.search-field {
    min-width: 0;
}

@media (min-width: 1024px) {
    .search-field {
        flex: 1 1 auto;
        min-width: 180px;
        max-width: 250px;
    }
    
    /* The button field - fixed width */
    .search-field:last-child {
        flex: 0 0 auto;
        min-width: 120px;
        max-width: 140px;
    }
}

@media (min-width: 1280px) {
    .search-field {
        min-width: 200px;
        max-width: 280px;
    }
    
    .search-field:last-child {
        min-width: 140px;
        max-width: 160px;
    }
}

.search-field label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--foreground);
    white-space: nowrap;
}

/* Inputs with auto-sizing */
.search-field .form-input,
.search-field .form-select {
    width: 100%;
}

@media (min-width: 1024px) {
    .search-field .form-input,
    .search-field .form-select {
        width: 100%;
        min-width: 0;
    }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: var(--space-16) 0;
}

.section-sm {
    padding: var(--space-12) 0;
}

.section-lg {
    padding: var(--space-24) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-12);
}

.section-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--text-4xl);
    }
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--muted-foreground);
}

/* Background Colors */
.bg-background { background-color: var(--background); }
.bg-white { background-color: white; }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-foreground { background-color: var(--foreground); }
.bg-muted { background-color: var(--muted); }

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* ========================================
   GRID SYSTEM
   ======================================== */
.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (min-width: 768px) {
    .grid-md-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-md-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-md-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .grid-lg-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-lg-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-lg-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ========================================
   ACTIVITIES GRID
   ======================================== */

/* Grid responsive for 4 columns */
.lg\:grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Grid responsive for 2 columns (Welcome Section) */
.lg\:grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.activity-card {
    text-align: center;
    padding: var(--space-6);
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.activity-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.activity-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.activity-desc {
    color: var(--muted-foreground);
    font-size: var(--text-sm);
    line-height: 1.5;
    flex-grow: 1;
}

/* ========================================
   ACTIVITIES MARQUEE SLIDER
   ======================================== */
.activities-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    position: relative;
}

.activities-marquee-wrapper::before,
.activities-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.activities-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--background) 0%, transparent 100%);
}

.activities-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--background) 0%, transparent 100%);
}

.activities-marquee {
    display: flex;
    gap: 2rem;
    animation: marquee-rtl 40s linear infinite;
    width: max-content;
}

.activities-marquee:hover {
    animation-play-state: paused;
}

/* Right to Left animation */
@keyframes marquee-rtl {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.activity-slide {
    flex: 0 0 auto;
    width: 300px;
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.activity-slide:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.activity-slide-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.activity-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.activity-slide:hover .activity-slide-image img {
    transform: scale(1.1);
}

.activity-slide-content {
    padding: 1.5rem;
}

.activity-slide-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.activity-slide-desc {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .activity-slide {
        width: 260px;
    }
    
    .activity-slide-image {
        height: 160px;
    }
    
    .activities-marquee-wrapper::before,
    .activities-marquee-wrapper::after {
        width: 60px;
    }
}

/* ========================================
   TOUR CARDS
   ======================================== */
.tour-grid {
    display: grid;
    gap: var(--space-6);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tour-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tour-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.tour-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.tour-card-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-card-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background-color: var(--primary);
    color: white;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.tour-card-content {
    padding: var(--space-4);
}

.tour-card-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    margin-bottom: var(--space-3);
}

.tour-card-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    margin-bottom: var(--space-4);
}

.tour-card-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
}

.tour-card-rating {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.tour-card-rating .star {
    color: var(--accent);
}

.tour-card-price {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
}

/* ========================================
   STATS
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .stats-grid {
        gap: var(--space-6);
    }
}

.stat-card {
    background-color: white;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.stat-number.primary { color: var(--primary); }
.stat-number.secondary { color: var(--secondary); }
.stat-number.accent { color: var(--accent); }

.stat-label {
    color: var(--muted-foreground);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    text-align: center;
    padding: var(--space-24) var(--space-4);
    position: relative;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: var(--text-3xl);
    color: white;
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: var(--text-4xl);
    }
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    justify-content: center;
    position: relative;
    z-index: 10;
}

.cta-buttons a {
    position: relative;
    z-index: 11;
    pointer-events: auto;
    cursor: pointer;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--foreground);
    color: white;
    padding: var(--space-12) 0;
}

.footer-grid {
    display: grid;
    gap: var(--space-8);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.footer-brand-logo {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    overflow: hidden;
}

.footer-brand-logo .brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    font-weight: 700;
}

/* Footer Logo Icon (Elementor) */
.footer-logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-logo-icon .brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-4);
}

.footer-title {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color var(--transition-base);
}

.footer-social a:hover {
    background-color: var(--accent);
    color: white;
}

.footer-bottom {
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.language-switcher {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-base);
}

.language-btn:hover {
    background-color: var(--muted);
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: var(--space-2);
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    z-index: 50;
    display: none;
}

.language-dropdown.active {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color var(--transition-base);
}

.language-option:hover {
    background-color: var(--muted);
}

.language-option.active {
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Text Colors */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-white { color: white; }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing */
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* Flex Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:block { display: block; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Icons */
.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */

/* Screen Reader Text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Alignment */
.alignleft {
    float: left;
    margin-right: var(--space-4);
}

.alignright {
    float: right;
    margin-left: var(--space-4);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery */
.gallery {
    display: grid;
    gap: var(--space-4);
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }

/* Captions */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    text-align: center;
    padding: var(--space-2);
}

/* Comments */
.comment-list {
    list-style: none;
}

.comment {
    padding: var(--space-4);
    border-bottom: 1px solid var(--border);
}

.comment-meta {
    margin-bottom: var(--space-2);
}

.comment-author {
    font-weight: 600;
}

.comment-date {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
}

.pagination a,
.pagination span {
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.pagination a:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination .current {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ========================================
   TAT LICENSE STYLES
   ======================================== */

/* Header TAT License */
.tat-license {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: var(--space-4);
    font-size: var(--text-xs);
    line-height: 1.2;
}

.tat-label {
    color: var(--muted-foreground);
    font-weight: 500;
}

.tat-number {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .tat-license {
        display: none;
    }
}

/* Footer TAT License */
.footer-tat-license {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: var(--text-sm);
}

.footer-tat-license svg {
    color: var(--success);
}

/* ========================================
   BRIGHT NAVY BLUE THEME ENHANCEMENTS
   ======================================== */

/* Glowing Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

/* Secondary Button - Golden Amber */
.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-hover) 0%, var(--secondary) 100%);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Enhanced Cards with Sunset Glow */
.activity-slide {
    border: 1px solid rgba(251, 146, 60, 0.2);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
}

.activity-slide:hover {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
    border-color: rgba(251, 146, 60, 0.4);
}

.tour-card {
    border: 1px solid rgba(251, 146, 60, 0.15);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.1);
}

.tour-card:hover {
    box-shadow: 0 8px 25px rgba(217, 119, 87, 0.2);
    border-color: rgba(217, 119, 87, 0.3);
}

/* CTA Section - Terracotta Gradient */
.cta-section {
    background: linear-gradient(135deg, #D97757 0%, #D4A574 50%, #E8956F 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* Enhanced Search Box */
.search-box {
    border: 2px solid rgba(217, 119, 87, 0.2);
    background: linear-gradient(145deg, #FFFFFF 0%, #FAFAF7 100%);
}

.search-box:focus-within {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(217, 119, 87, 0.2);
}

/* Navigation Enhancement */
.navbar {
    border-bottom: 1px solid rgba(217, 119, 87, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

/* Footer Enhancement - Warm Dark */
.footer {
    background: linear-gradient(180deg, #1A1A1A 0%, #2C2C2C 100%);
    color: #E8E4DF;
}

.footer a {
    color: #D97757;
    transition: color var(--transition-base);
}

.footer a:hover {
    color: #E8956F;
}

.footer-title {
    color: #E8E4DF;
    font-weight: 700;
}

.footer-text {
    color: #B0B0B0;
    line-height: 1.6;
}

.footer-brand-name {
    color: #E8E4DF;
    font-weight: 700;
}

.footer-brand-logo {
    background: linear-gradient(135deg, #D97757 0%, #D4A574 100%);
    color: #1A1A1A;
}

.footer-links li {
    color: #B0B0B0;
}

.footer-social a {
    color: #ffffff;
    transition: all var(--transition-base);
}

.footer-social a svg {
    fill: #ffffff;
    color: #ffffff;
}

.footer-social a:hover {
    color: #ffffff;
    opacity: 0.75;
    transform: translateY(-3px);
}

.footer-social a:hover svg {
    fill: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(217, 119, 87, 0.2);
    color: #6B6B6B;
}

.footer-tat-license {
    color: #D97757;
    font-weight: 600;
}

/* Section Header Enhancement */
.section-title {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Card Enhancement */
.stat-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FAFAF7 100%);
    border: 1px solid rgba(217, 119, 87, 0.2);
    box-shadow: 0 4px 15px rgba(217, 119, 87, 0.1);
}

.stat-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Activity Marquee Enhancement */
.activities-marquee-wrapper::before {
    background: linear-gradient(to right, #FAFAF7 0%, transparent 100%);
}

.activities-marquee-wrapper::after {
    background: linear-gradient(to left, #FAFAF7 0%, transparent 100%);
}

/* Form Input Enhancement */
.form-input:focus,
.form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.2);
}

/* Custom Select Arrow */
.select-arrow {
    color: var(--primary);
}

/* Link Hover Enhancement */
a:hover {
    color: var(--primary-light);
}

/* TAT License Badge */
.tat-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   SINGLE TRIP PAGE - ENHANCED UI/UX
   ======================================== */

/* Trip Hero Section */
.trip-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    padding: 4rem 0 3rem;
    color: white;
}

.trip-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.trip-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.trip-hero .container {
    position: relative;
    z-index: 1;
}

.trip-hero-content {
    max-width: 900px;
}

/* Breadcrumbs */
.trip-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.trip-breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.trip-breadcrumbs a:hover {
    opacity: 0.7;
}

.trip-breadcrumbs .separator {
    opacity: 0.5;
}

.trip-breadcrumbs .current {
    opacity: 0.7;
}

/* Trip Meta Badges */
.trip-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: var(--text-sm);
    font-weight: 600;
}

.badge-primary {
    background: white;
    color: var(--primary);
}

.badge-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(4px);
}

/* Trip Hero Title */
.trip-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Trip Quick Info */
.trip-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.info-value {
    font-size: var(--text-lg);
    font-weight: 600;
}

.info-value.price {
    color: var(--primary-light);
}

/* Trip Gallery Section */
.trip-gallery-section {
    padding: 2rem 0;
    background: var(--background);
}

.trip-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.gallery-main {
    position: relative;
    grid-row: span 2;
    min-height: 400px;
}

.gallery-main a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-zoom {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-main:hover .gallery-zoom {
    opacity: 1;
}

.gallery-zoom svg {
    width: 20px;
    height: 20px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-xl);
    font-weight: 700;
}

/* Trip Content Section */
.trip-content-section {
    padding: 4rem 0;
    background: var(--background);
}

.trip-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .trip-content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Content Blocks */
.content-block {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.block-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.block-content {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.block-content p {
    margin-bottom: 1rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background);
    border-radius: var(--radius-md);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 2rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: var(--text-sm);
}

.timeline-content {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.timeline-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--muted-foreground);
}

/* Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.fact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: var(--background);
    border-radius: var(--radius-md);
}

.fact-label {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
}

.fact-value {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--foreground);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: var(--background);
    border: none;
    font-size: var(--text-base);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--muted);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer > div {
    padding: 0 1.25rem 1.25rem;
    color: var(--muted-foreground);
}

/* Reviews */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.rating-big {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.rating-stars .star {
    width: 24px;
    height: 24px;
    fill: #e5e7eb;
}

.rating-stars .star.filled {
    fill: #fbbf24;
}

.rating-count {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
}

.review-rating {
    display: flex;
    gap: 0.125rem;
}

.review-rating .star {
    width: 16px;
    height: 16px;
    fill: #e5e7eb;
}

.review-rating .star.filled {
    fill: #fbbf24;
}

.review-content {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Sidebar */
.trip-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.booking-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1.5rem;
}

.price-display {
    text-align: center;
}

.price-from {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.price-main {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin: 0.5rem 0;
}

.price-original {
    font-size: var(--text-lg);
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 0.5rem;
}

.price-note {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.booking-card-body {
    padding: 1.5rem;
}

.booking-quick-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--foreground);
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.booking-or-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
}

.booking-or-divider::before,
.booking-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.booking-card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-sm);
    color: var(--muted-foreground);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Contact Card */
.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-card h3 {
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-link svg {
    width: 20px;
    height: 20px;
}

/* Related Trips Section */
.related-trips-section {
    padding: 4rem 0;
    background: var(--muted);
}

.related-trips-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.related-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-trips-grid .trip-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-trips-grid .trip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.related-trips-grid .trip-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-trips-grid .trip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-trips-grid .trip-card:hover .trip-card-image img {
    transform: scale(1.05);
}

.related-trips-grid .trip-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
}

.related-trips-grid .trip-card-content {
    padding: 1.5rem;
}

.related-trips-grid .trip-card-content h3 {
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
}

.related-trips-grid .trip-card-content h3 a {
    color: var(--foreground);
    text-decoration: none;
}

.related-trips-grid .trip-card-content h3 a:hover {
    color: var(--primary);
}

.related-trips-grid .trip-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted-foreground);
    font-size: var(--text-sm);
}

.related-trips-grid .trip-card-price {
    font-weight: 700;
    color: var(--primary);
    font-size: var(--text-base);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .trip-hero {
        min-height: auto;
        padding: 6rem 0 2rem;
    }
    
    .trip-quick-info {
        gap: 1rem;
    }
    
    .info-item {
        flex: 1 1 calc(50% - 0.5rem);
    }
    
    .trip-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        grid-row: auto;
        min-height: 250px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .highlights-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .itinerary-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.5rem;
        width: 24px;
        height: 24px;
        font-size: var(--text-xs);
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .related-trips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .trip-hero-title {
        font-size: var(--text-2xl);
    }
    
    .info-item {
        flex: 1 1 100%;
    }
    
    .gallery-thumbs {
        display: none;
    }
    
    .booking-card-header {
        padding: 1rem;
    }
    
    .price-main {
        font-size: var(--text-2xl);
    }
}