/* ============================================
   EON Tours - Modern Clean Design
   Light, refreshing colors for a tourism agency
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Light & Fresh */
    --primary: #4a90a4;
    --primary-light: #6db3c7;
    --primary-dark: #357a8c;
    --primary-pale: #e8f4f8;

    /* Accent Colors */
    --accent: #e8927c;
    --accent-light: #f4b8a8;
    --gold: #e9b44c;

    /* Status Colors */
    --success: #22c55e;
    --success-pale: #dcfce7;
    --warning: #f59e0b;
    --warning-pale: #fef3c7;
    --danger: #ef4444;
    --danger-pale: #fee2e2;
    --gray-50: #fafafa;

    /* Neutrals */
    --white: #ffffff;
    --cream: #fdfcfa;
    --sand: #f8f6f3;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --text: #3d4f50;
    --text-light: #5a6b6c;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.12);

    /* Transitions */
    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px;
    --header-height: 80px;

    /* Shared hero text shadow — keeps titles readable over bright photos (no dark overlay needed) */
    --hero-text-shadow: 0 2px 24px rgba(0,0,0,0.85), 0 2px 8px rgba(0,0,0,0.7), 0 0 3px rgba(0,0,0,0.6);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

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

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

ul {
    list-style: none;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

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

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

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    z-index: 1000;
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-pale);
}

.dropdown-icon {
    transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text);
    transition: all var(--transition-fast);
}

.dropdown li a:hover {
    background: var(--primary-pale);
    color: var(--primary);
    padding-left: 24px;
}

/* Header CTA */
.header-cta {
    padding: 10px 24px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-left: 8px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--gray-100);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition-fast);
}

.lang-current:hover {
    background: var(--primary-pale);
    color: var(--primary);
}

.lang-icon {
    width: 18px;
    height: 18px;
}

.lang-code {
    font-weight: 600;
}

.lang-arrow {
    width: 10px;
    height: 10px;
    transition: transform var(--transition-fast);
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
    z-index: 100;
}

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

.lang-option {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--text);
    transition: all var(--transition-fast);
}

.lang-option:hover {
    background: var(--primary-pale);
    color: var(--primary);
}

.lang-option.active {
    background: var(--primary-pale);
    color: var(--primary);
    font-weight: 500;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Shorter hero on phones/tablets so it doesn't fill the whole screen
   (full-bleed 100vh felt too big on mobile — keep it compact like inner pages) */
@media (max-width: 768px) {
    .hero { height: 66vh; min-height: 430px; }
}
@media (max-width: 480px) {
    .hero { height: 62vh; min-height: 400px; }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    /* Inactive (invisible) slides must not intercept clicks on the active slide's
       buttons — opacity:0 alone still captures pointer events. */
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light touch only — keep the photo bright; readability comes from text-shadow */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.10) 0%,
        rgba(0,0,0,0.14) 55%,
        rgba(0,0,0,0.28) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: var(--container-max);
    padding: 0 24px;
    padding-top: var(--header-height);
    box-sizing: border-box;
}

/* Per-slide placement — drop the text into the photo's open/calm area */
.hero-content.hero-pos-left { text-align: left; }
.hero-content.hero-pos-left p { margin-left: 0; }
.hero-content.hero-pos-left .hero-buttons { justify-content: flex-start; }
.hero-content.hero-pos-right { text-align: right; }
.hero-content.hero-pos-right p { margin-right: 0; margin-left: auto; }
.hero-content.hero-pos-right .hero-buttons { justify-content: flex-end; }
.hero-content.hero-pos-top { top: 34%; }
.hero-content.hero-pos-bottom { top: 70%; }

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: var(--hero-text-shadow);
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 32px;
    opacity: 0.95;
    text-shadow: var(--hero-text-shadow);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile hero: hide the CTA buttons and pin the text near the bottom.
   Placed after the base .hero-content/.hero-buttons rules so it wins. */
