/* 
=========================================
Sweet Escape Tours - Premium Website Styles
=========================================
Design Rationale: This CSS implements an "Elevated Tropical Sophistication" design approach
that balances luxury and the vibrant Caribbean aesthetic of St. Lucia. The design uses:
- Generous white space for a premium feel
- Strategic color usage from the brand palette
- Elegant typography with Playfair Display (serif) and Montserrat (sans-serif)
- Subtle animations and micro-interactions
- Fully responsive design with a mobile-first approach
=========================================
*/

/* ========== CSS Variables ========== */
:root {
    /* Brand Colors */
    --hunter-green: #3A5139;
    --hunter-green-light: #597c58;
    --hunter-green-dark: #233022;
    
    --cerulean: #197A9C;
    --cerulean-light: #22a4d3;
    --cerulean-dark: #0f485c;
    
    --moonstone: #66B4C2;
    --moonstone-light: #84c3ce;
    --moonstone-dark: #33737f;
    
    --rich-black: #0E1117;
    --rich-black-light: #323c51;
    
    --orange-peel: #F8A33C;
    --orange-peel-light: #f9b562;
    --orange-peel-dark: #ec8609;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f9f9f9;
    --light-gray: #e0e0e0;
    --medium-gray: #9e9e9e;
    --dark-gray: #616161;
    
    /* Functional Colors */
    --primary: var(--cerulean);
    --primary-light: var(--cerulean-light);
    --primary-dark: var(--cerulean-dark);
    
    --secondary: var(--hunter-green);
    --secondary-light: var(--hunter-green-light);
    --secondary-dark: var(--hunter-green-dark);
    
    --accent: var(--orange-peel);
    --accent-light: var(--orange-peel-light);
    --accent-dark: var(--orange-peel-dark);
    
    --text: var(--rich-black);
    --text-light: var(--dark-gray);
    --text-lighter: var(--medium-gray);
    
    --background: var(--white);
    --background-alt: var(--off-white);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xxs: 0.25rem;   /* 4px */
    --space-xs: 0.5rem;     /* 8px */
    --space-sm: 0.75rem;    /* 12px */
    --space-md: 1rem;       /* 16px */
    --space-lg: 1.5rem;     /* 24px */
    --space-xl: 2rem;       /* 32px */
    --space-xxl: 3rem;      /* 48px */
    --space-xxxl: 4rem;     /* 64px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;   /* 4px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 1rem;      /* 16px */
    --radius-circle: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(14, 17, 23, 0.06);
    --shadow-md: 0 4px 8px rgba(14, 17, 23, 0.08);
    --shadow-lg: 0 8px 16px rgba(14, 17, 23, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-nav: 1000;
    --z-dropdown: 1010;
    --z-modal: 1100;
}

/* ========== Reset & Base Styles ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

small {
    font-size: 0.875rem;
}

.text-center {
    text-align: center;
}

/* ========== Layout & Containers ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Ensure navigation is always fully visible on smaller screens */
.header .container {
    padding-right: var(--space-xxl); /* Extra padding on right side for Book Now button */
}

section {
    padding: var(--space-xxl) 0;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xxl);
}

.section-header__title {
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.section-header__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.section-header__subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ========== Components ========== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    white-space: nowrap;
}

.btn--block {
    display: flex;
    width: 100%;
}

.btn--lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn--primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn--primary:hover, .btn--primary:focus {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn--secondary:hover, .btn--secondary:focus {
    background-color: var(--secondary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--accent {
    background-color: var(--accent);
    color: var(--rich-black);
}

.btn--accent:hover, .btn--accent:focus {
    background-color: var(--accent-light);
    color: var(--rich-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn--outline:hover, .btn--outline:focus {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========== Header & Navigation ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    transition: background-color var(--transition-medium), box-shadow var(--transition-medium);
    padding: var(--space-md) 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: var(--space-lg); /* Add extra padding on right side */
}

.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    height: 100px;
    width: auto;
}

/* Navigation */
.nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: calc(var(--z-nav) + 1);
}

.nav__toggle-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text);
    transition: all var(--transition-medium);
}

.nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--background);
    padding: var(--space-xxxl) var(--space-xl);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    transition: right var(--transition-medium);
    z-index: var(--z-nav);
    box-shadow: var(--shadow-lg);
}

.nav__menu.active {
    right: 0;
}

