/* ========================================
   KASHMIR MERIDIAN TOURS - STYLESHEET
   Modern, Responsive, Premium Travel Website
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Matching kashmirtour.in style */
    --color-primary: #1a5f7a;
    --color-primary-dark: #134b61;
    --color-primary-light: #2a7f9f;
    --color-secondary: #e07b39;
    --color-secondary-dark: #c5692f;
    --color-accent: #57c5b6;
    
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-heading: #1a1a1a;
    
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-dark: #1a1a1a;
    
    --color-border: #e0e0e0;
    --color-border-light: #f0f0f0;
    
    --color-success: #28a745;
    --color-error: #dc3545;
    --color-warning: #ffc107;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Layout */
    --container-max: 1280px;
    --container-padding: 1rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--color-heading);
}

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

/* Section Styles */
.section {
    padding: var(--space-4xl) 0;
}

.section--light {
    background-color: var(--color-bg-light);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section__tag {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.section__title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
}

.section__description {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
}

.section__footer {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    text-align: center;
}

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

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn--secondary:hover {
    background-color: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn--outline.btn--lg {
    color: white;
    border-color: white;
}

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

.btn--lg {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--font-size-lg);
}

.btn--sm {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background-color: transparent;
    transition: all var(--transition-base);
    padding: var(--space-md) 0;
}

.header--scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: white;
}

.header--scrolled .logo {
    color: var(--color-heading);
}

.logo__icon {
    font-size: 1.5em;
}

.logo__highlight {
    color: var(--color-secondary);
}

/* Navigation */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.nav__toggle-bar {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: all var(--transition-base);
}

.header--scrolled .nav__toggle-bar {
    background-color: var(--color-heading);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__link {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: white;
    position: relative;
    padding: var(--space-sm) 0;
}

.header--scrolled .nav__link {
    color: var(--color-text);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link--cta {
    background-color: var(--color-secondary);
    color: white !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background-color: var(--color-secondary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.85) 0%, rgba(21, 152, 149, 0.75) 50%, rgba(87, 197, 182, 0.65) 100%);
    z-index: -1;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: calc(var(--space-4xl) + 60px) var(--space-md) var(--space-4xl);
    max-width: 900px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__badge-icon {
    color: #ffc107;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero__highlight {
    background: linear-gradient(135deg, #57c5b6, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    opacity: 0.9;
    line-height: var(--line-height-relaxed);
}

.hero__features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.hero__feature-check {
    width: 20px;
    height: 20px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.btn__icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn--primary:hover .btn__icon {
    transform: translateX(4px);
}

.hero__trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

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

.hero__trust-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
}

.hero__trust-label {
    font-size: var(--font-size-xs);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
}

.hero__scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 13px;
    position: relative;
}

.hero__scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-base);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float__icon {
    width: 24px;
    height: 24px;
}

.whatsapp-float__text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: var(--space-sm);
    }
    
    .whatsapp-float__text {
        display: none;
    }
    
    .whatsapp-float__icon {
        width: 28px;
        height: 28px;
    }
    
    .hero__trust-divider {
        display: none;
    }
    
    .hero__trust {
        gap: var(--space-lg);
    }
}

/* Quick Enquiry Strip */
.quick-enquiry {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: var(--space-xl) 0;
    color: white;
}

.quick-enquiry__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.quick-enquiry__text h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xs);
    color: white;
}

.quick-enquiry__text p {
    opacity: 0.9;
}

/* About Section */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__text {
    margin-bottom: var(--space-lg);
    color: var(--color-text-light);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: var(--font-weight-medium);
}

.about__feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
}

.about__rating {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
}

.about__rating-stars {
    color: #ffc107;
    font-size: var(--font-size-lg);
}

.about__images {
    position: relative;
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image--main {
    width: 80%;
}

.about__image--secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border: 5px solid white;
}

.about__experience {
    position: absolute;
    bottom: 50px;
    left: -20px;
    background-color: var(--color-secondary);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
}

.about__experience-text {
    font-size: var(--font-size-sm);
}

/* Trust Badges */
.trust-badges__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.trust-badges__subtitle {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.trust-badges__title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-sm);
}

.trust-badges__description {
    color: var(--color-text-light);
}