@media (max-width: 768px) {
    .hero-buttons { display: none !important; }
    .hero-content,
    .hero-content.hero-pos-top,
    .hero-content.hero-pos-bottom {
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        padding-top: 0;
        padding-bottom: 36px;
    }
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 10;
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    pointer-events: auto;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
/* Trust / Stats bar */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
}
.stats-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 24px;
}
.stats-bar .stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 0.5rem 1rem;
    position: relative;
}
.stats-bar .stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 1px;
    background: rgba(255,255,255,0.22);
}
.stats-bar .stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.stats-bar .stat-label {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
}
@media (max-width: 768px) {
    .stats-bar .container {
        gap: 0;
        padding: 1.75rem 8px;
    }
    .stats-bar .stat-item {
        flex: 1;
        min-width: 0;
        padding: 0.5rem 0.4rem;
    }
    .stats-bar .stat-value { font-size: 1.7rem; }
    .stats-bar .stat-label { font-size: 0.68rem; letter-spacing: 0.3px; }
}

.features {
    padding: 60px 0;
    background: var(--cream);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 40px 40px 0 0;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-pale);
    border-radius: 50%;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-pale);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: justify;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    hyphens: none;
}

/* ============================================
   TOURS SECTION
   ============================================ */
.tours {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    display: block;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

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

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

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

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.tour-content {
    padding: 24px;
}

.tour-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.tour-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
    text-align: justify;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
}

.tour-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.tour-link svg {
    transition: transform var(--transition-fast);
}

.tour-card:hover .tour-link svg {
    transform: translateX(4px);
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */
.destinations {
    padding: var(--section-padding) 0;
    background: var(--sand);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    display: block;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
}

.destination-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}

.destination-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

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

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: 40px;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: var(--gold);
    margin-bottom: 24px;
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

/* Google reviews enhancements */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author-meta {
    text-align: left;
}

.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
    font-size: 1rem;
    color: var(--text);
}

.reviews-summary .google-g {
    flex-shrink: 0;
}

.reviews-summary strong {
    font-size: 1.15rem;
    font-weight: 700;
}

.reviews-summary-stars {
    display: inline-flex;
    gap: 2px;
    line-height: 0;
}

.reviews-summary-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-contact ul li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-badges {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 70px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 10px;
    transition: transform var(--transition), opacity var(--transition);
}

.footer-badge:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-legal a:hover {
    opacity: 1;
}

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */
.page-hero {
    position: relative;
    aspect-ratio: 21 / 9;
    min-height: 380px;
    max-height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    margin-top: var(--header-height);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Shorter banner variant (contact) than the default page hero */
.page-hero.contact-hero,
.page-hero.compact-hero {
    aspect-ratio: 16 / 5;
    min-height: 260px;
    max-height: 420px;
}

/* Why-EON hero — short banner (16/5). The photo is also 16/5, so the full
   panoramic scene shows with no crop. No dark overlay: text stays readable
   via text-shadow instead of darkening the image. */
.page-hero.whyeon-hero {
    aspect-ratio: 16 / 5;
    min-height: 260px;
    max-height: 420px;
    background-position: center center;
}
.page-hero.whyeon-hero .page-hero-overlay {
    display: none;
}
.page-hero.whyeon-hero .page-hero-content h1,
.page-hero.whyeon-hero .page-hero-content p {
    text-shadow: var(--hero-text-shadow);
}

/* Legal pages (privacy, terms) — clean branded title band, no photo */
.legal-hero {
    margin-top: var(--header-height);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 60px 0 52px;
    text-align: center;
}
.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 10px;
}
.legal-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto;
}

/* Tour-list hero — compact height (16/5). The image is NOT darkened at all;
   readability comes purely from a strong shadow on the text glyphs themselves. */
.page-hero.tours-hero .page-hero-overlay {
    display: none;
}
.page-hero.tours-hero .page-hero-content h1,
.page-hero.tours-hero .page-hero-content p {
    text-shadow: var(--hero-text-shadow);
}
/* Per-category vertical framing for the compact (16/5) crop so the subjects
   stay in view. Cycling photo has the riders low in the frame. */
.page-hero.tours-hero-cycling { background-position: center 62%; }
.page-hero.tours-hero-hiking { background-position: center 78%; }
.page-hero.tours-hero-yacht { background-position: center 82%; }
.page-hero.tours-hero-biblical { background-position: center center; }
.page-hero.tailor-hero { background-position: center 32%; }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.05) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 24px 64px;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 14px;
    text-shadow: var(--hero-text-shadow);
    letter-spacing: -0.02em;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: var(--hero-text-shadow);
    line-height: 1.6;
    max-width: 600px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 16px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: justify;
    hyphens: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