.nav__item {
    width: 100%;
}

.nav__link {
    display: inline-block;
    font-weight: 600;
    color: var(--text);
    position: relative;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-medium);
}

.nav__link:hover, .nav__link:focus, .nav__link--active {
    color: var(--primary);
}

.nav__link:hover::after, .nav__link:focus::after, .nav__link--active::after {
    width: 100%;
}

.nav__item--cta {
    margin-top: var(--space-md);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    overflow: hidden;
    background-color: var(--rich-black-light); /* Placeholder color while images load */
}

.hero__slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    will-change: opacity; /* Hint to browser for optimization */
}

.hero__slide--active {
    opacity: 1;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: opacity 0.5s ease-in; /* Smooth fade-in */
    opacity: 1;
    animation: imageFadeIn 0.5s ease-in;
}

@keyframes imageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 17, 23, 0.4), rgba(14, 17, 23, 0.7));
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 70px; /* Account for fixed header */
    color: var(--white);
    text-align: center;
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: var(--space-lg);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    color: var(--white);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 0.875rem;
    opacity: 0.8;
    animation: fadeIn 1s ease-out 1s forwards, bounce 2s infinite 2s;
    z-index: 2;
}

.hero__scroll-text {
    margin-bottom: var(--space-xs);
}

.hero__scroll-icon {
    width: 24px;
    height: 36px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scrollIndicator 2s infinite;
}

/* ========== Services Section ========== */
.services {
    background-color: var(--background-alt);
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: var(--radius-circle);
    z-index: -1;
    opacity: 0.6;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.service-card:hover::after {
    transform: scale(50);
    opacity: 0.1;
}

.service-card__icon {
    margin-bottom: var(--space-lg);
    color: var(--primary);
}

.service-card__title {
    margin-bottom: var(--space-md);
}

.service-card__description {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition-fast);
}

.service-card__link::after {
    content: '→';
    margin-left: var(--space-xs);
    transition: transform var(--transition-fast);
}

.service-card__link:hover {
    color: var(--primary-light);
}

.service-card__link:hover::after {
    transform: translateX(4px);
}

/* ========== Popular Tours Section ========== */
.tours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.tour-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-card--featured {
    border: 2px solid var(--accent);
}

.tour-card__badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background-color: var(--accent);
    color: var(--rich-black);
    font-weight: 600;
    font-size: 0.75rem;
    padding: var(--space-xxs) var(--space-xs);
    border-radius: var(--radius-sm);
    z-index: 1;
}

.tour-card__badge--premium {
    background-color: var(--rich-black);
    color: var(--accent);
}

.tour-card__image {
    height: 240px;
    overflow: hidden;
}

.tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.tour-card:hover .tour-card__image img {
    transform: scale(1.05);
}

.tour-card__content {
    padding: var(--space-lg);
}

.tour-card__title {
    margin-bottom: var(--space-xs);
    font-size: 1.5rem;
}

.tour-card__subtitle {
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
}

.tour-card__meta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.tour-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-light);
}

.tour-card__description {
    margin-bottom: var(--space-lg);
    color: var(--text-light);
}

.tour-card__price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

/* ========== Why Choose Us Section ========== */
.why-choose-us {
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--moonstone);
    opacity: 0.1;
    border-radius: var(--radius-circle);
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-circle);
    background-color: rgba(25, 122, 156, 0.1);
    color: var(--primary);
    margin-bottom: var(--space-md);
    transition: all var(--transition-medium);
}

.feature:hover .feature__icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature__title {
    margin-bottom: var(--space-sm);
}

.feature__description {
    color: var(--text-light);
}

/* ========== Testimonials Section ========== */
.testimonials {
    background-color: var(--white);
    position: relative;
}

.testimonials__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
    padding: 0 var(--space-md);
}

.testimonial--active {
    position: relative;
    opacity: 1;
    pointer-events: all;
}

.testimonial__quote {
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    position: relative;
    box-shadow: var(--shadow-md);
}

.testimonial__quote::before {
    content: '"';
    position: absolute;
    top: var(--space-xs);
    left: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial__quote::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: var(--background-alt);
    transform: rotate(45deg);
}

.testimonial__quote p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    margin-left: var(--space-xl);
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-circle);
    overflow: hidden;
    margin-right: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.testimonial__avatar-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.testimonial__info {
    display: flex;
    flex-direction: column;
}

