/* 
=========================================
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: 60px;
    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 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    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__meta-item svg {
    flex-shrink: 0;
}

.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);
}

/* ========== Photo Gallery Section ========== */
.photo-gallery {
    padding: var(--space-xxxl) 0 calc(var(--space-xxxl) + var(--space-xl));
    background-color: var(--white);
}

.photo-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: var(--space-md);
}

.photo-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.photo-gallery__item--wide {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.photo-gallery__item:hover img {
    transform: scale(1.04);
}

@media screen and (max-width: 991px) {
    .photo-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media screen and (max-width: 575px) {
    .photo-gallery {
        padding-bottom: var(--space-xxxl);
    }

    .photo-gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .photo-gallery__item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ========== 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 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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__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__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__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;
    }
    
}

/* 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 1fr 1fr;
    }
    
    /* Navigation */
    .logo__img {
        height: 84px;
    }

    .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 {
    color: var(--white);
    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);
}

.transfer-intro__media {
    overflow: hidden;
    max-width: 920px;
    aspect-ratio: 16 / 7;
    margin: var(--space-xl) auto 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

.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);
}

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

.transfer-photo-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.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-section__media {
    overflow: hidden;
    max-width: 800px;
    aspect-ratio: 16 / 7;
    margin: 0 auto var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

.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);
    }

    .transfer-photo-strip {
        grid-template-columns: repeat(3, 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;
}

/* Tour Inclusions Section */
.tour-inclusions {
    background-color: var(--white);
}

.inclusions-table-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.inclusions-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;
}

.inclusions-table th, 
.inclusions-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.inclusions-table th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.inclusions-table tbody tr:last-child td {
    border-bottom: none;
}

.inclusions-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;
    }
}

/* ========== Refined 2026 Design Layer ========== */
:root {
    --sand: #fbf4e8;
    --sand-deep: #f4dfbe;
    --seafoam: #e7f5f4;
    --leaf: #2f6f4f;
    --coral: #e9724c;
    --ink-soft: #1d2730;
    --shadow-sm: 0 8px 22px rgba(14, 17, 23, 0.07);
    --shadow-md: 0 16px 38px rgba(14, 17, 23, 0.1);
    --shadow-lg: 0 24px 60px rgba(14, 17, 23, 0.15);
}

html {
    scroll-padding-top: 88px;
}

body {
    color: var(--ink-soft);
    background:
        linear-gradient(180deg, rgba(231, 245, 244, 0.45) 0, rgba(255, 255, 255, 0) 360px),
        var(--background);
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0;
}

p {
    color: color-mix(in srgb, var(--ink-soft) 78%, white);
}

section {
    padding: 5.5rem 0;
}

.container {
    max-width: 1180px;
    padding: 0 1.25rem;
}

.section-kicker,
.hero__eyebrow,
.trust-bar__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    color: var(--coral);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 3.25rem;
}

.section-header__title {
    max-width: 760px;
}

.section-header__title::after {
    width: 84px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--coral), var(--orange-peel));
}

.section-header__subtitle {
    color: color-mix(in srgb, var(--ink-soft) 66%, white);
}

.btn {
    min-height: 46px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    text-transform: none;
    box-shadow: none;
}

.btn--lg {
    min-height: 54px;
}

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

.btn--primary:hover,
.btn--primary:focus {
    background-color: var(--cerulean);
}

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

.btn--secondary:hover,
.btn--secondary:focus {
    background-color: var(--hunter-green);
}

.btn--accent {
    background-color: var(--orange-peel);
    color: var(--rich-black);
}

.btn--outline {
    border-color: color-mix(in srgb, var(--cerulean) 70%, white);
    color: var(--cerulean-dark);
    background-color: rgba(255, 255, 255, 0.65);
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(14, 17, 23, 0.12);
}

.header {
    padding: 0.7rem 0;
    background-color: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(14, 17, 23, 0.07);
    box-shadow: none;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}

.header .container {
    padding-right: 1.25rem;
}

.logo__img {
    display: block;
    height: 74px;
    width: auto;
}

