/* ===========================================
   RUSTY BIKE ADVENTURE - SHARED STYLES
   Replace colors, fonts, and styling as needed
   =========================================== */

/* CSS Variables for easy color customization */
:root {
    --burnt-orange: #CC5500;
    --brick-red: #B22222;
    --charcoal: #2F2F2F;
    --earth-tan: #D2B48C;
    --light-beige: #F5F5DC;
    --white: #FFFFFF;
    --dark-grey: #444444;
    --light-grey: #F8F8F8;
    --accent-orange: #FF6B35;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    color: var(--burnt-orange);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    color: var(--brick-red);
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.4rem;
    color: var(--charcoal);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    background: var(--charcoal);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--burnt-orange);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--burnt-orange);
}

.book-now-header {
    background: var(--burnt-orange);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    margin-left: 20px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.book-now-header:hover {
    background: var(--brick-red);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(47, 47, 47, 0.4), rgba(47, 47, 47, 0.4)), url('placeholder-hero-cambodian-dirt-bike.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero .cta-button {
    background: var(--burnt-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(204, 85, 0, 0.3);
}

.hero .cta-button:hover {
    background: var(--brick-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: var(--light-grey);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    animation: fadeInUp 1s ease-out;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card-image {
    width: 100%;
    height: 250px;
    background: var(--light-grey);
    background-size: cover;
    background-position: center;
    position: relative;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--burnt-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.card p {
    margin-bottom: 1.5rem;
    color: var(--dark-grey);
}

.card-button {
    background: var(--brick-red);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.card-button:hover {
    background: var(--burnt-orange);
}

/* Testimonials */
.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--burnt-orange);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--light-grey);
    background-size: cover;
    background-position: center;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--dark-grey);
}

.testimonial cite {
    font-weight: 600;
    color: var(--burnt-orange);
}

/* Features/Benefits Lists */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--burnt-orange);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature h4 {
    color: var(--brick-red);
    margin-bottom: 1rem;
}

/* Pricing Tables */
.pricing-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.pricing-header {
    background: var(--burnt-orange);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.pricing-body {
    padding: 2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-grey);
}

.pricing-item:last-child {
    border-bottom: none;
    font-weight: 700;
    color: var(--burnt-orange);
}

/* Call-out Boxes */
.callout {
    background: var(--earth-tan);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid var(--burnt-orange);
}

.callout h4 {
    color: var(--brick-red);
    margin-bottom: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-grey);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--burnt-orange);
}

.submit-button {
    background: var(--burnt-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: var(--brick-red);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    background: var(--light-grey);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section h4 {
    color: var(--burnt-orange);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--burnt-orange);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--burnt-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: var(--brick-red);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-grey);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ===================================================
   NEW ADVENTURE TOUR COMPONENTS - ADDED STYLES
   =================================================== */

/* Import Oswald font for headers */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

/* Adventure Hero Section */
.adventure-hero {
    background: linear-gradient(135deg, var(--burnt-orange), var(--brick-red));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.adventure-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.3;
}

.adventure-hero .container {
    position: relative;
    z-index: 2;
}

.adventure-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.adventure-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 500;
    color: var(--white);
}

/* Booking Components */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.tour-selection {
    background: var(--light-beige);
    color: var(--charcoal);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.booking-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.adventure-h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--burnt-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-card {
    background: var(--white);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.tour-card.selected {
    border-color: var(--burnt-orange);
    background: linear-gradient(135deg, var(--burnt-orange), var(--brick-red));
    color: var(--white);
}

.tour-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tour-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.tour-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brick-red);
}

.tour-card.selected .tour-price {
    color: var(--earth-tan);
}

.booking-form label {
    color: var(--earth-tan);
    font-weight: 600;
    font-size: 1.1rem;
}

.booking-form input, 
.booking-form select, 
.booking-form textarea {
    background: rgba(255,255,255,0.9);
    color: var(--charcoal);
    border: 2px solid var(--earth-tan);
    padding: 15px;
}

.booking-form input:focus, 
.booking-form select:focus, 
.booking-form textarea:focus {
    border-color: var(--burnt-orange);
    box-shadow: 0 0 10px rgba(204, 85, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-book {
    background: linear-gradient(135deg, var(--burnt-orange), var(--brick-red));
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.total-section {
    background: var(--charcoal);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--burnt-orange);
}

/* Tour Page Components */
.tour-hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.tour-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 47, 47, 0.6);
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.tour-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.tour-hero .price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--burnt-orange);
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 20px;
}

/* Tour Content Sections */
.tour-overview {
    padding: 60px 0;
    background: var(--white);
}

.tour-overview-content {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Picture Gallery Sections - Unique Layouts */
.tour-pictures {
    padding: 60px 0;
    background: var(--light-grey);
}

.pictures-grid-layout1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.pictures-grid-layout2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.pictures-grid-layout3 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 40px;
}

.pictures-grid-layout4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.pictures-grid-layout5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.picture-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.picture-item:hover {
    transform: translateY(-10px);
}

.picture-img {
    width: 100%;
    height: 300px;
    background: var(--earth-tan);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 600;
}

.picture-info {
    padding: 25px;
    background: var(--white);
}

.picture-info h4 {
    color: var(--burnt-orange);
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.picture-info p {
    color: var(--dark-grey);
    line-height: 1.6;
}

/* Large picture item for layout variations */
.picture-item.large {
    grid-row: span 1;
}

.picture-item.large .picture-img {
    height: 400px;
}

/* Tour Information Lists */
.tour-info-section {
    padding: 60px 0;
    background: var(--white);
}

.tour-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.info-list {
    background: var(--light-beige);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--burnt-orange);
}

.info-list h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--brick-red);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.info-list ul {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(178, 34, 34, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list .info-label {
    font-weight: 600;
    color: var(--charcoal);
}

.info-list .info-value {
    font-weight: 700;
    color: var(--burnt-orange);
}

/* Action Section */
.tour-action {
    background: linear-gradient(135deg, var(--charcoal), var(--dark-grey));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.tour-action h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.tour-action p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .adventure-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tour-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pictures-grid-layout1,
    .pictures-grid-layout2,
    .pictures-grid-layout3,
    .pictures-grid-layout5 {
        grid-template-columns: 1fr;
    }
    
    .picture-item.large {
        grid-row: span 1;
    }
    
    .picture-item.large .picture-img {
        height: 300px;
    }
    
    .tour-hero h1 {
        font-size: 2.5rem;
    }
    
    .tour-hero .price-highlight {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .adventure-hero h1 {
        font-size: 2rem;
    }
    
    .tour-hero h1 {
        font-size: 2rem;
    }
    
    .tour-selection,
    .booking-form {
        padding: 25px;
    }
    
    .info-list {
        padding: 25px;
    }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--charcoal);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .header-container {
        padding: 1rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .card-image {
        height: 200px;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}
/* Tour Metrics Section */
.tour-metrics-section {
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--charcoal) 100%);
    border-radius: 30px;
    padding: 4rem;
    margin: 5rem 0;
    color: var(--white);
    text-align: center;
}

.tour-metrics-section h2 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.metric-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--earth-tan);
    margin-bottom: 0.5rem;
}

.metric-item p {
    font-size: 1.1rem;
    color: var(--light-beige);
    font-weight: 500;
}



