/* Tours Section */
.tours {
    background-color: var(--background-color);
    padding: var(--spacing-lg) 0;
}


/* Tour Hero Specifics */
.tour-hero {
    margin-top: 70px;
    height: calc(100vh - 70px - 120px);
    /* 100vh - Header - Stats */
    /* min-height: 500px;  Removed to enforce strict 100vh */
    overflow: hidden;
    /* Ensure slider doesn't overflow */
}

.tour-hero .hero-content {
    align-items: flex-start;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    /* Override style.css 2rem padding to match container/header alignment */
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 100%;
}

.tour-hero h1 {
    font-size: 4rem;
    max-width: 800px;
    margin-bottom: 1rem;
}

.tour-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Custom override for Hero Button */
.tour-hero .btn-gold {
    padding: 10px 60px;
    /* Shorter height (10px vs 15px), Wider width (60px vs 35px) */
    font-size: 1rem;
    /* Slightly smaller font to reduce bulk if needed, or keep 1.1 */
}

/* Mobile Stats Overlay (Default Hidden on Desktop) */
.tour-stats-mobile {
    display: none;
}

/* Desktop Stats Bar */
.tour-stats-desktop {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    height: 120px;
    /* Fixed height for calc calculation */
    justify-content: center;
    /* Center the container */
}

.tour-stats-desktop .container {
    width: 100%;
}

.tour-stats-desktop .stats-grid {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 1rem;
    /* Adding slight padding to match visual alignment if needed, or keeping explicit */
    justify-content: space-between !important;
}

.tour-details-section {
    padding-top: 2.7rem;
}

/* Tour Details Layout */
.tour-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
}

@media (max-width: 991px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }
}

/* Tour Content */
.tour-content h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.packing-list h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
}

.pack-item {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.pack-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.pack-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(0, 91, 77, 0.08);
    /* Light primary bg */
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: var(--transition);
}

.pack-item:hover .pack-icon {
    background: var(--primary-color);
    color: var(--white);
}

.pack-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.tour-description p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Itinerary Summary */
.itinerary-summary {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-days {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.summary-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Accordion */
.accordion-item {
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    background: #f4f4f4;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.accordion-header:hover {
    background: #e9e9e9;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--white);
}

.accordion-content p,
.accordion-content ul {
    padding: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.itinerary-details-list {
    padding: 1rem 1.5rem 1.5rem;
    background: #fafafa;
    border-top: 1px solid #eee;
    margin-top: 1rem;
}

.itinerary-details-list h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.itinerary-details-list ul {
    list-style: none;
    padding: 0;
}

.itinerary-details-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.itinerary-details-list li i {
    color: var(--primary-color);
}

/* Sidebar Booking Form */
.tour-sidebar {
    position: relative;
}

.booking-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: sticky;
    top: 85px;
    /* Increased from 80px to clear header */
    /* Sticky sidebar */
    border: 1px solid var(--border-color);
}

#booking-start {
    scroll-margin-top: 100px;
}

.booking-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.price-label,
.price-per {
    font-size: 1rem;
    font-weight: 400;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
}

.booking-form {
    padding: 1rem 1.25rem 1.25rem 1.25rem;
    /* Top padding 1rem */
}

.booking-form h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    padding-bottom: 1rem;
    /* Matched to top padding for vertical centering */
    border-bottom: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 0.6rem;
}

.form-row {
    display: flex;
    gap: 0.8rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    /* Prevent horizontal resizing */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 91, 77, 0.1);
}

/* Fix for Intl Tel Input width */
.iti {
    width: 100%;
}

/* Custom Flatpickr Theme */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Highlight Today with a Circle */
.flatpickr-day.today {
    border-color: var(--secondary-color) !important;
    color: var(--dark-color);
    font-weight: bold;
}

/* Ensure disabled today is still visible but grayed out logic is handled by flatpickr, 
   we just want the circle/border to show it is indeed today */