/* Tour pre-fill notice (shown when arriving from a tour page) */
.form-tour-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--primary-pale, #e8f4f8);
    border: 1px solid var(--primary, #4a9fb5);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 22px;
}
.form-tour-notice svg {
    color: var(--primary-dark, #357a8c);
    flex-shrink: 0;
    margin-top: 2px;
}
.form-tour-notice > div { display: flex; flex-direction: column; line-height: 1.5; }
.form-tour-notice-label { font-size: 0.85rem; color: var(--text-light, #6b7c7d); }
.form-tour-notice strong { font-size: 1.05rem; color: var(--text, #3d4f50); }
.form-tour-notice-date { font-size: 0.85rem; color: var(--text-light, #6b7c7d); margin-top: 2px; }

.contact-form .form-group.message-group textarea {
    flex: 1;
    min-height: 120px;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

/* Contact Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-row .form-group {
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    box-sizing: border-box;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    box-sizing: border-box;
    resize: vertical;
    min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-pale);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

.contact-form .btn-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-form .spinner {
    animation: spin 1s linear infinite;
}

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

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Contact Info */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.contact-info-content {
    flex: 1;
}

.contact-info-content h4 {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    font-size: 1rem;
}

.contact-info-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--primary);
    font-weight: 500;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.contact-response-time {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--primary-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
    font-weight: 500;
}

/* Map Section */
.map-section {
    padding: 0 0 var(--section-padding);
    background: var(--cream);
}

.map-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.map-header {
    padding: 24px 30px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-header svg {
    color: var(--primary);
}

.map-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.map-wrapper {
    width: 100%;
    height: 350px;
    background: var(--gray-100);
}

.map-wrapper iframe,
.map-wrapper #contact-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ============================================
   TOURS LISTING PAGE
   ============================================ */
.tours-listing {
    padding: var(--section-padding) 0;
    background: var(--cream);
    min-height: 60vh;
}

.tours-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.tours-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 16px;
    position: relative;
}

.tours-intro h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.tours-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: justify;
    hyphens: none;
}

.tours-grid-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Tour cards are now clickable anchors */
.tour-card-full,
.dest-tcard {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.tour-card-full:hover,
.dest-tcard:hover {
    text-decoration: none;
}

@media (max-width: 1100px) {
    .tours-grid-listing {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tour Card Full */
.tour-card-full {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-100);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.tour-card-full:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: transparent;
}

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

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.tour-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.tour-badge-featured {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
}

.tour-badge-type {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
}

.tour-badge-type.self_guided {
    background: var(--accent);
}

.tour-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-card-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    background: var(--primary-pale);
    padding: 4px 12px;
    border-radius: 50px;
}

.tour-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.25rem * 1.35 * 2);
}

.tour-card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    hyphens: none;
}

.tour-card-meta {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-top: auto;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
}

.tour-meta-item svg {
    color: var(--primary);
}

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

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

.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.tour-card-footer .btn {
    padding: 12px 24px;
    font-weight: 600;
    gap: 8px;
}

.no-tours {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 20px;
    color: var(--text-light);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

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

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
    }

    /* Tours Listing */
    .tours-grid-listing {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tour-card-full {
        flex-direction: row;
    }

    .tour-card-image {
        width: 320px;
        height: auto;
        min-height: 280px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --header-height: 70px;
    }

    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        padding: 100px 24px 40px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: all var(--transition);
        overflow-y: auto;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link {
        padding: 16px 0;
        justify-content: space-between;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
        background: var(--gray-100);
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .nav-item.dropdown-open .dropdown {
        max-height: 800px;
    }

    .dropdown li a {
        padding: 12px 16px;
    }

    .header-cta {
        display: none;
    }

    /* Language Switcher Mobile */
    .lang-switcher {
        margin-left: auto;
        margin-right: 10px;
    }

    .lang-current {
        padding: 8px 12px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lang-code {
        display: none;
    }

    .lang-dropdown {
        right: -10px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-dot {
        position: relative;
        width: 14px;
        height: 14px;
    }

    .hero-dot::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 44px;
        height: 44px;
        transform: translate(-50%, -50%);
    }

    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }

    .hero-prev,
    .hero-next {
        width: 44px;
        height: 44px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    /* Features */
    .features {
        margin-top: -40px;
        border-radius: 24px 24px 0 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    /* Destinations */
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 300px;
    }

    /* Page Hero */
    .page-hero {
        height: 380px;
    }

    .page-hero-content {
        padding: 0 20px 44px;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .page-hero-content p {
        font-size: 1rem;
    }

    /* Contact Page */
    .contact-intro h2 {
        font-size: 1.8rem;
    }

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

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 24px;
    }

    /* Map */
    .map-container {
        border-radius: 16px;
    }

    .map-header {
        padding: 18px 20px;
    }

    .map-header h3 {
        font-size: 1.1rem;
    }

    .map-wrapper {
        height: 280px;
    }

    /* Tours Listing */
    .tours-intro h2 {
        font-size: 1.8rem;
    }

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

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

    .tour-card-image {
        width: 100%;
        height: 220px;
        min-height: auto;
    }

    .tour-card-content {
        padding: 24px;
    }

    .tour-card-content h3 {
        font-size: 1.25rem;
    }

    .tour-card-meta {
        flex-wrap: wrap;
        gap: 16px;
    }

    .tour-card-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .tour-card-footer .btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Scroll Top */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .container {
        padding: 0 16px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        padding: 14px 28px;
        width: 100%;
    }

    /* Features */
    .feature-card {
        padding: 24px 20px;
    }

    .features {
        padding: 48px 0;
    }

    /* Page Hero */
    .page-hero {
        height: 320px;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    /* Contact */
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px;
    }

    /* Tour cards */
    .tour-card-content {
        padding: 20px;
    }

    .tour-card-meta {
        gap: 12px;
    }
}

/* ============================================
   GUIDES GRID (Team Page)
   ============================================ */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.guide-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guide-card-image {
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.guide-card-content {
    padding: 16px;
    text-align: center;
}

.guide-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.guide-specialty {
    font-size: 0.85rem;
    color: var(--primary);
}

/* ============================================
   FLEET FILTER & CATEGORY BADGE
   ============================================ */
.fleet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

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

.fleet-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-card {
    position: relative;
}

.fleet-card-image {
    position: relative;
}

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

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Testimonials Page Grid */
.testimonials-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card-full {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--gold);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text);
}

.testimonial-location,
.testimonial-tour,
.testimonial-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-tour {
    color: var(--primary);
}

/* Qualifications Grid */
.qualifications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.qualification-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-pale);
    padding: 12px 20px;
    border-radius: 30px;
    color: var(--primary-dark);
    font-weight: 500;
}

.qualification-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonials-page-grid {
        grid-template-columns: 1fr;
    }

    .qualifications-grid {
        flex-direction: column;
        align-items: center;
    }

    .fleet-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .guide-card-content {
        padding: 12px;
    }

    .guide-card-content h4 {
        font-size: 0.95rem;
    }
}

/* ============================================
   TOUR DETAIL PAGE
   ============================================ */
.tour-detail-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.tour-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}

.tour-detail-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.tour-detail-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.tour-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tour-detail-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}

