/* ==========================================================================
   Clarence River Rafting - Joomla CSS (No Header/Nav)
   Use with Joomla Cassiopeia Extended Template
   ========================================================================== */
/*
   Rationalised pass 2:
   - canonical home hero
   - canonical page hero
   - canonical parallax hero base
   - responsive mobile header remains authoritative at end of file
*/



@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Baloo+2:wght@700;800&family=Nunito:wght@700;800&family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

/* Then add the font-family rules from above */

/* CSS Variables - Brand Colors */
:root {
    /* Primary Brand Colors - GREEN THEME */
    --color-primary: rgb(50 96 97);
    --color-primary-dark: #0f3028;
    --color-primary-light: #2d6b58;
    
    /* Secondary/Action Colors - TEAL */
    --color-secondary: #2A8B95;
    --color-secondary-dark: #1f6b73;
    --color-secondary-light: #b2dff2;
    
    /* Accent Colors */
    --color-accent: #E8F4F8;
    --color-white: #ffffff;
    
    /* Text Colors */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-white: #ffffff;
    
    /* Background Colors */
    --color-bg: #ffffff;
    --color-bg-light: #f5f9fa;
    --color-bg-dark: #1a4d3e;
    
    /* Border Colors */
    --color-border: #d4e8ec;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Montserrat', 'Arial Black', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Override Cassiopeia Variables */
    --cassiopeia-color-primary: #1a4d3e;
    --cassiopeia-color-hover: #2A8B95;
    --cassiopeia-color-link: #45B5C4;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
}

/* Override Joomla heading colors */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

