/* ==========================================================================
   Clarence River Rafting - Joomla CSS (No Header/Nav)
   Use with Joomla Cassiopeia Extended Template
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Baloo+2:wght@700;800&family=Nunito:wght@700;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: #45B5C4;
    
    /* 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: 'Fredoka One', 'Baloo 2', sans-serif;  /* For big bold text */
    --font-heading: 'Nunito', 'Baloo 2', sans-serif;              /* For smaller headings */
    --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: 400; /* Fredoka One is already heavy */
    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: 700;
    letter-spacing: 1px;
}

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

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


.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 Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--spacing-md);
    bottom: 180px;
}

/* ==========================================================================
   RESPONSIVE HERO SECTION - Mobile Optimized
   ========================================================================== */

/* Desktop - Full landscape hero */
.hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    min-height: 600px;
    
    /* Break out of container */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Hero video/image wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Default center crop */
    position: absolute;
    top: 0;
    left: 0;
}

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

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

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

/* Hero title - desktop */
.hero-title {
    font-family: 'Fredoka One', 'Baloo 2', sans-serif;
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

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

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

/* ==========================================================================
   TABLET - Portrait Layout (iPad, etc.)
   ========================================================================== */

@media (max-width: 992px) {
    .hero {
        height: 80vh;
        min-height: 550px;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    /* Adjust image crop for tablet */
    .hero-video,
    .hero-image {
        object-position: center 40%; /* Shift focus slightly up */
    }
}

/* ==========================================================================
   MOBILE - Portrait Layout (Phones)
   ========================================================================== */

@media (max-width: 768px) {
    /* Mobile hero - shorter, portrait optimized */
    .hero {
        height: 100vh;
        min-height: 600px;
        max-height: 800px; /* Prevent too tall on long phones */
    }
    
    /* Portrait crop for mobile - focus on action */
    .hero-video,
    .hero-image {
        object-fit: cover;
        object-position: center 35%; /* Focus on the rafters */
        /* Alternative crops you can try:
           object-position: 60% center; - focus right side
           object-position: center top; - focus top
           object-position: center 30%; - focus upper-middle
        */
    }
    
    /* Mobile content layout - stacked vertically */
    .hero-content {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 20vh; /* Push content down from top */
    }
    
    .hero-content .container {
        padding: 0 1rem;
    }
    
    /* Mobile title - smaller, more compact */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
        line-height: 1;
    }
    
    /* Mobile subtitle - more concise */
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        max-width: 90%; /* Prevent too-wide text */
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Mobile buttons - stacked */
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Hide scroll indicator on mobile if it exists */
    .hero-scroll-indicator {
        display: none;
    }
}

/* ==========================================================================
   SMALL MOBILE (iPhone SE, small Androids)
   ========================================================================== */

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
        height: 90vh;
    }
    
    .hero-content {
        padding-top: 15vh;
    }
    
    .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;
    }
}

/* ==========================================================================
   LANDSCAPE MOBILE (Phone rotated)
   ========================================================================== */

@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding-top: 5vh;
        align-items: center;
    }
    
    .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 {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   VERY WIDE SCREENS (Desktop monitors, TVs)
   ========================================================================== */

@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;
    }
}

/* ==========================================================================
   ACCESSIBILITY - Reduced Motion
   ========================================================================== */

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

/* ==========================================================================
   OVERRIDE JOOMLA CONSTRAINTS
   ========================================================================== */

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

body {
    overflow-x: hidden;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(-10px) rotate(-45deg);
    }
    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* ==========================================================================
   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: 'Baloo 2', 'Nunito', sans-serif;
    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: '✓';
    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: 'Montserrat', sans-serif;
            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: 'Montserrat', sans-serif;
            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;
    height: 50vh;
    min-height: 400px;
    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: '✓';
    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: '✓';
    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: -15px;
    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: '✓';
    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: '✓';
    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: '✓';
    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;
    }
}
/* ==========================================================================
   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;
    }
}

/* ==========================================================================
   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;
    }
}

/* Hero Section - Full Height & Responsive */
.page-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust this value as needed */
    min-height: 400px;
    max-height: 900px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.hero-content p {
    color: white;
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-hero {
        height: 50vh;
        min-height: 700px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 100vh;
        min-height: 700px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
}

/* 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;
    }
}



/* Header Grid - Match Main Content Grid */
.container-header {
    max-width: 1320px; /* Bootstrap default, adjust if needed */
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 150px 1fr; /* Logo fixed at 150px, menu takes rest */
    gap: 3rem;
    align-items: center;
}

/* Logo - Fixed 150px */
.container-header > div:first-child,
.container-header .grid-child:first-child {
    width: 150px !important;
    max-width: 150px;
}

.container-header > div:first-child img,
.container-header .grid-child:first-child img {
    width: 150px;
    height: auto;
    display: block;
}

/* Menu - Takes Remaining Space */
.container-header > div:last-child,
.container-header .grid-child:last-child {
    width: 100% !important;
    display: flex;
    justify-content: flex-end;
}

/* Horizontal Menu */
.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item {
    display: inline-block;
}

/* Ensure Main Content Uses Same Grid Width */
.container,
.container-component,
main .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .container-header,
    .container,
    .container-component {
        max-width: 1140px;
      width: 100%;
    }
}

@media (max-width: 1200px) {
    .container-header,
    .container,
    .container-component {
        max-width: 960px;
      width: 100%;
    }
}

@media (max-width: 991px) {
    /* Mobile - Stack Logo Above Menu */
    .container-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .container-header > div:first-child,
    .container-header .grid-child:first-child {
        width: 150px !important; /* Keep logo 150px on mobile too */
    }
    
    .container-header > div:last-child,
    .container-header .grid-child:last-child {
        justify-content: flex-start;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .container-header,
    .container,
    .container-component {
        max-width: 720px;
      width: 100%;
    }
}

@media (max-width: 576px) {
    .container-header,
    .container,
    .container-component {
        max-width: 540px;
        padding: 0 12px;
      width: 100%;
    }
}

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

/* 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: 'Fredoka One', 'Baloo 2', 'Nunito', cursive, 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);
}

/* Rounded Font Subheading with Outline */
/* Parallax Hero - MUCH DEEPER */
.parallax-hero-full {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 100vh; /* Full viewport height */
    min-height: 800px; /* Ensures good depth */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 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 */
/* 1. Make the Details fieldset a flex column */
fieldset.m-0 {
  display: flex;
  flex-direction: column;
}

/* 2. Order the Details fieldset fields */
.control-group:has(#jform_contact_name)               { order: 1; }
.control-group:has(#jform_com_fields_organisation)    { order: 2; }
.control-group:has(#jform_contact_email)              { order: 3; }
.control-group:has(#jform_com_fields_phone_number)    { order: 4; }
.control-group:has(#jform_com_fields_feature)         { order: 5; }
.control-group:has(#jform_com_fields_preferred_date2) { order: 6; }
.control-group:has(#jform_com_fields_group_size)  { order: 7; }
.control-group:has(#jform_contact_emailmsg)           { order: 9; }
.control-group:has(#jform_contact_message)            { order: 10; }
.control-group:has(#jform_com_fields_contact_method)  { order: 11; }
.control-group:has(#jform_com_fields_awareness)       { order: 12; }

/* ── 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: 1rem;
  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
  }

  .grid-child.container-nav {
    position: absolute;
    top: -10px;
    left: 10px;
}
  .container-header .navbar-collapse.show {
    background: white;
}

  a.brand-logo img {
    position: relative;
    top: -10px;
    margin-bottom: -100px;
}
  
}