/* --- NEW Color Palette --- */
:root {
    --primary-color: #0077b6; /* Strong, Clear Blue */
    --secondary-color: #00b4d8; /* Lighter Sky Blue */
    --accent-color: #f77f00; /* Vibrant Sunset Orange */
    --highlight-color: #fcbf49; /* Warm Gold */
    --light-bg: #f8f9fa; /* Off-white background */
    --white-bg: #ffffff;
    --dark-text: #212529; /* Standard Dark Text */
}

/* --- General Styling --- */
body {
    font-family: "Montserrat", sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

/* --- Custom Cursor Styling --- */
/* Use the default browser cursor for the body */
body {
    cursor: default;
}

/* Hide the default cursor ONLY when hovering over interactive elements */
a:hover,
button:hover {
    cursor: none;
}

/* Style for the trail logo images */
.cursor-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 25px; /* Adjust size as needed */
    height: 25px; /* Adjust size as needed */
    pointer-events: none; /* Allows clicks to pass through */
    transform: translate(-50%, -50%); /* Center the icon on the cursor */
    transition: width 0.3s, height 0.3s, opacity 0.3s, transform 0.3s,
        filter 0.3s;
    z-index: 9999;
    /* Hide the logos by default */
    opacity: 0;
    visibility: hidden;
}

/* The main logo icon that is always visible (when active) */
.cursor-logo.main-logo {
    width: 25px;
    height: 25px;
}

/* Class to make the cursor visible */
.cursor-logo.visible {
    visibility: visible;
    opacity: 1;
}

/* The main logo is always fully opaque when it's visible */
.cursor-logo.main-logo.visible {
    opacity: 1 !important;
}

/* Style for when hovering over a link */
.cursor-logo.hover-effect {
    transform: translate(-50%, -50%) scale(0.95);
    filter: brightness(1.1); /* Add a subtle glow/brightness effect */
}

@media (hover: none) or (max-width: 768px) {
    .cursor-logo {
        display: none !important;
    }

    /* Restore default cursors on touch devices */
    a:hover,
    button:hover {
        cursor: pointer !important;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
}

.content-section {
    background-color: var(--light-bg);
}

.content-section-white {
    background-color: var(--white-bg);
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* --- Navigation Bar (MODIFIED for Light Theme) --- */
.navbar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    /* Light background */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--dark-text) !important;
}

.navbar-brand .fa-mountain-sun {
    color: var(--primary-color);
}

.nav-link {
    color: var(--dark-text) !important;
    margin: 0 10px;
    font-weight: 600;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(79, 111, 82, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Hero Section Styling --- */
.hero-section-video {
    position: relative;
    height: 80vh; /* MODIFIED: Changed from 70vh to 80vh */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Aligns content to the bottom */
    justify-content: flex-start; /* Aligns content to the left */
}

/* --- Video Background Styling --- */
.video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Places it behind everything */
}

.video-background-wrapper iframe {
    /* This calculation ensures the video covers the screen without black bars */
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 80vh; /* MODIFIED: Changed from 70vh to 80vh */
    min-width: 142.22vh; /* 16:9 aspect ratio for 80vh height */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --- Placeholder Image Styling --- */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1; /* Sits on top of the video, behind the text */
    transition: opacity 1s ease-out; /* Smooth fade-out transition */
}

/* Class to hide the placeholder once the video is playing */
.video-placeholder.hidden {
    opacity: 0;
}

/* --- Content Styling --- */
.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 4rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 4.5rem;
    font-weight: 700;
}

.hero-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    max-width: 500px;
}

.flashing-badge {
    font-size: 0.6em;
    font-weight: bold;
    color: #fff;
    padding: 2px 5px;
    border-radius: 4px;
    vertical-align: top;
    /* The animation property */
    animation: flash-animation 1.5s infinite;
}

