/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. Base Styles & Variables
   2. Header & Navigation
   3. Breadcrumb
   4. Form Elements & UI Components
   5. Banner Section
   6. Tour Schedule Section
   7. Popular Day Trips Section
   8. Featured/Holiday Section
   9. Tour Activity Section
   10. Recent Posts Section
   11. Traveller's Choice Section
   12. Tours Destination Section
   13. Testimonials Section
   14. Why Choose Us Section
   15. Unforgettable Section
   16. Tour Gallery Section
   17. Footer Section
   18. Swiper Components
   19. Responsive Utilities
   ======================================== */

/* ========================================
   1. BASE STYLES & VARIABLES
   ======================================== */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background: #F9F4F0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* Brand green overrides */
:root {
    --brand-green: #0C8040;
    --brand-green-hover: #1a5f3f;
    --brand-green-rgb: 12, 128, 64;
    /* Bootstrap success overrides */
    --bs-success: #0C8040;
    --bs-success-rgb: 12, 128, 64;
}

.text-success { color: #0C8040 !important; }
.bg-success { background-color: #0C8040 !important; }
.border-success { border-color: #0C8040 !important; }
.link-success { color: #0C8040 !important; }
.link-success:hover { color: #1a5f3f !important; }

.btn-success {
    background-color: #0C8040 !important;
    border-color: #0C8040 !important;
}
.btn-success:hover,
.btn-success:focus {
    background-color: #1a5f3f !important;
    border-color: #1a5f3f !important;
}
.btn-success:active {
    background-color: #1a5f3f !important;
    border-color: #1a5f3f !important;
}

.btn-outline-success {
    color: #0C8040 !important;
    border-color: #0C8040 !important;
}
.btn-outline-success:hover,
.btn-outline-success:focus {
    background-color: #1a5f3f !important;
    border-color: #1a5f3f !important;
    color: #fff !important;
}

/* Global common CSS classes */
.section-sub-title {
    font-family: 'Water Brush', cursive;
    font-weight: 400;
    font-style: Regular;
    font-size: 45px;
    line-height: 44px;
    vertical-align: middle;
    color: #0C8040;
}

.section-title {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 44px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 50px !important;
}

/* Medium devices (tablets, ≥768px and <992px) */
@media (max-width: 991.98px) {
    .section-sub-title {
        font-size: 36px;
        line-height: 40px;
    }

    .section-title {
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 40px !important;
    }
}

/* Small devices (phones, <768px) */
@media (max-width: 767.98px) {
    .section-sub-title {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
    }

    .section-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 30px !important;
        text-align: center;
    }
}

a {
    text-decoration: none;
}

/* ========================================
   2. HEADER & NAVIGATION
   ======================================== */
#page-header {
    background: #F9F4F0;
}

#page-header .navbar {
    border-bottom: 1px solid #efefef;
}

#page-header .nav-link {
    color: #0c0c0c;
    font-weight: 400;
    position: relative;
}

/* Logo Styling */
#page-header .logo {
    max-height: 40px;
    height: auto;
    width: auto;
}

#page-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-115%);
    width: 20px;
    height: 3px;
    background-color: #0C8040;
    border-radius: 2px;
}

/* Customize Button */
#page-header .customize-btn {
    background-color: #0C8040;
    border-color: #0C8040;
    width: 157px;
    height: 54px;
    border-radius: 57px;
}

#page-header .customize-btn:hover {
    background-color: #1a5f3f;
    border-color: #1a5f3f;
}

#page-header .btn-title-sm {
    font-size: 11.5px;
    font-weight: 300;
    color: #e8e8e8;
    margin-top: 9px;
    line-height: .2rem;
}

#page-header .btn-title {
    font-size: 1rem;
    font-weight: 500;
    list-style: .5rem;
}





#page-header .customize-btn:hover {
    background-color: #1a5f3f;
    border-color: #1a5f3f;
}

#page-header .btn-title-sm {
    font-size: 11.5px;
    font-weight: 300;
    color: #e8e8e8;
    margin-top: 9px;
    line-height: .2rem;
}

#page-header .btn-title {
    font-size: 1rem;
    font-weight: 500;
    list-style: .5rem;
}

/* Responsive Adjustments (Small + Medium Devices) */
@media (max-width: 991.98px) {
    #page-header .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }

    #page-header .logo {
        max-height: 35px;
    }

    #page-header .nav-links {
        flex-direction: column;
        align-items: start;
        gap: 0 !important;
    }

    #page-header .nav-link {
        padding: 0.5rem 0;
        width: 100%;
    }

    #page-header .nav-cta {
        width: 100%;
        justify-content: center;
    }

    #page-header .customize-btn {
        width: 100%;
        margin-top: 1rem;
        height: auto;
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }
}

/* Extra-Small Devices Only (≤ 576px) */
@media (max-width: 575.98px) {
    #page-header .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }

    #page-header .logo {
        max-height: 28px;
    }

    #page-header .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0 !important;
    }

    #page-header .nav-link {
        padding: 0.5rem 0;
        width: 100%;
    }

    #page-header .nav-cta {
        width: 100%;
        justify-content: center;
    }

    #page-header .customize-btn {
        width: 100%;
        margin-top: 1rem;
        height: auto;
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }
}