.tour-price-bar {
    background: var(--primary);
    color: var(--white);
    padding: 20px 0;
}

.tour-price-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tour-price-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tour-price-info .price-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.tour-price-info .price-value {
    font-size: 2rem;
    font-weight: 700;
}

.tour-price-info .price-per {
    font-size: 0.9rem;
    opacity: 0.9;
}

.tour-detail-content {
    padding: 60px 0;
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.tour-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 30px;
}

.tour-tab {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
}

.tour-tab:hover {
    color: var(--primary);
}

.tour-tab.active {
    color: var(--primary);
}

.tour-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.tour-tab-content {
    display: none;
}

.tour-tab-content.active {
    display: block;
}

.tour-overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
    text-align: justify;
    hyphens: none;
}

.tour-highlights-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.tour-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.tour-highlights-list li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.tour-specs-table {
    background: var(--gray-50);
    border-radius: 12px;
    overflow: hidden;
}

.tour-specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.tour-specs-table th,
.tour-specs-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.tour-specs-table th {
    width: 35%;
    font-weight: 600;
    color: var(--text);
    background: var(--gray-100);
}

.tour-specs-table td {
    color: var(--text-light);
}

.tour-itinerary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.itinerary-day {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.itinerary-day-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    flex-shrink: 0;
}

