/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }

    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .team-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    /* 2 tour cards on tablet */
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* 3 why cards on tablet */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    /* 3 team cards on tablet */
    .team-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .team-card {
        padding: 1.5rem 1rem;
    }

    .team-img {
        width: 80px;
        height: 80px;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .team-bio {
        font-size: 0.85rem;
    }

    .journey-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .journey-stats {
        gap: var(--space-sm);
    }
}

/* Mobile Devices */
@media (max-width: 768px) {

    /* Mobile Navigation */
    .mobile-menu {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 80%;
        max-width: 300px;
    }

    /* Trust Bar */
    .trust-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Section Headers */
    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    /* 2 why cards on mobile L with 2 hidden */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card:nth-child(5),
    .feature-card:nth-child(6) {
        display: none;
    }

    /* 1 tour card on mobile */
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .tour-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* 2 team cards on mobile L */
    .team-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .team-card {
        padding: 1.5rem 1rem;
    }

    .team-img {
        width: 70px;
        height: 70px;
    }

    .team-name {
        font-size: 1.05rem;
    }

    .team-role {
        font-size: 0.8rem;
    }

    .team-bio {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .team-quote {
        font-size: 0.8rem;
    }

    /* Journey Stats */
    .journey-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact */
    .contact-intro {
        padding: 0 1rem;
    }

    .contact-info,
    .contact-form {
        padding: var(--space-lg);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    /* Spacing Adjustments */
    section {
        padding: var(--space-lg) 0;
    }

    .container {
        padding: 0 4%;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {

    /* Typography */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    /* Trust Bar */
    .trust-number {
        font-size: 2rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }

    /* 1 column layout for all cards */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card:nth-child(5),
    .feature-card:nth-child(6) {
        display: block;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-card {
        margin: 0 auto;
    }

    .tour-card-content {
        padding: 1.5rem;
    }

    .tour-price {
        font-size: 1.5rem;
    }

    /* 1 team card on small mobile */
    .team-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-img {
        width: 90px;
        height: 90px;
    }

    .team-card {
        padding: 1.5rem;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Contact Form */
    .contact-info,
    .contact-form {
        padding: var(--space-md);
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-brand h3 {
        font-size: 1.5rem;
    }

    /* Back to Top */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* Very Small Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .tours-grid,
    .team-cards,
    .features-grid {
        padding: 0;
    }

    .tour-card,
    .team-card,
    .feature-card {
        border-radius: 12px;
    }

    .feature-card {
        padding: 1rem;
    }

    .team-card {
        padding: 1.25rem;
    }
}

/* Ultra-wide Screens */
@media (min-width: 2300px) {
    .container {
        max-width: 2000px;
    }

    .hero-title {
        font-size: 7rem;
    }

    .section-title {
        font-size: 4rem;
    }

    .tours-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .team-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Enhanced CSS with modern design principles */
:root {
    /* Color Palette - Inspired by Silk Road */
    --silk-gold: #D4AF37; 
    --desert-sand: #E8B87F;
    --spice-orange: #E67E22;
    --night-blue: #1A1F3A;
    --oasis-green: #2C5F2D;
    --warm-white: #FAF9F6;
    --shadow-dark: #0A0A0A;
    --color-of-addition: #0d2937;

    /* Glass Effect Variables */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-bg-hover: rgba(255, 255, 255, 0.35);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glass-shadow-hover: 0 8px 32px 0 rgba(31, 38, 135, 0.45);

    /* Typography */
    --font-heading: 'Crimson Text', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
    font-family: var(--font-body);
    color: var(--night-blue);
    background-color: var(--warm-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--warm-white);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--silk-gold), var(--spice-orange));
    border-radius: 5px;
}

/* Glass Card Component - Enhanced */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-5px);
}

/* Header - Floating Design */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
    transition: var(--transition-smooth);
    padding: 1.5rem 5%;
}

header.scrolled {
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--silk-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--night-blue);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

header.scrolled .nav-links a {
    color: var(--warm-white);
}

header:not(.scrolled) .nav-links a {
    color: var(--warm-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--silk-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--silk-gold), var(--spice-orange));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(232, 124, 30, 0.3);
    text-decoration: none;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 124, 30, 0.4);
}

/* Hero Section - Cinematic */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: linear-gradient(rgba(26, 31, 58, 0.4), rgba(26, 31, 58, 0.6)),
        url('/public/assets/boysun-and-gissar-mountains.jpg') center/cover; */
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 31, 58, 0.4), rgba(26, 31, 58, 0.6));
    z-index: 1;
}

