/* ---------------------------------- */
/* 1. Root Variables & Global Styles  */
/* ---------------------------------- */
/* ---------------------------------- */
/* 1. Root Variables & Global Styles  */
/* ---------------------------------- */
:root {
    /* --- NEW: Dark Theme Palette --- */
    --color-primary-accent: #d60076; /* Electric Fuchsia */
    --color-secondary-accent: #D4A056; /* Golden Sand (Stays the same) */
    --color-dark-bg-start: #252f42;  /* Midnight Blue */
    --color-dark-bg-end: #11141A;    /* Deep Charcoal */
    --color-heading-text: #F5F5F5;   /* Titanium White */
    --color-body-text: #BCC8D4;      /* Soft Slate Blue (for body copy) */

    /* Re-mapping old variables for consistency if needed */
    
    --color-gold-sand: var(--color-secondary-accent);
    --color-charcoal: var(--color-heading-text);

    --font-logo: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-height: 80px;

    /* --- Overriding Bootstrap Variables for Dark Theme --- */
    --bs-primary: var(--color-primary-accent);
    --bs-primary-rgb: 224, 33, 138;
    --bs-body-bg: var(--color-dark-bg-end); /* Set the default body background */
    --bs-body-color: var(--color-body-text);
    --bs-light-bg: rgba(255, 255, 255, 0.05); /* For cards, etc. */
    --bs-light-bg-rgb: 255, 255, 255;
}


html { scroll-behavior: smooth; }

body {
    padding-top: var(--nav-height);
    font-family: var(--font-body);
    /* This creates the beautiful gradient background */
    background-color: var(--color-dark-bg-end);
    background-image: radial-gradient(ellipse at top, var(--color-dark-bg-start), var(--color-dark-bg-end));
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-heading-text); /* Use bright white for headings */
}

/* Make sure muted text is still readable */
.lead.text-muted {
    color: var(--color-body-text) !important;
    opacity: 0.8;
}

.no-scroll { overflow: hidden; }

.bg-light {
    background: radial-gradient(#3a3d41, #09111e);
    border: none;
    background-color: black;
}

.btn-primary {
    background-color: var(--color-primary-accent);
    border-color: var(--color-primary-accent);
    color: var(--color-heading-text); /* White text for good contrast */
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff52b4; /* A slightly brighter fuchsia on hover */
    border-color: #ff52b4;
    color: var(--color-heading-text);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(214, 0, 118, 0.4);
}

.btn-outline-primary {
    color: var(--color-primary-accent);
    border-color: var(--color-primary-accent);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--color-primary-accent);
    border-color: var(--color-primary-accent);
    color: var(--color-heading-text);
    transform: translateY(-3px);
}


.btn-outline-light {
    border-radius: 50px;
    font-weight: 700;
    border-width: 2px;
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #111;
}


main {
    margin-top: -80px;
}

/* ---------------------------------- */
/* PRELOADER STYLES                   */
/* ---------------------------------- */
/* Initially hide the main content to prevent flash of unstyled content */
main, footer {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
}

/* When the preloader is done, make the content visible */
main.is-visible, footer.is-visible {
    opacity: 1;
    visibility: visible;
}

.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-dark-bg-end);
    background-image: radial-gradient(ellipse at top, var(--color-dark-bg-start), var(--color-dark-bg-end));
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* This class will be added by JS to trigger the fade out */
.preloader-overlay.is-loaded {
    opacity: 0;
    visibility: hidden;
}



/* --- NEW: Preloader Brand Styling --- */
.preloader-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -150px); /* Position it above the track */
    text-align: center;
}

.preloader-logo {
    font-family: 'Playfair Display', serif; /* Use your logo font */
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-heading-text);
    margin: 0;
    position: relative;
    /* Create a mask to reveal the text */
    -webkit-mask-image: linear-gradient(to right, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0) 40%, 
        rgba(0,0,0,1) 50%, 
        rgba(0,0,0,0) 60%, 
        rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0) 40%, 
        rgba(0,0,0,1) 50%, 
        rgba(0,0,0,0) 60%, 
        rgba(0,0,0,0) 100%);
    -webkit-mask-size: 300% 100%; /* Make mask wider than the text */
    mask-size: 300% 100%;
    animation: revealText 3.5s ease-in-out forwards;
}