.nav__menu {
    border-left: 1px solid rgba(14, 17, 23, 0.08);
}

.nav__link {
    font-size: 0.92rem;
}

.nav__link::after {
    height: 3px;
    border-radius: 999px;
    background-color: var(--orange-peel);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    min-height: 720px;
    height: 94vh;
}

.hero__image {
    transform: scale(1.02);
}

.hero__image::after {
    background:
        linear-gradient(90deg, rgba(14, 17, 23, 0.76) 0%, rgba(14, 17, 23, 0.42) 48%, rgba(14, 17, 23, 0.28) 100%),
        linear-gradient(180deg, rgba(14, 17, 23, 0.12) 0%, rgba(14, 17, 23, 0.72) 100%);
}

.hero__content {
    align-items: flex-start;
    max-width: 1180px;
    text-align: left;
}

.hero__title {
    max-width: 760px;
    font-size: 4.4rem;
    line-height: 0.98;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
}

.hero__subtitle {
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero__buttons {
    justify-content: flex-start;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 0.8rem;
    width: min(680px, 100%);
    margin-top: 2rem;
}

.hero__stat {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero__stat-value {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
}

.hero__stat-label {
    display: block;
    margin-top: 0.15rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.hero__scroll-indicator {
    left: auto;
    right: 2rem;
    transform: none;
}

.trust-bar {
    padding: 0;
    background-color: var(--rich-black);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: 1fr;
}

.trust-bar__item {
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.trust-bar__item strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.trust-bar__kicker {
    margin-bottom: 0.35rem;
    color: var(--orange-peel);
}

.services,
.why-choose-us,
.featured-tours,
.booking-process,
.transfer-services,
.tour-highlights,
.tour-itinerary,
.related-tours {
    background-color: var(--sand);
}

.service-card,
.tour-card,
.testimonial__quote,
.contact-card,
.airport-card,
.service-feature,
.tour-specs,
.highlight-card,
.booking-form,
.contact-form {
    border: 1px solid rgba(14, 17, 23, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.service-card,
.tour-card,
.highlight-card,
.contact-card,
.airport-card,
.service-feature {
    transform: translateY(0);
}

.service-card:hover,
.tour-card:hover,
.highlight-card:hover,
.contact-card:hover,
.airport-card:hover,
.service-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card::after,
.why-choose-us::before,
.cta::before,
.cta::after {
    display: none;
}

.service-card__icon,
.feature__icon,
.tours-benefit__icon,
.contact-card__icon,
.airport-card__icon,
.service-feature__icon,
.reason-card__icon {
    border-radius: var(--radius-md);
    background-color: var(--seafoam);
    color: var(--cerulean-dark);
}

.service-card__link::after {
    content: '\2192';
}

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

.tour-card__image {
    height: 260px;
}

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

.tour-card__description {
    flex: 1;
}

.tour-card__badge {
    border-radius: 999px;
    padding: 0.4rem 0.7rem;
    box-shadow: 0 8px 20px rgba(14, 17, 23, 0.16);
}

.tour-card__price {
    color: var(--leaf);
}

.tour-card__meta {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.tour-card__meta-item {
    color: color-mix(in srgb, var(--ink-soft) 66%, white);
}

.island-story {
    background-color: var(--white);
}

.island-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.island-story__media {
    position: relative;
}

.island-story__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.island-story__note {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(260px, calc(100% - 2rem));
    padding: 1rem;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.island-story__note span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--coral);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.island-story__note strong {
    display: block;
    color: var(--ink-soft);
    line-height: 1.35;
}

.island-story__content h2 {
    max-width: 620px;
    color: var(--rich-black);
}

.island-story__content p {
    max-width: 660px;
    font-size: 1.05rem;
}

.island-story__list {
    display: grid;
    gap: 0.7rem;
    margin: 1.5rem 0 2rem;
}

.island-story__list span {
    position: relative;
    padding-left: 2rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.island-story__list span::before,
.tour-details__list li::before {
    content: '\2713';
    color: var(--coral);
}

.island-story__list span::before {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background-color: var(--seafoam);
    font-size: 0.78rem;
}

.feature {
    padding: 1.25rem;
    border-left: 4px solid var(--orange-peel);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
}

.testimonials {
    background-color: var(--seafoam);
}

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

.testimonial__quote::after {
    background-color: var(--white);
}

.testimonial__quote::before {
    color: var(--coral);
}

.testimonials__control {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(14, 17, 23, 0.1);
    border-radius: 999px;
    background-color: var(--white);
}

.testimonials__indicator {
    width: 28px;
    height: 8px;
    border-radius: 999px;
}

.testimonials__indicator--active,
.testimonials__indicator:hover {
    background-color: var(--coral);
}

.cta {
    background:
        linear-gradient(120deg, rgba(14, 17, 23, 0.92), rgba(15, 72, 92, 0.92)),
        url('../images/st-lucia/rodney-bay.jpg') center/cover;
}

.footer {
    background-color: #090d12;
}

.footer__social-link {
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.08);
}

.form-input,
.form-select,
.form-textarea {
    min-height: 46px;
    border-radius: var(--radius-md);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    box-shadow: 0 0 0 4px rgba(102, 180, 194, 0.24);
}

.invalid {
    border-color: var(--coral);
}

.error-message {
    margin-top: 0.35rem;
    color: var(--coral);
    font-size: 0.82rem;
    font-weight: 600;
}

.sweet-escape-fluent-form-wrap .fluentform {
    background-color: var(--white);
    padding: var(--space-xl);
    border: 1px solid rgba(14, 17, 23, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.sweet-escape-fluent-form form.frm-fluent-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.sweet-escape-fluent-form .ff-el-group {
    margin-bottom: 0;
}

.sweet-escape-fluent-form .ff-el-input--label label,
.sweet-escape-fluent-form .ff-el-form-check-label {
    color: var(--ink-soft);
    font-weight: 600;
}

.sweet-escape-fluent-form .ff-el-form-control {
    width: 100%;
    min-height: 46px;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    background-color: var(--white);
    color: var(--ink-soft);
    box-shadow: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.sweet-escape-fluent-form textarea.ff-el-form-control {
    min-height: 130px;
    resize: vertical;
}

.sweet-escape-fluent-form .ff-el-form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(102, 180, 194, 0.24);
}

.sweet-escape-fluent-form .ff-el-is-error .ff-el-form-control {
    border-color: var(--coral);
}

.sweet-escape-fluent-form .error,
.sweet-escape-fluent-form .ff-el-is-error .text-danger {
    color: var(--coral);
    font-size: 0.82rem;
    font-weight: 600;
}

.sweet-escape-fluent-form .sweet-escape-field-full,
.sweet-escape-fluent-form .sweet-escape-terms,
.sweet-escape-fluent-form .ff_submit_btn_wrapper {
    grid-column: 1 / -1;
}

.sweet-escape-fluent-form .ff_t_c {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.sweet-escape-fluent-form .ff_t_c a {
    color: var(--primary);
    font-weight: 700;
}

.sweet-escape-fluent-form .ff-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.5rem;
    border: 0;
    border-radius: var(--radius-md);
    background-color: var(--orange-peel);
    color: var(--rich-black);
    font-weight: 800;
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.sweet-escape-fluent-form .ff-btn-submit:hover,
.sweet-escape-fluent-form .ff-btn-submit:focus {
    background-color: var(--coral);
    color: var(--white);
    transform: translateY(-2px);
}

.sweet-escape-fluent-form .ff-message-success {
    border: 1px solid rgba(47, 111, 79, 0.2);
    border-radius: var(--radius-md);
    background-color: var(--seafoam);
    color: var(--leaf);
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .sweet-escape-fluent-form form.frm-fluent-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.page-hero {
    min-height: 430px;
}

.page-hero__image::after {
    background:
        linear-gradient(90deg, rgba(14, 17, 23, 0.72), rgba(14, 17, 23, 0.36)),
        linear-gradient(180deg, rgba(14, 17, 23, 0.2), rgba(14, 17, 23, 0.72));
}

.page-hero__title {
    color: var(--white);
    font-size: 3.4rem;
    line-height: 1;
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.88);
}

.legal-page {
    background-color: var(--white);
}

.legal-page__content {
    max-width: 820px;
}

.legal-page__updated {
    color: var(--coral);
    font-weight: 700;
}

.legal-page__content h2 {
    margin-top: 2rem;
    color: var(--cerulean-dark);
}

@media screen and (max-width: 767px) {
    section {
        padding: 4rem 0;
    }

    .header__container {
        gap: 1rem;
    }

    .nav__menu {
        width: min(88vw, 380px);
    }

    .hero {
        min-height: 760px;
        height: auto;
    }

    .hero__content {
        padding-top: 110px;
        padding-bottom: 90px;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__buttons {
        width: 100%;
    }

    .hero__buttons .btn {
        width: 100%;
    }

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

    .hero__scroll-indicator {
        display: none;
    }

    .tour-card__meta {
        flex-direction: column;
    }

    .page-hero__title {
        font-size: 2.6rem;
    }
}

@media screen and (min-width: 768px) {
    .trust-bar__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-bar__item {
        padding: 1.35rem 1.5rem;
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.11);
    }

    .trust-bar__item:last-child {
        border-right: 0;
    }

    .island-story__grid {
        grid-template-columns: minmax(320px, 0.86fr) 1fr;
        gap: 4rem;
    }

    .nav__menu {
        border-left: 0;
    }
}

@media screen and (min-width: 1024px) {
    .services__grid {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .tour-card--featured {
        transform: translateY(-12px);
    }
}

/* Responsive navigation hardening */
.header__container {
    min-width: 0;
}

.logo,
.nav {
    min-width: 0;
}

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

@media screen and (max-width: 1199px) {
    .header {
        padding: 0.55rem 0;
    }

    .header .container {
        padding-left: clamp(0.85rem, 3vw, 1.25rem);
        padding-right: clamp(0.85rem, 3vw, 1.25rem);
    }

    .header__container {
        gap: 1rem;
    }

    .logo {
        flex: 0 1 auto;
    }

    .logo__img {
        height: clamp(54px, 8vw, 74px);
        max-width: min(180px, 48vw);
        object-fit: contain;
    }

    .nav {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(88vw, 380px);
        max-width: none;
        height: 100vh;
        height: 100dvh;
        padding: clamp(5rem, 12vh, 6rem) 1.35rem 2rem;
        border-left: 1px solid rgba(14, 17, 23, 0.08);
        background-color: var(--background);
        box-shadow: var(--shadow-lg);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        overflow-y: auto;
        transition: right var(--transition-medium);
        z-index: var(--z-nav);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__item {
        width: 100%;
    }

    .nav__link {
        display: inline-flex;
        width: auto;
        max-width: 100%;
        white-space: normal;
    }

    .nav__item--cta {
        margin-top: 0.35rem;
    }

    .nav__item--cta .btn {
        width: 100%;
        min-height: 48px;
        padding: 0.85rem 1rem;
        white-space: normal;
    }
}

@media screen and (max-width: 767px) {
    .cta__buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cta__buttons .btn,
    .contact-assistance .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }
}

@media screen and (min-width: 1200px) {
    .nav__toggle {
        display: none;
    }

    .nav__menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        padding: 0;
        border-left: 0;
        background: none;
        box-shadow: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(0.85rem, 1.35vw, 1.45rem);
        overflow: visible;
    }

    .nav__item {
        width: auto;
        flex: 0 0 auto;
    }

    .nav__item--cta {
        margin-top: 0;
    }

    .nav__link {
        font-size: clamp(0.84rem, 0.8vw, 0.92rem);
    }

    .nav__item--cta .btn {
        padding: 0.78rem 1.1rem;
    }
}

@media screen and (min-width: 1440px) {
    .nav__menu {
        gap: clamp(1rem, 1.55vw, 1.75rem);
    }

    .nav__item--cta .btn {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }
}

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