/* Slide backgrounds */
.hero-slide:nth-child(1) {
    background-image: url('/public/images/slider/uzbekistan1.jpg');
}

.hero-slide:nth-child(2) {
    background-image: url('/public/images/slider/uzbekistan2.png');
}

.hero-slide:nth-child(3) {
    background-image: url('/public/images/slider/uzbekistan-mountain2.webp');
}
.hero-slide:nth-child(4) {
    background-image: url('/public/images/slider/uzbekistan-Minor-Mosque.webp');
}

.hero-content {
    text-align: center;
    max-width: 1800px;
    padding: var(--space-lg);
    position: relative;
    z-index: 10;
    animation: fadeInUp 1.5s ease;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--silk-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 1.5s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--warm-white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.5s ease 0.2s forwards;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--silk-gold), var(--desert-sand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.5s ease 0.4s forwards;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.5s ease 0.6s forwards;
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--silk-gold), var(--spice-orange));
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--silk-gold);
    transform: translateY(-3px);
}

/* Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.059);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.105);
    /* border-radius: 50%; */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
    user-select: none;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev {
    left: 30px;
     clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
}

.hero-nav.next {
    right: 30px;
     clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}

/* Slide Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-indicator.active {
    background: var(--silk-gold);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: silver;
    z-index: 20;
    transform-origin: left;
    animation: progress 10s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-nav.prev {
        left: 20px;
    }

    .hero-nav.next {
        right: 20px;
    }

    .hero-indicators {
        bottom: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

/* Trust Indicators */
.trust-bar {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-md) 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding: 0 5%;
}

.trust-item {
    text-align: center;
    transition: var(--transition-smooth);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--spice-orange);
    font-family: var(--font-heading);
}

.trust-label {
    color: var(--night-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-label {
    font-size: 1rem;
    color: var(--spice-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--night-blue);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--silk-gold), var(--spice-orange));
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Why Travel Section */
#why-travel {
    background: linear-gradient(to bottom, rgba(232, 124, 30, 0.03), transparent);
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.why-intro {
    font-size: 1.3rem;
    color: rgba(26, 31, 58, 0.95);
    ;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: black;
}

.feature-card {
    padding: 1.5rem;
    text-align: center;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow-hover);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--night-blue);
}

.feature-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Tours Section - Premium Cards */
#tours {
    background: white;
}

.tour-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.clickable-card {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.clickable-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.tour-card {
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

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

.tour-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 16px 16px 0 0;
    margin: -1px -1px 0 -1px;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-card:hover .image-overlay {
    opacity: 1;
}

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

.tour-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--night-blue);
    line-height: 1.3;
}

.tour-location {
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.tour-meta {
    display: flex;
    gap: 1rem;
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    flex-wrap: wrap;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #666;
    font-size: 0.85rem;
}

.tour-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tour-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--spice-orange);
}

.btn-view-tour {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--silk-gold), var(--spice-orange));
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.btn-view-tour:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Team Section */
#team {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05));
}

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

.team-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: 2rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.team-card:hover {
    transform: translateY(-5px);
    background: var(--glass-bg-hover);
    box-shadow: var(--glass-shadow-hover);
}

.team-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--silk-gold);
    position: relative;
    z-index: 1;
}

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

.team-content {
    position: relative;
    z-index: 1;
}