.testimonial__name {
    font-weight: 600;
    margin-bottom: var(--space-xxs);
}

.testimonial__tour {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-xl);
}

.testimonials__control {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: var(--space-xs);
    transition: color var(--transition-fast);
}

.testimonials__control:hover {
    color: var(--primary);
}

.testimonials__indicators {
    display: flex;
    gap: var(--space-xs);
    margin: 0 var(--space-md);
}

.testimonials__indicator {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-circle);
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials__indicator--active, .testimonials__indicator:hover {
    background-color: var(--primary);
}

/* ========== CTA Section ========== */
.cta {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before, .cta::after {
    content: '';
    position: absolute;
    border-radius: var(--radius-circle);
    background-color: rgba(255, 255, 255, 0.1);
}

.cta::before {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.cta::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
}

.cta__title {
    color: var(--white);
    margin-bottom: var(--space-md);
    position: relative;
}

.cta__text {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
}

.cta__link {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: all var(--transition-fast);
    position: relative;
}

.cta__link:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ========== Footer ========== */
.footer {
    background-color: var(--rich-black);
    color: var(--white);
    padding: var(--space-xxl) 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.footer__logo {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer__logo-img {
    height: 60px;
    width: auto;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.footer__heading {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer__link:hover {
    color: var(--white);
    padding-left: var(--space-xs);
}

.footer__newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.footer__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__newsletter-input {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer__newsletter-button {
    padding: var(--space-sm) var(--space-md);
    background-color: var(--accent);
    color: var(--rich-black);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.footer__newsletter-button:hover, .footer__newsletter-button:focus {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    gap: var(--space-md);
}

.footer__legal-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer__legal-link:hover {
    color: var(--white);
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scrollIndicator {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 22px;
        opacity: 0;
    }
}

/* ========== Media Queries ========== */
/* Tablet (768px and up) */
@media screen and (min-width: 768px) {
    /* Typography */
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    /* Layout */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour-card--featured {
        grid-column: span 2;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__column--newsletter {
        grid-column: span 2;
    }
    
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    /* Navigation */
    .nav__toggle {
        display: none;
    }
    
    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background: none;
        box-shadow: none;
        flex-direction: row;
        align-items: center;
        gap: var(--space-md);
    }
    
    .nav__item {
        width: auto;
    }
    
    /* Hero */
    .hero__title {
        font-size: 3.5rem;
    }
    
    /* Newsletter */
    .footer__newsletter-form {
        flex-direction: row;
    }
    
    .footer__newsletter-input {
        flex: 1;
    }
}

/* Desktop (1024px and up) */
@media screen and (min-width: 1024px) {
    /* Typography */
    h1 {
        font-size: 3.5rem;
    }
    
    /* Layout */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xxl);
    }
    
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tour-card--featured {
        grid-column: auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
    
    .footer__column--newsletter {
        grid-column: auto;
    }
    
    /* Navigation */
    .nav__menu {
        gap: var(--space-xl);
    }
    
    /* Hero */
    .hero__title {
        font-size: 4rem;
    }
}

/* ========== Page Hero Section ========== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    text-align: center;
}

.page-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-hero__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 17, 23, 0.4), rgba(14, 17, 23, 0.7));
}

.page-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.page-hero__title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: var(--space-sm);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero__subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

/* ========== About Page Sections ========== */
.about-story,
.about-mission,
.about-difference,
.about-promise {
    padding: var(--space-xxl) 0;
}

.about-story {
    background-color: var(--white);
}

.about-story .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.about-story__title {
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.about-story__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.about-story__text p {
    margin-bottom: var(--space-md);
}

.about-story__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Mission Section */
.about-mission {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.about-mission__title {
    color: var(--white);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.about-mission__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
}

.mission-statement__text {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 300;
}

/* About Difference (Values) Section */
.about-difference {
    background-color: var(--background-alt);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.value-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-circle);
    background-color: rgba(25, 122, 156, 0.1);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.value-card__title {
    margin-bottom: var(--space-sm);
}

.value-card__description {
    color: var(--text-light);
}

/* About Promise Section */
.about-promise {
    background-color: var(--white);
    text-align: center;
}

.about-promise__title {
    margin-bottom: var(--space-xl);
    position: relative;
    display: inline-block;
}

.about-promise__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.promise-list {
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    list-style: none;
}

.promise-list__item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast);
}

.promise-list__item:hover {
    transform: translateX(5px);
}

.promise-list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--hunter-green);
    color: var(--white);
    border-radius: var(--radius-circle);
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.promise-list__text {
    font-weight: 500;
    color: var(--text);
    text-align: left;
}

.about-promise__closing {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Large Desktop (1440px and up) */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }
    
    .features-grid {
        gap: var(--space-xxl);
    }
}

/* Tablet (768px and up) - About Page specific */
@media screen and (min-width: 768px) {
    .about-story .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Team Section */
.about-team {
    background-color: var(--background-alt);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.team-member {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-member__image {
    height: 280px;
    overflow: hidden;
}

.team-member__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.team-member:hover .team-member__image img {
    transform: scale(1.05);
}

.team-member__content {
    padding: var(--space-lg);
}

.team-member__name {
    margin-bottom: var(--space-xxs);
    color: var(--primary);
}

.team-member__role {
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.team-member__bio {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Certifications Section */
.about-certifications {
    background-color: var(--white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.certification {
    text-align: center;
    background-color: var(--background-alt);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.certification:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.certification__icon {
    display: inline-flex;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.certification__title {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.certification__description {
    color: var(--text-light);
    margin-bottom: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Tablet (768px and up) - About Page specific */
@media screen and (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (1024px and up) - About Page specific */
@media screen and (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== Contact Page Styles ========== */

/* Contact Info Section */
.contact-info {
    background-color: var(--white);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.contact-card {
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-circle);
    background-color: rgba(25, 122, 156, 0.1);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.contact-card__title {
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.contact-card__detail {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.contact-card__hours {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--background-alt);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.form-input,
.form-select,
.form-textarea {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.form-checkbox {
    margin-right: var(--space-sm);
    margin-top: 3px;
}

.form-checkbox-label {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Assistance Section */
.contact-assistance {
    background-color: var(--white);
    text-align: center;
}

.contact-assistance__title {
    margin-bottom: var(--space-xl);
    position: relative;
    display: inline-block;
}

.contact-assistance__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.assistance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.assistance-item {
    display: flex;
    align-items: center;
    background-color: var(--background-alt);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast);
}

.assistance-item:hover {
    transform: translateX(5px);
}

.assistance-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-circle);
    background-color: rgba(25, 122, 156, 0.1);
    color: var(--primary);
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.assistance-item__text {
    text-align: left;
    margin-bottom: 0;
}

/* Social Section */
.contact-social {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.contact-social__title {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.contact-social__text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    transition: transform var(--transition-medium);
}

.social-link:hover {
    transform: translateY(-8px);
    color: var(--white);
}

.social-link svg {
    margin-bottom: var(--space-sm);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: var(--radius-circle);
}

.social-link__name {
    font-weight: 500;
}

.contact-social__closing {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Tablet (768px and up) - Contact Page specific */
@media screen and (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .assistance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (1024px and up) - Contact Page specific */
@media screen and (min-width: 1024px) {
    .assistance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== Tours Page Styles ========== */
/* Tours Introduction Section */
.tours-intro {
    background-color: var(--white);
}

.tours-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.tours-benefit {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.tours-benefit__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-circle);
    background-color: rgba(25, 122, 156, 0.1);
    color: var(--primary);
}

.tours-benefit__title {
    margin-bottom: var(--space-xs);
}

.tours-benefit__text {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Featured Tours Section */
.featured-tours {
    background-color: var(--background-alt);
}

/* Tour Process Section */
.tour-process {
    background-color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    padding-left: 60px;
}

.process-step__number {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    background-color: var(--accent);
    color: var(--rich-black);
    font-weight: 700;
    font-family: var(--font-heading);
}

.process-step__title {
    margin-bottom: var(--space-xs);
}

.process-step__description {
    color: var(--text-light);
}

/* ========== Airport Transfers Page Styles ========== */
/* Transfers Introduction Section */
.transfers-intro {
    background-color: var(--white);
}

.airport-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.airport-card {
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.airport-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.airport-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: var(--radius-circle);
    background-color: rgba(25, 122, 156, 0.1);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.airport-card__title {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

/* Transfer Services Section */
.transfer-services {
    background-color: var(--background-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.service-feature {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-circle);
    background-color: rgba(25, 122, 156, 0.1);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.service-feature__title {
    margin-bottom: var(--space-sm);
}

.service-feature__description {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose {
    background-color: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.reason-card {
    text-align: center;
    transition: transform var(--transition-medium);
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-circle);
    background-color: rgba(25, 122, 156, 0.1);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.reason-card__title {
    margin-bottom: var(--space-sm);
}

.reason-card__description {
    color: var(--text-light);
}

/* Booking Section */
.booking-section {
    background-color: var(--background-alt);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    padding: var(--space-md) 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item__question {
    margin-bottom: var(--space-sm);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-item__question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item.active .faq-item__question::after {
    content: '-';
}

.faq-item__answer {
    color: var(--text-light);
}

/* Tablet (768px and up) - Tours & Transfers Pages specific */
@media screen and (min-width: 768px) {
    .tours-benefits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .airport-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (1024px and up) - Tours & Transfers Pages specific */
@media screen and (min-width: 1024px) {
    .tours-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== Individual Tour Pages Styles ========== */
/* Tour Introduction Section */
.tour-intro {
    background-color: var(--white);
    padding-bottom: 0;
}

.tour-intro__content {
    max-width: 900px;
    margin: 0 auto;
}

.tour-intro__lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    color: var(--text);
}

/* Tour Highlights Section */
.tour-highlights {
    background-color: var(--background-alt);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.highlight-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.highlight-card__image {
    height: 220px;
    overflow: hidden;
}

.highlight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.highlight-card:hover .highlight-card__image img {
    transform: scale(1.05);
}

.highlight-card__content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.highlight-card__title {
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.highlight-card__description {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Tour Details Section */
.tour-details {
    background-color: var(--white);
}

.tour-details__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.tour-details__title {
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.tour-details__list {
    list-style-type: none;
    padding: 0;
}

.tour-details__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: var(--space-sm);
}

.tour-details__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.tour-specs {
    background-color: var(--background-alt);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.tour-specs__title {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--primary);
}

.tour-specs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.tour-specs__item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
    padding: var(--space-sm) 0;
}

.tour-specs__label {
    font-weight: 600;
    width: 120px;
    flex-shrink: 0;
}

.tour-specs__value {
    color: var(--text-light);
}

.tour-specs__cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* Itinerary Section */
.tour-itinerary {
    background-color: var(--background-alt);
}

.itinerary-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 60px;
    width: 2px;
    background-color: var(--light-gray);
    z-index: 0;
}

.itinerary-point {
    display: flex;
    margin-bottom: var(--space-xl);
    position: relative;
}

.itinerary-point__time {
    width: 120px;
    flex-shrink: 0;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.itinerary-point__time::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 20px;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-circle);
    background-color: var(--accent);
    z-index: 2;
}

.itinerary-point__content {
    padding-left: var(--space-md);
}

.itinerary-point__title {
    margin-bottom: var(--space-xs);
}

.itinerary-point__description {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Pricing Section */
.tour-pricing {
    background-color: var(--white);
}

.pricing-table-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-lg);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pricing-table th, 
.pricing-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-table th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-notes {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    font-size: 0.875rem;
}

/* Related Tours Section */
.related-tours {
    background-color: var(--background-alt);
}

/* Tablet (768px and up) - Tour Page specific */
@media screen and (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour-details__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour-specs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .itinerary-timeline::before {
        left: 120px;
    }
}

/* Desktop (1024px and up) - Tour Page specific */
@media screen and (min-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tour-specs__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== Booking Page Styles ========== */
/* Booking Options Section */
.booking-options {
    background-color: var(--white);
}

.booking-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.booking-tab {
    padding: var(--space-md) var(--space-xl);
    background-color: var(--background-alt);
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.booking-tab--active {
    border-bottom-color: var(--primary);
    color: var(--primary);
}

.booking-tab:hover {
    background-color: var(--light-gray);
}

.booking-content {
    position: relative;
}

.booking-panel {
    display: none;
}

.booking-panel--active {
    display: block;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-separator {
    grid-column: 1 / -1;
    height: 1px;
    background-color: var(--light-gray);
    margin: var(--space-md) 0;
}

/* Booking Process Section */
.booking-process {
    background-color: var(--background-alt);
}

/* Tablet (768px and up) - Booking Page specific */
@media screen and (min-width: 768px) {
    .booking-tabs {
        gap: var(--space-xl);
    }
    
    .booking-tab {
        min-width: 200px;
    }
}