.preloader-tagline {
    font-size: 1rem;
    color: var(--color-body-text);
    margin-top: 0.5rem;
    letter-spacing: 1px;
    opacity: 0; /* Start hidden */
    animation: fadeInTagline 2.5s ease-in-out forwards;
}

/* --- NEW: Keyframe Animations for the Reveal --- */
@keyframes revealText {
    0% {
        -webkit-mask-position: 150% 0;
        mask-position: 150% 0;
    }
    100% {
        -webkit-mask-position: -50% 0;
        mask-position: -50% 0;
    }
}

@keyframes fadeInTagline {
    0%, 20% {
        opacity: 0;
        transform: translateY(10px);
    }
    60% {
        opacity: 1;
        transform: translateY(0);
    }
    90%, 100% {
        opacity: 0;
    }
}




.preloader-track {
    width: 350px;
    max-width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, silver, transparent);
    border-radius: 5px;
    position: relative;
}

.preloader-bike {
    position: absolute;
    bottom: -5px; /* Position the bike just above the track line */
    left: 0;
    height: 50px; /* Adjust size as needed */
    width: auto;
    opacity: 0;
    /* The magic happens here! */
    /* Make sure this duration (2s) matches the time in your JS (2000) */
    animation: rideAnimation 2s ease-in-out forwards; 
    animation-delay: 500ms;
}

/* The keyframe animation for the bike */
@keyframes rideAnimation {
    0% {
        transform: translateX(-80px);
         /* Start off-screen */
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(320px); /* End off-screen to the right */
        opacity: 0;
    }
}



/* ---------------------------------- */
/* 2. Custom Navigation System        */
/* ---------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(29, 36, 49, 0.7); /* Dark semi-transparent background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 25px #151b29e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
    max-width: 1300px;
    margin: 0 auto;
    padding-right: 170px;
    padding-left: 75px;
    position: relative;
}

    @media screen and (max-width:992px){
        .main-nav {
            padding: 0 2rem;
        }
    }

.nav-logo {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    color: var(--color-heading-text);
    text-decoration: none;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}


.nav-cta-container {
    position: absolute;
    right: 1rem;
}

.btn-cta {
    background-color: var(--color-secondary-accent);
    color: #111;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 160, 86, 0.4);
}

.nav-toggle, .mobile-nav-overlay { display: none; }


/* ---------------------------------- */
/* 3. Mobile Navigation               */
/* ---------------------------------- */
@media (max-width: 992px) {
    .nav-links, .nav-cta-container { display: none; }
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .hamburger-bar {
        width: 30px;
        height: 3px;
        background: var(--color-heading-text);
        border-radius: 10px;
        transition: all 0.3s linear;
        transform-origin: 1px;
    }
    .nav-toggle.is-open .hamburger-bar:nth-child(1) { transform: rotate(45deg); }
    .nav-toggle.is-open .hamburger-bar:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .nav-toggle.is-open .hamburger-bar:nth-child(3) { transform: rotate(-45deg); }
    .mobile-nav-overlay {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: radial-gradient(at top center, #313b4b 0%, black 75%);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 999;
    }
    .mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }
    .mobile-nav ul { list-style: none; padding: 0; text-align: center; }
    .mobile-nav li { opacity: 0; transform: translateY(20px); transition: opacity 0.3s ease, transform 0.3s ease; }
    .mobile-nav-overlay.is-open li { opacity: 1; transform: translateY(0); }
    .mobile-nav-overlay.is-open li:nth-child(1) { transition-delay: 0.15s; }
    .mobile-nav-overlay.is-open li:nth-child(2) { transition-delay: 0.20s; }
    .mobile-nav-overlay.is-open li:nth-child(3) { transition-delay: 0.25s; }
    .mobile-nav-overlay.is-open li:nth-child(4) { transition-delay: 0.30s; }
    .mobile-nav-overlay.is-open li:nth-child(5) { transition-delay: 0.35s; }
    .mobile-nav a { display: block; padding: 1.5rem; font-size: 1.5rem; font-weight: 700; color: var(--color-almond-silk); text-decoration: none; }
    .btn-cta-mobile { background-color: var(--color-gold-sand); color: #080a0dcc !important; padding: 10px 25px !important; border-radius: 50px; display: inline-block; margin-top: 1.5rem; }
}


/* ---------------------------------- */
/* 4. Component & Section Styling     */
/* ---------------------------------- */
.btn-primary, .btn-outline-primary {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(141, 43, 61, 0.3);
}

.btn-outline-light {
    border-radius: 50px;
    font-weight: 700;
    border-width: 2px;
}

/* --- HERO --- */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex; /* Using flexbox for alignment */
    align-items: center !important; /* Vertically center content */
    justify-content: center;
}