/* ========================================
   3. BREADCRUMB
   ======================================== */
.breadcrumb-nav {
    background-color: #1a5f3f !important;
    padding: 1rem 0;
}

.breadcrumb-nav .text-white {
    color: #ffffff !important;
}

.breadcrumb-nav a.text-white:hover {
    color: #f0f0f0 !important;
    text-decoration: underline !important;
}

.breadcrumb-nav .bi-house-door {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Responsive breadcrumb */
@media (max-width: 767.98px) {
    .breadcrumb-nav {
        padding: 0.75rem 0;
    }

    .breadcrumb-nav .bi-house-door {
        font-size: 1rem;
    }
}

/* ========================================
   4. FORM ELEMENTS & UI COMPONENTS
   ======================================== */
/* Green theme for form elements */
.form-check-input:checked {
    background-color: #0C8040 !important;
    border-color: #0C8040 !important;
}

.form-check-input:focus {
    border-color: #0C8040 !important;
    box-shadow: 0 0 0 0.25rem rgba(12, 128, 64, 0.25) !important;
}

/* Price Range Slider */
.form-range {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.form-range::-webkit-slider-track {
    background: #ddd;
    height: 6px;
    border-radius: 3px;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: #0C8040 !important;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.form-range::-moz-range-track {
    background: #ddd;
    height: 6px;
    border-radius: 3px;
    border: none;
}

.form-range::-moz-range-thumb {
    background-color: #0C8040 !important;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(12, 128, 64, 0.25) !important;
}

/* Form Select Styling */
.form-select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    background-color: #ffffff !important;
    border: 1px solid #ced4da !important;
    padding-right: 2.25rem !important;
}

.form-select:focus {
    border-color: #0C8040 !important;
    box-shadow: 0 0 0 0.25rem rgba(12, 128, 64, 0.25) !important;
    background-color: #ffffff !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230C8040' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E") !important;
}

.form-select:disabled {
    background-color: #e9ecef !important;
}

/* Pagination green theme */
.pagination .page-link {
    color: #0C8040 !important;
}

.pagination .page-item.active .page-link {
    background-color: #0C8040 !important;
    border-color: #0C8040 !important;
    color: #fff !important;
}

.pagination .page-link:hover {
    color: #1a5f3f !important;
    background-color: rgba(12, 128, 64, 0.1) !important;
    border-color: #0C8040 !important;
}

/* Flatpickr white theme with green selection */
.flatpickr-calendar {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e3e3e3 !important;
    box-shadow: 0 3px 13px rgba(0,0,0,0.08) !important;
}

.flatpickr-months {
    background: #ffffff !important;
}

.flatpickr-months .flatpickr-month {
    color: #333333 !important;
}

.flatpickr-weekdays {
    background: #ffffff !important;
}

.flatpickr-weekday {
    color: #666666 !important;
    font-weight: 600 !important;
}

.flatpickr-days {
    background: #ffffff !important;
}

.flatpickr-day {
    color: #333333 !important;
}

.flatpickr-day:hover {
    background: #f8f9fa !important;
    border-color: #e3e3e3 !important;
}

.flatpickr-day.selected {
    background: #0C8040 !important;
    border-color: #0C8040 !important;
    color: #ffffff !important;
}

.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #0C8040 !important;
    border-color: #0C8040 !important;
    color: #ffffff !important;
}

.flatpickr-day.inRange {
    background: #ffffff !important;
    border-color: #e3e3e3 !important;
    color: #333333 !important;
}

.flatpickr-day.today {
    border-color: #e3e3e3 !important;
    color: #333333 !important;
}

.flatpickr-day.today:hover {
    background: #f8f9fa !important;
}

/* Select2 green theme */
.select2-container--default .select2-selection--single:focus {
    border-color: #0C8040 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0C8040 !important;
}

/* Date picker input styling */
#tourDatePicker::placeholder {
    color: #6c757d !important;
}

/* Tour card hover effects */
.tour-card-horizontal:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    transition: 0.3s;
}

/* ========================================
   18. SWIPER COMPONENTS
   ======================================== */
/* Swiper pagination customization */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #c9c9c9;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #2c8c3e;
}

/* Position next/prev buttons nicely */
.swiper-button-next,
.swiper-button-prev {
    color: #d1d1d1;
    width: 40px;
    height: 40px;
    top: 50%;
    color: #2c8c3e;
    border-radius: 50%;
    background-color: rgba(44, 140, 62, 0.15);
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    position: absolute !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #2c8c3e;
    color: white;
    cursor: pointer;
}

.swiper-button-next {
    right: -50px;
}

.swiper-button-prev {
    left: -24px;
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .swiper-button-next {
        right: -30px !important;
    }
    .swiper-button-prev {
        left: -30px;
    }
}

@media screen and (max-width: 575.98px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}





/* ========================================
   5. BANNER SECTION
   ======================================== */
#banner .search-box {
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 12px;
    padding: 1rem 2rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

#banner .search-item small {
    font-size: 0.75rem;
    color: #ddd;
}

#banner .search-item strong {
    font-size: 1rem;
}