.flatpickr-day.today.flatpickr-disabled,
.flatpickr-day.today.flatpickr-disabled:hover {
    background: transparent !important;
    border-color: var(--secondary-color) !important;
    color: #999 !important;
    /* Keep text muted if it's disabled */
}

/* Fix for Mobile AND Tablet Double-Tap Issue - AGGRESSIVE (REMOVED: Conflicts with disableMobile: true) */
/*
@media (pointer: coarse),
(max-width: 1024px) {
    .flatpickr-day {
        touch-action: manipulation;
        cursor: pointer;
    }

    .flatpickr-day:hover,
    .flatpickr-day:focus,
    .flatpickr-day:active {
        background: transparent !important;
        border-color: transparent !important;
        color: inherit !important;
    }

    .flatpickr-day.selected,
    .flatpickr-day.selected:hover,
    .flatpickr-day.selected:focus {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: #fff !important;
    }
}
*/

.btn-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    /* Increased from 10px to be taller */
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background-color: #b8862e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 157, 62, 0.3);
}

/* Inclusions & Exclusions */
.tour-inclusions-exclusions {
    margin-top: 3rem;
    display: grid;
    gap: 3rem;
}

.inclusions ul,
.exclusions ul {
    list-style: none;
    padding: 0;
}

.inclusions li,
.exclusions li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 1rem;
}

.inclusions li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.exclusions li i {
    color: #e74c3c;
    font-size: 1rem;
}

/* Tour Highlights/Details Grid */
.tour-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    background: #fafafa;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #eee;
}

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

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.highlight-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.highlight-text h5 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: var(--dark-color);
}

.highlight-text p {
    font-size: 0.85rem;
    color: var(--text-color);
    margin: 0;
}

/* What to Pack Section */
.packing-list {
    margin-top: 3rem;
}


.packing-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: #f9f9f9;
    /* Lighter background */
    border: none;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: none;
}

.pack-item {
    display: flex;
    align-items: center;
    padding: 0.2rem 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    gap: 1rem;
}

.pack-item:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

/* Ensure icon stays static on hover */
.pack-item:hover .pack-icon {
    background: transparent;
    color: var(--primary-color);
}

.pack-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    color: var(--primary-color);
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0;
}

.pack-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

/* Pricing Section */
.tour-pricing {
    margin-top: 3rem;
}

.tour-pricing h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}