/* The keyframes for the flashing animation */
@keyframes flash-animation {
    0% {
        background-color: #28a745; /* Green */
    }
    50% {
        background-color: #1e7e34; /* Darker Green */
    }
    100% {
        background-color: #28a745; /* Back to Green */
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    /* Tablet */
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    /* Mobile */
    .hero-section-video {
        align-items: center; /* Center content vertically */
        justify-content: center; /* Center content horizontally */
        text-align: center; /* Center text */
    }
    .hero-content {
        padding: 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

.btn-primary {
    border-radius: 0;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    font-size: 1.1rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #a14812;
    /* Darker rust */
    border-color: #a14812;
    transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* --- Difference Section --- */
.difference-item {
    text-align: center;
    padding: 20px;
}

.difference-item .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* --- Testimonials --- */
.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 15px;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-card .trek-name {
    font-style: italic;
    color: #6c757d;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}
/* --- New Playlist Card Design --- */
.playlist-card {
    background-color: var(--white-bg);
    border-radius: 0;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease,
        border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.playlist-card .card-img-top {
    border-radius: 0;
    height: 220px;
    object-fit: cover;
}

.playlist-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.playlist-card .card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: var(--dark-text);
}

.playlist-card .card-text {
    flex-grow: 1;
    color: #6c757d;
}

.playlist-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.playlist-meta .video-count {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.playlist-meta .premium-badge {
    background-color: var(--accent-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
}

.playlist-card .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
}

.playlist-card .btn-primary:hover {
    background-color: #3e5a41;
    border-color: #3e5a41;
}

.video-player-section {
    background-color: #000;
}

.video-player-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    background-color: #000;
}

#player {
    width: 100%;
    height: 100%;
}

.playlist-sidebar {
    height: 100vh;
    overflow-y: auto;
    padding: 2rem;
    border-left: 1px solid #eee;
}

.playlist-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

.playlist-header .progress {
    height: 8px;
    border-radius: 50px;
}

.video-list-container {
    list-style: none;
    padding: 0;
}

.video-list-item a {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark-text);
    transition: background-color 0.2s ease;
}

.video-list-item a:hover {
    background-color: #f0f0f0;
}

.video-list-item a.active {
    background-color: #e8f5e9; /* A light green */
    font-weight: 700;
}

.video-list-item .video-number {
    font-size: 1rem;
    color: #6c757d;
    width: 30px;
    text-align: center;
}

.video-list-item .video-title {
    flex-grow: 1;
    margin: 0 1rem;
}

.video-list-item .video-status-icon {
    font-size: 1.2rem;
}
/* --- Blog Section --- */
.blog-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

/* --- Awards & Recognition Section --- */
.award-item {
    padding: 10px;
}

.award-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

/* --- Trusted By Section --- */
.trusted-by-section img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trusted-by-section img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Community CTA (MODIFIED for Light Theme) --- */
.community-cta {
    background: linear-gradient(
            rgba(244, 162, 97, 0.8),
            rgba(231, 111, 81, 0.8)
        ),
        url("../images/contour.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.community-cta h2 {
    font-size: 3rem;
}

.community-cta .btn-primary {
    background-color: #fff;
    color: var(--accent-color);
    border: 2px solid #fff;
}

.community-cta .btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

/* --- Footer (MODIFIED for Light Theme) --- */
footer {
    background-color: var(--light-bg);
    color: var(--dark-text);
    border-top: 1px solid #eee;
}

footer h5 {
    color: var(--dark-text);
}

footer a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-color);
}

footer .footer-social-icons i {
    font-size: 1.5rem;
    margin-right: 15px;
}

footer hr {
    background-color: var(--accent-color);
}

.footer-bottom {
    background-color: #e9ecef;
}

/* --- Blog Post Styling --- */
.blog-post-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.blog-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.author-info .author-name {
    font-weight: 700;
    margin-bottom: 0;
}
.author-info .post-date {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.feature-image {
    border-radius: 0;
    margin-bottom: 2.5rem;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
}
.blog-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.blog-content p {
    margin-bottom: 1.5rem;
}
.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--muted-text);
    margin: 2rem 0;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0; /* Matches the feature image style */
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-tags {
    margin-top: 3rem;
}
.tag-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #e9ecef;
    color: var(--dark-text);
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.tag-badge:hover {
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.social-share {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    margin-top: 2rem;
}
.social-share a {
    font-size: 1.5rem;
    color: var(--muted-text);
    margin-right: 1.5rem;
    transition: color 0.2s ease;
}
.social-share a:hover {
    color: var(--primary-color);
}

/* --- Sidebar Styling --- */
.sidebar {
    position: sticky;
    top: 120px; /* Adjust based on navbar height */
}
.sidebar-widget {
    background-color: var(--white-bg);
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}
.sidebar-widget-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}
.category-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--dark-text);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s ease;
}
.category-list a:last-child {
    border-bottom: none;
}
.category-list a:hover {
    color: var(--accent-color);
}