#banner .btn-title-sm {
    font-size: 11.5px;
    font-weight: 300;
    color: #e8e8e8;
}

#banner .btn-title {
    font-size: 1rem;
    font-weight: 500;
}

#banner .banner-descriptions {
    max-width: 600px;
    font-weight: 200;
    color: #eaeaea;
}

#banner .banner-subtitle {
    font-family: 'Water Brush', cursive;
    font-weight: 400;
    font-style: Regular;
    font-size: 2.5rem;
    line-height: 100%;
    letter-spacing: 0%;
}

#banner .banner-title {
    font-weight: 600;
    font-size: 5.64rem;
    line-height: 100%;
    letter-spacing: 0%;
}


/* Tours page price block (match screenshot) */
.price-block .price-old {
  color: #C7CAD1; /* soft gray like screenshot */
  text-decoration: line-through;
  font-weight: 300;
  font-size: 1rem; /* slightly larger, subtle */
  margin-bottom: 0;
}
.price-block .from {
  font-weight: 400;
  color: #666;
  font-size: 1rem;
}
.price-block .amount {
  font-weight: 800; /* strong weight to match bold $114 */
  color: #000;
  font-size: 1.6rem; /* larger than 'From' */
}

/* ========================================
   CHECKOUT PAGE STYLES
   ======================================== */
.checkout-content .bg-light {
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef;
}

.checkout-content .form-control:focus {
    border-color: #0C8040 !important;
    box-shadow: 0 0 0 0.25rem rgba(12, 128, 64, 0.25) !important;
}

.checkout-content .form-select {
    height: calc(2.375rem + 2px) !important; /* Match form-control height */
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem !important;
}

.checkout-content .form-select:focus {
    border-color: #0C8040 !important;
    box-shadow: 0 0 0 0.25rem rgba(12, 128, 64, 0.25) !important;
}

/* Select2 styling for checkout page */
.checkout-content .select2-container .select2-selection--single {
    height: calc(2.375rem + 2px) !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    padding: 0.375rem 0.75rem !important;
}

.checkout-content .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: calc(2.375rem - 2px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.checkout-content .select2-container .select2-selection--single .select2-selection__arrow {
    height: calc(2.375rem) !important;
    right: 0.75rem !important;
}

.checkout-content .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #0C8040 !important;
    box-shadow: 0 0 0 0.25rem rgba(12, 128, 64, 0.25) !important;
}

.checkout-content .btn-check:checked + .btn-outline-secondary {
    background-color: #0C8040 !important;
    border-color: #0C8040 !important;
    color: #fff !important;
}

.checkout-content .btn-outline-secondary {
    border-color: #dee2e6;
    color: #6c757d;
}

.checkout-content .btn-outline-secondary:hover {
    background-color: #0C8040 !important;
    border-color: #0C8040 !important;
    color: #fff !important;
}

/* Login Modal Styles */
#loginModal .modal-content {
    border-radius: 0.5rem;
    overflow: hidden;
}

#loginModal .modal-header {
    background-color: #0C8040 !important;
    text-align: center !important;
    padding-top: 1.5rem !important;
    justify-content: center !important;
    position: relative !important;
}

#loginModal .modal-title {
    margin: 0 auto !important;
}

#loginModal .btn-close {
    position: absolute !important;
    right: 1rem !important;
    top: 1rem !important;
}

#loginModal .modal-body {
    background-color: #0C8040 !important;
}

#loginModal .form-control {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 1);
    color: #fff;
}

#loginModal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#loginModal .form-control:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

#loginModal .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

/* ========================================
   CUSTOM PACKAGE PAGE STYLES
   ======================================== */
.checkout-content .btn-check:checked + .btn-outline-secondary {
    background-color: #0C8040 !important;
    border-color: #0C8040 !important;
    color: #fff !important;
}

.checkout-content .btn-outline-secondary {
    border-color: #dee2e6;
    color: #6c757d;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

.checkout-content .btn-outline-secondary:hover {
    background-color: #0C8040 !important;
    border-color: #0C8040 !important;
    color: #fff !important;
}

/* Additional Services checkboxes styling */
.checkout-content .btn-check:checked + .btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.25rem rgba(12, 128, 64, 0.25) !important;
}

/* ========================================
   CART PAGE STYLES
   ======================================== */
/* Cart item styling without hover animation */

.cart-item img {
    max-height: 120px;
    object-fit: cover;
}

.cart-item .btn-outline-secondary {
    border-color: #dee2e6;
    color: #6c757d;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item .btn-outline-secondary:hover {
    background-color: #0C8040;
    border-color: #0C8040;
    color: #fff;
}

.cart-item .btn-outline-danger {
    font-size: 0.875rem;
}

.cart-item .btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

/* Order Summary styling */
.checkout-content .bg-white {
    border: 1px solid #e9ecef;
}

.checkout-content .input-group .form-control:focus {
    border-color: #0C8040;
    box-shadow: 0 0 0 0.25rem rgba(12, 128, 64, 0.25);
}

.checkout-content .btn-outline-success:hover {
    background-color: #0C8040;
    border-color: #0C8040;
}

.devider {
    width: 1px;
    height: 25px;
    background: white
}