.itinerary-day-number span {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.itinerary-day-number strong {
    font-size: 1.5rem;
}

.itinerary-day-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.itinerary-day-content p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.itinerary-cycling {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.inclusions-col h3,
.exclusions-col h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.inclusions-col h3 svg {
    color: var(--success);
}

.exclusions-col h3 svg {
    color: var(--danger);
}

.inclusions-col ul,
.exclusions-col ul {
    list-style: none;
    padding: 0;
}

.inclusions-col li,
.exclusions-col li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    padding-left: 24px;
    position: relative;
}

.inclusions-col li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.exclusions-col li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: bold;
}

.tour-dates-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.tour-dates-table table {
    width: 100%;
    border-collapse: collapse;
}

.tour-dates-table th,
.tour-dates-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.tour-dates-table th {
    background: var(--gray-50);
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-available {
    background: var(--success-pale);
    color: var(--success);
}

.status-limited {
    background: var(--warning-pale);
    color: var(--warning);
}

.status-sold-out {
    background: var(--danger-pale);
    color: var(--danger);
}

.tour-pricing-details {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
}

.tour-pricing-details h3 {
    margin-bottom: 20px;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-item:last-child {
    border-bottom: none;
}

.tour-detail-sidebar {
    position: sticky;
    top: 100px;
}

.tour-enquiry-box {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.tour-enquiry-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.tour-enquiry-box p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.tour-contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.tour-contact-info a {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Tour Detail */
@media (max-width: 1024px) {
    .tour-detail-grid {
        grid-template-columns: 1fr;
    }

    .tour-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .tour-detail-hero h1 {
        font-size: 2rem;
    }

    .tour-price-bar-content {
        flex-direction: column;
        text-align: center;
    }

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

    .itinerary-day {
        flex-direction: column;
    }

    .itinerary-day-number {
        width: 60px;
        height: 60px;
    }

    .tour-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .tour-tab {
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--gray-800);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-banner-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mb-40 { margin-bottom: 40px; }

.section {
    padding: var(--section-padding) 0;
}

.section-gray {
    background: var(--sand);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
    hyphens: none;
}

/* ============================================
   TAILOR-MADE PAGE
   ============================================ */
.tailor-made-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.tailor-made-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 36px;
    position: relative;
    padding-bottom: 20px;
}

.tailor-made-form-wrapper h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

.tailor-made-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.tailor-made-form .form-group {
    margin-bottom: 24px;
}

.tailor-made-form .form-row .form-group {
    margin-bottom: 0;
}

.tailor-made-form label {
    display: block;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.tailor-made-form input[type="text"],
.tailor-made-form input[type="email"],
.tailor-made-form input[type="tel"],
.tailor-made-form select,
.tailor-made-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    box-sizing: border-box;
}

.tailor-made-form input[type="text"],
.tailor-made-form input[type="email"],
.tailor-made-form input[type="tel"],
.tailor-made-form select {
    height: 52px;
}

.tailor-made-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.tailor-made-form textarea {
    resize: vertical;
    min-height: 120px;
}

.tailor-made-form input:focus,
.tailor-made-form select:focus,
.tailor-made-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-pale);
}

.tailor-made-form input::placeholder,
.tailor-made-form textarea::placeholder {
    color: var(--gray-400);
}

/* Interests Grid */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 4px;
}

.interest-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.9rem;
    color: var(--text);
}

.interest-checkbox:hover {
    border-color: var(--primary-light);
    background: var(--primary-pale);
}

.interest-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.interest-checkbox input[type="checkbox"]:checked + span {
    color: var(--primary);
    font-weight: 500;
}

.interest-checkbox:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-pale);
}

/* Form Success */
.form-success {
    margin-top: 24px;
    padding: 24px;
    background: var(--success-pale);
    color: #166534;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid #bbf7d0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 12px;
}

.process-step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3);
}

.process-step-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 2px;
    background: var(--gray-200);
    z-index: 1;
}

.process-step:last-child .process-step-connector {
    display: none;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Tailor-Made */
@media (max-width: 768px) {
    .tailor-made-form-wrapper {
        padding: 28px 20px;
    }

    .tailor-made-form-wrapper h2 {
        font-size: 1.5rem;
    }

    .tailor-made-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tailor-made-form .form-row .form-group {
        margin-bottom: 24px;
    }

    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .interest-checkbox {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .process-step-connector {
        display: none;
    }
}

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

    .tailor-made-form-wrapper {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