.recommended-post {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.recommended-post:last-child {
    margin-bottom: 0;
}
.recommended-post img {
    width: 70px;
    height: 70px;
    border-radius: 0;
    object-fit: cover;
    margin-right: 15px;
}
.recommended-post-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--dark-text);
    text-decoration: none;
}
.recommended-post-title:hover {
    color: var(--accent-color);
}

/* --- Redesigned Page Header --- */
.page-header {
    padding: 140px 0 20px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}
/* Dark overlay for better text readability */
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
/* Ensure content is above the overlay */
.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0.5rem;
}
.page-header .breadcrumb-item a {
    color: #f8f9fa; /* Light grey for links */
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.page-header .breadcrumb-item a:hover {
    opacity: 0.8;
}
.page-header .breadcrumb-item.active {
    color: #fff; /* White for the active page */
    font-weight: 700;
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: #f8f9fa; /* Light grey for the separator */
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
.page-header .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* --- Philosophy Section --- */
.philosophy-img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Team Section --- */
.team-card {
    text-align: center;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white-bg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.team-card h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-card .role {
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
/* --- Values Section --- */
.value-item {
    text-align: center;
    padding: 20px;
}
.value-item .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
/* --- Filter Bar --- */
.filter-bar {
    background-color: var(--white-bg);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

/* --- Trek Card Styling --- */

.trek-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.trek-card:hover {
    transform: translateY(-10px);
}

.trek-card img {
    height: 250px;
    object-fit: cover;
}

.trek-card .card-body {
    background-color: #fff;
}

/* Base style for all grade tags */
.grade {
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    position: relative; /* Required for the pseudo-element */
    z-index: 1; /* Ensures text stays on top of the background shape */
    overflow: hidden; /* Keeps the background shape contained */
    display: inline-block; /* Ensures proper layout */
}

/* The ::before pseudo-element creates the background mountain shape */
.grade::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Places the shape behind the text */
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Stretches the SVG to fill the element */
}

/* --- Color & Path Variations for Each Grade --- */

/* Easy: A single, low peak covering 20% of the height */
.grade-easy .fa-person-hiking {
    color: #28a745; /* Green text */
}
.grade-easy::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L50,80 L100,100 Z' fill='rgba(40,167,69,0.5)'/%3E%3C/svg%3E");
}

/* Moderate: Two peaks, with the highest covering 45% of the height */
.grade-moderate .fa-person-hiking {
    color: #ffc107; /* Yellow text */
}
.grade-moderate::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L30,70 L70,55 L100,100 Z' fill='rgba(255,193,7,0.5)'/%3E%3C/svg%3E");
}

/* Difficult: Three peaks, with the highest covering 70% of the height */
.grade-difficult .fa-person-hiking {
    color: #fd7e14; /* Orange text */
}
.grade-difficult::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L20,70 L50,30 L80,50 L100,100 Z' fill='rgba(253,126,20,0.5)'/%3E%3C/svg%3E");
}

/* Expert: A rugged range of three high peaks covering the full 100% height */
.grade-expert .fa-person-hiking {
    color: #dc3545; /* Red text */
}
.grade-expert::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L25,40 L50,0 L75,20 L100,100 Z' fill='rgba(220,53,69,0.5)'/%3E%3C/svg%3E");
}