.pricing-card.premium {
    border-color: var(--secondary-color);
    background: linear-gradient(to bottom, #fffbf2, #ffffff);
}

.pricing-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    height: 60px;
    width: 60px;
    background: rgba(0, 91, 77, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.pricing-card.premium .pricing-icon {
    color: var(--secondary-color);
    background: rgba(212, 157, 62, 0.1);
}

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.pricing-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

/* Tour Badge (Duration) */
.tour-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tour-badge-line {
    width: 200px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.tour-badge-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}



@media (max-width: 1024px) {
    .tour-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .tour-hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tour-badge {
        align-items: center;
        text-align: center;
        margin-bottom: 0.8rem;
        gap: 0.5rem;
    }

    .tour-badge-text {
        font-size: 1.2rem;
    }

    .tour-badge-line {
        width: 100px;
    }

    /* Compact Stats for Mobile to prevent overflow */
    .tour-stats-mobile {
        margin-top: auto;
        /* Push to bottom if space is available, or just flow */
        padding: 0.5rem;
    }

    .stat-item-mobile {
        transform: scale(0.9);
    }
}

/* =========================================
   Photo Gallery Slider & Lightbox
   ========================================= */

.tour-gallery-section {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.gallery-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.gallery-track-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 15px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.gallery-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 8px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    height: 400px;
    /* Only layout/gap styles here */
}

/* The frame handles clipping and corners */
.gallery-card-frame {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    /* Force clipping of child elements for all browsers */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    transform: translateZ(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    /* Ensure it never shrinks below container */
    min-height: 100%;
    object-fit: cover;
    /* border-radius removed here to let container clip */
    transition: transform 0.3s ease;
    display: block;
}

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

/* Removed Overlay styles entirely as requested */
.gallery-overlay {
    display: none !important;
}

/* Slider Buttons - Overlay Style */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #003B31;
    /* Darker primary */
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 20;
}

.slider-btn:hover {
    background-color: #002821;
    /* Even darker on hover */
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: row;
    /* Row for arrows */
}

/* Lightbox Viewport & Track */
.lightbox-viewport {
    width: 90vw;
    height: 90vh;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.lightbox-track {
    display: flex;
    height: 100%;
    width: 100%;
    /* Will be transformed by JS */
    transition: transform 0.4s ease-out;
}

.lightbox-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.lightbox-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    /* Larger but thin */
    font-weight: 100;
    /* Minimalist thin */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2005;
    line-height: 0.8;
}

.lightbox-close:hover {
    color: #fff;
    transform: rotate(90deg);
    /* Subtle interaction */
}

.lightbox-btn {
    position: absolute;
    /* Fixed position relative to viewport */
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    /* Smaller arrows (was 2rem) */
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s, background 0.3s;
    z-index: 2005;
    border-radius: 5px;
    /* Subtle touch target hint */
}

.lightbox-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    /* Subtle hover bg */
}

.lightbox-prev {
    left: 20px;
    /* Fixed to left */
}

.lightbox-next {
    right: 20px;
    /* Fixed to right */
}


@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 50%;
        max-width: 50%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
        height: 480px;
        /* Increased from 250px as requested */
    }

    .form-row {
        flex-direction: row;
        /* Force row layout */
        gap: 0.5rem;
        /* Smaller gap for mobile */
    }

    .form-row .form-group:first-child {
        flex: 1.8 !important;
        /* WhatsApp (Wider) */
        width: auto !important;
        min-width: 0;
    }

    .form-row .form-group:last-child {
        flex: 1 !important;
        /* Date (Shorter) */
        width: auto !important;
        min-width: 0;
    }
}

/* Ensure Flatpickr is always on top on mobile */
.flatpickr-calendar {
    z-index: 10000 !important;
}

/* Accordion Item Styling - Distinct from Details */
.accordion-item {
    border: 1px solid #e0e0e0;
    /* Distinct border color */
    border-radius: 12px;
    /* Slightly less rounded than details (16px) */
    margin-bottom: 1rem;
    overflow: hidden;
    /* Keeps inner content within radius */
    background-color: #fafafa;
}

.accordion-header {
    background-color: transparent;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-content {
    border-top: 1px solid transparent;
    /* Hidden by default */
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active {
    border-color: var(--primary-color);
    /* Highlight active item */
}

.accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
    border-top: 1px solid #f0f0f0;
    /* Separator for content */
}


/* =========================================
   Mobile Sticky Booking Bar
   ========================================= */
.mobile-sticky-bar {
    display: none;
    /* Hidden by default on desktop */
}

@media (max-width: 1024px) {
    .mobile-sticky-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        /* Dark Green */
        padding: 0.6rem 1.5rem;
        z-index: 990;
        /* Lower than Navbar (1000) */
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        height: auto;

        /* Visibility Logic */
        opacity: 0;
        pointer-events: none;
        transform: translateY(20px);
        transition: all 0.3s ease-out;
    }

    .mobile-sticky-bar.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .sticky-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        color: var(--white);
        line-height: 1;
    }

    .sticky-label,
    .sticky-per {
        font-size: 0.7rem;
        font-weight: 300;
        opacity: 0.9;
        display: block;
    }

    .sticky-amount {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
        display: block;
        line-height: 1.1;
    }

    .sticky-btn {
        background-color: var(--secondary-color);
        color: var(--white);
        padding: 8px 50px;
        /* Restored: Wider button */
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        transition: background 0.3s;
    }

    .sticky-btn:hover {
        background-color: #b8862e;
        color: var(--white);
    }

    /* Add padding to body so bottom bar doesn't cover footer content */
    body {
        padding-bottom: 80px;
    }
}