 
/* ========================================
   1. CSS VARIABLES & RESET
   ======================================== */
:root {
    --primary: #0f6641;
    --primary-foreground: #ffffff;
    --secondary: #f1fff7;
    --accent: #1e8a5d;
    --background: #ffffff;
    --foreground: #1f2937;
    --muted-foreground: #6b7280;
    --border: rgba(15, 102, 65, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #f9fafb;
    color: var(--foreground);
    line-height: 1.6;
}

/* ========================================
   2. NAVIGATION
   ======================================== */
nav {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}
/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */
/* Hide hamburger on desktop */
.hamburger-btn {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Hamburger Button Styles */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when open */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Dropdown */
.mobile-menu {
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--foreground);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s, color 0.2s;
}

.mobile-menu-link:hover {
    background: var(--secondary);
    color: var(--primary);
}

.mobile-book-btn-nav {
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 0.875rem;
    font-size: 1rem;
}
/* ========================================
   NAV AUTH STYLES
   ======================================== */

.nav-auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-login-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.nav-login-link:hover {
    color: var(--primary);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-user-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.nav-user-link:hover {
    background: var(--muted);
}

.nav-user-icon {
    font-size: 1.25rem;
}

.nav-user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-logout-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem;
    transition: color 0.2s;
}

.nav-logout-link:hover {
    color: #dc2626;
}

/* Hide auth buttons on mobile (shown in mobile menu) */
@media screen and (max-width: 768px) {
    .nav-auth-buttons,
    .nav-user {
        display: none;
    }
}
/* ========================================
   USER ICON MENU (Viator Style)
   ======================================== */

.nav-user-menu {
    position: relative;
}

.user-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.user-icon-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-icon-svg {
    color: var(--muted-foreground);
}

.user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--muted);
}

.dropdown-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-user-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dropdown-user-name {
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-user-email {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--foreground);
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: var(--muted);
}

.dropdown-item svg {
    color: var(--muted-foreground);
    flex-shrink: 0;
}

.dropdown-logout {
    color: #dc2626;
}

.dropdown-logout svg {
    color: #dc2626;
}

/* Hide on mobile */
@media screen and (max-width: 768px) {
    .nav-user-menu {
        display: none;
    }
}
/* ========================================
   TOUR GUIDES PAGE STYLES
   Add this to your styles.css
   ======================================== */

/* --- Guides Hero Section --- */
.guides-hero {
    position: relative;
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1547970810-dc1eac37d174?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.guides-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.guides-hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: white;
}

.guides-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.guides-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.guides-hero-text {
    font-size: 1.125rem;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.7;
}

/* --- Stats Section --- */
.guides-stats-wrapper {
    max-width: 1280px;
    margin: -4rem auto 3rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.guides-stats-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.guides-stat-icon {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.guides-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.guides-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* --- Filter Section --- */
.guides-filter-section {
    max-width: 1280px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
}

.guides-filter-wrapper {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.guides-filter-wrapper::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: white;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* --- Guides Grid --- */
.guides-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* --- Guide Card --- */
.guide-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.guide-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.guide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-image {
    transform: scale(1.05);
}

.guide-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.guide-verified-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.guide-rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.guide-rating-badge .star {
    color: #fbbf24;
}

.guide-rating-badge .reviews {
    color: var(--muted-foreground);
    font-weight: 400;
}

.guide-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
}

.guide-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.guide-title {
    font-size: 0.875rem;
    opacity: 0.85;
}

/* --- Guide Content --- */
.guide-content {
    padding: 1.5rem;
}

.guide-quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.quick-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.quick-stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
}

.guide-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.guide-location svg {
    color: var(--primary);
    flex-shrink: 0;
}

.guide-bio {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guide-specialties {
    margin-bottom: 1rem;
}

.specialty-label {
    display: block;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.specialty-tag {
    background: var(--secondary);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.guide-languages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.guide-languages svg {
    color: var(--primary);
}

.languages-label {
    color: var(--muted-foreground);
}

.languages-list {
    color: var(--foreground);
    font-weight: 500;
}

/* ========================================
   GUIDE CARD ACTIONS
   ======================================== */

.guide-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-view-profile {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-view-profile:hover {
    background: var(--accent);
}

.btn-contact-guide {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s;
}

.btn-contact-guide:hover {
    background: #20bd5a;
}

/* Mobile: Stack buttons */
@media (max-width: 480px) {
    .guide-card-actions {
        flex-direction: column;
    }
}
/* --- CTA Section --- */
.guides-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    margin-bottom: -4rem;
}

.guides-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.guides-cta-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guides-cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.guides-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
}


/* ========================================
   3. BUTTONS (Global)
   ======================================== */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--accent);
}

.btn-view {
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-view:hover {
    background-color: var(--accent);
}

/* ========================================
   4. HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
}

/* ========================================
   5. SEARCH SECTION
   ======================================== */
.search-section {
    max-width: 1280px;
    margin: -4rem auto 0;
    padding: 0 1.5rem 0.5rem;
    position: relative;
    z-index: 10;
}

.search-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: -2rem;
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

/* Search Field */
.search-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 0;
}

.search-field:hover {
    border-color: var(--primary);
}

.search-field:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 102, 65, 0.1);
}

/* Green Circle Icon */
.search-field-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.search-field-icon svg {
    width: 25px;
    height: 25px;
}

/* Field Content */
.search-field-content {
    flex: 1;
    min-width: 0;
}

.search-field-content label {
    display: block;
    font-size: 0.7rem;
    color: var(--muted-foreground);
    margin-bottom: 0.125rem;
}

.search-field-content select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    cursor: pointer;
    padding: 0;
    padding-right: 1.25rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.search-field-content select:focus {
    outline: none;
}

/* Search Button */
.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.85rem 1.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--accent);
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-section {
        margin-bottom: -5rem;
    }
    .search-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .search-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}



/* ========================================
   6. TOURS SECTION (Homepage)
   ======================================== */
.tours-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1.5rem 2.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.section-header p {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9375rem;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
/* Explore More Button */
.explore-more-wrapper {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-explore-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 102, 65, 0.3);
}

.btn-explore-more:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 102, 65, 0.4);
}

.btn-explore-more svg {
    transition: transform 0.3s ease;
}

.btn-explore-more:hover svg {
    transform: translateX(4px);
}

/* ========================================
   7. TOUR CARDS
   ======================================== */
.tour-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

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

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.tour-rating-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    padding: 6px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.star-icon {
    color: #fbbf24;
}

.rating-val {
    color: var(--foreground);
}

.review-count {
    color: var(--muted-foreground);
    font-weight: 500;
}

.tour-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.tour-vendor {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.vendor-text {
    color: var(--muted-foreground);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
}

.tour-info-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.info-row {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
}

.icon-green {
    width: 16px;
    height: 16px;
    color: var(--primary);
    margin-right: 6px;
    flex-shrink: 0;
}

.icon-sm {
    width: 14px;
    height: 14px;
}

.gap-right {
    margin-right: 16px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px;
}

.price-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 500;
    width: 100%;
}

.price-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin-left: 2px;
}