:root {
    --font-heading-display:   'Bricolage Grotesque', sans-serif;
    --font-heading:           'Bricolage Grotesque', sans-serif;
    --font-heading-secondary: 'Bricolage Grotesque', sans-serif;   /* ← add */
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
section {
padding: var(--spacing-xl) 0;
}
.container-header .navbar-toggler {
    color: var(--cassiopeia-color-primary);
}

/* Big display text - like "WHITEWATER RAFTING" */
.hero-title,
.cta-content h2 {
    font-family: var(--font-heading-display);
    font-weight: 800;              /* was 400 — Fredoka One leftover */
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section headings - like "FAMILY FRIENDLY" */
.section-header h2,
h1, h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section headings - like "FAMILY FRIENDLY" */
.section-header h2,
h2, h3 {
    font-family: var(--font-heading-secondary);
    font-weight: 800;
    letter-spacing: 1px;
}

/* Body text */
body, p, li {
    font-family: var(--font-body);
    font-weight: 400;
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */

.metismenu.mod-menu .metismenu-item {
    padding: .5em 0.5em;
  }

.container-header {
    background-color: white;
    background-image: none;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

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

a.brand-logo img {
    width: 160px;
    height: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 139, 149, 0.3);
}

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

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

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    min-height: 600px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-inline: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper,
.hero-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video,
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(135deg, #3578ae9e, rgba(42, 139, 149, 0.3));
}

.hero-title {
    font-family: var(--font-heading-display);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-content { padding: 1.5rem; }

    .hero-video,
    .hero-image { object-position: center 40%; }
}

@media (max-width: 768px) {
    .hero-video,
    .hero-image { object-position: center 35%; }

    .hero-content { padding: 1rem; }
    .hero-content .container { padding: 0 1rem; }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        max-width: 90%;
        margin: 0 auto 1.5rem;
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .hero-buttons {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-scroll-indicator { display: none; }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 896px) and (orientation: landscape) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
    }

    .hero-buttons .btn {
        width: auto;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 1920px) {
    .hero-title { font-size: 5rem; }
    .hero-subtitle { font-size: 2rem; }
    .hero-buttons .btn {
        font-size: 1.25rem;
        padding: 1.25rem 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video,
    .scroll-arrow { animation: none; }
}

/* Full-width escape from Joomla content containers. */
#content .hero,
.item-page .hero,
.moduletable .hero,
.grid-child .hero,
.container-component .hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

/* ==========================================================================
   Quick Info Bar
   ========================================================================== */

.quick-info {
    background: var(--color-primary);
    padding: var(--spacing-lg) 0;
    color: var(--color-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.info-item h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--color-secondary-light);
    font-size: 1rem;
}

/* ==========================================================================
   Featured Trip Section
   ========================================================================== */

/* ==========================================================================
   Featured Trip Section with Integrated Quick Info
   ========================================================================== */

.featured-trip {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

/* Quick Info Bar - Integrated Style */
.quick-info-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
    padding: 2rem;
    background: var(--color-primary);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.quick-info-inline .info-item {
    text-align: center;
    padding: 1rem;
}

.quick-info-inline .info-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.quick-info-inline h4 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.quick-info-inline p {
    color: var(--color-secondary-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Trip Showcase */
.trip-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.trip-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trip-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

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

.trip-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.trip-details h3 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.trip-grade {
    display: inline-block;
    background: var(--color-secondary-light);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.trip-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.trip-highlights {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.trip-highlights li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.trip-highlights li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

.trip-pricing {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.price-item {
    flex: 1;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
    .trip-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quick-info-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .quick-info-inline .info-icon {
        font-size: 2rem;
    }
    
    .quick-info-inline h4 {
        font-size: 1rem;
    }
    
    .quick-info-inline p {
        font-size: 0.85rem;
    }
    
    .trip-details h3 {
        font-size: 2rem;
    }
    
    .trip-pricing {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .quick-info-inline {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .trip-details h3 {
        font-size: 1.75rem;
    }
    
    .trip-description {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-choose {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    padding: var(--spacing-md);
    background: var(--color-bg-light);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 139, 149, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary-light);
    border-radius: 50%;
}

.special-features .feature-icon {
    width: 100% !important;
    height: auto;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary-light);
    border-radius: 50%;
}

.feature-icon .icon-emoji {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.8;
}
        /* Special Features Section */
        .special-features {
            background: linear-gradient(135deg, #1a5f7a, #2d8ca8);
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
    padding: 50px 0 75px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .special-features::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 1200 120"><path fill="rgba(255,255,255,0.05)" d="M0,0 Q300,60 600,30 T1200,30 L1200,120 L0,120 Z"/></svg>') repeat-x;
            opacity: 0.5;
        }

        .special-features .container {
            position: relative;
            z-index: 1; */
    width: 80vw !important;
    max-width: 80vw !important;
        }

        .special-features h2 {
            color: white;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-8px);
        }

        .feature-item h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: white;
            font-weight: 800;
        }

        .feature-item p {
            line-height: 1.8;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
        }

 .feature-image {
            margin-bottom:10px;
        }

/* ==========================================================================
   Gallery Preview Section
   ========================================================================== */

.gallery-preview {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 77, 62, 0.9), transparent);
    padding: var(--spacing-sm);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--color-white);
    font-weight: 600;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

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

/* ==========================================================================
   Call to Action Section
   ========================================================================== */

.cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
}

.cta-subtext {
    font-size: 1rem;
    opacity: 0.9;
}
        /* Contact Section */
        .contact {
            background: white;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .contact-item {
            background: linear-gradient(135deg, #f5f9fa, #e8f4f8);
            padding: 3rem 3.5rem;
            border-radius: 20px;
            min-width: 280px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .contact-item:hover {
            border-color: #2d8ca8;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(45, 140, 168, 0.2);
        }

        .contact-item h3 {
            font-family: var(--font-heading);
            color: #1a5f7a;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            font-weight: 800;
        }

        .contact-item a {
            color: #2d8ca8;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.8rem;
            transition: color 0.3s;
            display: block;
        }

        .contact-item a:hover {
            color: #1a5f7a;
        }

/* ==========================================================================
   Location Section
   ========================================================================== */

.location-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

/* Map Container */
.location-map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
}

/* Location Details */
.location-details {
    padding: 1rem;
}

.location-details h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.location-subtitle {
    font-size: 1.25rem;
    color: var(--color-secondary);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.info-block h4 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.info-block p {
    color: var(--color-text);
    line-height: 1.8;
    margin: 0;
}

.info-block a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.info-block a:hover {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

.info-block small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* Location Action Buttons */
.location-actions {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.location-actions .btn {
    flex: 1;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .location-map {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .location-map {
        min-height: 350px;
    }
    
    .location-map iframe {
        min-height: 350px;
    }
    
    .location-details h3 {
        font-size: 1.75rem;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .location-map {
        min-height: 300px;
        border-radius: 10px;
    }
    
    .location-map iframe {
        min-height: 300px;
    }
    
    .location-details {
        padding: 0;
    }
    
    .info-block h4 {
        font-size: 1.1rem;
    }
}

        .location-info {
            margin-top: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, #f5f9fa, #e8f4f8);
            border-radius: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .location-info p {
            font-size: 1.2rem;
            color: #555;
            margin: 0.5rem 0;
        }

        .location-info strong {
            color: #1a5f7a;
        }


/* ==========================================================================
   Animations
   ========================================================================== */

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

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .trip-showcase {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .trip-pricing {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
/* ==========================================================================
   Clarence River Rafting - Trips Page Styles
   ========================================================================== */

/* Page Hero */
.page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.trips-hero {
    background-image: url('../images/trips-hero.jpg');
    background-color: var(--color-primary); /* Fallback */
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.8), rgba(42, 139, 149, 0.6));
}

.half-day .hero-overlay, .multi-day .hero-overlay, .custom .hero-overlay, .waiau .hero-overlay, .clarence-river .hero-overlay, .waiau-river .hero-overlay, .river-grades .hero-overlay {
    display: none;
}
.page-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}


.location .hero-content {
    top: 0;
  }


.page-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Trips Overview Section */
.trips-overview {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

/* Trip Cards */
.trip-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 139, 149, 0.2);
}

.trip-card.featured {
    border: 3px solid var(--color-secondary);
}

.trip-card-header {
    position: relative;
    height: auto;
    overflow: hidden;
}

.trip-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.trip-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.trip-grade-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 77, 62, 0.95);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
}

.trip-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trip-card-body h3 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.trip-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.trip-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.trip-meta .icon {
    font-size: 1.25rem;
}

.trip-card-body > p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.trip-highlights {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: 10px;
}

.trip-highlights h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.trip-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trip-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
}

.trip-highlights li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.trip-pricing-card {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span {
    color: var(--color-text);
}

.price-row strong {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

.trip-note {
    margin-top: 1rem;
    text-align: center;
    color: var(--color-text-light);
}

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

/* What's Included Section */
.whats-included {
    padding: var(--spacing-xl) 0;
    background: white;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.included-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.included-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.included-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.included-item p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* What to Bring Section */
.what-to-bring {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.content-column h2 {
    margin-bottom: var(--spacing-md);
}

.bring-list h4 {
    color: var(--color-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.bring-list ul {
    margin-bottom: 1.5rem;
}

.bring-list li {
    padding: 0.5rem 0;
    color: var(--color-text);
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-box h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info-box p {
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

/* Season Info Section */
.season-info {
    padding: var(--spacing-xl) 0;
    background: white;
}

.season-info h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.season-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-card.best-season {
    background: var(--color-secondary-light);
    color: white;
    border: 3px solid var(--color-secondary);
}

.season-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.season-card.best-season h3,
.season-card.best-season p {
    color: white;
}

.season-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.season-card p {
    text-align: left;
    line-height: 1.8;
    margin: 0;
}

.season-card strong {
    color: var(--color-primary);
}

.season-card.best-season strong {
    color: white;
    text-decoration: underline;
}

/* FAQ Section */
.trips-faq {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.trips-faq h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

/* Trips CTA Section */
.trips-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: white;
}

.trips-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trips-cta p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.trips-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.trips-cta .cta-contact {
    font-size: 1.125rem;
    margin-top: var(--spacing-md);
}

/* Responsive Design */
@media (max-width: 992px) {
    .trips-grid {
        grid-template-columns: 1fr;
    }
    
    .content-split {
        grid-template-columns: 1fr;
    }
    
    .season-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.125rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .season-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .trip-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .trips-cta .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .trip-card-body {
        padding: 1.5rem;
    }
    
    .trip-card-body h3 {
        font-size: 1.5rem;
    }
    
    .trips-cta h2 {
        font-size: 2rem;
    }
}
/* ==========================================================================
   Individual Trip Detail Pages
   ========================================================================== */

/* Trip Grade Badge in Hero */
.trip-grade-large {
    display: inline-block;
    background: var(--color-secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Quick Info Bar */
.trip-quick-info {
    background: var(--color-primary);
    padding: 2rem 0;
    color: white;
}

.quick-info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.quick-info-items .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-info-items .icon {
    font-size: 2.5rem;
}

.quick-info-items strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.quick-info-items p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Trip Details Section */
.trip-details-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.trip-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

/* Main Content Column */
.trip-main-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.content-block {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
}

.content-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.content-block h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-block h3 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-block h4 {
    color: var(--color-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-block p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-block ul {
    margin-bottom: 1.5rem;
}

.content-block li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: 10px;
}

.highlight-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.highlight-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Included List */
.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

.addon-list {
    list-style: none;
    padding: 0;
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.addon-list li {
    padding: 0.75rem 0;
}

/* Bring Columns */
.bring-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

/* Info Callouts */
.info-callout {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-secondary);
    margin-bottom: 1.5rem;
}

.info-callout.warning {
    border-left-color: #ff9800;
    background: #fff8e1;
}

.info-callout h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.info-callout p {
    margin: 0;
}

.info-callout ul {
    margin: 0.5rem 0 0 1.5rem;
}

.important-info {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 10px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-secondary));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    border: none;
}

.highlight-box h3,
.highlight-box h4,
.highlight-box p {
    color: white;
}

/* Expedition Options */
.expedition-option {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 2px solid var(--color-border);
}

.expedition-option h3 {
    margin-top: 0;
    font-size: 1.75rem;
}

.expedition-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.expedition-meta .badge {
    background: var(--color-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Sidebar */
.trip-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-card,
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.booking-card h3,
.info-card h4 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.pricing-box {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.price-divider {
    height: 1px;
    background: var(--color-border);
    margin: 1rem 0;
}

.sidebar-contact {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    margin-top: 1.5rem;
}

.sidebar-contact p {
    margin: 0.5rem 0;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.small-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.safety-card {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
}

.safety-card h4 {
    color: white;
}

.safety-card .sidebar-list li {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.related-trips {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.related-trips h4 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

.related-link {
    display: block;
    color: var(--color-secondary);
    padding: 0.75rem 0;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
}

.related-link:last-child {
    border-bottom: none;
}

.related-link:hover {
    color: var(--color-secondary-dark);
    padding-left: 0.5rem;
    transition: all 0.3s ease;
}

/* Trip Gallery */
.trip-gallery {
    padding: var(--spacing-xl) 0;
    background: var(--color-accent);
}

.trip-gallery h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.trip-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

/* Trip FAQ */
.trip-faq {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.trip-faq h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion .faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Trip CTA */
.trip-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: white;
}

.trip-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trip-cta p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.trip-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Multiday Hero */
.multiday-hero {
    background-image: url('../images/multiday-hero.jpg');
}

/* Responsive */
@media (max-width: 992px) {
    .trip-layout {
        grid-template-columns: 1fr;
    }
    
    .trip-sidebar {
        order: -1;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bring-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quick-info-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trip-main-content {
        padding: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .expedition-meta {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .quick-info-items {
        grid-template-columns: 1fr;
    }
    
    .trip-cta h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Informational Pages - Waiau River & River Grading
   ========================================================================== */

/* Info Page Layout */
.info-page-content {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.info-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.info-main {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Geology Features Grid */
.geology-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.geo-feature {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-secondary);
}

.geo-feature h4 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.geo-feature p {
    margin: 0;
    line-height: 1.7;
}

/* Seasons Comparison */
.seasons-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.season-detail {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.season-detail h4 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

.season-detail p {
    line-height: 1.8;
    margin: 0;
}

/* Sidebar Links */
.sidebar-link {
    display: block;
    color: var(--color-secondary);
    padding: 0.75rem 0;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-link:last-child {
    border-bottom: none;
}

.sidebar-link:hover {
    color: var(--color-secondary-dark);
    padding-left: 0.5rem;
    transition: all 0.3s ease;
}

/* Info CTA Section */
.info-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: white;
}

.info-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-cta p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

/* Info Hero Variants */
.waiau-hero {
    background-image: url('../images/waiau-hero.jpg');
}

.grading-hero {
    background-image: url('../images/grading-hero.jpg');
}

/* ==========================================================================
   River Grading Page Specific
   ========================================================================== */

/* Grade Cards */
.grade-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.grade-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.grade-card:hover {
    transform: translateY(-3px);
}

.grade-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 700;
}

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

.grade-name {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.grade-body {
    background: white;
    padding: 2rem;
}

.grade-body h4 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 1rem;
}

.grade-body ul {
    margin-bottom: 1.5rem;
}

.grade-body li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.grade-difficulty,
.grade-suitable {
    margin-bottom: 1rem;
}

.grade-note {
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
    margin-top: 1.5rem;
}

.grade-note p {
    margin: 0;
    font-style: italic;
}

/* Grade Color Schemes */
.grade-1 .grade-header {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.grade-2 .grade-header {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.grade-3 .grade-header {
    background: linear-gradient(135deg, #FF9800, #FFA726);
}

.grade-4 .grade-header {
    background: linear-gradient(135deg, #F44336, #EF5350);
}

.grade-5 .grade-header {
    background: linear-gradient(135deg, #9C27B0, #AB47BC);
}

.grade-6 .grade-header {
    background: linear-gradient(135deg, #212121, #424242);
}

/* Our Grade Highlight */
.grade-card.our-grade {
    border: 3px solid var(--color-secondary);
    position: relative;
}

.grade-badge {
    position: absolute;
    top: 122px;
    right: 20px;
    background: var(--color-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Factors Grid */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.factor-card {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid var(--color-secondary);
}

.factor-card h4 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.factor-card p {
    margin: 0;
    line-height: 1.7;
}

/* Grade II Benefits */
.grade-2-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: 10px;
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.benefit-item p {
    margin: 0;
    line-height: 1.7;
}

/* Grade Summary Card */
.grade-summary {
    text-align: center;
}

.grade-badge-large {
    display: inline-block;
    background: var(--color-secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.grade-summary p {
    margin: 0.5rem 0;
    line-height: 1.7;
}

.highlight-card {
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-secondary));
    color: white;
}

.highlight-card h4,
.highlight-card p,
.highlight-card .grade-badge-large {
    color: white;
}

.highlight-card .grade-badge-large {
    background: rgba(255,255,255,0.2);
}

/* Visual Comparison Section */
.grade-comparison-visual {
    padding: var(--spacing-xl) 0;
    background: white;
}

.grade-comparison-visual h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.comparison-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-card.featured-comparison {
    border: 3px solid var(--color-secondary);
}

.comparison-image {
    position: relative;
    height: 200px;
    background: var(--color-bg-light);
    overflow: hidden;
}

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

.grade-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
}

.grade-overlay.our-grade {
    background: var(--color-secondary);
}

.comparison-card p {
    padding: 1.5rem;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

/* Custom Options Grid */
.custom-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.custom-option-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.option-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.custom-option-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.custom-option-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.custom-option-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.custom-option-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* Customization List */
.customization-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.custom-feature {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-secondary);
}

.custom-feature h4 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.custom-feature p {
    margin: 0;
    line-height: 1.7;
}

/* Pricing Tiers */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tier-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--color-border);
    text-align: center;
    position: relative;
}

.tier-card.featured {
    border-color: var(--color-secondary);
    background: white;
    box-shadow: 0 10px 30px rgba(42, 139, 149, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tier-size {
    color: var(--color-text-light);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.tier-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.tier-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tier-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* Team Building Features */
.team-building-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tb-feature {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.tb-feature h4 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.tb-feature p {
    margin: 0;
}

/* Booking Steps */
.booking-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.booking-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
}

.booking-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.booking-steps strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.booking-steps p {
    margin: 0;
}

/* Custom Testimonials */
.custom-testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.custom-testimonials h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card > p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 2px solid var(--color-border);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

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

/* Responsive */
@media (max-width: 992px) {
    .info-layout {
        grid-template-columns: 1fr;
    }
    
    .geology-features,
    .seasons-comparison {
        grid-template-columns: 1fr;
    }
    
    .team-building-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .info-main {
        padding: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-options-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Custom Trips Page - Additional Styles
   ========================================================================== */

/* Custom Uses Grid */
.custom-uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.use-case {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(42, 139, 149, 0.2);
}

.use-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.use-case h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.use-case p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Customization Sections */
.customization-section {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.customization-section h3 {
    margin-top: 0;
    color: var(--color-primary);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: 10px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.step p {
    margin: 0;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-tier {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--color-border);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 139, 149, 0.2);
}

.pricing-tier.featured-tier {
    border-color: var(--color-secondary);
    background: white;
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-tier h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.price-large span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
    display: block;
}

.pricing-tier ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.pricing-tier li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-tier li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-secondary);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

/* Success Stories Section */
.custom-success-stories {
    padding: var(--spacing-xl) 0;
    background: white;
}

.custom-success-stories h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--color-secondary);
}

.story-card h4 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.story-card p:first-of-type {
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.story-card p:last-of-type {
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* Custom Hero Background */
.custom-hero {
    background-image: url('../images/custom-hero.jpg');
}

/* Responsive */
@media (max-width: 768px) {
    .custom-uses-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   Trips Overview Page - Additional Styles
   ========================================================================== */

/* Comparison Table Section */
.trip-comparison {
    padding: var(--spacing-xl) 0;
    background: white;
}

.trip-comparison h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.comparison-table thead {
    background: var(--color-primary);
    color: white;
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-table th:first-child {
    width: 20%;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--color-border);
}

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

.comparison-table tbody tr:nth-child(even) {
    background: var(--color-bg-light);
}

.comparison-table td {
    padding: 1.25rem 1rem;
    vertical-align: top;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--color-text);
}

.comparison-table tbody td {
    color: var(--color-text-light);
}

/* Info Links Section */
.info-links-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.info-links-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.info-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.info-link-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--color-secondary);
}

.info-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 139, 149, 0.2);
}

.info-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.info-link-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.info-link-card p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.link-arrow {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1.125rem;
    transition: padding-left 0.3s ease;
}

.info-link-card:hover .link-arrow {
    padding-left: 0.5rem;
}

/* Season Note */
.season-note {
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 1.125rem;
    color: var(--color-text);
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        border-radius: 5px;
    }
    
    .comparison-table {
        min-width: 700px;
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .info-links-grid {
        grid-template-columns: 1fr;
    }
    
    .season-note {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .info-link-card {
        padding: 2rem 1.5rem;
    }
    
    .info-link-card h3 {
        font-size: 1.5rem;
    }
}
/* Duplicate Trips Overview styles removed; canonical block appears above. */

/* ==========================================================================
   River Comparison Section
   ========================================================================== */

.river-comparison-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.river-comparison-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.rivers-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.river-card {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 4px solid var(--color-secondary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.river-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 139, 149, 0.2);
}

.river-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.river-card h3 {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.river-meaning {
    text-align: center;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.river-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.river-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.6;
}

.river-features li:last-child {
    border-bottom: none;
}

.river-trips {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.river-trips p {
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    color: var(--color-primary);
}

.river-link {
    display: block;
    color: var(--color-secondary);
    padding: 0.5rem 0;
    text-decoration: none;
    font-weight: 600;
    transition: padding-left 0.3s ease;
}

.river-link:hover {
    padding-left: 0.5rem;
}

.river-card .btn-sm {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .rivers-comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .river-card {
        padding: 2rem 1.5rem;
    }
    
    .river-card h3 {
        font-size: 1.5rem;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--color-bg-light);
}

.faq-question[aria-expanded="true"] {
    background: var(--color-bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}


/* Parallax Hero - Full Width */
.parallax-hero-full {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Parallax Background Image - No Overlay */
.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: translateZ(0);
}

/* Content with Text Outline Instead of Overlay */
.parallax-hero-full .parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

/* Rounded Font Heading with Outline */
.parallax-hero-full .parallax-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    /* Multiple text-shadow for thick outline effect */
    text-shadow: 
        -3px -3px 0 #1a4d3e,
        3px -3px 0 #1a4d3e,
        -3px 3px 0 #1a4d3e,
        3px 3px 0 #1a4d3e,
        -3px 0 0 #1a4d3e,
        3px 0 0 #1a4d3e,
        0 -3px 0 #1a4d3e,
        0 3px 0 #1a4d3e,
        -4px -4px 8px rgba(0,0,0,0.5),
        4px 4px 8px rgba(0,0,0,0.5);
}

/* Parallax Background Image */
.parallax-hero-full .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/IMG_0809-.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: translateZ(0);
}

/* Responsive Depths */
@media (max-width: 1200px) {
    .parallax-hero-full {
        height: 90vh;
        min-height: 700px;
    }
}

@media (max-width: 992px) {
    .parallax-hero-full {
        height: 80vh;
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .parallax-hero-full {
        height: 70vh;
        min-height: 500px;
    }
    
    /* Disable parallax on mobile */
    .parallax-hero-full .parallax-image {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .parallax-hero-full {
        height: 60vh;
        min-height: 450px;
    }
}

/* Feature Badges - Rounded Font */
.parallax-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    /*border: 3px solid white;*/
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.feature-badge:hover {
    background: rgba(42, 139, 149, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    font-family: 'Baloo 2', 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

/* CTA Button - Rounded Font */
.parallax-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.parallax-cta .btn-lg {
    font-family: 'Baloo 2', 'Nunito', sans-serif;
    padding: 1.25rem 3rem;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    /*border: 3px solid white;*/
}

.parallax-cta .btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .parallax-hero-full .parallax-heading {
        font-size: 3.5rem;
    }
    
    .parallax-hero-full .parallax-subheading {
        font-size: 1.75rem;
    }
}

@media (max-width: 992px) {
    .parallax-hero-full {
        height: 500px;
    }
    
    .parallax-hero-full .parallax-heading {
        font-size: 3rem;
    }
    
    .parallax-hero-full .parallax-subheading {
        font-size: 1.5rem;
    }
    
    .parallax-features {
        gap: 1rem;
    }
    
    .feature-badge {
        padding: 0.75rem 1.5rem;
    }
    
    .badge-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .parallax-hero-full {
        height: 500px;
    }
    
    .parallax-hero-full .parallax-heading {
        font-size: 2.5rem;
        text-shadow: 
            -2px -2px 0 #1a4d3e,
            2px -2px 0 #1a4d3e,
            -2px 2px 0 #1a4d3e,
            2px 2px 0 #1a4d3e,
            -3px -3px 6px rgba(0,0,0,0.5);
    }
    
    .parallax-hero-full .parallax-subheading {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        text-shadow: 
            -1px -1px 0 #1a4d3e,
            1px -1px 0 #1a4d3e,
            -1px 1px 0 #1a4d3e,
            1px 1px 0 #1a4d3e,
            -2px -2px 4px rgba(0,0,0,0.4);
    }
    
    .parallax-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .parallax-cta .btn-lg {
        width: 100%;
        max-width: 300px;
        font-size: 1.25rem;
    }
    
    /* Disable parallax on mobile */
    .parallax-image {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .parallax-hero-full {
        height: 750px;
    }
    
    .parallax-hero-full .parallax-heading {
        font-size: 2rem;
    }
    
    .parallax-hero-full .parallax-subheading {
        font-size: 1.125rem;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 1rem;
    }
}

.food-slider {
  position: relative;
}

.food-slider__controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.food-slider__arrow {
  pointer-events: auto;
  text-decoration: none;
  line-height: 1;
}

/* Food slider arrow buttons */
#food .food-slider .btn,
#food .food-slider a.btn {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Contact information styling */
.enquire main .contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.enquire main .contact-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--color-bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid #667eea;
}

.enquire main .contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  background: rgba(102, 126, 234, 0.15);
}

.enquire main .contact-form:nth-child(2) {
  border-left-color: #764ba2;
}

.enquire main .contact-form:nth-child(3) {
  border-left-color: #f093fb;
}

.enquire main .contact-form:last-child {
  border-left-color: #f5576c;
}

/* Icon styling */
.enquire main .icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.enquire main .icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23667eea' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.enquire main .icon-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23764ba2' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.enquire main .icon-location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f093fb' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

/* Contact text styling */
.enquire main .contact-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c3e50;
}

.enquire main .contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.enquire main .contact-text a:hover {
  color: #667eea;
}

@media (min-width: 768px) {
    .col-sm-12 {
        width: 100%;
    }
}

#cf-items {
    width: 50% !important;
}

/* Existing flex reordering */
#contact-form fieldset { display: contents; }
#contact-form { 
    display: flex; 
    flex-direction: column; 
    gap: 1.2rem;
    max-width: 500px; 
}
#contact-form legend { display: none; }
#contact-form .control-group { order: 999; margin-bottom: 0; }

/* VISUAL ORDER */

/* 2. Order the Details fieldset fields */
.control-group:has(#jform_contact_name)               { order: 1; }
.control-group:has(#jform_contact_email)              { order: 2; }
.control-group:has(#jform_com_fields_phone_number)    { order: 3; }
.control-group:has(#jform_com_fields_trips)         { order: 4; }
.control-group:has(#jform_com_fields_preferred_date2) { order: 5; }
.control-group:has(#jform_com_fields_group_size)  { order: 6; }
#contact-form .control-group:has(.multi-day-note) { order: 7; }
.control-group:has(#jform_contact_message)            { order: 8; }
.control-group:has(#jform_com_fields_contact_method)  { order: 9; }
.control-group:has(#jform_com_fields_awareness)       { order: 10; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Expedition duration tabs (multi-day page) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

.exp-tabs {
  display: flex;
  gap: 10px;
  margin: 1.25rem 0 0;
}

.exp-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px 12px;
  border: 2px solid #c8d8e8;
  border-radius: 8px;
  background: #fff;
  color: #5a7a9a;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.1;
  transition: border-color .15s, background .15s, color .15s;
}

.exp-tab:hover {
  border-color: #1a6fa8;
  color: #1a6fa8;
}

.exp-tab.active {
  background: #1a6fa8;
  border-color: #1a6fa8;
  color: #fff;
}

.exp-tab-days {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.exp-tab-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: .04em;
  margin-top: 3px;
}

/* Panels */

.exp-panel {
  display: none;
  /* push panel away from tabs with a left accent line */
  margin-top: 0;
  padding-top: 1.25rem;
  border-top: 3px solid #1a6fa8;
}

.exp-panel.active {
  display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

@media (max-width: 480px) {
  .exp-tabs {
    gap: 6px;
  }

  .exp-tab {
    padding: 12px 4px 10px;
  }

  .exp-tab-days {
    font-size: 1.6rem;
  }

  .exp-tab-label {
    font-size: 0.72rem;
  }
}

.exp-trip-variant {
  background: #f0f6fb;
  border-left: 3px solid #1a6fa8;
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  margin: 1rem 0 1.25rem;
}

.exp-trip-variant p {
  margin: 0 0 8px;
  color: #1a6fa8;
}

.trip-quick-info {
    background: var(--color-accent);
    /* border: 3px solid #1a6fa8; */
    padding: 1.25rem 0;
}

.trip-quick-info strong {
  color: #1a6fa8;
}

.trip-quick-info p {
  color: #444;
  margin: 0;
}

.info-icon svg {
  width: 32px;
  height: 32px;
  stroke: #1a6fa8;
  opacity: 0.85;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Expedition accordions Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

.exp-accordion {
  border-top: 0.5px solid #c8d8e8;
  margin: 0;
}

.exp-accordion:last-of-type {
  border-bottom: 0.5px solid #c8d8e8;
  margin-bottom: 1.25rem;
}

.exp-accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  color: #1a6fa8;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}

.exp-accordion-toggle:hover {
  color: #0c447c;
}

.exp-accordion-arrow {
  font-size: 2rem;
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 8px;
}

.exp-accordion-toggle[aria-expanded="true"] .exp-accordion-arrow {
  transform: rotate(180deg);
}

.exp-accordion-body {
  display: none;
  padding: 0 0 1rem;
}

.exp-accordion-body.open {
  display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Day schedule Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

.exp-day-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exp-day {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-top: 0.5px solid #c8d8e8;
}

.exp-day:first-child {
  border-top: none;
}

.exp-day-label {
  flex-shrink: 0;
  width: 44px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: #1a6fa8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4px 2px;
  align-self: flex-start;
  margin-top: 2px;
}

.exp-day-content strong {
  display: block;
  font-size: 0.9rem;
  color: #1a6fa8;
  margin-bottom: 4px;
}

.exp-day-content p {
  font-size: 0.9rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .exp-day {
    flex-direction: column;
    gap: 6px;
  }

  .exp-day-label {
    width: auto;
    display: inline-flex;
    padding: 3px 10px;
  }
}

.multi-day-desc {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-style: italic;
}

/* Clarence River Rafting Icon System */

.crr-icon {
    width: 1.2em;
    height: 1.2em;
    vertical-align: -0.18em;
    margin-right: .35rem;
    display: inline-block;
}

.crr-badge-icon {
    width: 72px;
    height: 72px;
    display: block;
    margin: 0 auto 1rem;
}

.trip-meta .crr-icon {
    width: 1.05em;
    height: 1.05em;
}

.trip-highlight-card {
    text-align: center;
}

.trip-highlight-card img {
    transition: transform .2s ease;
}

.trip-highlight-card:hover img {
    transform: translateY(-2px);
}
.info-icon img,
.badge-icon img {
    width: 50px;
    height: 50px;
    display: block;
}

.info-icon,
.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 72px;
    height: 72px;
    display: block;
}
.inline-heading-icon {
width: 28px;
height: 28px;
vertical-align: middle;
margin-right: 10px;
display: inline-block;
}

.trip-quick-info .icon img {
width: 34px;
height: 34px;
display: block;
}

.trip-quick-info .icon {
display: inline-flex;
align-items: center;
justify-content: center;
}

/* Only turn icons white inside cards/boxes */

.highlight-box .inline-heading-icon,
.safety-card .inline-heading-icon,
.booking-card .inline-heading-icon {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;

    opacity: 1;
    filter: brightness(0) saturate(100%) invert(100%);
}
.highlight-icon img {
width: 72px;
height: 72px;
display: block;
margin: 0 auto 12px;
}

/* White versions on dark panels only */

.highlight-box .highlight-icon img,
.dark-section .highlight-icon img {
filter: brightness(0) saturate(100%) invert(100%);
}

section.featured-trip {
    background: var(--color-accent);
    /* background: linear-gradient(135deg, #d1e7ef, #a9eafd); */
    /* margin-left: calc(-50vw + 50%) !important; */
    /* margin-right: calc(-50vw + 50%) !important; */
    /* width: 100vw !important; */
    padding: 50px 50px 75px 50px;
    /* color: white; */
    position: relative;
    overflow: hidden;
    margin: 50px;
}

/* ==========================================================================
   Narrow Screen Overrides — max-width: 650px
   Reduces margins/padding across all pages for small phones
   ========================================================================== */

@media (max-width: 990px) {

    /* Spacing variables — tighten globally */
    :root {
        --spacing-xs: 0.375rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1.25rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
    }

    /* Core containers */

  .site-grid {
        grid-gap: 0em;
    }
  
    .container,
    .container-component,
    main .container {
        padding-left: 0px;
        padding-right: 0px;
    }

    /* All sections */
    section {
        padding: var(--spacing-xl) 0;
    }

    /* ---- Hero ---- */
    .hero-content,
    .parallax-hero-full .parallax-content {
        padding: 0 12px;
    }

    .hero-content .container {
        padding: 24px 16px;
    }

    /* ---- Featured Trip / Trip Showcase ---- */
    .featured-trip {
        padding: var(--spacing-xl) 0;
    }

    .trip-main-content {
        padding: 1.25rem;
    }

    .trip-card-body {
        padding: 1.25rem;
    }

    .trip-pricing-card,
    .pricing-box {
        padding: 1rem;
    }

    .trip-pricing {
        gap: 0.75rem;
        padding: 1rem;
    }

    /* ---- Quick Info Inline bar ---- */
    .quick-info-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }

    /* ---- Booking / Info cards (sidebar) ---- */
    .booking-card,
    .info-card {
        padding: 1.25rem;
    }

    /* ---- Special Features full-width section ---- */
    .special-features {
        padding: 36px 0 48px;
    }

    .special-features .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 12px;
        padding-right: 12px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    /* ---- Contact items ---- */
    .contact-item {
        padding: 1.75rem 1.25rem;
        min-width: 0;
    }

    .contact-info {
        gap: 1rem;
    }

    /* ---- CTA section ---- */
    .cta-content h2,
    .trips-cta h2,
    .trip-cta h2 {
        font-size: 1.75rem;
    }

    .cta-content p,
    .trips-cta p,
    .trip-cta p {
        font-size: 1rem;
    }

    /* ---- Location section ---- */
    .location-details {
        padding: 0;
    }

    .location-info {
        padding: 1.25rem;
        margin-top: 2rem;
    }

    /* ---- Expedition tabs ---- */
    .expedition-option {
        padding: 1.25rem;
    }

    /* ---- Gallery grid ---- */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    /* ---- Testimonial cards ---- */
    .testimonial-card {
        padding: 1.25rem;
    }

    /* ---- Info / FAQ cards ---- */
    .faq-item,
    .info-box {
        padding: 1.25rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    /* ---- Page hero headings ---- */
    .page-hero h1 {
        font-size: 1.75rem;
    }

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

    /* ---- Section headers ---- */
    .section-header {
        margin-bottom: var(--spacing-md);
    }

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

    /* ---- Highlights / included grids ---- */
    .highlights-grid,
    .included-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-item,
    .included-item,
    .feature-card {
        padding: 1.25rem;
    }

    /* ---- River / Info comparison grids ---- */
    .rivers-comparison-grid,
    .geology-features,
    .seasons-comparison,
    .team-building-features {
        grid-template-columns: 1fr;
    }

    .river-card {
        padding: 1.5rem 1.25rem;
    }

    /* ---- Trip layout sidebar ---- */
    .trip-layout {
        gap: var(--spacing-md);
    }

    /* ---- Bring columns ---- */
    .bring-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* ---- Step items ---- */
    .step {
        padding: 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    /* ---- Enquiry / contact form ---- */
    .enquire main .contact-form {
        padding: 12px 14px;
    }

    /* ---- Buttons — full width on tiny screens ---- */
    .hero-buttons .btn,
    .cta-buttons .btn,
    .trips-cta .cta-buttons .btn,
    .location-actions .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    /* ---- Parallax heading ---- */
    .parallax-hero-full .parallax-heading {
        font-size: 1.75rem;
    }

    .parallax-features {
        gap: 0.75rem;
    }

    .feature-badge {
        padding: 0.75rem 1.25rem;
    }

  section.featured-trip {
    margin: 0;
    padding: 30px 15px
  }
}

/* =====================================================================
   CLARENCE RIVER RAFTING — Multi-day slideshow
   Standalone block. Append to the bottom of user.css.
   Only genuinely new component styles live here; the section wrapper
   reuses existing classes (featured-trip / container / section-header).
   Palette mirrors the site brand (navy / teal / gold). If you have
   matching brand variables in :root, swap the values below for them.
   ===================================================================== */

.crr-slideshow {
  --crr-ss-navy: #16243f;
  --crr-ss-teal: #2d8ca8;
  --crr-ss-gold: #e0a32e;
  --crr-ss-radius: 14px;

  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--crr-ss-radius);
  overflow: hidden;
  background: var(--crr-ss-navy);
  box-shadow: 0 18px 45px rgba(8, 18, 35, 0.28);
}

/* Viewport keeps a consistent shape regardless of each photo's size */
.crr-ss-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
@supports not (aspect-ratio: 16 / 9) {
  .crr-ss-viewport { height: 0; padding-bottom: 56.25%; }
}

.crr-ss-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.crr-ss-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.crr-ss-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Caption bar — navy gradient rising from the bottom */
.crr-ss-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 1.6rem 1.4rem;
  color: #fff;
  background: linear-gradient(to top,
              rgba(13, 22, 41, 0.92) 0%,
              rgba(13, 22, 41, 0.65) 45%,
              rgba(13, 22, 41, 0) 100%);
  text-align: left;
}

.crr-ss-eyebrow {
  display: inline-block;
  margin: 0 0 0.35rem;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  line-height: 1.1;
  color: var(--crr-ss-gold);
}

.crr-ss-text {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 600;
  max-width: 60ch;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

/* Prev / next arrows */
.crr-ss-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(13, 22, 41, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}
.crr-ss-arrow:hover,
.crr-ss-arrow:focus-visible {
  background: var(--crr-ss-teal);
  outline: none;
}
.crr-ss-arrow:focus-visible { box-shadow: 0 0 0 3px rgba(224, 163, 46, 0.7); }
.crr-ss-prev { left: 12px; }
.crr-ss-next { right: 12px; }
.crr-ss-arrow svg { width: 22px; height: 22px; }

/* Dot indicators */
.crr-ss-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6rem;
  z-index: 3;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.crr-ss-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}
.crr-ss-dot:hover { background: rgba(255, 255, 255, 0.8); }
.crr-ss-dot.is-active {
  background: var(--crr-ss-gold);
  transform: scale(1.25);
}
.crr-ss-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(224, 163, 46, 0.7);
}

/* Narrow screens */
@media (max-width: 600px) {
  .crr-ss-viewport { aspect-ratio: 4 / 3; }
  @supports not (aspect-ratio: 4 / 3) {
    .crr-ss-viewport { padding-bottom: 75%; }
  }
  .crr-ss-text { font-size: 1.02rem; }
  .crr-ss-eyebrow { font-size: 0.85rem; }
  .crr-ss-caption { padding: 2rem 1.1rem 1.5rem; }
  .crr-ss-arrow { width: 38px; height: 38px; }
}

/* Respect reduced-motion: no fade, JS also disables autoplay */
@media (prefers-reduced-motion: reduce) {
  .crr-ss-slide { transition: none; }
}

/* =====================================================================
   Clarence River page — tab strip + panel show/hide
   Append to the bottom of user.css.
   Scoped to #river-tabs and the riv-* panels so the homepage tabs are
   untouched. Matches the brand (navy / teal / gold).
   ===================================================================== */

/* Tab strip */
#river-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0 1.2rem;
  padding: 0;
}
#river-tabs .exp-tab {
  border: 1px solid #cdd8e1;
  background: #fff;
  color: #16243f;
  border-radius: 30px;
  padding: 0.5rem 1.05rem;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.1;
  cursor: pointer;
}
#river-tabs .exp-tab:hover { border-color: #2d8ca8; }
#river-tabs .exp-tab.active {
  background: #16243f;
  color: #fff;
  border-color: #16243f;
}
#river-tabs .exp-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(224, 163, 46, 0.6);
}

/* Panels — hide all, show the active one */
.exp-panel[id^="riv-"] {
  display: none;
  background: #fff;
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 8px 24px rgba(8, 18, 35, 0.08);
}
.exp-panel[id^="riv-"].active { display: block; }

/* ---- Teal outline button for LIGHT sections (added) ------------------ */
.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 139, 149, 0.3);
}

.contact .cta-buttons {
    justify-content: left;
}

/* =========================================================
   CRR — Interactive testimonials carousel (crr-tst-*)
   Append to user.css
   ========================================================= */

.crr-tst { padding: 5rem 0; background: #f5f8fa; }

/* --- Filters --- */
.crr-tst-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: 2rem 0 2.5rem;
}
.crr-tst-filter {
  font-family: inherit;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .7rem 1.6rem;
  border: 2px solid #16243f;
  border-radius: 999px;
  background: transparent;
  color: #16243f;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.crr-tst-filter:hover { background: rgba(45, 140, 168, .12); }
.crr-tst-filter.is-active {
  background: #16243f;
  border-color: #16243f;
  color: #fff;
}

/* --- Carousel shell --- */
.crr-tst-carousel { position: relative; }

.crr-tst-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.crr-tst-viewport::-webkit-scrollbar { display: none; }

.crr-tst-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  padding: .5rem 0 1rem;
}

/* --- Card --- */
.crr-tst-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  border-top: 4px solid #2d8ca8;
  box-shadow: 0 6px 24px rgba(22, 36, 63, .10);
  padding: 2rem 1.75rem 1.5rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.crr-tst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22, 36, 63, .16);
}
.crr-tst-card[hidden] { display: none; }

.crr-tst-stars {
  color: #e0a32e;
  font-size: 1.1rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}

.crr-tst-quote {
  margin: 0;
  padding: 0;
  border: 0;
  flex: 1 1 auto;
}
.crr-tst-quote p {
  margin: 0;
  color: #33445f;
  line-height: 1.7;
  font-size: 1rem;
}
.crr-tst-quote p::before { content: '\201C'; }
.crr-tst-quote p::after  { content: '\201D'; }

/* Collapsed state — JS adds .is-clamped only when text overflows */
.crr-tst-card.is-clamped .crr-tst-quote p {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.crr-tst-card.is-expanded .crr-tst-quote p {
  display: block;
  overflow: visible;
}

.crr-tst-more {
  align-self: flex-start;
  margin-top: .75rem;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #2d8ca8;
  cursor: pointer;
}
.crr-tst-more:hover { color: #16243f; text-decoration: underline; }

.crr-tst-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e3e9ee;
}
.crr-tst-badge {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(45, 140, 168, .12);
  color: #1f6b83;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.crr-tst-date {
  color: #7b8a9c;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* --- Arrows --- */
.crr-tst-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #16243f;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22, 36, 63, .25);
  transition: background .25s ease, opacity .25s ease;
}
.crr-tst-nav:hover { background: #2d8ca8; }
.crr-tst-nav:disabled { opacity: .3; cursor: default; }
.crr-tst-prev { left: -12px; }
.crr-tst-next { right: -12px; }

/* --- Dots --- */
.crr-tst-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.5rem;
}
.crr-tst-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c3ced9;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.crr-tst-dot.is-active { background: #e0a32e; transform: scale(1.3); }

/* --- Responsive: cards per view --- */
@media (min-width: 768px) {
  .crr-tst-card { flex-basis: calc((100% - 1.5rem) / 2); }
  .crr-tst-prev { left: -20px; }
  .crr-tst-next { right: -20px; }
}
@media (min-width: 1100px) {
  .crr-tst-card { flex-basis: calc((100% - 3rem) / 3); }
  .crr-tst-prev { left: -26px; }
  .crr-tst-next { right: -26px; }
}
@media (max-width: 600px) {
  .crr-tst-nav { display: none; }
  .crr-tst-filter { padding: .6rem 1.1rem; font-size: .75rem; }
}

@media (max-width: 600px) {
  .crr-tst-carousel { display: flex; flex-direction: column; }
  .crr-tst-viewport { order: 1; }

  .crr-tst-dots {
    order: 2;
    position: relative;
    align-items: center;
    gap: .5rem;
    margin-top: 1.25rem;
    padding: 0 56px;      /* room for the arrows either side */
  }

  .crr-tst-nav {
    order: 3;
    position: absolute;
    top: auto;
    bottom: 0;
    transform: translateY(28%);
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }
  .crr-tst-prev { left: 0; }
  .crr-tst-next { right: 0; }

  .crr-tst-filter { padding: .6rem 1.1rem; font-size: .75rem; }
}

.benefit-item img {
    width: 30%;
}

/* exp-panel show/hide — global, not scoped to one tab block */
.exp-panel { display: none; }
.exp-panel.active { display: block; }

/* Grading hero image path examples removed: declarations must live inside a selector. */
/* ==========================================================================
   CRR canonical CTAs — one standard, background-aware
   .crr-cta-group            layout wrapper (flex, wraps on mobile)
   .crr-cta-book             solid teal primary  (uses existing .btn-primary)
   .crr-cta-contact          secondary: teal outline on light by DEFAULT
   .crr-cta-group--on-dark   modifier: flips the secondary to white outline
   .crr-cta-details          tertiary text-link with arrow (no button chrome)
   ========================================================================== */

.crr-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Secondary button — teal outline, safe on white/light backgrounds */
.crr-cta-contact {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.crr-cta-contact:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 139, 149, 0.3);
}

/* On a dark/hero background, flip the secondary to a white outline */
.crr-cta-group--on-dark .crr-cta-contact {
    color: var(--color-white);
    border-color: var(--color-white);
}
.crr-cta-group--on-dark .crr-cta-contact:hover {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Tertiary — quiet text link, matches the existing "Other Trips →" pattern */
.crr-cta-details {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
}
.crr-cta-details:hover {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}
.crr-cta-group--on-dark .crr-cta-details {
    color: var(--color-white);
}

/* Mobile: full-width stacked buttons */
@media (max-width: 576px) {
    .crr-cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin-inline: auto;
    }
    .crr-cta-group .btn {
        width: 100%;
    }
}

.container-footer {
  display: block;
  font-size: 0.9rem;
  border-top: 0;
  text-align: center;
}
.container-footer .grid-child { display: block; }
.container-footer a { color: var(--cc-on-frame); }
.container-footer a:hover,
.container-footer a:focus { color: var(--cc-accent); }

/* Designer credit strip. */
.footer-credit {
  width: 100%;
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--cc-on-frame) 14%, transparent);
  margin-top: var(--cc-space-m);
  padding-top: var(--cc-space-m);
}
.footer-credit .footer-copyright { margin: 0 0 1rem; }
.footer-credit .footer-tagline {
  color: var(--cc-on-frame-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

/* ========================================================================
   CANONICAL RESPONSIVE HEADER + MOBILE HERO
   This is the only mobile header implementation. Keep this block last.
   ======================================================================== */

@media (max-width: 991.98px) {
    :root {
        --mobile-header-height: 100px;
    }

    .container-header {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: none !important;
        height: var(--mobile-header-height) !important;
        min-height: var(--mobile-header-height) !important;
        margin: 0 !important;
        padding: 3px 10px !important;
        gap: 10px !important;
        background: #fff !important;
        background-image: none !important;
        overflow: visible !important;
        z-index: 1000;
    }

    .container-header > div:first-child,
    .container-header > .grid-child:first-child {
        position: static !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: 0 0 auto;
    }

    .container-header a.brand-logo,
    .container-header .brand-logo {
        display: flex !important;
        align-items: center !important;
        height: 50px !important;
        margin: 0 !important;
    }

    .container-header a.brand-logo img,
    a.brand-logo img {
        position: static !important;
        width: 68px !important;
        max-width: 68px !important;
        height: auto !important;
        margin: 0 !important;
        top: auto !important;
        bottom: auto !important;
    }

    .container-header .container-nav,
    .container-header .grid-child.container-nav,
    .grid-child.container-nav {
        position: static !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 0 0 auto !important;
        padding: 0 !important;
        flex: 0 0 auto !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
    }

    .container-header .navbar-toggler {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 43px !important;
        height: 40px !important;
        min-width: 43px !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 3px solid #326061 !important;
        border-radius: 8px !important;
        background: #fff !important;
    }

    .container-header .navbar-collapse.show,
    .container-header .navbar-collapse.collapsing {
        position: fixed !important;
        top: var(--mobile-header-height) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 100vw !important;
        height: auto !important;
        max-height: calc(100svh - var(--mobile-header-height)) !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        background: #fff !important;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
        z-index: 99999 !important;
    }

    .container-header .navbar-collapse .metismenu.mod-menu,
    .container-header .navbar-collapse .navbar-nav {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 6px 16px 12px !important;
    }

    .container-header .navbar-collapse .metismenu-item,
    .container-header .navbar-collapse .nav-item {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #e8e8e8;
    }

    .container-header .navbar-collapse .nav-link,
    .container-header .navbar-collapse .metismenu-item > a,
    .container-header .navbar-collapse .metismenu-item > button {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 10px 4px !important;
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        color: #333 !important;
    }

    .container-header .metismenu.mod-menu .mm-collapse,
    .container-header .metismenu.mod-menu .mm-show {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 0 4px 16px !important;
        background: #f7f7f7 !important;
        box-shadow: none !important;
    }

    .hero,
    .page-hero {
        height: calc(100svh - var(--mobile-header-height)) !important;
        min-height: calc(100svh - var(--mobile-header-height)) !important;
        max-height: none !important;
        margin-top: 0 !important;
    }

    .hero-content,
    .page-hero .hero-content {
        top: auto !important;
        bottom: auto !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb,
    .breadcrumbs,
    .mod-breadcrumbs,
    .breadcrumb-wrapper,
    nav[aria-label="Breadcrumb"],
    nav[aria-label="Breadcrumbs"],
    nav[aria-label="breadcrumb"] {
        display: none !important;
    }
}


/* ========================================================================
   CANONICAL LAYOUT POLISH — PASS 3
   Desktop header, page heroes, CTA alignment and consistent gutters.
   Keep after component styles and before any future page-specific exceptions.
   ======================================================================== */

:root {
    --site-content-max: 1320px;
    --site-gutter: clamp(16px, 2.4vw, 32px);
    --desktop-header-height: 92px;
}

/* ------------------------------------------------------------------------
   CONSISTENT CONTENT WIDTHS / GUTTERS
   ------------------------------------------------------------------------ */

.container,
.container-component,
main .container {
    width: 100%;
    max-width: var(--site-content-max);
    margin-inline: auto;
    padding-inline: var(--site-gutter);
}

section {
    padding-block: clamp(3rem, 5vw, 6rem);
}

/* ------------------------------------------------------------------------
   DESKTOP HEADER — logo and navigation share one compact row
   ------------------------------------------------------------------------ */

@media (min-width: 992px) {
    .container-header {
        position: relative;
        z-index: 1000;
        width: 100% !important;
        max-width: none !important;
        min-height: var(--desktop-header-height);
        height: var(--desktop-header-height);
        margin: 0 !important;
        padding: 6px var(--site-gutter) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: clamp(24px, 3vw, 48px);
        background: #fff !important;
        background-image: none !important;
    }

    .container-header > div:first-child,
    .container-header > .grid-child:first-child {
        position: static !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: 0 0 auto;
    }

    .container-header a.brand-logo,
    .container-header .brand-logo {
        display: flex;
        align-items: center;
        height: 80px;
        margin: 0 !important;
    }

    .container-header a.brand-logo img,
    a.brand-logo img {
        position: static !important;
        width: 82px !important;
        max-width: 82px !important;
        height: auto !important;
        margin: 0 !important;
    }

    .container-header .container-nav,
    .container-header .grid-child.container-nav,
    .container-header > .grid-child:last-child,
    .container-header > div:last-child {
        position: static !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 0 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 1 1 auto;
    }

    .container-header .navbar-collapse {
        position: static !important;
        display: flex !important;
        width: auto !important;
        max-width: none !important;
        flex: 0 1 auto;
    }

    .container-header .navbar-nav,
    .container-header .metismenu.mod-menu {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(0.7rem, 1.15vw, 1.35rem);
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .container-header .metismenu.mod-menu .metismenu-item,
    .container-header .navbar-nav .nav-item {
        width: auto !important;
        margin: 0;
        padding: 0;
    }

    .container-header .nav-link,
    .container-header .metismenu-item > a,
    .container-header .metismenu-item > button {
        padding: 0.65rem 0.15rem !important;
        font-size: clamp(0.84rem, 0.86vw, 1rem);
        line-height: 1.2;
        white-space: nowrap;
    }
}

/* ------------------------------------------------------------------------
   LARGE-SCREEN PAGE HERO
   Keep image, overlay and text panel within the same visual bounds.
   ------------------------------------------------------------------------ */

@media (min-width: 992px) {
    .page-hero {
        width: 100%;
        height: clamp(560px, 68vh, 760px);
        min-height: 560px;
        max-height: 760px;
        margin-inline: auto;
        overflow: hidden;
    }

    .page-hero .hero-image-wrapper,
    .page-hero .hero-video-wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .page-hero .hero-image,
    .page-hero .hero-video,
    .page-hero .hero-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 44%;
    }

    .page-hero .hero-content {
        width: 100%;
        height: 100%;
        padding: clamp(28px, 4vw, 56px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-hero .hero-content .container {
        width: min(100%, 1080px);
        max-width: 1080px !important;
        margin-inline: auto;
        padding: clamp(30px, 4vw, 50px) clamp(28px, 5vw, 64px) !important;
    }

    .page-hero h1 {
        font-size: clamp(2.8rem, 4vw, 4.2rem);
        text-wrap: balance;
    }

    .page-hero p {
        max-width: 850px;
        margin-inline: auto;
        font-size: clamp(1.15rem, 1.5vw, 1.5rem);
        text-wrap: balance;
    }
}

/* Home hero image framing on large displays. */
@media (min-width: 1400px) {
    .hero-video,
    .hero-image {
        object-position: center 42%;
    }

    .hero-content .container {
        width: min(calc(100% - 2 * var(--site-gutter)), 1120px);
        max-width: 1120px;
    }
}

/* ------------------------------------------------------------------------
   CTA ALIGNMENT — one behaviour everywhere
   ------------------------------------------------------------------------ */

.cta,
.trips-cta,
.trip-cta,
.info-cta {
    text-align: center;
}

.cta-content,
.trips-cta .container,
.trip-cta .container,
.info-cta .container {
    margin-inline: auto;
    text-align: center;
}

.cta-buttons,
.contact .cta-buttons,
.trips-cta .cta-buttons,
.trip-cta .cta-buttons,
.location-actions {
    justify-content: center !important;
}

/* ------------------------------------------------------------------------
   TABLET / SMALL SCREEN GUTTERS
   Replaces the older zero-padding container behaviour.
   ------------------------------------------------------------------------ */

@media (max-width: 991.98px) {
    :root {
        --site-gutter: clamp(14px, 3.5vw, 24px);
    }

    .container,
    .container-component,
    main .container {
        width: 100%;
        max-width: 100%;
        padding-left: var(--site-gutter) !important;
        padding-right: var(--site-gutter) !important;
    }

    section {
        padding-block: clamp(2.25rem, 7vw, 3.5rem);
    }

    /* Full-bleed heroes keep their own edge treatment. */
    .hero-content,
    .page-hero .hero-content {
        padding-left: var(--site-gutter) !important;
        padding-right: var(--site-gutter) !important;
    }

    .hero-content .container,
    .page-hero .hero-content .container {
        width: 100%;
        max-width: 760px !important;
        margin-inline: auto;
        padding: clamp(20px, 5vw, 30px) clamp(16px, 4vw, 24px) !important;
    }

    .featured-trip,
    section.featured-trip {
        margin-inline: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .special-features .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: var(--site-gutter) !important;
        padding-right: var(--site-gutter) !important;
    }

    .cta-buttons,
    .contact .cta-buttons,
    .trips-cta .cta-buttons,
    .trip-cta .cta-buttons {
        width: 100%;
        margin-inline: auto;
        justify-content: center !important;
    }
}

@media (max-width: 575.98px) {
    :root {
        --site-gutter: 14px;
    }

    section {
        padding-block: 2.25rem;
    }

    .section-header {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
        padding-inline: 0;
    }

    .hero-buttons,
    .cta-buttons,
    .trips-cta .cta-buttons,
    .trip-cta .cta-buttons,
    .location-actions {
        width: min(100%, 340px);
        margin-inline: auto;
    }
}

/* ========================================================================
   HERO STRUCTURE CORRECTION
   Restores full-height background media and overlays hero content.
   ======================================================================== */

/* Heroes must not inherit generic section vertical padding. */
.hero,
.page-hero {
    position: relative !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Media layer always fills the complete hero. */
.hero .hero-image-wrapper,
.hero .hero-video-wrapper,
.page-hero .hero-image-wrapper,
.page-hero .hero-video-wrapper {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    overflow: hidden !important;
    z-index: 0 !important;
}

/* Support both classed images and ordinary IMG/PICTURE markup. */
.hero .hero-image,
.hero .hero-video,
.hero .hero-image-wrapper > img,
.hero .hero-image-wrapper picture,
.hero .hero-image-wrapper picture > img,
.page-hero .hero-image,
.page-hero .hero-video,
.page-hero .hero-image-wrapper > img,
.page-hero .hero-image-wrapper picture,
.page-hero .hero-image-wrapper picture > img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 42%;
}

/* Overlay layer fills hero independently of content. */
.hero .hero-overlay,
.page-hero .hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

/* Content sits ON the image rather than in normal document flow. */
.hero > .hero-content,
.page-hero > .hero-content,
.hero .hero-content,
.page-hero .hero-content {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

/* Home hero: available viewport below header. */
@media (min-width: 992px) {
    .hero {
        height: calc(100vh - var(--desktop-header-height)) !important;
        min-height: 640px !important;
        max-height: 900px !important;
    }
}

@media (max-width: 991.98px) {
    .hero {
        height: calc(100svh - var(--mobile-header-height)) !important;
        min-height: calc(100svh - var(--mobile-header-height)) !important;
        max-height: none !important;
    }

    .hero .hero-image,
    .hero .hero-video,
    .hero .hero-image-wrapper > img,
    .hero .hero-image-wrapper picture > img {
        object-position: center 40% !important;
    }
}

/* ========================================================================
   VISUAL POLISH — PASS 4
   Semantic colour roles, mobile menu toggles, grid/slideshow sizing and CTAs.
   ======================================================================== */

:root {
    /* Brand colours by PURPOSE rather than reusing background colours as text. */
    --brand-text: #355b5d;
    --brand-surface: #326061;
    --brand-surface-strong: #254b4d;
    --brand-surface-soft: #5f8f99;
    --brand-on-surface: #ffffff;
    --brand-on-surface-muted: #e7f1f2;
    --brand-border-soft: #d6e3e5;
}

/* Brand-coloured copy should use an ink colour, not a panel/background colour. */
h1, h2, h3, h4, h5, h6,
.section-header h2,
.trip-details h3,
.content-block h2,
.content-block h3,
.content-block h4 {
    color: var(--brand-text);
}

/* ------------------------------------------------------------------------
   MOBILE HEADER / LOGO
   Keep the logo fully inside the 56px header.
   ------------------------------------------------------------------------ */

@media (max-width: 991.98px) {
    .container-header a.brand-logo,
    .container-header .brand-logo {
        height: calc(var(--mobile-header-height) - 6px) !important;
        max-height: calc(var(--mobile-header-height) - 6px) !important;
        overflow: hidden;
    }

    .container-header a.brand-logo img,
    a.brand-logo img {
        width: auto !important;
        height: auto !important;
        max-width: 100px !important;
        max-height: calc(var(--mobile-header-height) - 8px) !important;
        object-fit: contain;
    }

    /* Each menu item owns its arrow; the arrow must not become another row. */
    .container-header .navbar-collapse .metismenu-item {
        position: relative !important;
    }

    .container-header .navbar-collapse .metismenu-item > a,
    .container-header .navbar-collapse .nav-item > a {
        padding: 11px 48px 11px 4px !important;
        min-height: 44px;
    }

    .container-header .navbar-collapse .metismenu-item > button,
    .container-header .navbar-collapse .metismenu-item > .mm-toggler {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        left: auto !important;
        width: 44px !important;
        min-width: 44px !important;
        height: 44px !important;
        min-height: 44px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 0 !important;
        background: transparent !important;
        color: var(--brand-text) !important;
        z-index: 2;
    }

    .container-header .navbar-collapse .metismenu-item > button:hover,
    .container-header .navbar-collapse .metismenu-item > .mm-toggler:hover {
        background: #f3f7f7 !important;
    }

    .container-header .metismenu.mod-menu .mm-collapse,
    .container-header .metismenu.mod-menu .mm-show {
        padding: 0 0 4px 14px !important;
        border-top: 1px solid #edf1f2;
        background: #fafcfc !important;
    }
}

/* ------------------------------------------------------------------------
   DESKTOP DROPDOWNS
   Compact, readable submenu panel beneath the parent item.
   ------------------------------------------------------------------------ */

@media (min-width: 992px) {
    .container-header .metismenu.mod-menu > .metismenu-item {
        position: relative;
        display: flex !important;
        align-items: center;
    }

/* =========================================================
   METISMENU PARENT ITEMS
   "Our River" / other dropdown parent labels
   ========================================================= */

.container-header .metismenu.mod-menu >
.metismenu-item.deeper.parent >
button.mm-toggler {

    position: relative !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    width: auto !important;
    min-width: max-content !important;
    max-width: none !important;
    height: auto !important;

    padding: .65rem 1.45rem .65rem .5rem !important;
    margin: 0 !important;

    overflow: visible !important;

    white-space: nowrap !important;
    text-overflow: initial !important;

    background: transparent !important;
    border: 0 !important;

    color: var(--brand-text, #355b5d) !important;
}


/* Arrow stays at right of label */
.container-header .metismenu.mod-menu >
.metismenu-item.deeper.parent >
button.mm-toggler::after {

    position: absolute;
    right: .35rem;
    top: 50%;

    transform: translateY(-50%);

    margin: 0 !important;
}

    .container-header .metismenu.mod-menu .mm-collapse,
    .container-header .metismenu.mod-menu .mm-show {
        min-width: 220px;
        padding: 6px 0 !important;
        background: #fff !important;
        border: 1px solid var(--brand-border-soft);
        border-radius: 0 0 6px 6px;
        box-shadow: 0 12px 28px rgba(20, 46, 48, 0.14);
    }

    .container-header .metismenu.mod-menu .mm-collapse a,
    .container-header .metismenu.mod-menu .mm-show a {
        display: block;
        padding: 9px 14px !important;
        line-height: 1.25;
        color: #263d3f !important;
        white-space: nowrap;
    }

    .container-header .metismenu.mod-menu .mm-collapse a:hover,
    .container-header .metismenu.mod-menu .mm-show a:hover {
        background: #f3f7f7;
        color: var(--brand-text) !important;
    }
}

/* ------------------------------------------------------------------------
   BADGES / DARK SURFACES
   Explicit foreground colours improve contrast and stop colour-role leakage.
   ------------------------------------------------------------------------ */

.trip-grade,
.trip-grade-large,
.trip-grade-badge,
.grade-badge-large {
    background: var(--brand-surface) !important;
    color: var(--brand-on-surface) !important;
    border-color: var(--brand-surface) !important;
}

.hero .trip-grade,
.hero .trip-grade-large,
.page-hero .trip-grade,
.page-hero .trip-grade-large {
    box-shadow: 0 4px 14px rgba(20, 46, 48, 0.22);
}

.quick-info-inline,
.trip-quick-info,
.safety-card {
    background-color: var(--brand-surface) !important;
    color: var(--brand-on-surface) !important;
}

.quick-info-inline h3,
.quick-info-inline h4,
.quick-info-inline strong,
.trip-quick-info h3,
.trip-quick-info h4,
.trip-quick-info strong,
.safety-card h3,
.safety-card h4,
.safety-card strong {
    color: var(--brand-on-surface) !important;
}

.quick-info-inline p,
.trip-quick-info p,
.safety-card p,
.safety-card li {
    color: var(--brand-on-surface-muted) !important;
}

.quick-info-inline p {
    font-size: 0.95rem;
    line-height: 1.45;
}

/* ------------------------------------------------------------------------
   WHY CHOOSE US / FEATURE GRID
   Eight cards = four columns on wide screens, two on intermediate screens.
   ------------------------------------------------------------------------ */

@media (min-width: 1180px) {
    .features-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: clamp(18px, 2vw, 28px);
    }
}

@media (min-width: 700px) and (max-width: 1179.98px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 699.98px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }
}

.feature-card {
    height: 100%;
}

/* ------------------------------------------------------------------------
   CAPTURED MOMENTS / MULTI-DAY SLIDESHOW
   Keep the carousel visually focused on large screens.
   ------------------------------------------------------------------------ */

.crr-slideshow {
    width: min(100%, 800px) !important;
    max-width: 800px !important;
    margin-inline: auto !important;
}

/* ------------------------------------------------------------------------
   CTA BUTTON GROUPS
   Force the group itself, not just its contents, onto the centre line.
   ------------------------------------------------------------------------ */

.cta-content,
.trips-cta .container,
.trip-cta .container,
.info-cta .container {
    width: 100%;
    margin-inline: auto !important;
    text-align: center !important;
}

.cta-buttons,
.contact .cta-buttons,
.trips-cta .cta-buttons,
.trip-cta .cta-buttons,
.info-cta .cta-buttons {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
    align-items: center !important;
}

@media (max-width: 575.98px) {
    .cta-buttons,
    .contact .cta-buttons,
    .trips-cta .cta-buttons,
    .trip-cta .cta-buttons,
    .info-cta .cta-buttons {
        width: min(100%, 340px) !important;
        flex-direction: column;
    }
}

/* ========================================================================
   VISUAL POLISH - PASS 5
   Targeted fixes: article alignment, CTA centring, MetisMenu parent labels.
   ======================================================================== */

/* ------------------------------------------------------------------------
   ARTICLE COPY
   Headings may be centred by their component, but normal reading copy
   remains left-aligned at every breakpoint.
   ------------------------------------------------------------------------ */
.trip-main-content p,
.trip-main-content li,
.content-block p,
.content-block li,
.exp-panel p,
.exp-panel li,
.expedition-option p,
.expedition-option li,
.info-main p,
.info-main li {
    text-align: left !important;
}

/* Preserve deliberately centred introductory headings without centring copy. */
.exp-panel > h2,
.exp-panel > h3,
.trip-main-content > h2,
.trip-main-content > h3 {
    text-wrap: balance;
}

/* ------------------------------------------------------------------------
   CTA GROUPS
   Some newer page sections use .crr-cta-group rather than .cta-buttons.
   Centre both the wrapper and its children.
   ------------------------------------------------------------------------ */
.crr-cta-group,
.cta-buttons,
.contact .cta-buttons,
.trips-cta .cta-buttons,
.trip-cta .cta-buttons,
.info-cta .cta-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 575.98px) {
    .crr-cta-group,
    .cta-buttons,
    .contact .cta-buttons,
    .trips-cta .cta-buttons,
    .trip-cta .cta-buttons,
    .info-cta .cta-buttons {
        width: min(100%, 340px) !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }
}

/* ------------------------------------------------------------------------
   METISMENU PARENT ITEMS
   In Cassiopeia, a parent can itself be the BUTTON containing both label
   and caret. Do not force that button to 24px/44px or the label is crushed.
   ------------------------------------------------------------------------ */

/* Desktop: parent button keeps its full text width. */
@media (min-width: 992px) {
    .container-header .metismenu.mod-menu > .metismenu-item > button {
        position: relative !important;
        width: auto !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0.65rem 1.35rem 0.65rem 0.15rem !important;
        margin: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.35rem;
        white-space: nowrap !important;
        color: inherit !important;
        background: transparent !important;
        border: 0 !important;
    }

    /* Only a genuinely separate toggler gets the compact arrow treatment. */
    .container-header .metismenu.mod-menu > .metismenu-item > .mm-toggler:not(button) {
        width: 24px !important;
        min-width: 24px !important;
    }
}

/* Mobile: parent button remains a normal full-width row with its caret right. */
@media (max-width: 991.98px) {
    .container-header .navbar-collapse .metismenu-item > button {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 44px !important;
        margin: 0 !important;
        padding: 11px 42px 11px 4px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        white-space: normal !important;
        text-align: left !important;
        background: transparent !important;
        border: 0 !important;
        color: #333 !important;
    }

    /* If Joomla renders a separate .mm-toggler element, keep only that
       control positioned at the right of the row. */
    .container-header .navbar-collapse .metismenu-item > .mm-toggler:not(button) {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        width: 44px !important;
        height: 44px !important;
    }
}

/* ========================================================================
   VISUAL POLISH - PASS 6
   Four marked fixes: compact expedition badges, reading-copy alignment,
   centred CTAs (retained), and unclipped MetisMenu parent labels.
   ======================================================================== */

/* ------------------------------------------------------------------------
   1. EXPEDITION META BADGES
   Old mobile CSS changed .expedition-meta to a column. Flex items then
   stretched to the full available width. Keep them as compact pills.
   ------------------------------------------------------------------------ */
.expedition-meta {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.55rem !important;
    width: auto !important;
}

.expedition-meta .badge {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: max-content !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0.45rem 0.9rem !important;
    white-space: nowrap !important;
}

@media (max-width: 576px) {
    .expedition-meta {
        flex-direction: row !important;
        align-items: center !important;
    }
}

/* ------------------------------------------------------------------------
   2. READING COPY
   Multi-day article/body copy is left aligned. Only explicit presentation
   components (hero, section intro, CTA, cards) retain centred text.
   ------------------------------------------------------------------------ */
/*.multi-day main p,
.multi-day main li,
.multi-day .exp-panel p,
.multi-day .exp-panel li,
.multi-day .exp-trip-variant p,
.multi-day .content-block p,
.multi-day .content-block li,
.multi-day .trip-main-content p,
.multi-day .trip-main-content li {
    text-align: left !important;
}*/

/* Deliberately centred presentation copy. */
.multi-day .hero-content p,
.multi-day .page-hero .hero-content p,
 .multi-day .cta-content p,
.multi-day .trips-cta p,
.multi-day .trip-cta p,
.multi-day .info-cta p,
.multi-day .crr-cta-section p,
.multi-day .trip-highlight-card p,
.multi-day .highlight-item p,
.multi-day .included-item p,
.multi-day .feature-card p {
    text-align: center !important;
}

/* If the Joomla page does not expose the .multi-day body class, the main
   expedition panels still get the correct reading alignment. */
.exp-panel > p,
.exp-panel > ul,
.exp-panel > ol,
.exp-trip-variant > p {
    text-align: left !important;
}

/* ------------------------------------------------------------------------
   3. CTA CENTRING
   Preserve the working Pass 5 result.
   ------------------------------------------------------------------------ */
.crr-cta-group,
.cta-buttons,
.contact .cta-buttons,
.trips-cta .cta-buttons,
.trip-cta .cta-buttons,
.info-cta .cta-buttons {
    justify-content: center !important;
    margin-inline: auto !important;
}

/* ------------------------------------------------------------------------
   4. DESKTOP METISMENU PARENT LABELS
   Override the older 24px toggle treatment completely. A Joomla parent
   button contains both the label and caret, so it must size to its content.
   ------------------------------------------------------------------------ */
@media (min-width: 992px) {
    .container-header .metismenu.mod-menu > .metismenu-item {
        position: relative !important;
        display: flex !important;
        flex: 0 0 auto !important;
        width: max-content !important;
        max-width: none !important;
        min-width: max-content !important;
        overflow: visible !important;
    }

    .container-header .metismenu.mod-menu > .metismenu-item > button {
        position: relative !important;
        display: inline-flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: max-content !important;
        max-width: none !important;
        min-width: max-content !important;
        height: auto !important;
        min-height: 34px !important;
        overflow: visible !important;
        padding: 0.65rem 1.55rem 0.65rem 0.15rem !important;
        margin: 0 !important;
        white-space: nowrap !important;
        text-overflow: clip !important;
        color: inherit !important;
        background: transparent !important;
        border: 0 !important;
    }

    /* The caret/pseudo element may sit at the right edge, but it must not
       consume or clip the text width. */
    .container-header .metismenu.mod-menu > .metismenu-item > button::before,
    .container-header .metismenu.mod-menu > .metismenu-item > button::after {
        flex: 0 0 auto !important;
    }

    /* Only an actually separate non-button toggle is compact. */
    .container-header .metismenu.mod-menu > .metismenu-item > .mm-toggler:not(button) {
        flex: 0 0 24px !important;
        width: 24px !important;
        min-width: 24px !important;
        max-width: 24px !important;
    }
}

/* ========================================================================
   VISUAL POLISH - PASS 7
   Fix mobile Our River parent row and long-form reading alignment.
   ======================================================================== */

/* ------------------------------------------------------------------------
   1. MOBILE METISMENU: "Our River" is a no-link parent button.
   Cassiopeia/MetisMenu uses .mm-toggler-nolink for this case. It must behave
   like a normal full-width menu row, not like the 44px arrow-only control.
   ------------------------------------------------------------------------ */
@media (max-width: 991.98px) {
    .container-header .navbar-collapse .metismenu.mod-menu > .metismenu-item > button.mm-toggler-nolink,
    .container-header .navbar-collapse .metismenu.mod-menu > .metismenu-item > .mm-toggler-nolink {
        position: static !important;
        inset: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 44px !important;
        margin: 0 !important;
        padding: 11px 4px !important;
        text-align: left !important;
        white-space: normal !important;
        color: #333 !important;
        background: transparent !important;
        border: 0 !important;
        z-index: auto !important;
    }

    .container-header .navbar-collapse .metismenu.mod-menu > .metismenu-item > button.mm-toggler-nolink::after,
    .container-header .navbar-collapse .metismenu.mod-menu > .metismenu-item > .mm-toggler-nolink::after {
        position: static !important;
        flex: 0 0 auto !important;
        margin-left: auto !important;
    }

    /* Keep only true link-toggles as compact right-side controls. */
    .container-header .navbar-collapse .metismenu.mod-menu > .metismenu-item > button.mm-toggler-link,
    .container-header .navbar-collapse .metismenu.mod-menu > .metismenu-item > .mm-toggler-link {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 44px !important;
        min-width: 44px !important;
        height: 44px !important;
        min-height: 44px !important;
        padding: 0 !important;
    }
}

/* ------------------------------------------------------------------------
   2. LONG-FORM ARTICLE COPY
   Set alignment on the reading containers themselves so inherited centring
   cannot keep pulling paragraphs into the middle.
   ------------------------------------------------------------------------ */
.trip-main-content,
.content-block,
.exp-panel,
.exp-accordion-body,
.expedition-option,
.info-main {
    text-align: left !important;
}

.trip-main-content p,
.trip-main-content li,
.content-block p,
.content-block li,
.exp-panel p,
.exp-panel li,
.exp-panel ul,
.exp-panel ol,
.exp-accordion-body p,
.exp-accordion-body li,
.expedition-option p,
.expedition-option li,
.info-main p,
.info-main li {
    text-align: left !important;
}

/* Headings in these reading panels may still be centred intentionally. */
.exp-panel > h2,
.exp-panel > h3,
.trip-main-content > h2,
.trip-main-content > h3 {
    text-align: center;
}

/* CTA/presentation content remains centred. */
.hero-content,
.page-hero .hero-content,
.cta-content,
.crr-cta-section,
.crr-cta-section p,
.crr-cta-group,
.trip-cta,
.trips-cta,
.info-cta {
    text-align: center !important;
}


/* ========================================================================
   PASS 8 - ONE TARGETED ALIGNMENT FIX
   Multi-day featured-trip intro: heading centred, reading copy left aligned.
   ======================================================================== */
.multi-day .featured-trip .section-header {
    text-align: left !important;
}

.multi-day .featured-trip .section-header h1,
.multi-day .featured-trip .section-header h2,
.multi-day .featured-trip .section-header h3 {
    text-align: center !important;
}

.multi-day .featured-trip .section-header p {
    text-align: left !important;
}
/* =========================================================
   HERO SCROLL INDICATOR
   ========================================================= */

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);

    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    color: #fff;

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-shadow: 0 2px 6px rgba(0,0,0,.55);
}

/* Down arrow */
.scroll-arrow {
    width: 14px;
    height: 14px;

    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;

    transform: rotate(45deg);

    animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(7px) rotate(45deg);
    }
}

/* Mobile: keep it compact */
@media (max-width: 767.98px) {
    .hero-scroll-indicator {
        bottom: 14px;
        font-size: 0.7rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-arrow {
        animation: none;
    }
}

.crr-slideshow {
    margin-bottom: 50px;
}