@media (max-width: 768px) {
    #banner .banner-subtitle {
        font-size: 2rem;
    }

    #banner .banner-title {
        font-size: 2.5rem;
    }

    #banner .banner-descriptions {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    #banner .banner-subtitle {
        font-size: 1.8rem;
    }

    #banner .banner-title {
        font-size: 2rem;
    }

    #banner .banner-descriptions {
        font-size: 0.8rem;
    }
}

#banner .blur {
    backdrop-filter: blur(3px) !important;
    -webkit-backdrop-filter: blur(3px) !important;
}

#banner .rounded-lg {
    border-radius: 28px;
}

#banner .tour-filter-box {
    border-radius: 28px;
    background-color: rgba(58, 58, 58, 0.3);
}

#banner .filter-box-btn {
    width: 65px !important;
    height: 65px !important;
    border-radius: 20px;
    font-size: 19px;
    background: #0C8040;
    border: 0px;
}

#banner .filter-box-btn:hover {
    background: #1a5f3f;
    border: 0px
}

#banner .bi-calendar-event,
#banner .bi-geo-alt {
    color: #f3f3f3;
}

#banner .select2-container {
    min-width: 100% !important;
    max-width: 100% !important;
    margin-right: -10px !important;
    text-align: start !important;
}

#banner .select2-container--default .select2-selection--single {
    background-color: transparent !important;
    border: 0px !important;
    border-radius: 4px;
    padding: 0px !important;
    margin: 0px !important;
}

#banner .select2-container--default .select2-selection--single .select2-selection__rendered,
#banner .select2-container--default .select2-selection--single .select2-selection__clear,
#banner .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: white !important;
}

#banner .select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 0px !important;
}

#banner .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent transparent transparent !important;
    border-style: solid;
    border-width: 7px 7px 0 7px !important;
    height: 0;
    left: 50%;
}

/* Responsive filter box */
@media (max-width: 768px) {
    #banner .tour-filter-box {
        padding: 1.5rem;
    }

    #banner .filter-box-btn {
        width: 45px !important;
        height: 45px !important;
        border-radius: 8px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    #banner .rounded-lg {
        border-radius: 12px;
    }

    #banner .bi-calendar-event,
    #banner .bi-geo-alt {
        color: #d8d8d8;
        font-size: 17px !important;
    }

    #banner .tour-filter-box {
        padding: 10px;
    }

    #banner .filter-box-btn {
        width: 35px !important;
        height: 35px !important;
        border-radius: 6px;
        font-size: 12px;
        padding: 0.5rem;
    }

    #banner .tour-type {
        font-size: 13px;
        color: #999
    }

    #banner .tour-value,
    #banner #select2-tourSelect-container {
        font-size: 13px !important;
    }

    #banner .date {
        font-size: 13px;
        color: #999
    }

    #banner .date-value {
        font-size: 13px;
    }
}


/* Default: small and medium devices = 90vh */
#banner,
#banner .heroSwiper,
#banner .heroSwiper .swiper-slide,
#banner .heroSwiper img {
    height: 90vh;
}

#banner .heroSwiper img {
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Large devices and above: height = 85vh */
@media (min-width: 992px) {

    #banner,
    #banner .heroSwiper,
    #banner .heroSwiper .swiper-slide,
    #banner .heroSwiper img {
        height: 85vh;
    }
}

/* Carousel overlay always centered */
#banner .carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    z-index: 10;
}




/* ========================================
   6. TOUR SCHEDULE SECTION
   ======================================== */
#tour-schedule .tour-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px 28px;
    text-align: start;
    box-shadow: 0 2px 2px rgba(144, 144, 144, 0.1);
    height: 100%;
    transition: all 0.3s ease-in-out;
}

#tour-schedule .tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 4px rgba(49, 49, 49, 0.15);
}

#tour-schedule .tour-card h5 {
    font-weight: 600;
}

#tour-schedule .tour-card p {
    margin-bottom: 2px;
    color: #6c757d;
}

#tour-schedule .tour-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

#tour-schedule .section-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

#tour-schedule .title {
    font-size: 13px !important;
    font-weight: 600;
    color: #000000 !important
}

#tour-schedule .details {
    line-height: 1.4;
}

#tour-schedule .day {
    font-size: 12px !important;
    color: #000000 !important
}

#tour-schedule .date {
    font-size: 11px !important;
    color: #777777;
}

#tour-schedule .tour-card .icon i {
    font-size: 14px;
    color: #0C8040;
    font-weight: 400;
}



/* ========================================
   7. POPULAR DAY TRIPS SECTION
   ======================================== */
#popular-day-trips .section-title h5 {
    color: #24a86c;
    font-weight: 500;
    font-style: italic;
}

#popular-day-trips .section-title h2 {
    font-weight: 700;
    font-size: 2.5rem;
}

#popular-day-trips .trip-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 230px;
    background: #e6e6e6;
}

#popular-day-trips .trip-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
}

#popular-day-trips .trip-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
}

#popular-day-trips .trip-info h5 {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
}

#popular-day-trips .trip-info p {
    margin: 0;
    font-size: 13px !important;
    color: #0C8040;
    font-weight: 400 ! important;
    font-size: 12px !important;

}