.trust-badges__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-badge {
    text-align: center;
    padding: var(--space-xl);
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-badge__icon {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.trust-badge__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* Tour Cards */
.tours__carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.tours__carousel {
    display: flex;
    gap: var(--space-xl);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-md) 0;
    scrollbar-width: none;
}

.tours__carousel::-webkit-scrollbar {
    display: none;
}

.tour-card {
    flex: 0 0 350px;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    scroll-snap-align: start;
}

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

.tour-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.tour-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
}

.tour-card__badge--discount {
    background-color: var(--color-error);
    color: white;
}

.tour-card__badge--popular {
    background-color: var(--color-warning);
    color: var(--color-heading);
}

.tour-card__badge--new {
    background-color: var(--color-success);
    color: white;
}

.tour-card__duration {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
}

.tour-card__content {
    padding: var(--space-lg);
}

.tour-card__title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.tour-card__description {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-relaxed);
}

.tour-card__highlights {
    margin-bottom: var(--space-md);
}

.tour-card__highlights-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
}

.tour-card__highlights-list {
    list-style: disc;
    padding-left: var(--space-lg);
}

.tour-card__highlights-list li {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
}

.tour-card__inclusions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.tour-card__inclusion {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.tour-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.tour-card__price {
    display: flex;
    flex-direction: column;
}

.tour-card__price-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.tour-card__price-value {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.tour-card__price-original {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.tour-card__price-person {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.tour-card__actions {
    display: flex;
    gap: var(--space-sm);
}

/* Carousel Arrows */
.carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-base);
}

.carousel__arrow:hover {
    background-color: var(--color-primary);
    color: white;
}

.carousel__arrow--prev {
    left: 0;
}

.carousel__arrow--next {
    right: 0;
}

.carousel__arrow svg {
    width: 20px;
    height: 20px;
}

/* Destinations */
.destinations__tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.destinations__tab {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    background-color: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.destinations__tab--active,
.destinations__tab:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.destinations__panel {
    display: none;
}

.destinations__panel--active {
    display: block;
}

.destinations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.destinations__grid--detail {
    grid-template-columns: repeat(2, 1fr);
}

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.destination-card--large {
    grid-column: span 2;
    grid-row: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    color: white;
    transition: all var(--transition-base);
}

.destination-card:hover .destination-card__overlay {
    background: linear-gradient(to top, rgba(26, 95, 122, 0.9), transparent);
}

.destination-card__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xs);
}

.destination-card__tours {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    margin-bottom: var(--space-sm);
}

.destination-card__link {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-secondary);
    color: white;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.destination-card:hover .destination-card__link {
    opacity: 1;
    transform: translateY(0);
}

/* Destination Detail Cards */
.destination-detail {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.destination-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.destination-detail__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-detail:hover .destination-detail__image img {
    transform: scale(1.1);
}

.destination-detail__tours {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background-color: var(--color-primary);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
}

.destination-detail__content {
    padding: var(--space-lg);
}

.destination-detail__title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.destination-detail__desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-relaxed);
}

.destination-detail__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.destination-detail__highlight {
    font-size: var(--font-size-xs);
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--color-bg-light);
    border-radius: var(--radius-full);
    color: var(--color-text-light);
}

/* Destination Slide */
.destinations__carousel {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: var(--space-md) 0;
    scrollbar-width: none;
}

.destinations__carousel::-webkit-scrollbar {
    display: none;
}

.destination-slide {
    flex: 0 0 300px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    scroll-snap-align: start;
}

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

.destination-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    color: white;
}

.destination-slide__overlay h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xs);
    color: white;
}

.destination-slide__overlay p {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

/* Destinations Intro */
.destinations__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.destinations__region-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
}

.destinations__region-desc {
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

/* Testimonials */
.testimonials__carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.testimonials__carousel {
    display: flex;
    gap: var(--space-xl);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: var(--space-md) 0;
    scrollbar-width: none;
}

.testimonials__carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
}

.testimonial-card__stars {
    color: #ffc107;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
}

.testimonial-card__text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__name {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-xs);
}

.testimonial-card__location {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    transition: all var(--transition-base);
}

.testimonials__dot--active {
    background-color: var(--color-primary);
    width: 30px;
    border-radius: var(--radius-full);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* FAQ */
.faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.faq__list--compact {
    max-width: 700px;
}

.faq__item {
    background-color: white;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    list-style: none;
    transition: background-color var(--transition-base);
}

.faq__question:hover {
    background-color: var(--color-bg-light);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-primary);
    transition: transform var(--transition-base);
}