.team-name {
    color: var(--spice-orange);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.team-role {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.team-quote {
    font-style: italic;
    color: var(--spice-orange);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* About Section */
#about {
    background: white;
    position: relative;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-top: var(--space-xl);
}

.journey-text {
    padding: var(--space-lg);
}

.journey-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--night-blue);
    margin-bottom: var(--space-md);
}

.journey-story {
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.timeline-item {
    display: flex;
    gap: var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 25px;
    bottom: -20px;
    width: 2px;
    background: var(--silk-gold);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--spice-orange);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 2px 10px rgba(232, 124, 30, 0.3);
}

.timeline-content {
    flex: 1;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--spice-orange);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.timeline-text {
    color: #666;
    line-height: 1.6;
}

/* Instagram Feed Styles */
.instagram-section {
    position: relative;
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.instagram-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.instagram-info h3 {
    font-family: var(--font-heading);
    color: var(--night-blue);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.instagram-info p {
    color: #666;
    font-size: 0.9rem;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
}

.instagram-post {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
}

.instagram-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.instagram-post-content {
    padding: var(--space-sm);
}

.instagram-post-text {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.instagram-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #999;
}

.instagram-likes {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Loading State */
.instagram-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: var(--glass-bg);
    border-radius: 16px;
    margin-top: var(--space-md);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--silk-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Error State */
.instagram-error {
    text-align: center;
    padding: var(--space-lg);
    background: var(--glass-bg);
    border-radius: 16px;
    margin-top: var(--space-md);
    color: #666;
}

/* View More Button */
.instagram-view-more {
    text-align: center;
    margin-top: var(--space-md);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(240, 148, 51, 0.3);
}


.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 148, 51, 0.4);
}

.instagram-post {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.instagram-post.visible {
    opacity: 1;
    transform: translateY(0);
}

.instagram-post-image {
    position: relative;
    overflow: hidden;
}

.post-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-stats {
    display: flex;
    gap: 1rem;
    color: white;
    font-weight: 600;
}

.retry-btn {
    background: var(--silk-gold);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    margin: 0.5rem;
    transition: background 0.3s ease;
}

.retry-btn:hover {
    background: var(--spice-orange);
}

.view-post {
    color: var(--silk-gold);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Journey Stats (keep existing) */
.journey-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 124, 30, 0.1));
    border-radius: 20px;
    grid-column: 1 / -1;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--silk-gold), var(--spice-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: var(--space-xs);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .journey-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .instagram-feed {
        grid-template-columns: 1fr;
    }

    .journey-stats {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .instagram-header {
        flex-direction: column;
        text-align: center;
    }

    .instagram-post img {
        height: 250px;
    }
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 124, 30, 0.1));
    border-radius: 20px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--silk-gold), var(--spice-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: var(--space-xs);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F0E8 100%);
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.contact-info {
    background: white;
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--night-blue);
    margin-bottom: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--silk-gold), var(--spice-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--night-blue);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    color: var(--night-blue);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    background: #fafafa;
}

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

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

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--silk-gold), var(--spice-orange));
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
    background: var(--night-blue);
    color: var(--warm-white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--silk-gold);
    margin-bottom: var(--space-md);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: var(--warm-white);
}

.social-link:hover {
    background: var(--silk-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--silk-gold);
    margin-bottom: var(--space-md);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--silk-gold);
    transform: translateX(5px);
    display: inline-block;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition-smooth);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--silk-gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 0.8rem 2rem;
    background: var(--silk-gold);
    color: var(--night-blue);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background: var(--desert-sand);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--silk-gold), var(--spice-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu - Enhanced Design */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 24px;
}

.mobile-menu span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--warm-white);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 2px;
}

.mobile-menu span:nth-child(1) {
    top: 0;
}

.mobile-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu span:nth-child(3) {
    bottom: 0;
}

header.scrolled .mobile-menu span {
    background: var(--warm-white);
}

.mobile-menu.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
}