#popular-day-trips .explore-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(2, 112, 2, 0.3);
    border: 0.8px solid #0C8040 !important;
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 400 !important;
    width: 80;
    height: 32;
    border-radius: 33px;
}

#popular-day-trips .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #aaa;
    opacity: 1;
}

#popular-day-trips .swiper-pagination-bullet-active {
    background-color: #24a86c !important;
}

/* end popular section */



/* ========================================
   8. FEATURED/HOLIDAY SECTION
   ======================================== */
#featured .swiper {
    padding-bottom: 3rem;
}

#featured .tour-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgb(0 0 0 / 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#featured .tour-card img {
    width: 100%;
    height: 258px;
    object-fit: cover;
}

#featured .featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #0C8040;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

#featured .tour-card-body {
    padding: 1rem 1.25rem 1.25rem 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#featured .tour-card-body .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

#featured .tour-title {
    font-weight: 700;
    font-size: 20px;
}

#featured .tour-duration {
    font-size: 14px;
    color: #8a8a8a;
}

#featured .location {
    font-size: 14px;
    color: #7c8a80;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}


#featured .explore-link {
    font-weight: 700;
    font-size: 14px;
    color: #0b1749;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

#featured .explore-link:hover {
    color: #2c8c3e;
    font-size: 14px;
}

#featured .price {
    font-weight: 700;
    font-size: 20px;
    color: #2c8c3e;
    text-align: right;
}

#featured .from {
    font-weight: 300;
    font-size: 14px;
    color: #868686;
    text-align: right;
}

/* Swiper pagination customization scoped to #featured */
#featured .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #c9c9c9;
    opacity: 1;
}

#featured .swiper-pagination-bullet-active {
    background: #2c8c3e;
}

/* Position next/prev buttons nicely */
#featured .swiper-button-next,
#featured .swiper-button-prev {
    color: #d1d1d1;
    /* color: #2c8c3e; */
    /* green color for arrows */
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: rgba(44, 140, 62, 0.15);
    /* subtle green background */
    transition: background-color 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px !important;
}

#featured .swiper-button-next:hover,
#featured .swiper-button-prev:hover {
    background-color: #2c8c3e;
    color: white;
}

#featured .swiper-button-next {
    right: 10px;
}

#featured .swiper-button-prev {
    left: -10px;
}


/* tour activity section  */
#tour-activity {
    margin: 4rem 0 !important;
}

#tour-activity .section-title {
    margin-bottom: 1.7rem;
}

#tour-activity .tour-activity-swiper .title {
    font-size: 20px !important;
    font-weight: 600;
    color: #000000 !important
}

#tour-activity .tour-activity-swiper .sub-title {
    font-size: 14px !important;
    font-weight: 400;
    color: #999999 !important
}

#tour-activity .swiper-slide {
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#tour-activity .swiper-slide img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
}

#tour-activity .swiper-slide .title {
    font-weight: 500 ! important;
}
@media (max-width: 991.98px) {
  #tour-activity {
    margin: 2rem 0 !important;
  }

  #tour-activity .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  #tour-activity .tour-activity-swiper .title {
    font-size: 16px !important;
  }

  #tour-activity .tour-activity-swiper .sub-title {
    font-size: 13px !important;
  }

  #tour-activity .swiper-slide {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }

  #tour-activity .swiper-slide img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 575.98px) {
  #tour-activity .section-title {
    font-size: 1.3rem;
  }

  #tour-activity .tour-activity-swiper .title {
    font-size: 15px !important;
  }

  #tour-activity .tour-activity-swiper .sub-title {
    font-size: 12px !important;
  }

  #tour-activity .swiper-slide {
    width: 80px;
    height: 80px;
  }

  #tour-activity .swiper-slide img {
    width: 80px;
    height: 80px;
  }
}

/* end of tour activity section */


/* recent post section */
#recent-post .post-img-wrapper {
    height: 250px;
    background-color: #aeb6bd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    overflow: hidden;
}

#recent-post .post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#recent-post .post-img-wrapper.no-image::after {
    content: "No Image";
    font-size: 1rem;
    color: #6c757d;
}

#recent-post .post-img-wrapper {
    height: 250px;
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#recent-post .post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#recent-post .post-img-wrapper img[src=""] {
    display: none;
}

#recent-post .post-img-wrapper img[src=""]::before {
    content: "No Image";
}

#recent-post .post-img-wrapper img[src=""]+.no-image {
    display: block;
}

#recent-post .card-body .badge {
    background: #0C8040;
    font-size: 11px !important;
    padding: 6px 10px;
    font-weight: 300;
    border-radius: 3px;
}

.no-image {
    position: absolute;
    color: #6c757d;
    font-size: 1rem;
    display: none;
}

#recent-post .card-body .description {
    font-size: 14px !important;
    font-weight: 400;
    color: #999999 !important
}

#recent-post .card-body .read-more {
    font-size: 14px !important;
    font-weight: 600;
}

#recent-post .card-title {
    font-size: 21px !important;
    font-weight: 400 ! important;
    color: #000000 !important;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* end of recent post section */


/* travelers choice section */
#traveller-choice .section-title h5 {
    color: #24a86c;
    font-weight: 500;
    font-style: italic;
}