.hero-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-background,
.hero-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
}

.hero-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(#000000c7, #1c2330);
    z-index: 2;
}

#hero .container {
    z-index: 3;
}

.hero-section h1 {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* --- THE RESPONSIVE SWAP LOGIC --- */

/* By default (mobile-first), show the IMAGE and hide the VIDEO */
.hero-video-background {
    display: none;
}
.hero-image-background {
    display: block;
}

/* On larger screens (desktop), hide the IMAGE and show the VIDEO */
@media (min-width: 768px) {
    .hero-video-background {
        display: block;
    }
    .hero-image-background {
        display: none;
    }
}


section#why-us {
    background: linear-gradient(to top, #151c26, #1c232f);
}


/* --- BENEFITS --- */
.benefit-card {
    background-color: transparent; /* Or var(--bs-light-bg) if you want them boxed */
    border-radius: 10px;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.benefit-card:hover {
    background-color: var(--bs-light-bg);
    transform: translateY(-5px);
    /* box-shadow is no longer needed as the background provides contrast */
}

/* --- TOURS --- */
.bg-accent { background-color: var(--color-gold-sand) !important; }

.tour-card {
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--bs-light-bg);
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.tour-card .card-img-top { height: 250px; object-fit: cover; }
.tour-card .badge { padding: 0.5em 1em; font-weight: 600; }


/* ---------------------------------- */
/* 5. How It Works Section            */
/* ---------------------------------- */
.how-it-works-section {
    position: relative;
    overflow: hidden; /* Important to contain the background element */
}

.how-it-works-bg {
    position: absolute;
    top: 0;
    right: -15%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 100%;
    z-index: 0;
    
    pointer-events: none; /* Make it unclickable */
}

.how-it-works-bg img {
    width: 100%;
    height: 100%;
    opacity: .3;
    object-fit: contain;
}

.adventure-path {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    position: relative;
    padding: 2rem 0;
    z-index: 1; /* Ensures content is above the background image */
}

/* The dotted line connecting the steps - only on desktop */
.adventure-path::before {
    content: '';
    position: absolute;
    top: 100px; /* Aligns with the middle of the icon wrappers */
    left: 15%;
    width: 70%;
    height: 3px;
    border-top: 3px dashed rgba(255, 255, 255, 0.15);
    z-index: -1;
}

.step-item {
    text-align: center;
    max-width: 280px;
}

.step-icon-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid var(--color-primary-accent);
    background-color: rgb(28 35 48);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 25px rgba(224, 33, 138, 0.2), inset 0 0 15px rgba(224, 33, 138, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-icon-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(224, 33, 138, 0.4), inset 0 0 20px rgba(224, 33, 138, 0.2);
    border-color: #ff52b4;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    background-color: var(--color-secondary-accent);
    color: #111;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid var(--color-dark-bg-end);
}

.step-icon-wrapper i {
    color: var(--color-heading-text);
    font-size: 2.5rem; /* Make the icon size independent */
    transition: transform 0.3s ease;
}

.step-icon-wrapper:hover i {
    transform: scale(1.1);
}

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
    .adventure-path {
        flex-direction: column;
        align-items: center;
        gap: 4rem; /* Add space between items on mobile */
    }

    /* Hide the connecting line on mobile */
    .adventure-path::before {
        display: none;
    }
}







#instagram .img-fluid {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}



/* ---------------------------------- */
/* 6. Booking Section & Custom Form   */
/* ---------------------------------- */
.booking-section {
    background-color: var(--bs-light-bg); /* Use the subtle light background for this section */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.booking-form-panel {
    padding: .5rem;
    background-color: rgba(29, 36, 49, 0.5); /* A slightly darker panel */
    border-radius: 15px;
}

.form-label {
    font-weight: 500;
    color: var(--color-body-text);
    margin-bottom: 0.5rem;
}

/* The core style for all our form inputs */
.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-heading-text);
    padding: 0.9rem 1rem;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
    color: rgba(188, 200, 212, 0.5); /* Faded placeholder text */
}