.mobile-menu.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Enhanced Mobile Navigation Menu */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--night-blue) 0%, rgba(26, 31, 58, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        gap: 2.5rem;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        color: var(--warm-white) !important;
        font-size: 2rem;
        text-shadow: none !important;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a::after {
        bottom: -10px;
        height: 3px;
        background: var(--silk-gold);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.stagger {
    transition-delay: 0s;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: var(--space-xs);
}

.mt-2 {
    margin-top: var(--space-sm);
}

.mt-3 {
    margin-top: var(--space-md);
}

.mt-4 {
    margin-top: var(--space-lg);
}

.mt-5 {
    margin-top: var(--space-xl);
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }

    .tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }

    .team-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .team-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .journey-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .journey-stats {
        gap: var(--space-sm);
    }
}

/* Mobile Devices */
@media (max-width: 768px) {

    /* Mobile Navigation */
    .mobile-menu {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--night-blue) !important;
        font-size: 1.5rem;
        text-shadow: none !important;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 80%;
        max-width: 300px;
    }

    /* Trust Bar */
    .trust-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Section Headers */
    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Tours Grid */
    .tours-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .tour-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .tour-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    /* Team Cards */
    .team-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .team-card {
        max-width: 440px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
    }

    /* Journey Stats */
    .journey-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 10px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        letter-spacing: 1px;
        font-size: 0.4rem;
    }

    .journey-image {
        display: none;
    }

    /* Contact */
    .contact-intro {
        padding: 0 1rem;
    }

    .contact-info,
    .contact-form {
        padding: var(--space-lg);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    /* Spacing Adjustments */
    section {
        padding: var(--space-lg) 0;
    }

    .container {
        padding: 0 4%;
    }
}