#traveller-choice .section-title h2 {
    font-weight: 700;
    font-size: 2.5rem;
}

#traveller-choice .trip-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 399px;
    background: #e6e6e6;
}

#traveller-choice .trip-card img {
    width: 100%;
    height: 399px;
    object-fit: cover;
    border-radius: 20px;
}

#traveller-choice .trip-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40vh;
    padding: 1.9rem 1.7rem;
    color: white;
    background: linear-gradient(to top, rgb(28, 52, 175), rgba(34, 34, 161, 0.3), rgba(29, 1, 122, 0));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}


#traveller-choice .trip-info h5 {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
}

#traveller-choice .trip-info p {
    margin: 0;
    font-size: 13px !important;
    color: #0C8040;
    font-weight: 400 ! important;
    font-size: 12px !important;

}

#traveller-choice .explore-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(2, 112, 2, 0.3);
    border: 0.8px solid #0C8040 !important;
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 400 !important;
    width: 80;
    height: 32;
    border-radius: 33px;
}

#traveller-choice .price {
    font-weight: 700;
    font-size: 20px;
    color: #0C8040;
    text-align: right;
    margin-right: 12px;
}

#traveller-choice .from {
    font-weight: 300;
    font-size: 14px;
    color: #b1b1b1;
    text-align: right;
}

#traveller-choice .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #aaa;
    opacity: 1;
}

#traveller-choice .swiper-pagination-bullet-active {
    background-color: #24a86c !important;
}

/* end of travelers choice section */


/* tours-destination section */

.tours-destination-section {
    margin-top: 50px;
    margin-bottom: 100px;
    background-image: url('/assets/img/bg/union.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 10% top;

}

#tours-destination .trip-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 430px;
    background: #e6e6e6;
}

#tours-destination .trip-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 20px;
}

#tours-destination .trip-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20vh;
    padding: 1.9rem 1.7rem;
    color: white;
    background: linear-gradient(to top, rgb(72, 72, 72), rgba(41, 41, 41, 0.3), rgba(52, 52, 52, 0));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}


#tours-destination .trip-info h5 {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
}

#tours-destination .trip-info p {
    margin: 0;
    font-size: 14px !important;
    font-weight: 400 ! important;

}

#tours-destination .explore-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(2, 112, 2, 0.3);
    border: 0.8px solid #0C8040 !important;
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 400 !important;
    width: 80;
    height: 32;
    border-radius: 33px;
}

#tours-destination .price {
    font-weight: 700;
    font-size: 20px;
    color: #0C8040;
    text-align: right;
    margin-right: 12px;
}

#tours-destination .from {
    font-weight: 300;
    font-size: 14px;
    color: #b1b1b1;
    text-align: right;
}

#tours-destination .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #aaa;
    opacity: 1;
}

#tours-destination .swiper-pagination-bullet-active {
    background-color: #24a86c !important;
}

#tours-destination .two-column-list {
    column-count: 2;
    column-gap: .2rem;
}

@media (max-width: 576px) {
    #tours-destination .two-column-list {
        column-count: 2;
        font-size: 12px ! important;
        margin-bottom: 0px ! important;
        text-align: left ! important;
        padding-left: 10px ! important;
    }
    #tours-destination p{
        padding: 10px ! important;
    }
}

#tours-destination .two-column-list li {
    margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
    /* Stack text and slider vertically */
    .tours-destination-section .row {
        flex-direction: column;
    }

    #tours-destination .tour-count-list {
        margin-bottom: 2rem;
    }

    #tours-destination .swiper {
        margin-left: 0 !important;
    }

    /* Resize swiper trip card for tablets */
    #tours-destination .trip-card,
    #tours-destination .trip-card img {
        height: 330px;
    }

    #tours-destination .trip-info {
        height: 25vh;
        padding: 1.2rem;
    }

    #tours-destination .trip-info h4 {
        font-size: 18px;
    }

    #tours-destination .trip-info p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    /* Adjust titles and text alignment for phones */
    #tours-destination h2.section-title {
        font-size: 24px;
        text-align: center;
    }

    #tours-destination p.text-muted {
        font-size: 14px;
        text-align: center;
    }

    #tours-destination .trip-card,
    #tours-destination .trip-card img {
        height: 250px;
    }

    #tours-destination .trip-info {
        padding: 1rem;
        height: 30%;
    }

    #tours-destination .trip-info h4 {
        font-size: 16px;
    }

    #tours-destination .trip-info p {
        font-size: 13px;
    }

    /* Hide swiper buttons on small screens if needed */
    .tours-destination-prev,
    .tours-destination-next {
        display: none !important;
    }
}

/* end of tours-destination section */

/* ====== Testimonials Section Styles ====== */
#testimonials {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF73;
    padding: 5rem 0 !important;
}

#testimonials .testimonial-quote {
    font-size: 18px;
    color: #666666;
}

#testimonials .quote-icon {
    margin-top: -45px !important;
}

#testimonials .title {
    font-size: 20px;
    color: #000000;
    font-weight: 500;
}

#testimonials .address {
    font-size: 14px;
    color: #666666;
}

#testimonials i {
    font-size: 68px !important;
    color: #F1E3D9;
    text-align: start;
}