/* The magic focus state */
.form-control:focus,
.form-select:focus {
    color: var(--color-heading-text);
    background-color: rgba(255, 255, 255, 0.07);
    border-color: var(--color-primary-accent);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(224, 33, 138, 0.25); /* The Fuchsia Glow */
}

/* Styling for the dropdown arrow */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23bcc8d4' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* Style for the date picker icon in dark mode */
input[type="date"] {
    color-scheme: dark;
}

/* Right-side Details Panel Styling */
.booking-details-panel {
    padding: 2.5rem;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.03); /* A very subtle background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--color-primary-accent);
}

.booking-details-panel .panel-icon {
    font-size: 1.5rem;
    color: var(--color-secondary-accent); /* Gold icon */
    margin-bottom: 1rem;
}

.booking-details-panel ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.booking-details-panel ul li i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.booking-details-panel hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-cta {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}



/* ---------------------------------- */
/* 7. FAQ Section (Clarity Hub)       */
/* ---------------------------------- */
.faq-section {
    background-color: var(--color-dark-bg-end); /* Match the primary dark bg */
}

/* Override default Bootstrap accordion styles */
.faq-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-heading-text);
}

.faq-accordion .accordion-button {
    background-color: transparent;
    color: var(--color-heading-text);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1.5rem 0;
    width: 100%;
    text-align: left;
    position: relative;
    box-shadow: none !important; /* Remove the ugly focus shadow */
}

.faq-accordion .accordion-button:hover {
    color: var(--color-primary-accent);
}

.faq-accordion .accordion-button::after {
    /* Hide the default Bootstrap chevron icon */
    display: none;
}

/* Custom animated plus/cross icon */
.faq-accordion .accordion-button::before,
.faq-accordion .accordion-button::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary-accent);
    transition: transform 0.3s ease-in-out;
}

.faq-accordion .accordion-button::before {
    transform: translateY(-50%) rotate(0deg);
}
.faq-accordion .accordion-button::after {
    transform: translateY(-50%) rotate(90deg);
}

/* When the accordion is open, transform the plus into a cross */
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(0deg);
}

.faq-accordion .accordion-body {
    padding: 0.5rem 0 1.5rem 0;
    color: var(--color-body-text);
}

/* Styling for the new CTA box */
.faq-cta-box {
    background: var(--bs-light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-box .btn-primary {
    padding: 10px 30px; /* Slightly smaller button for this context */
}





/* ---------------------------------- */
/* 8. Creative Footer (The Horizon)   */
/* ---------------------------------- */
.site-footer {
    position: relative;
    overflow: hidden; /* Important for the background image */
    background-color: var(--color-dark-bg-end);
    background-image: radial-gradient(ellipse at bottom, var(--color-dark-bg-start), var(--color-dark-bg-end));
    color: var(--color-body-text);
}

/* Layer 1: Call to Adventure */
.footer-cta {
    padding: 4rem 0;
    background-color: linear-gradient(to bottom, #11141a, transparent);
}
.footer-cta h2 {
    color: var(--color-heading-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.3;
}
.footer-cta .btn-cta {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Layer 2: The Hub */
.footer-main {
    padding: 4rem 0 2rem 0;
}
.footer-heading {
    color: var(--color-secondary-accent); /* Gold heading */
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary-accent);
    opacity: 0.5;
}
.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}
.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: var(--color-body-text);
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}
.footer-contact a:hover {
    color: #fff;
}
.footer-contact i {
    color: var(--color-primary-accent);
    margin-right: 0.75rem;
    width: 20px;
    margin-top: 4px; /* Aligns icon with first line of text */
}

.footer-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-heading-text);
    margin-right: 0.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    background-color: var(--color-primary-accent);
    color: #fff;
    transform: translateY(-3px);
}

/* Layer 3: The Foundation */
.footer-bottom {
    padding: 1.5rem 0;
    background-color: rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}
.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bg-bike {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.05;
}
.footer-bg-bike img {
    width: 100%;
    vertical-align: bottom;
}

@media (max-width: 991px) {
    .col-lg-4.col-md-12 {
        text-align: center;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .footer-bg-bike {
        width: 300px;
        opacity: 0.03;
    }
    .footer-cta h2 {
        font-size: 2rem;
    }
}