@media (max-width: 765px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .team-cards {
        grid-template-columns: 1fr;
    }

    .why-intro {
        font-size: 0.9rem;
    }

    .animate-on-scroll {
        margin-bottom: -1rem;
    }

    .features-grid> :nth-child(5),
    .features-grid> :nth-child(6) {
        display: none;
    }

    .hero-description {
        max-width: 760px;
    }

    .hero-content {
        max-width: 760px;
        padding: 0;
    }

    .hero-title {
        margin: 0 3rem 1rem 3rem;
    }

    .hero-tagline {
        margin-top: 3rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {

    /* Typography */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    /* Trust Bar */
    .trust-number {
        font-size: 2rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }

    /* Tour Cards */
    .tour-card {
        margin: 0 auto;
    }

    .tour-card-content {
        padding: 1.5rem;
    }

    .tour-price {
        font-size: 1.5rem;
    }

    /* Team Cards */
    .team-img {
        width: 100px;
        height: 100px;
    }

    .team-card {
        padding: 1.5rem;

    }

    /* Contact Form */
    .contact-info,
    .contact-form {
        padding: var(--space-md);
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-brand h3 {
        font-size: 1.5rem;
    }

    /* Back to Top */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* Very Small Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .tours-grid,
    .team-cards,
    .features-grid {
        padding: 0;
    }

    .tour-card,
    .team-card,
    .feature-card {
        border-radius: 12px;
    }
}

/* Ultra-wide Screens */
@media (min-width: 2300px) {
    .container {
        max-width: 2000px;
    }

    .btn-primary {
        padding: 1.9rem 4.9rem;
        font-size: 2.5rem;
        font-weight: 800;
    }

    .hero-title {
        font-size: 7rem;
    }

    .section-title {
        font-size: 4rem;
    }

    .tours-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .team-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Print Styles */
@media print {

    header,
    .back-to-top,
    .hero-cta,
    .tour-cta,
    .contact-form {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .section-title {
        page-break-after: avoid;
    }

    .tour-card,
    .team-card {
        page-break-inside: avoid;
    }
}

/* Fix for image loading issues */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Ensure images are visible */
.tour-card-image img,
.team-img img,
.journey-image img {
    opacity: 1;
    visibility: visible;
}

/* No tours message */
.no-tours {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

@media (min-width: 2300px) {
    header {
        padding: 1.5rem 5%;
    }

    header.scrolled {
        padding: 2rem 5%;
    }

    .navbar {
        max-width: 2400px;
    }

    .logo a {
        font-size: 3.5rem;
    }

    .nav-links {
        gap: 2.7rem;
    }

    .nav-links a {
        font-size: 2rem;
    }

    .btn-nav {
        padding: 1.1rem 2.7rem;
    }

    .feature-title {
        font-size: 1.4rem;
    }

    .feature-description {
        font-size: 1.15rem;
    }

}


/* Add these styles to your style.css file */

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: white;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.notification.error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.notification.info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
}

.notification::before {
    font-size: 20px;
}

.notification.success::before {
    content: '✓';
}

.notification.error::before {
    content: '⚠';
}

.notification.info::before {
    content: 'ℹ';
}

/* Contact Form Enhanced Styles */
#contactForm button[type="submit"] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#contactForm button[type="submit"]:disabled {
    cursor: not-allowed;
}

#contactForm button[type="submit"].loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Form validation states */
.form-control.error {
    border-color: #dc3545;
    animation: shake 0.5s;
}

.form-control.success {
    border-color: #28a745;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        font-size: 14px;
    }
}

.form-hint {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
    display: block;
}

.price-summary {
    background: #f0f8ff;
    border: 1px solid #b8daff;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.price-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.price-value {
    color: #2c5282;
    font-size: 1.2rem;
}
/* Minimal Full Width Reviews Section */
#reviews {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #f8f9fa;
    padding: 60px 0;
    position: relative;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 60px;
    align-items: center;
}

/* Left Side - Simple Text */
.reviews-left h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--night-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.reviews-left p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Right Side - Reviews */
.reviews-right {
    cursor: pointer;
    user-select: none;
}

.review-content {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.review-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    text-align: center;
}

.review-item.active {
    opacity: 1;
    transform: translateY(0);
}

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

.stars {
    color: var(--silk-gold);
    font-size: 1.5rem;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.author {
    color: var(--spice-orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
    flex-shrink: 0;
}

.review-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--night-blue);
    margin: 0;
    font-style: italic;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    #reviews {
        padding: 40px 0;
    }
    
    .reviews-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .reviews-left h2 {
        font-size: 2rem;
    }
    
    .review-content {
        height: 140px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .author {
        text-align: center;
    }
    
    .review-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .reviews-left h2 {
        font-size: 1.8rem;
    }
    
    .reviews-left p {
        font-size: 1rem;
    }
    
    .review-content {
        height: 160px;
    }
    
    .stars {
        font-size: 1.3rem;
    }
    
    .author {
        font-size: 0.85rem;
    }
}

/* Continuous Scrolling Team Carousel */
#team {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 0;
    position: relative;
    overflow: hidden;
    padding: 60px 0 60px 0;
}

.team-section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 5%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--night-blue);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--silk-gold), var(--spice-orange));
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    padding: 0 1rem;
}

/* Carousel Container - Full Width */
.team-carousel-container {
    background: transparent !important;
    position: relative;
    width: 100vw;
    height: 450px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.team-carousel-container:active {
    cursor: grabbing;
}

/* Carousel Track - Continuous Movement */
.team-carousel-track {
    display: flex;
    gap: 30px;
    height: 100%;
    padding-left: 30px;
    animation: slideLeft 30s linear infinite;
    will-change: transform;
}

.team-carousel-track:hover {
    animation-play-state: paused;
}

/* Individual Team Cards */
.team-card {
    flex: 0 0 320px;
    height: 440px;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0.8;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, */
            /* rgba(255, 255, 255, 0.1) 0%, */
            /* rgba(255, 255, 255, 0) 100%); */
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    opacity: 1;
    box-shadow: var(--glass-shadow-hover);
    z-index: 2;
}

.team-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--silk-gold);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

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

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

.team-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.team-name {
    color: var(--spice-orange);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.team-role {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    flex-shrink: 0;
    height: 20px;
}

.team-bio {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 85px;
}

.team-quote {
    font-style: italic;
    color: var(--spice-orange);
    font-size: 0.8rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    flex-shrink: 0;
    height: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background-color: transparent;
}

.team-quote::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--silk-gold);
    opacity: 0.5;
    font-family: var(--font-heading);
}