.trek-card .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.trek-card .btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* --- Pagination --- */
.pagination .page-link {
    color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
/* --- Trek Header --- */
.trek-header {
    padding-bottom: 40px;
}

.trek-header h1 {
    font-size: 3.5rem;
}

.trek-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.stat-item .fa-solid {
    color: var(--primary-color);
}

/* --- Feature Image --- */
.feature-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Main Info Tabs --- */
.nav-pills .nav-link {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: #fff !important;
}

.tab-content h3 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.gallery-pane img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-pane img:hover {
    transform: scale(1.05);
}

/* --- Itinerary & Sidebar --- */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    /* Adjust based on navbar height */
}

.booking-card {
    background-color: var(--white-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.booking-card h4 {
    text-align: center;
    margin-bottom: 20px;
}

.accordion-button {
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    background-color: var(--highlight-color);
    color: var(--dark-text);
}

.accordion-body ul {
    list-style: none;
    padding: 0;
}

/* MODIFIED: Styling for individual date items */
.date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.btn-book-now {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    /* Smaller button */
    font-size: 0.9rem;
}

.btn-book-now:hover {
    background-color: #a14812;
    border-color: #a14812;
}

/** HIKER ICON ANIMATION **/
.hiker-icon {
    width: 28px; /* Adjust size as needed */
    height: 28px;
    display: inline-block;
    vertical-align: middle; /* Aligns it nicely with text */
    stroke: #4f6f52; /* Forest Green color */
}

.hiker-icon .leg-front,
.hiker-icon .arm-pole {
    animation: walk-forward 1.2s ease-in-out infinite;
}

.hiker-icon .leg-back {
    animation: walk-backward 1.2s ease-in-out infinite;
}

/* Set the pivot points for rotation */
.hiker-icon .leg-front,
.hiker-icon .leg-back {
    transform-origin: 12px 14px; /* Hips */
}
.hiker-icon .arm-pole {
    transform-origin: 12px 9px; /* Shoulder */
}

@keyframes walk-forward {
    0% {
        transform: rotate(-20deg);
    }
    50% {
        transform: rotate(20deg);
    }
    100% {
        transform: rotate(-20deg);
    }
}

@keyframes walk-backward {
    0% {
        transform: rotate(20deg);
    }
    50% {
        transform: rotate(-20deg);
    }
    100% {
        transform: rotate(20deg);
    }
}
/**Upcoming Schedule Style**/
/* --- Month Filter Bar --- */
.month-filter {
    background-color: var(--white-bg);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}
.month-filter .nav-pills .nav-link {
    color: var(--dark-text);
    font-weight: 700;
    border-radius: 5px;
    margin: 0 5px;
}
.month-filter .nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* --- Schedule Card Styling --- */
.schedule-card {
    display: flex;
    align-items: center;
    background-color: var(--white-bg);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.schedule-date {
    text-align: center;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    border-right: 1px solid #eee;
}
.schedule-date .month {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
}
.schedule-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}
.schedule-details {
    flex-grow: 1;
}
.schedule-details h5 {
    margin-bottom: 0.25rem;
}
.schedule-details .region {
    color: var(--muted-text);
    font-size: 0.9rem;
}
.seats-info {
    text-align: right;
    min-width: 120px;
}
.seats-info .price {
    font-size: 1.5rem;
    font-weight: 700;
}
.seats-info .progress {
    height: 8px;
    margin-top: 0.5rem;
}
/*FLOATING CTA*/

/* --- Floating Action Buttons --- */
.floating-action-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fab-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: #fff;
}
.fab-button.whatsapp {
    background-color: #25d366;
}
.fab-button.call {
    background-color: var(--accent-color);
}