#testimonials .testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

#testimonials .swiper {
    width: 100%;
    padding: 30px 0;
}

#testimonials .swiper-pagination-bullet .active {
    background: #28a745;
}

@media (max-width: 991.98px) {
    #testimonials {
        padding: 3rem 1rem !important;
    }

    #testimonials .testimonial-quote {
        font-size: 16px;
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
    }

    #testimonials i {
        font-size: 48px !important;
        text-align: left;
    }

    #testimonials .testimonial-text {
        font-size: 15px;
    }

    #testimonials .testimonial-img {
        width: 60px;
        height: 60px;
    }

    #testimonials .title {
        font-size: 18px;
    }

    #testimonials .address {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    #testimonials {
        padding: 2rem 1rem !important;
    }

    #testimonials .testimonial-quote {
        font-size: 15px;
    }

    #testimonials i {
        font-size: 36px !important;
    }

    #testimonials .testimonial-img {
        width: 50px;
        height: 50px;
    }

    #testimonials .title {
        font-size: 16px;
    }

    #testimonials .address {
        font-size: 12px;
    }
}

/* end of testimonials section */

/* ====== Why Choose Us Section Styles ====== */
#why-us {
    padding: 6rem 0 !important;
    text-align: center;
}

#why-us .row {
    padding: 2rem 0;
    text-align: center;
    font-family: Arial, sans-serif;
    background-image: url('/assets/img/bg/bg-line.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: -110px top;
}

#why-us .description {
    max-width: 70%;
    margin: auto;
    color: #555;
    font-size: 1rem;
}

#why-us .why-icon img {
    height: 60px;
    width: 60px;
    margin-bottom: 12px;
}

#why-us h6 {
    font-weight: 500;
    font-size: 20px;
    margin-top: 0.5rem;
}

#why-us p {
    color: #666666;
    font-weight: 400;
    font-size: 16px;
}

/* end of why choose us section */



/* unforgettable section */

#unforgettable {
    padding: 3rem 0;
}

#unforgettable .section-subtitle {
    color: #28a745;
    font-style: italic;
    font-weight: 500;
}

#unforgettable .section-description {
    color: #666666;
    font-size: 1rem;
}

#unforgettable .feature-box {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
}

#unforgettable .feature-box:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

#unforgettable .feature-icon {
    width: 55px;
    height: 55px;
    margin-right: 35px;
}

#unforgettable .feature-title {
    font-weight: 500 ! important;
    font-size: 1.2rem;
    color: #000000 ! important;
    margin-bottom: 10px !important;
}

#unforgettable .feature-box p {
    font-weight: 400 ! important;
    font-size: 14px;
    color: #666666 ! important;
}

/* Medium Devices (Tablets: ≥768px and <992px) */
@media (max-width: 991.98px) {

    #unforgettable .feature-box {
        padding: 1.5rem 2rem;
    }

    #unforgettable .feature-title {
        font-size: 1.1rem;
    }

    #unforgettable .feature-box p {
        font-size: 13.5px;
    }

    #unforgettable .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 25px;
    }
}

/* Small Devices (Phones: <768px) */
@media (max-width: 767.98px) {

    #unforgettable .feature-box {
        padding: 1.25rem 1.5rem;
    }

    #unforgettable .feature-title {
        font-size: 1rem;
    }

    #unforgettable .feature-box p {
        font-size: 13px;
    }

    #unforgettable .feature-icon {
        width: 45px;
        height: 45px;
        margin-right: 20px;
    }
}

/* end of unforgettable section */

/* start of tour gallery */
#tour-gallery .search-box {
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 12px;
    padding: 1rem 2rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

#tour-gallery .search-item small {
    font-size: 0.75rem;
    color: #ddd;
}

#tour-gallery .search-item strong {
    font-size: 1rem;
}

#tour-gallery .btn-title-sm {
    font-size: 11.5px;
    font-weight: 300;
    color: #e8e8e8;
}

#tour-gallery .banner-descriptions {
    max-width: 600px;
    font-weight: 200;
    color: #eaeaea;
}

#tour-gallery .banner-subtitle {
    font-family: 'Water Brush', cursive;
    font-weight: 400;
    font-style: Regular;
    font-size: 2.5rem;
    line-height: 100%;
    letter-spacing: 0%;
}

#tour-gallery .banner-title {
    font-weight: 600;
    font-size: 5.64rem;
    line-height: 100%;
    letter-spacing: 0%;
}

@media (max-width: 768px) {
    #tour-gallery .banner-subtitle {
        font-size: 2rem;
    }

    #tour-gallery .banner-title {
        font-size: 2.5rem;
    }

    #tour-gallery .banner-descriptions {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    #tour-gallery .banner-subtitle {
        font-size: 1.8rem;
    }

    #tour-gallery .banner-title {
        font-size: 2rem;
    }

    #tour-gallery .banner-descriptions {
        font-size: 0.8rem;
    }
}

#tour-gallery .logo {
    height: 48px ! important;
    width: 48px ! important;
    margin-bottom: 20px;
}


#tour-gallery .filter-box-btn:hover {
    background: #0e984c;
    border: 0px
}