.faq__icon::before {
    width: 2px;
    height: 12px;
    top: 4px;
    left: 9px;
}

.faq__icon::after {
    width: 12px;
    height: 2px;
    top: 9px;
    left: 4px;
}

.faq__item[open] .faq__icon::before {
    transform: rotate(90deg);
}

.faq__answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

.faq__answer p {
    margin-bottom: var(--space-md);
}

.faq__answer ul {
    list-style: disc;
    padding-left: var(--space-lg);
}

.faq__answer li {
    margin-bottom: var(--space-sm);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: var(--space-4xl) 0;
    text-align: center;
    color: white;
}

.cta__title {
    font-size: var(--font-size-3xl);
    color: white;
    margin-bottom: var(--space-md);
}

.cta__text {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: white;
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-md);
    color: white;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-relaxed);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
}

.footer__contact-item:hover {
    color: white;
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-lg);
    color: white;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.footer__link:hover {
    color: white;
}

.footer__form {
    display: flex;
    gap: var(--space-sm);
}

.footer__input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: var(--font-size-sm);
}

.footer__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer__submit {
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-secondary);
    color: white;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    transition: background-color var(--transition-base);
}

.footer__submit:hover {
    background-color: var(--color-secondary-dark);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 80px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.page-header__background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    z-index: -2;
}

.page-header__background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.page-header__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.page-header__title {
    font-size: var(--font-size-4xl);
    color: white;
    margin-bottom: var(--space-md);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    justify-content: center;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-left: var(--space-sm);
    opacity: 0.6;
}