/* Edge Fade Effects */
.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    pointer-events: none;
    z-index: 10;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, 
        rgba(248, 249, 250, 1) 0%,
        rgba(248, 249, 250, 0.8) 30%,
        rgba(248, 249, 250, 0) 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, 
        rgba(248, 249, 250, 1) 0%,
        rgba(248, 249, 250, 0.8) 30%,
        rgba(248, 249, 250, 0) 100%);
}

/* Continuous Animation */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 6 - 180px)); /* 6 cards + gaps */
    }
}

/* Responsive Design */

@media (min-width: 1800px) {
    .team-carousel-track {
        animation-duration: 25s;
    }
    
    .team-carousel-container {
        height: 600px;
    }
    
    .team-card {
        flex: 0 0 400px;
        height: 600px;
        padding: 1.25rem;
    }
    
    .team-img {
        width: 120px;
        height: 120px;
    }
    .team-role{
        font-size: 0.95rem;
        font-weight: 900;
        height: 24px;
    }
    
    .team-name {
        font-size: 2rem;
    }
    
    .team-bio {
        font-size: 1.3rem;
        -webkit-line-clamp: 4;
        min-height: 110px;
    }
    
    .team-quote {
        font-size: 1.2rem;
        height: 80px;
    }
}


@media (max-width: 1024px) {
    .team-carousel-track {
        animation-duration: 25s;
    }
    
    .team-carousel-container {
        height: 420px;
    }
    
    .team-card {
        flex: 0 0 280px;
        height: 430px;
        padding: 1.25rem;
    }
    
    .team-img {
        width: 80px;
        height: 80px;
    }
    
    .team-name {
        font-size: 1rem;
    }
    
    .team-bio {
        font-size: 0.8rem;
        -webkit-line-clamp: 4;
        min-height: 110px;
    }
    
    .team-quote {
        font-size: 0.7rem;
        height: 80px;
    }
}

@media (max-width: 768px) {
    #team {
        padding: 60px 0;
    }
    
    .team-section-header {
        margin-bottom: 40px;
        padding: 0 4%;
    }
    
    .team-carousel-container {
        height: 380px;
    }
    
    .team-carousel-track {
        animation-duration: 20s;
        gap: 20px;
        padding-left: 20px;
    }
    
    .team-card {
        flex: 0 0 250px;
        height: 380px;
        padding: 1rem;
    }
    
    .team-img {
        width: 70px;
        height: 70px;
    }
    
    .team-name {
        font-size: 0.95rem;
    }
    
    .team-role {
        font-size: 0.75rem;
        height: 18px;
    }
    
    .team-bio {
        font-size: 0.75rem;
        -webkit-line-clamp: 4;
        min-height: 75px;
    }
    
    .team-quote {
        font-size: 0.6rem;
        height: 50px;
    }
    
    .fade-left,
    .fade-right {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .team-carousel-container {
        height: 350px;
    }
    
    .team-carousel-track {
        animation-duration: 18s;
        gap: 15px;
        padding-left: 15px;
    }
    
    .team-card {
        flex: 0 0 220px;
        height: 300px;
        padding: 0.75rem;
    }
    
    .team-img {
        width: 60px;
        height: 60px;
    }
    
    .team-name {
        font-size: 0.9rem;
    }
    
    .team-role {
        height: 16px;
        font-size: 0.7rem;
    }
    
    .team-bio {
        font-size: 0.7rem;
        -webkit-line-clamp: 3;
        min-height: 60px;
    }
    
    .team-quote {
        font-size: 0.65rem;
        height: 25px;
    }
    
    .fade-left,
    .fade-right {
        width: 80px;
    }
}

/* Pause animation when section is not visible */
@media (prefers-reduced-motion: reduce) {
    .team-carousel-track {
        animation: none;
    }
}