/* Default: small and medium devices = 90vh */
#tour-gallery,
#tour-gallery .heroSwiper,
#tour-gallery .heroSwiper .swiper-slide,
#tour-gallery .heroSwiper img {
    height: 90vh;
}

#tour-gallery .heroSwiper img {
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Large devices and above: height = 85vh */
@media (min-width: 992px) {

    #tour-gallery,
    #tour-gallery .heroSwiper,
    #tour-gallery .heroSwiper .swiper-slide,
    #tour-gallery .heroSwiper img {
        height: 85vh;
    }
}

/* Carousel overlay always centered */
#tour-gallery .carousel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    z-index: 10;
}

/* End of gallery-slider section */


/* ========================================
   17. FOOTER SECTION
   ======================================== */
#footer .navbar-brand img {
    height: 91px;
    width: auto;
    margin-bottom: 20px;
}

#footer .title {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 10px;
    color: #000000;
}

#footer p,
#footer a,
#footer li {
    font-weight: 300;
    font-size: 14px;
    color: #000000;
    margin-bottom: 2px;
    text-align: left;
}

#footer .useful-links a {
    font-weight: 600;
    font-size: 13px;
}

#footer .social-icons {
    margin-top: 10px;
}

#footer .social-icons a {
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 4px;
}

/* skicty footer */
#sticky-footer {
    bottom: 0;
    left: 0;
    margin-top: 40px;
    width: 100%;
    max-height: 98px;
    z-index: 9999;
    background: #BAA28F80;
}

/* Small (≤ 576px) and Medium (≤ 768px) Devices */
@media (max-width: 768px) {
    #footer .navbar-brand img {
        height: 60px;
        margin-bottom: 10px;
    }

    #footer .title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    #footer p,
    #footer a,
    #footer li {
        font-size: 13px;
        text-align: center;
    }

    #footer .social-icons {
        justify-content: center;
        margin-top: 8px;
    }

    #footer .social-icons a {
        height: 36px;
        width: 36px;
        margin-right: 6px;
    }

    #footer .row>div {
        text-align: center;
    }

    #footer .useful-links a {
        display: inline-block;
        margin: 2px 5px;
        font-size: 12px;
        text-align: center;
    }

    #sticky-footer {
        text-align: center;
        padding: 1rem 0;
        max-height: unset;
    }
}
/* End footer section */

/* ========================================
   TOUR DETAILS PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-70 {
    min-height: 70vh;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Tour Sections Styles */
.tour-section {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.section-header {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.section-header:hover {
    background: #f8f9fa;
}

.section-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    float: left;
}

.section-icon i {
    color: #198754;
}

.tour-section .section-header .section-title {
    float: left;
    margin: 0 !important;
    margin-bottom: 0 !important;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.toggle-icon {
    font-size: 1rem;
    color: #999;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.section-header[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.section-content {
    padding: 1.5rem;
    background: white;
}

/* Highlights List */
.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.highlights-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #333;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.attraction-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.attraction-item:hover {
    transform: translateY(-2px);
}

.attraction-item h5 {
    color: #198754;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.attraction-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Itinerary Styles */
.day-section {
    margin-bottom: 2rem;
}

.day-section:last-child {
    margin-bottom: 0;
}

.day-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.day-header i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    color: #198754;
}

.day-header h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Timeline */
.timeline {
    padding-left: 0;
}

.timeline-item {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.timeline-time {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.timeline-time i {
    margin-right: 0.5rem;
    color: #999;
    font-size: 0.9rem;
}

.timeline-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    padding-left: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        padding: 1rem;
    }

    .section-content {
        padding: 1rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }
}

/* Tour Info Grid */
.tour-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.info-card {
    background: transparent !important;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: none !important;
}

.info-card i {
    font-size: 2rem;
    color: #198754;
    margin-bottom: 0.5rem;
}

/* Gallery Styles */
.gallery-container {
    position: relative;
    margin: 3rem 0;
}

.main-gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.thumbnail-gallery::-webkit-scrollbar {
    display: none; /* WebKit */
}

.thumbnail {
    width: calc(25% - 7.5px);
    min-width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .thumbnail {
        width: calc(50% - 5px);
        min-width: 80px;
        height: 100px;
    }
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #198754;
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-fullscreen {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.price-old {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.2rem;
}

.price-current {
    font-size: 2rem;
    font-weight: bold;
    color: #198754;
}

.tour-details .form-select,
.tour-details .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem;
}

.tour-details .form-select:focus,
.tour-details .form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.btn-book {
    background: #198754;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
}

.btn-book:hover {
    background: #157347;
    transform: translateY(-2px);
}

/* Payment Radio Buttons */
.tour-details .form-check {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tour-details .form-check:hover {
    border-color: #198754;
    background-color: #f8f9fa;
}

.tour-details .form-check-label {
    cursor: pointer;
    width: 100%;
}

.tour-details .form-check-input {
    cursor: pointer;
}

.tour-details .form-check-input:checked + .form-check-label {
    color: #198754;
    font-weight: 600;
}

.tour-details .form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.tour-details .form-check:has(.form-check-input:checked) {
    border-color: #198754;
    background-color: rgba(25, 135, 84, 0.1);
}