.breadcrumbs__link {
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.breadcrumbs__link:hover {
    opacity: 1;
}

.breadcrumbs__item--current {
    opacity: 0.6;
}

/* Tours Filter */
.tours-filter {
    background-color: white;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.tours-filter__bar {
    display: flex;
    align-items: flex-end;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.tours-filter__group {
    flex: 1;
    min-width: 150px;
}

.tours-filter__label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

.tours-filter__select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    background-color: white;
    cursor: pointer;
}

.tours-filter__btn {
    padding: var(--space-sm) var(--space-xl);
}

/* All Tours Grid */
.all-tours .tours__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.tour-card--detail {
    flex: none;
    display: flex;
    flex-direction: column;
}

.tour-card--detail .tour-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card--detail .tour-card__footer {
    margin-top: auto;
}

/* Why Us */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.why-us__grid--large {
    grid-template-columns: repeat(3, 1fr);
}

.why-us__card {
    text-align: center;
    padding: var(--space-xl);
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.why-us__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-us__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.why-us__title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.why-us__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

/* Mission Vision */
.mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.mission-vision__card {
    text-align: center;
    padding: var(--space-2xl);
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.mission-vision__icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.mission-vision__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
}

.mission-vision__text {
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

/* Team */
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

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

.team-member__image {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.team-member__name {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
}

.team-member__role {
    font-size: var(--font-size-sm);
    color: var(--color-secondary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
}

.team-member__bio {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
}

/* Certifications */
.certifications__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.certification {
    text-align: center;
    padding: var(--space-xl);
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.certification__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.certification__title {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-sm);
}

.certification__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* Contact Info Cards */
.contact-info {
    background-color: white;
    padding: var(--space-2xl) 0;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.contact-info__card {
    text-align: center;
    padding: var(--space-xl);
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-info__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.contact-info__title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.contact-info__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.contact-info__link {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
}

.contact-info__link:hover {
    color: var(--color-primary-dark);
}

/* Contact Form Section */
.contact-form-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-form-section__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    line-height: var(--line-height-relaxed);
}

.contact-form-section__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.contact-form-section__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-form-section__feature-icon {
    width: 20px;
    height: 20px;
    background-color: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
}

.contact-form-section__trust {
    padding: var(--space-lg);
    background-color: white;
    border-radius: var(--radius-md);
    text-align: center;
}

.contact-form-section__trust-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
}

.contact-form-section__trust-stars {
    font-size: var(--font-size-lg);
    color: #ffc107;
    font-weight: var(--font-weight-bold);
}

/* Contact Form */
.contact-form__wrapper {
    background-color: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-form__group {
    margin-bottom: var(--space-lg);
}

.contact-form__group--checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-form__label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.required {
    color: var(--color-error);
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: border-color var(--transition-base);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-form__textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form__checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.contact-form__checkbox-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.contact-form__error {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-error);
    margin-top: var(--space-xs);
    min-height: 16px;
}

.contact-form__note {
    text-align: center;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-md);
}

.contact-form__note a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Map Section */
.map-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 95, 122, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.map-section__content {
    text-align: center;
    color: white;
}

.map-section__title {
    font-size: var(--font-size-2xl);
    color: white;
    margin-bottom: var(--space-sm);
}

.map-section__text {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.map-section__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-section__placeholder-content {
    text-align: center;
    color: var(--color-text-muted);
}

.map-section__placeholder-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.map-section__placeholder-sub {
    font-size: var(--font-size-sm);
    margin-top: var(--space-sm);
}

/* Our Story */
.our-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.our-story__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-relaxed);
}

.our-story__images {
    position: relative;
}

.our-story__image--main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.our-story__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.our-story__stat {
    text-align: center;
    padding: var(--space-lg);
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.our-story__stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.our-story__stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* Privacy Content */
.privacy-content__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content__last-updated {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.privacy-content__intro {
    margin-bottom: var(--space-3xl);
}

.privacy-content__section {
    margin-bottom: var(--space-3xl);
}

.privacy-content__section-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
}

.privacy-content__subsection-title {
    font-size: var(--font-size-lg);
    margin: var(--space-lg) 0 var(--space-md);
}

.privacy-content__text {
    color: var(--color-text-light);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-md);
}

.privacy-content__list {
    list-style: disc;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.privacy-content__list li {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-relaxed);
}

.privacy-content__contact {
    padding: var(--space-lg);
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.privacy-content__contact p {
    margin-bottom: var(--space-sm);
}

.privacy-content__contact a {
    color: var(--color-primary);
}

.privacy-content__acceptance {
    padding: var(--space-xl);
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    text-align: center;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    padding: var(--space-md);
}

.modal[hidden] {
    display: none;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
}

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

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    transition: color var(--transition-base);
}

.modal__close:hover {
    color: var(--color-heading);
}

.modal__success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--space-lg);
}

.modal__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
}

.modal__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.modal__details {
    background-color: var(--color-bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    text-align: left;
}

.modal__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* Scroll Reveal Animations */
.reveal-text,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-text {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-scale {
    transform: scale(0.8);
}

.reveal-text.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed,
.reveal-scale.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --space-4xl: 4rem;
    }
    
    .about__grid,
    .our-story__grid,
    .contact-form-section__grid {
        grid-template-columns: 1fr;
    }
    
    .about__images,
    .our-story__images {
        order: -1;
    }
    
    .trust-badges__grid,
    .why-us__grid,
    .why-us__grid--large,
    .team__grid,
    .certifications__grid,
    .contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .all-tours .tours__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --container-padding: 1rem;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform var(--transition-base);
    }
    
    .nav__menu--open {
        transform: translateY(0);
    }
    
    .nav__link {
        color: var(--color-text);
    }
    
    .hero__title {
        font-size: var(--font-size-3xl);
    }
    
    .hero__stats {
        gap: var(--space-xl);
    }
    
    .hero__cta {
        flex-direction: column;
    }
    
    .quick-enquiry__content {
        flex-direction: column;
        text-align: center;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .trust-badges__grid,
    .destinations__grid,
    .destinations__grid--detail,
    .why-us__grid,
    .why-us__grid--large,
    .mission-vision__grid,
    .team__grid,
    .certifications__grid,
    .contact-info__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card--large {
        grid-column: span 1;
    }
    
    .tours__carousel-wrapper,
    .testimonials__carousel-wrapper,
    .destinations__carousel-wrapper {
        padding: 0 30px;
    }
    
    .tour-card,
    .testimonial-card {
        flex: 0 0 300px;
    }
    
    .tours-filter__bar {
        flex-direction: column;
    }
    
    .tours-filter__group {
        width: 100%;
    }
    
    .contact-form__row {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__form {
        flex-direction: column;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .modal__actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: var(--font-size-2xl);
    }
    
    .section__title {
        font-size: var(--font-size-2xl);
    }
    
    .about__image--secondary {
        display: none;
    }
    
    .about__experience {
        left: 10px;
        bottom: 10px;
    }
    
    .tour-card {
        flex: 0 0 280px;
    }
    
    .tour-card__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta__buttons {
        flex-direction: column;
    }
    
    .carousel__arrow {
        width: 40px;
        height: 40px;
    }
}