/* ========================================
   8. DESTINATION CARDS
   ======================================== */
.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
/* Destination Country Tag */
.destination-country-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(4px);
}

/* ========================================
   9. TOUR DETAIL - PAGE LAYOUT
   ======================================== */
.tour-detail-content {
    background:rgb(255, 255, 255);
}

.tour-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.back-button-wrapper {
    margin-bottom: 1.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    text-decoration: underline;
}

.tour-detail-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--foreground);
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
}

.tour-main-content {
    min-width: 0;
}

.tour-sidebar {
    position: relative;
}

.tour-detail-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    height: 450px;
}

.tour-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   10. TOUR DETAIL - HEADER PILLS
   ======================================== */
.tour-header-pills {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background: white;
}

.pill-rating {
    background: white;
}

.pill-star {
    color: #fbbf24;
    font-size: 1rem;
}

.pill-value {
    font-weight: 600;
    color: var(--foreground);
}

.pill-label {
    color: var(--muted-foreground);
}

.pill-operator {
    color: var(--primary);
}

.pill-operator svg {
    color: var(--primary);
}

.pill-verified {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #059669;
}

.pill-verified svg {
    color: #059669;
}

/* ========================================
   11. TOUR DETAIL - INFO BAR
   ======================================== */
.tour-info-bar {
    display: flex;
    justify-content: space-between;
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-bar-icon {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.info-bar-icon svg {
    width: 24px;
    height: 24px;
}

.info-bar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-bar-label {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.info-bar-value {
    font-size: 1rem;
    color: var(--foreground);
    font-weight: 600;
}

/* ========================================
   12. TOUR DETAIL - SECTIONS
   ======================================== */
.tour-section {
    padding: 1.5rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.tour-section-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--foreground);
}

.tour-section-text {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.highlights-list,
.included-list,
.excluded-list {
    display: grid;
    gap: 0.75rem;
}

.highlight-item,
.included-item,
.excluded-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

.highlight-icon,
.included-icon {
    color: var(--primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.excluded-icon {
    color: var(--muted-foreground);
    font-size: 1rem;
    flex-shrink: 0;
}

.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.itinerary-item {
    display: flex;
    gap: 1rem;
}

.day-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.day-content {
    flex: 1;
}

.day-content h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
    color: var(--foreground);
}

.day-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* ========================================
   13. TOUR DETAIL - DETAIL CARDS
   ======================================== */
.detail-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.detail-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.detail-item {
    margin-bottom: 1.25rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

.detail-item-value {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}
/* Rules & Regulations Section */
.tour-rules-section {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.tour-rules-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: black;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}
/* Rules & Regulations - Mobile */
@media (max-width: 768px) {
    .tour-rules-section {
        padding: 1rem;
        margin: 1.5rem 0;
        border-radius: 8px;
    }
    
    .tour-rules-section h3 {
        font-size: 1rem;
    }
    
    .rules-list li {
        padding: 0.625rem 0;
        padding-left: 1.25rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }
}



/* ========================================
   BOOKING CARD 
   ======================================== */

.tour-sidebar {
    position: relative;
    margin-bottom: -2rem;
}

.booking-card {
    background: var(--background-primary, #fff);
    padding: 1rem 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--border-primary, #dcdfe4);
    position: sticky;
    top: 5.5rem;
}

/* Price Section - Exact GYG Layout */
.price-info {
    margin-bottom: 0.875rem;
}

.price-info-from {
    display: block;
    font-size: 0.875rem;
    color: var(--label-secondary, #63687a);
    margin-bottom: 0.125rem;
}

.price-info-row {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.price-info-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary, #0f6641);
    line-height: 1.2;
}

.price-info-per {
    font-size: 0.875rem;
    color: var(--label-primary, #1a2b49);
}

/* Selector Chips - GYG Style */
.c-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background-primary, #fff);
    border: 1px solid var(--border-primary, #dcdfe4);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.c-chip:hover {
    border-color: var(--border-primary-hovered, #a0a8b6);
}

.c-chip:focus-within {
    border-color: var(--primary, #0f6641);
    outline: none;
}

.c-chip__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.c-chip__icon {
    color: var(--label-primary, #1a2b49);
    display: flex;
    align-items: center;
}

.c-chip__icon svg {
    width: 20px;
    height: 20px;
}

.c-chip__label {
    font-size: 0.9375rem;
    color: var(--label-primary, #1a2b49);
}

.c-chip__right {
    display: flex;
    align-items: center;
}

.c-chip__select {
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    color: var(--label-primary, #1a2b49);
    cursor: pointer;
    padding: 0;
    padding-right: 1.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2363687a' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    text-align: right;
}

.c-chip__select:focus {
    outline: none;
}

/* Check Availability Button */
.c-button-check {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--primary, #0f6641);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    margin-top: 0.25rem;
}

.c-button-check:hover {
    background: var(--accent, #0a4f32);
}

/* Departures Count */
.departures-count {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--label-secondary, #63687a);
    margin: 0.5rem 0 0;
}

/* Divider */
.booking-divider {
    border: none;
    border-top: 1px solid var(--separator-primary, #ebeef1);
    margin: 0.875rem 0;
}

/* Icon Label Section */
.icon-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.icon-label__icon {
    flex-shrink: 0;
    color: var(--primary, #0f6641);
    margin-top: 0.125rem;
}

.icon-label__icon svg {
    width: 20px;
    height: 20px;
}

.icon-label__text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.icon-label__term {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--label-primary, #1a2b49);
    margin: 0;
}

.icon-label__description {
    font-size: 0.75rem;
    color: var(--label-secondary, #63687a);
    margin: 0;
    line-height: 1.4;
}

/* Quick Info Section */
.booking-quick-info {
    margin-top: 0.875rem;
    padding-top: 0.875rem;
    border-top: 1px solid var(--separator-primary, #ebeef1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.quick-info-item svg {
    flex-shrink: 0;
    color: var(--primary, #0f6641);
    width: 18px;
    height: 18px;
    margin-top: 0.0625rem;
}

.quick-info-text {
    display: flex;
    flex-direction: column;
}

.quick-info-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--label-secondary, #63687a);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.quick-info-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--label-primary, #1a2b49);
}

/* No Departures */
.no-departures-sidebar {
    text-align: center;
    padding: 0.5rem 0;
}

.no-departures-sidebar p {
    color: var(--label-secondary, #63687a);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.btn-contact-small {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--surface-secondary, #ebeef1);
    color: var(--label-primary, #1a2b49);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Mobile: Hide sidebar */
@media (max-width: 968px) {
    .tour-sidebar {
        display: none;
    }
}

/* ========================================
   DEPARTURES SECTION - Single Container
   ======================================== */

.departures-section {
    margin: 2rem 0;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Container - One Box for Everything */
.departures-container {
    background:#fafafa;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.departures-section.highlight .departures-container {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 102, 65, 0.2);
}

/* Header Section (top part inside container) */
.departures-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    background: white;
}

.departures-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.departures-header-top h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.departures-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    color: var(--muted-foreground);
    transition: all 0.2s;
}

.departures-close-btn:hover {
    background: #e5e5e5;
    color: var(--foreground);
}

.departures-tour-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.625rem 0;
    color: var(--foreground);
}

.departures-tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.departures-tour-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.departures-tour-meta svg {
    flex-shrink: 0;
}

.departures-tour-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--foreground);
}

.departures-tour-location svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Time Slots Wrapper (inside container, below header) */
.departure-slots-wrapper {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

/* Individual Slot Card */
.departure-slot-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.departure-slot-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.slot-urgency-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
    margin-bottom: 0.875rem;
}

.slot-date-info {
    margin-bottom: 1rem;
}

.slot-date-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.slot-date-primary {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--foreground);
}

.slot-date-range {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.125rem;
}

.slot-price-row {
    margin-bottom: 1rem;
}

.slot-price-info {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.slot-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--foreground);
}

.slot-price-per {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.btn-book-slot {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    transition: background 0.2s;
    margin-bottom: 0.875rem;
}

.btn-book-slot:hover {
    background: var(--accent);
}

.slot-cancel-note {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--accent);
}

.slot-cancel-note svg {
    flex-shrink: 0;
}

/* No Slots Message */
.no-slots-message {
    padding: 2rem;
    text-align: center;
    color: var(--muted-foreground);
}

/* Scrollbar Styling */
.departure-slots-wrapper::-webkit-scrollbar {
    width: 6px;
}

.departure-slots-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.departure-slots-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.departure-slots-wrapper::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .departures-section {
        margin: 1.5rem 0;
    }
    
    .departures-header {
        padding: 1rem;
    }
    
    .departures-header-top h3 {
        font-size: 1rem;
    }
    
    .departure-slots-wrapper {
        padding: 0.75rem;
        gap: 0.75rem;
        max-height: 400px;
    }
    
    .departure-slot-card {
        padding: 1rem;
    }
    
    .slot-price {
        font-size: 1.25rem;
    }
    
    .btn-book-slot {
        padding: 1rem;
    }
}


/* ========================================
   15. TOUR DETAIL - OPERATOR SECTION
   ======================================== */
.operator-card {
    padding: 2rem;
    margin-bottom: -2rem;
}

.operator-header {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.operator-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.operator-info {
    flex: 1;
}

.operator-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.operator-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.operator-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #a7f3d0;
}

.operator-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.operator-rating {
    font-weight: 600;
    color: var(--foreground);
}

.operator-detail {
    position: relative;
    padding-left: 1rem;
}

.operator-detail::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--muted-foreground);
    border-radius: 50%;
}

.operator-description {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.operator-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-operator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

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

.btn-tours:hover {
    background: var(--accent);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}
.btn-operator.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-operator.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ========================================
   16. TOUR DETAIL - REVIEWS SECTION
   ======================================== */

.reviews-section {
    margin: 3rem auto;
    padding: 4rem 2rem;
    background: white;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    border-radius: 16px;
}

.reviews-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Reviews Overview (Score + Breakdown) */
.reviews-overview {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

/* Left: Big Score */
.reviews-score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 120px;
}

.score-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);  /* Changed to accent color */
    line-height: 1;
}

.score-stars {
    margin: 0.5rem 0;
}

.score-stars .star {
    color: #e5e7eb;
    font-size: 1.125rem;
}

.score-stars .star.filled {
    color: #fbbf24;
}

.score-count {
    font-size: 0.9375rem;
    color: #6b7280;
}

/* Right: Breakdown Bars */
.reviews-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    max-width: 450px;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.breakdown-label {
    font-size: 0.9375rem;
    color: #1a1a1a;
    width: 36px;
    flex-shrink: 0;
}

.breakdown-bar {
    flex: 1;
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    background: var(--primary);  /* Changed to accent color */
    border-radius: 5px;
    transition: width 0.3s ease;
}

.breakdown-count {
    font-size: 0.9375rem;
    color: #6b7280;
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}

/* Write Review Inline Form */
.write-review-inline {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.write-review-inline h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.review-form-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.star-rating-select {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-label {
    font-size: 0.9375rem;
    color: #6b7280;
}

.star-select {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
}

.star-option {
    font-size: 1.75rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
}

.star-option:hover,
.star-option.hover {
    color: #fbbf24;
    transform: scale(1.1);
}

.star-option.selected {
    color: #fbbf24;
}

/* Reverse order hover effect */
.star-select:hover .star-option {
    color: #d1d5db;
}

.star-select .star-option:hover,
.star-select .star-option:hover ~ .star-option {
    color: #fbbf24;
}

.star-select .star-option.selected,
.star-select .star-option.selected ~ .star-option {
    color: #fbbf24;
}

.review-textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

.review-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 138, 93, 0.1);
}

.review-textarea::placeholder {
    color: #9ca3af;
}

.review-location-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
}

.review-location-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 138, 93, 0.1);
}

.review-location-input::placeholder {
    color: #9ca3af;
}

.btn-submit-review {
    align-self: flex-start;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit-review:hover {
    background: var(--accent);
}

/* Login Prompt & Submitted Message */
.review-login-prompt,
.review-submitted-msg {
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.review-login-prompt a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.review-login-prompt a:hover {
    text-decoration: underline;
}

.review-submitted-msg {
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    font-weight: bold;
}

.review-error {
    color: #dc2626;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.review-card {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.review-card:first-child {
    padding-top: 0;
}

.review-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.avatar-initial {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
}

.verified-badge {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.reviewer-location {
    font-size: 0.9375rem;
    color: #6b7280;
}

.review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.review-stars .star {
    font-size: 1rem;
    color: #e5e7eb;
}

.review-stars .star.filled {
    color: #fbbf24;
}

.review-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.review-text {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.no-reviews {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

/* Show All Button */
.reviews-show-more {
    text-align: center;
    margin-top: 2rem;
}

.btn-show-all {
    background: white;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-show-all:hover {
    background: var(--accent);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .reviews-section {
        margin: 1.5rem auto;
        padding: 1.5rem 1rem;
    }
    
    .reviews-overview {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .reviews-breakdown {
        width: 100%;
        max-width: none;
    }
    
    .score-number {
        font-size: 3rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-meta {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

/* ========================================
   17. RELATED TOURS SECTION
   ======================================== */
.related-section {
    background: #f9fafb;
    padding: 3rem 0;
    margin-top: 2rem;
    margin-bottom: -4rem;
}

.related-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.related-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.scroll-buttons {
    display: flex;
    gap: 0.5rem;
}

.scroll-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--foreground);
}

.scroll-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.related-tours-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.related-tours-scroll::-webkit-scrollbar {
    display: none;
}

.related-tours-scroll .tour-card {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
}

.no-related {
    color: var(--muted-foreground);
    padding: 2rem;
    text-align: center;
    width: 100%;
}

/* ========================================
   18. FOOTER
   ======================================== */
footer a:hover {
    color: var(--primary) !important;
}
.site-footer {
    background: var(--foreground);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column {
    min-width: 0; /* Prevents overflow */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-heading {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-newsletter-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-email-input {
    flex: 1;
    min-width: 140px;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    outline: none;
    font-size: 0.875rem;
}

.footer-email-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-email-input:focus {
    border-color: var(--primary);
}

.footer-subscribe-btn {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.footer-subscribe-btn:hover {
    background: var(--accent);
}

.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin: 0;
}

.mobile-booking-bar {
    display: none;
}
/* Inline Booking Section - Mobile Only */
.inline-booking-section {
    display: none;
}
/* ========================================
   DESTINATIONS PAGE STYLES
   ======================================== */

/* --- Destinations Hero Section --- */
.destinations-hero {
    position: relative;
    height: 450px;
    background-image: url('https://images.unsplash.com/photo-1547970810-dc1eac37d174?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.destinations-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

.destinations-hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: white;
}

.destinations-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.destinations-hero-text {
    font-size: 1.125rem;
    max-width: 650px;
    opacity: 0.9;
    line-height: 1.7;
}

/* --- Stats Section --- */
.destinations-stats-wrapper {
    max-width: 1280px;
    margin: -4rem auto 3rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.destinations-stats-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.destinations-stat-icon {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.destinations-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.destinations-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* --- Search Section --- */
.destinations-search-section {
    max-width: 1280px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
}

.destinations-search-wrapper {
    display: flex;
    gap: 1rem;
}

.destinations-search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.5rem;
}

.destinations-search-box svg {
    color: var(--muted-foreground);
    flex-shrink: 0;
}

.destinations-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.destinations-search-input::placeholder {
    color: var(--muted-foreground);
}

.destinations-sort-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    min-width: 200px;
}

.destinations-sort-box svg {
    color: var(--muted-foreground);
    flex-shrink: 0;
}

.destinations-sort-select {
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    cursor: pointer;
    flex: 1;
}

/* --- Explore Destinations Section --- */
.explore-destinations-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.explore-destinations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.explore-destinations-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.explore-destinations-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Country Cards Grid --- */
.country-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.country-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.country-card-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.country-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.country-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
}

.country-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    color: white;
}

.country-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.country-tours {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.country-explore-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.country-explore-link:hover {
    opacity: 0.8;
}

/* --- CTA Section --- */
.destinations-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: -4rem;
}

.destinations-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.destinations-cta-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.destinations-cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.destinations-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
}
/* ========================================
   AUTHENTICATION PAGES
   ======================================== */

.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--muted);
}

.auth-container {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-row-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-input {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.field-error {
    font-size: 0.8rem;
    color: #dc2626;
}

.form-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin: 0;
}

.btn-auth {
    background: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.btn-auth:hover {
    background: var(--accent);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-footer p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    padding: 0 1rem;
    color: var(--muted-foreground);
    font-size: 0.85rem;
}

/* Google OAuth Button */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-google:hover {
    background: var(--muted);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ========================================
   PROFILE PAGE
   ======================================== */

.profile-page {
    padding: 2rem 0;
    min-height: 80vh;
    background: var(--muted);
}

.profile-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.profile-header {
    margin-bottom: 2rem;
}

.profile-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.profile-header p {
    color: var(--muted-foreground);
}

.profile-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-booking-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: box-shadow 0.2s;
    background: white;
}

.profile-booking-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.profile-booking-image {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-booking-image .no-image {
    width: 100%;
    height: 100%;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.profile-booking-details {
    flex: 1;
}

.profile-booking-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-booking-destination {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.profile-booking-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.profile-booking-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.profile-booking-status-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.profile-booking-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-paid {
    background: #d1fae5;
    color: #065f46;
}

.status-confirmed {
    background: #dbeafe;
    color: #1e40af;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.status-completed {
    background: #e0e7ff;
    color: #3730a3;
}

.profile-booking-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.no-bookings {
    text-align: center;
    padding: 3rem 1rem;
}

.no-bookings svg {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.no-bookings h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.no-bookings p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.btn-browse {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.btn-browse:hover {
    background: var(--accent);
}

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

.btn-logout {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

.btn-logout:hover {
    text-decoration: underline;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-container {
        padding: 1.5rem;
    }

    .profile-booking-card {
        flex-direction: column;
    }

    .profile-booking-image {
        width: 100%;
        height: 150px;
    }

    .profile-booking-status-price {
        flex-direction: row;
        align-items: center;
        margin-top: 0.5rem;
    }
}
/* ========================================
   TOURS FILTERS
   ======================================== */

.tours-filters-bar {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tours-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.filter-search {
    flex: 1;
    min-width: 180px;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9375rem;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 138, 93, 0.1);
}

.filter-select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9375rem;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    min-width: 140px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent);
}

.filter-search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-search-btn:hover {
    background: var(--primary);
}

.clear-filters-btn {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s;
}

.clear-filters-btn:hover {
    color: var(--accent);
}

/* Active Filter Tags */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 138, 93, 0.1);
    color: var(--primary);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.remove-filter {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1;
    margin-left: 0.25rem;
}

.remove-filter:hover {
    color: #dc2626;
}

/* Results Header */
.tours-results-header {
    margin-bottom: 1.5rem;
}

.results-count {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin: 0;
}

.results-count strong {
    color: var(--foreground);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.no-results h3 {
    margin-bottom: 0.5rem;
    color: var(--foreground);
    font-size: 1.25rem;
}

.no-results p {
    color: var(--muted-foreground);
}

.no-results a {
    color: var(--accent);
    font-weight: 500;
}

/* Tour Vendor */
.tour-vendor {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

/* Mobile Filters */
@media (max-width: 768px) {
    .tours-filters-bar {
        padding: 1rem;
    }
    
    .tours-filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-search {
        min-width: 100%;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .filter-search-btn {
        width: 100%;
    }
    
    .clear-filters-btn {
        text-align: center;
    }
}

/* ========================================
   SUPPLIER PROFILE PAGE
   ======================================== */

/* Header */
.supplier-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 3rem 1.5rem;
    color: white;
}

.supplier-header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.supplier-header-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.supplier-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

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

.supplier-photo-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.supplier-info {
    padding-top: 0.5rem;
}

.supplier-name-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.supplier-name {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.supplier-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255,255,255,0.2);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.supplier-title {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.supplier-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0.9;
}

.supplier-location,
.supplier-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
}

.supplier-rating .star {
    color: #fbbf24;
}

/* Actions */
.supplier-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

.btn-view-tours {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-view-tours:hover {
    background: #f0f0f0;
}

/* Stats */
.supplier-stats-section {
    background: white;
    border-bottom: 1px solid var(--border);
}

.supplier-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem 1.5rem;
}

.supplier-stat {
    text-align: center;
    padding: 1rem;
}

.supplier-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.supplier-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Main Content */
.supplier-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.supplier-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

/* About Section */
.supplier-about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.supplier-bio {
    color: var(--foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.supplier-detail-block {
    margin-bottom: 2rem;
}

.supplier-detail-block h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.supplier-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.supplier-tag {
    background: rgba(30, 138, 93, 0.1);
    color: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.supplier-certifications {
    list-style: none;
    padding: 0;
    margin: 0;
}

.supplier-certifications li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--foreground);
}

.supplier-certifications svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Tours Section */
.supplier-tours-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    height: fit-content;
}

.supplier-tours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.supplier-tours-header h2 {
    font-size: 1.125rem;
    margin: 0;
}

.view-all-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.view-all-link:hover {
    text-decoration: underline;
}

.supplier-tours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.supplier-tour-card {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.supplier-tour-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.supplier-tour-image {
    width: 100px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.supplier-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supplier-tour-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.supplier-tour-title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--foreground);
    line-height: 1.3;
}

.supplier-tour-meta {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    display: flex;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
}

.supplier-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.supplier-tour-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9375rem;
}

.btn-view-small {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-view-small:hover {
    background: var(--primary);
}

.no-tours-msg {
    color: var(--muted-foreground);
    text-align: center;
    padding: 1rem;
}

/* Reviews Section */
.supplier-reviews-section {
    background: #f9fafb;
    padding: 3rem 1.5rem;
}

.supplier-reviews-container {
    max-width: 1100px;
    margin: 0 auto;
}

.supplier-reviews-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.supplier-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.supplier-review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.supplier-review-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.supplier-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.supplier-review-info {
    flex: 1;
}

.supplier-review-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--foreground);
}

.supplier-review-tour {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.supplier-review-rating {
    display: flex;
    gap: 2px;
}

.supplier-review-rating .star {
    color: #e5e7eb;
    font-size: 0.875rem;
}

.supplier-review-rating .star.filled {
    color: #fbbf24;
}

.supplier-review-text {
    color: var(--foreground);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0 0 0.75rem 0;
}

.supplier-review-date {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .supplier-header-container {
        flex-direction: column;
    }
    
    .supplier-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .supplier-name-row {
        justify-content: center;
    }
    
    .supplier-meta {
        justify-content: center;
    }
    
    .supplier-actions {
        width: 100%;
    }
    
    .btn-whatsapp,
    .btn-view-tours {
        width: 100%;
    }
    
    .supplier-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .supplier-content-grid {
        grid-template-columns: 1fr;
    }
    
    .supplier-tours-section {
        order: 2;
        margin-bottom: -2rem;
        margin-top: -3rem;
    }
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* Hero */
.about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1547970810-dc1eac37d174?w=1600') center/cover;
    color: white;
}

.about-hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.about-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-text {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats */
.about-stats-wrapper {
    max-width: 900px;
    margin: -3rem auto 0;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.about-stats-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.about-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Sections */
.about-section {
    padding: 5rem 1.5rem;
}

.about-section-alt {
    background: #f9fafb;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid-reverse {
    direction: rtl;
}

.about-grid-reverse > * {
    direction: ltr;
}

.about-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text {
    color: var(--muted-foreground);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text strong {
    color: var(--foreground);
}

.about-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

/* Checklist */
.about-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--foreground);
}

.about-checklist svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Benefits */
.about-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.about-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.about-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Center Header */
.about-center-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-subtitle {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.about-value-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.about-value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(15, 102, 65, 0.1), rgba(30, 138, 93, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary);
}

.about-value-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.about-value-text {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Promise Grid */
.about-promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.about-promise-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-promise-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.about-promise-card p {
    margin: 0;
    color: var(--foreground);
    font-weight: 500;
}

.about-promise-footer {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 2rem auto 0;
    font-style: italic;
}

/* Team */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}

.about-team-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.about-team-image {
    height: 280px;
    overflow: hidden;
}

.about-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-team-card:hover .about-team-image img {
    transform: scale(1.05);
}

.about-team-placeholder {
    width: 100%;
    height: 100%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

.about-team-info {
    padding: 1.5rem;
}

.about-team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.about-team-role {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.about-team-bio {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-team-link {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9375rem;
}

.about-team-link:hover {
    text-decoration: underline;
}

.about-no-team {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted-foreground);
    padding: 2rem;
}

.about-team-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-view-all-guides {
    display: inline-block;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-view-all-guides:hover {
    background: var(--primary);
    color: white;
}

/* CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 5rem 1.5rem;
    text-align: center;
    margin-bottom: -2rem;
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.about-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .btn-cta-primary {
    background: white;
    color: var(--primary);
}

.about-cta-buttons .btn-cta-primary:hover {
    background: #f0f0f0;
}

.about-cta-buttons .btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.about-cta-buttons .btn-cta-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-text {
        font-size: 1rem;
    }
    
    .about-stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .about-stat-value {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 3rem 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid-reverse {
        direction: ltr;
    }
    
    .about-image-container {
        height: 300px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-promise-grid {
        grid-template-columns: 1fr;
    }
    
    .about-team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-title {
        font-size: 1.75rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn-cta-primary,
    .about-cta-buttons .btn-cta-secondary {
        width: 100%;
    }
}

/* ========================================
   CONTACT PAGE
   ======================================== */

/* Hero */
.contact-hero {
    background: linear-gradient(135deg, rgba(15, 102, 65, 0.05), rgba(30, 138, 93, 0.1));
    padding: 5rem 1.5rem;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-block;
    background: rgba(30, 138, 93, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-cards-wrapper {
    max-width: 1100px;
    margin: -2rem auto 0;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(15, 102, 65, 0.1), rgba(30, 138, 93, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.contact-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.contact-card-detail {
    font-size: 0.9375rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-card-description {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.75rem;
}

/* Main Contact Section */
.contact-main-section {
    padding: 5rem 1.5rem;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

/* Form Column */
.contact-form-column {
    
}

.contact-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Success Message */
.contact-success-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(30, 138, 93, 0.1);
    border: 1px solid rgba(30, 138, 93, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-success-message svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-success-message strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-success-message p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #f4f4f5;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(30, 138, 93, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 138, 93, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.btn-submit-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-submit-contact:hover {
    background: var(--accent);
    transform: scale(1.02);
}

/* Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* WhatsApp Card */
.contact-whatsapp-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    padding: 2rem;
    color: white;
}

.contact-whatsapp-card svg {
    margin-bottom: 1rem;
}

.contact-whatsapp-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.contact-whatsapp-card p {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-whatsapp-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp-contact:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Card */
.contact-faq-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
}

.contact-faq-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-faq-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.contact-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-faq-item {
    
}

.faq-question {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

.faq-answer {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.contact-cta-section {
    background: var(--secondary);
    padding: 4rem 1.5rem;
    text-align: center;
}

.contact-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.contact-cta-text {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-cta-explore {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-cta-explore:hover {
    background: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-column {
        order: -1;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 3rem 1rem;
    }
    
    .contact-hero-title {
        font-size: 1.75rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-wrapper {
        margin-top: 0;
        padding: 1rem;
    }
    
    .contact-main-section {
        padding: 3rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .btn-submit-contact {
        width: 100%;
    }
}
/* ========================================
   BOOKING AUTH MODAL
   ======================================== */

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.auth-modal {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted-foreground);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.auth-modal-close:hover {
    background: var(--secondary);
    color: var(--foreground);
}

.auth-modal-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.auth-modal-guest-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.auth-modal-guest-btn:hover {
    background: var(--accent);
}

.auth-modal-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.auth-modal-divider::before,
.auth-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-modal-divider span {
    padding: 0 1rem;
}

.auth-modal-text {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.auth-modal-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: border-color 0.2s, background 0.2s;
    flex: 1;
}

.auth-social-btn:hover {
    border-color: var(--primary);
    background: var(--secondary);
}

.auth-modal-email-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--secondary);
    color: var(--foreground);
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s;
}

.auth-modal-email-btn:hover {
    background: #e5e5e5;
}

.auth-modal-signup {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.auth-modal-signup a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-modal-signup a:hover {
    text-decoration: underline;
}

/* ========================================
   BOOKING USER BANNER (Logged-in state)
   ======================================== */

.selected-departure-card {
    background: rgba(15, 102, 65, 0.05);
    border: 1px solid rgba(15, 102, 65, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.departure-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.departure-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.departure-info .departure-dates {
    font-weight: 600;
    color: var(--foreground);
}

.departure-info .departure-spots {
    font-size: 0.875rem;
    color: var(--accent);
}

.booking-user-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(15, 102, 65, 0.05), rgba(30, 138, 93, 0.1));
    border: 1px solid rgba(30, 138, 93, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.booking-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.booking-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-user-name {
    font-weight: 600;
    color: var(--foreground);
    font-size: 1rem;
}

.booking-user-email {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.booking-user-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.booking-user-badge svg {
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .auth-modal {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .auth-modal-social {
        flex-direction: column;
    }
    
    .booking-user-banner {
        flex-wrap: wrap;
    }
    
    .booking-user-badge {
        margin-left: auto;
    }
}

/* ========================================
   BOOKING PAGE STYLES
   ======================================== */

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.back-link:hover {
    text-decoration: underline;
}

.booking-page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--label-primary, #1a2b49);
    margin-bottom: 1.5rem;
}

/* Summary Card */
.booking-summary-card {
    background: white;
    border: 1px solid var(--border-primary, #dcdfe4);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.booking-summary-header {
    background: var(--primary);
    color: white;
    padding: 1.25rem;
}

.booking-summary-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.booking-summary-destination {
    font-size: 0.875rem;
    opacity: 0.9;
}

.booking-summary-details {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--border-primary, #ebeef1);
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.summary-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.summary-content {
    display: flex;
    flex-direction: column;
}

.summary-label {
    font-size: 0.75rem;
    color: var(--label-secondary, #63687a);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.summary-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--label-primary, #1a2b49);
}

.summary-sub {
    font-size: 0.8125rem;
    color: var(--label-secondary, #63687a);
}

/* Price Breakdown */
.booking-price-breakdown {
    padding: 1.25rem;
    background: #fafafa;
}

.price-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
    color: var(--label-secondary, #63687a);
    margin-bottom: 0.75rem;
}

.price-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--label-primary, #1a2b49);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-primary, #dcdfe4);
}

.total-amount {
    font-size: 1.25rem;
    color: var(--primary);
}

/* Form Card */
.booking-form-card {
    background: white;
    border: 1px solid var(--border-primary, #dcdfe4);
    border-radius: 12px;
    padding: 1.5rem;
}

.form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--label-primary, #1a2b49);
    margin: 0 0 1.25rem 0;
}

/* User Banner */
.booking-user-banner {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: var(--surface-success-weak, #d1f6e2);
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.booking-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.booking-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-user-name {
    font-weight: 600;
    color: var(--label-primary, #1a2b49);
    font-size: 0.9375rem;
}

.booking-user-email {
    font-size: 0.8125rem;
    color: var(--label-secondary, #63687a);
}

.booking-user-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
}

/* Form Grid */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--label-primary, #1a2b49);
}

.form-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-primary, #dcdfe4);
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 102, 65, 0.1);
}

.form-input::placeholder {
    color: var(--label-tertiary, #858995);
}

.form-hint {
    font-size: 0.75rem;
    color: var(--label-secondary, #63687a);
}

/* Optional Section */
.optional-section {
    margin-top: 0.5rem;
}

.optional-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 500;
}

.optional-toggle .toggle-icon {
    transition: transform 0.2s;
}

.optional-toggle.open .toggle-icon {
    transform: rotate(180deg);
}

.optional-content {
    padding-top: 0.5rem;
}

.optional-content textarea {
    width: 100%;
    resize: vertical;
    min-height: 80px;
}

/* Submit Section */
.booking-submit-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-primary, #ebeef1);
}

.booking-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.btn-proceed-payment {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-proceed-payment:hover {
    background: var(--accent);
}

.btn-price {
    padding: 0.25rem 0.625rem;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 0.9375rem;
}

.payment-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    color: var(--label-secondary, #63687a);
}

/* Auth Modal */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.auth-modal {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    position: relative;
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--label-secondary);
}

.auth-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-modal-guest-btn {
    display: block;
    width: 100%;
    padding: 0.875rem;
    text-align: center;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    text-decoration: none;
    color: var(--label-primary);
    font-weight: 500;
    transition: background 0.15s;
}

.auth-modal-guest-btn:hover {
    background: #f5f5f5;
}

.auth-modal-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    color: var(--label-secondary);
    font-size: 0.875rem;
}

.auth-modal-divider::before,
.auth-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-primary);
}

.auth-modal-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--label-secondary);
    margin-bottom: 1.25rem;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    text-decoration: none;
    color: var(--label-primary);
    font-weight: 500;
    transition: background 0.15s;
}

.auth-social-btn:hover {
    background: #f5f5f5;
}

.auth-modal-email-btn {
    display: block;
    width: 100%;
    padding: 0.875rem;
    text-align: center;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.auth-modal-signup {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--label-secondary);
}

.auth-modal-signup a {
    color: var(--primary);
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .booking-page-title {
        font-size: 1.5rem;
    }
    
    .booking-summary-details {
        padding: 1rem;
    }
    
    .booking-form-card {
        padding: 1.25rem;
    }
}
/* Sold Out Badge */
.slot-sold-out-badge {
    display: inline-block;
    background: #6b7280;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.875rem;
}

/* Urgency Badge */
.slot-urgency-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
    margin-bottom: 0.875rem;
}

/* Availability Text */
.slot-availability {
    font-size: 0.8125rem;
    color: #ef4444;
    font-weight: 500;
}

/* Sold Out Button */
.btn-sold-out {
    background: #d1d5db !important;
    color: #6b7280 !important;
    cursor: not-allowed !important;
}

/* Disabled Button (not enough spots for selection) */
.btn-book-slot.btn-disabled {
    background: #d1d5db !important;
    color: #6b7280 !important;
    cursor: not-allowed !important;
    position: relative;
}

/* Error Modal */
.availability-error-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.availability-error-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.error-icon {
    color: #ef4444;
    margin-bottom: 1rem;
}

.availability-error-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--label-primary);
    margin-bottom: 0.75rem;
}

.availability-error-content p {
    color: var(--label-secondary);
    margin-bottom: 0.5rem;
}

.error-hint {
    font-size: 0.875rem;
    color: var(--label-tertiary);
}

.btn-close-error {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-close-error:hover {
    background: var(--accent);
}
/* ========================================
   TOUR GALLERY - VIATOR STYLE
   ======================================== */

.tour-gallery-viator {
    margin-bottom: 1.5rem;
}

/* Main Image Container */
.gallery-main-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    background: var(--secondary);
}

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

/* Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--primary);
    color: white;
}

.gallery-nav-prev {
    left: 1rem;
}

.gallery-nav-next {
    right: 1rem;
}

/* Image Counter */
.gallery-counter {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Thumbnails Strip */
.gallery-thumbs-strip {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.gallery-thumbs-strip::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs-strip::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.gallery-thumb-item {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    position: relative;
}

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

.gallery-thumb-item:hover {
    border-color: var(--primary);
}

.gallery-thumb-item.active {
    border-color: var(--primary);
}

/* See More Overlay */
.gallery-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.gallery-more-overlay span:first-child {
    font-size: 1rem;
}

/* Placeholder */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

/* ========================================
   FULL GALLERY MODAL
   ======================================== */

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-modal-counter {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 0.9375rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-main-container {
        aspect-ratio: 4/3;
        border-radius: 8px;
    }
    
    .gallery-nav {
        width: 36px;
        height: 36px;
    }
    
    .gallery-nav-prev {
        left: 0.5rem;
    }
    
    .gallery-nav-next {
        right: 0.5rem;
    }
    
    .gallery-thumb-item {
        width: 60px;
        height: 45px;
    }
}
/* Legal Pages (Privacy, Terms, Refund) */
.legal-page {
    padding: 3rem 1rem;
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.legal-updated {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.legal-section p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-section ul,
.legal-section ol {
    color: var(--muted-foreground);
    line-height: 1.7;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Legal Pages - Mobile */
@media (max-width: 768px) {
    .legal-page {
        padding: 1.5rem 1rem;
    }
    
    .legal-container {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .legal-container h1 {
        font-size: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1rem;
    }
}


/* ========================================
   19. MOBILE STYLES (max-width: 768px)
   ======================================== */
@media screen and (max-width: 768px) {
    /* --- Base Typography --- */
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    /* --- Navigation --- */
    .nav-links {
        display: none;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }
    /* --- Mobile Navigation --- */
    .hamburger-btn {
     display: block;
    }

    .nav-links {
      display: none;
    }

    .nav-book-btn {
      display: none;
    }

    .mobile-menu {
      display: block;
    }
    /* ========================================
   GUIDES PAGE - MOBILE STYLES
   ======================================== */
    .guides-hero {
        height: 400px;
    }

    .guides-hero-title {
        font-size: 2rem;
    }

    .guides-hero-text {
        font-size: 0.95rem;
    }

    .guides-stats-wrapper {
        margin-top: -3rem;
    }

    .guides-stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .guides-stat-icon {
        width: 48px;
        height: 48px;
    }

    .guides-stat-value {
        font-size: 1.5rem;
    }

    .guides-filter-section {
        margin-bottom: 1.5rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }

    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-image-container {
        height: 280px;
    }

    .guide-content {
        padding: 1.25rem;
    }

    .guides-cta-section {
        padding: 3rem 1rem;
    }

    .guides-cta-title {
        font-size: 1.5rem;
    }

    .guides-cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }


    /* --- Tours Section (Homepage) --- */
    .tours-section {
        padding: 2rem 1rem;
        margin-top: 9rem;
    }

    .tour-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tour-image-container {
        height: 220px;
    }

    .tour-content {
        padding: 1rem;
    }

    .tour-title {
        font-size: 1.1rem;
    }

    .tour-footer {
        flex-direction: row;
        align-items: center;
    }

    .price-value {
        font-size: 1.25rem;
    }

    /* --- Tour Detail Page --- */
    .tour-detail-container {
        padding: 1rem;
    }

    .tour-detail-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .tour-detail-grid {
        display: block;
    }

    .tour-detail-image-wrapper {
        height: 250px;
        margin-bottom: 1rem;
    }
    .tour-card:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      transform: translateY(-4px);
    }
    .tour-card:hover .tour-img {
        transform: scale(1.05);
    }

    /* Hide desktop sidebar on mobile */
    .tour-sidebar {
        display: none;
    }

    /* --- Header Pills --- */
    .tour-header-pills {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .pill {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
        gap: 0.375rem;
    }

    .pill svg {
        width: 14px;
        height: 14px;
    }

    /* --- Info Bar (Vertical Stack) --- */
    .tour-info-bar {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 1rem 0;
        border-radius: 12px;
        overflow: hidden;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        border: 1px solid var(--border);
    }

    .info-bar-item {
        display: flex;
        align-items: center;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        gap: 0.75rem;
        background: white;
    }

    .info-bar-item:last-child {
        border-bottom: none;
    }

    .info-bar-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 50%;
        background: #f3f4f6;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-bar-icon svg {
        width: 20px;
        height: 20px;
    }

    .info-bar-label {
        font-size: 0.75rem;
    }

    .info-bar-value {
        font-size: 0.95rem;
    }

    /* --- Tour Sections --- */
    .tour-section {
        padding: 2rem 0;
    }

    .tour-section-title {
        font-size: 1.1rem;
    }

    /* --- Detail Cards --- */
    .detail-card {
        margin: 1rem 0;
        padding: 1.25rem;
        border-radius: 12px;
    }

    .detail-card-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .detail-item-label {
        font-size: 0.85rem;
    }

    .detail-item-value {
        font-size: 0.9rem;
    }

    /* Add padding so content isn't hidden behind sticky bar */
    .tour-detail-content {
        padding-bottom: 100px;
    }

    /* --- Operator Section --- */
    .operator-card {
        padding: 1.25rem;
    }

    .operator-header {
        flex-direction: column;
        gap: 1rem;
    }

    .operator-logo {
        width: 60px;
        height: 60px;
    }

    .operator-name {
        font-size: 1rem;
    }

    .operator-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .operator-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        font-size: 0.85rem;
    }

    .operator-detail {
        padding-left: 0;
    }

    .operator-detail::before {
        display: none;
    }

    .operator-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .operator-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-operator {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        justify-content: center;
    }


    /* --- Related Tours --- */
    /* --- Related Tours (Mobile) --- */
    .related-section {
      padding: 1.5rem 0 0.5rem;
      margin-top: 1rem;
      margin-bottom: 2rem;
    }

    .related-container {
      padding: 0 1rem;
    }

    .related-header {
      margin-bottom: 0.75rem;
    }

    .related-title {
        font-size: 1.15rem;
    }

    .scroll-buttons {
        display: none;
    }

    .related-tours-scroll {
        gap: 0.75rem;
      padding: 0.25rem 0;
    }

    /* Force ALL related tour cards to exact same size */
    .related-tours-scroll .tour-card {
      min-width: 240px;
      max-width: 240px;
      height: 360px;
      display: flex;
      flex-direction: column;
    }

    .related-tours-scroll .tour-card .tour-image-container {
      height: 140px;
      min-height: 140px;
      max-height: 140px;
    }

    .related-tours-scroll .tour-card .tour-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 0.75rem;
      overflow: hidden;
    }

    .related-tours-scroll .tour-card .tour-title {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 0.375rem;
        min-height: 2.5em;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .related-tours-scroll .tour-card .tour-vendor {
      font-size: 0.75rem;
      margin-bottom: 0.375rem;
    }

    .related-tours-scroll .tour-card .tour-info-stack {
      margin-bottom: 0.5rem;
      gap: 4px;
  }

  .related-tours-scroll .tour-card .info-row {
      font-size: 0.75rem;
  }

  .related-tours-scroll .tour-card .icon-green {
      width: 14px;
      height: 14px;
  }

  .related-tours-scroll .tour-card .tour-footer {
    padding-top: 0.5rem;
    margin-top: auto;
  }

  .related-tours-scroll .tour-card .price-label {
    font-size: 0.65rem;
  }

  .related-tours-scroll .tour-card .price-value {
    font-size: 1rem;
  }

  .related-tours-scroll .tour-card .btn-view {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }

  /* Remove extra space before footer */
  .tour-detail-content .related-section {
      margin-bottom: -8rem !important;
      padding-bottom: 0.5rem !important;
  }

/* Tighten footer on tour detail page */
  .tour-detail-content + footer,
  .tour-detail-content ~ footer {
      margin-top: 0 !important;
      padding-top: 1.5rem !important;
  }

    /* --- Destinations --- */
    .destination-card {
        height: 300px;
    }
    .site-footer {
        padding: 2rem 0 1.5rem;
        margin-top: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-email-input {
        width: 100%;
    }

    .footer-subscribe-btn {
        width: 100%;
    }

    .footer-copyright {
        padding-top: 1.5rem;
    }

    /* --- Footer --- */
    footer {
        padding: 2rem 0 1.5rem !important;
    }
    
/* ========================================
   DESTINATIONS PAGE - MOBILE STYLES
   ======================================== */
    .destinations-hero {
        height: 350px;
    }

    .destinations-hero-title {
        font-size: 2rem;
    }

    .destinations-hero-text {
        font-size: 0.95rem;
    }

    .destinations-stats-wrapper {
        margin-top: -3rem;
    }

    .destinations-stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .destinations-stat-icon {
        width: 48px;
        height: 48px;
    }

    .destinations-stat-value {
        font-size: 1.5rem;
    }

    .destinations-search-wrapper {
        flex-direction: column;
    }

    .destinations-sort-box {
        min-width: auto;
    }

    .explore-destinations-header {
        margin-bottom: 2rem;
    }

    .explore-destinations-title {
        font-size: 1.5rem;
    }

    .country-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .country-card-image {
        height: 280px;
    }

    .country-card-content {
        padding: 1.25rem;
    }

    .country-name {
        font-size: 1.5rem;
    }

    .destinations-cta-section {
        padding: 3rem 1rem;
    }

    .destinations-cta-title {
        font-size: 1.5rem;
    }

    .destinations-cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .country-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .country-card-image {
        height: 320px;
    }
}
/* ========================================
   MOBILE INLINE BOOKING SECTION
   ======================================== */

/* Hide on desktop, show on mobile */
.inline-booking-section {
    display: none;
}

@media (max-width: 968px) {
    .inline-booking-section {
        display: block;
        background: white;
        border: 1px solid var(--border-primary, #dcdfe4);
        border-radius: 12px;
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* Mobile Price Info */
.mobile-price-info {
    margin-bottom: 0.875rem;
}

.mobile-price-info .price-from {
    display: block;
    font-size: 0.875rem;
    color: var(--label-secondary, #63687a);
    margin-bottom: 0.125rem;
}

.mobile-price-info .price-row {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.mobile-price-info .price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary, #0f6641);
    line-height: 1.2;
}

.mobile-price-info .price-per {
    font-size: 0.875rem;
    color: var(--label-primary, #1a2b49);
}

/* Mobile Chip Selectors */
.mobile-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--border-primary, #dcdfe4);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.mobile-chip:hover,
.mobile-chip:focus-within {
    border-color: var(--primary, #0f6641);
}

.mobile-chip__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-chip__icon {
    color: var(--label-primary, #1a2b49);
    display: flex;
    align-items: center;
}

.mobile-chip__icon svg {
    width: 20px;
    height: 20px;
}

.mobile-chip__label {
    font-size: 0.9375rem;
    color: var(--label-primary, #1a2b49);
}

.mobile-chip__select {
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    color: var(--label-primary, #1a2b49);
    cursor: pointer;
    padding: 0;
    padding-right: 1.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2363687a' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    text-align: right;
}

.mobile-chip__select:focus {
    outline: none;
}

/* Mobile Check Availability Button */
.mobile-check-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--primary, #0f6641);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    margin-top: 0.25rem;
}

.mobile-check-btn:hover {
    background: var(--accent, #0a4f32);
}

/* Mobile Departures Count */
.mobile-departures-count {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--label-secondary, #63687a);
    margin: 0.5rem 0 0;
}

/* Mobile Divider */
.mobile-divider {
    border: none;
    border-top: 1px solid var(--separator-primary, #ebeef1);
    margin: 0.875rem 0;
}

/* Mobile Icon Label */
.mobile-icon-label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.875rem;
}

.mobile-icon-label__icon {
    flex-shrink: 0;
    color: var(--primary, #0f6641);
}

.mobile-icon-label__icon svg {
    width: 18px;
    height: 18px;
}

.mobile-icon-label__text {
    font-size: 0.8125rem;
    color: var(--label-secondary, #63687a);
}

/* Mobile Quick Info */
.mobile-quick-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--label-primary, #1a2b49);
    margin: 0 0 0.625rem 0;
}

.mobile-quick-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.875rem;
}

.mobile-quick-info-row span {
    color: var(--label-secondary, #63687a);
}

.mobile-quick-info-row strong {
    color: var(--label-primary, #1a2b49);
    font-weight: 600;
}

/* ========================================
   MOBILE STICKY BOOKING BAR
   ======================================== */

.mobile-booking-bar {
    display: none;
}

@media (max-width: 968px) {
    .mobile-booking-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 0.75rem 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-primary, #dcdfe4);
        z-index: 100;
        transition: transform 0.3s ease;
    }
    
    .mobile-booking-bar.hidden {
        transform: translateY(100%);
    }
}

.mobile-bar-price {
    display: flex;
    flex-direction: column;
}

.mobile-bar-price .price-label {
    font-size: 0.75rem;
    color: var(--label-secondary, #63687a);
}

.mobile-bar-price .price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary, #0f6641);
    line-height: 1.2;
}

.mobile-bar-price .price-per {
    font-size: 0.75rem;
    color: var(--label-secondary, #63687a);
}

.mobile-bar-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary, #0f6641);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.mobile-bar-btn:hover {
    background: var(--accent, #0a4f32);
}
/* Mobile Departures Section - Only visible on mobile */
.mobile-departures-section {
    display: none;
}

@media (max-width: 968px) {
    /* Hide desktop departures section on mobile */
    .tour-main-content .departures-section {
        display: none !important;
    }
    
    /* Show mobile departures section */
    .mobile-departures-section {
        display: none; /* Hidden by default, shown via JS */
        margin: 1rem 0 1.5rem;
        animation: slideDown 0.3s ease-out;
    }
    
    .mobile-departures-section[style*="display: block"] {
        display: block;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}