/* Global Styles */
:root {
    --primary-color: #be8d23;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Inter', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: #212529;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 1rem;
}

h1{font-size: 32px;}
h2{font-size: 28px; margin-bottom: 20px;}
h3{font-size: 22px; margin-bottom: 20px;}
h4{font-size: 18px;}

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

a:hover {
    color: #c3952d;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.site-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Content Styles */
.site-main {
    padding: 2rem 0;
	background: #f8f9fa
}

.entry-title a {
    color: var(--dark-color);
}

.entry-title a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.entry-meta {
    font-size: 0.875rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.entry-footer {
    font-size: 0.875rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* Widget Styles */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Footer Styles */
.site-footer {
    margin-top: 3rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
    color: #fff;
    text-decoration: none;
}

/* Pagination Styles */
.pagination {
    justify-content: center;
    margin-top: 2rem;
}

/* Tour Specific Styles */
.tour-meta {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .navbar-collapse {
        padding-top: 1rem;
    }
    
    .site-main {
        padding: 1rem 0;
    }
}

/* =============================== Header Styles ====================================================== */
.header-area {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}

.header-top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    align-items: center;
}

.header-left .list-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-left .list-items li {
    margin-right: 20px;
}

.header-left .list-items li:last-child {
    margin-right: 0;
}

.header-left .list-items a {
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-left .list-items a:hover {
    color: #bea44f;
    text-decoration: none;
}

.header-left .list-items i {
    margin-right: 8px;
}

.header-right-action {
    display: flex;
    align-items: center;
}

.select-contain {
    position: relative;
}

.select-contain label {
    margin-right: 5px;
    color: #2a5787;
}

.select-contain-select {
    border: none;
    background: transparent;
    color: #6a6a6a;
    outline: none;
    cursor: pointer;
    padding-right: 15px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a5787'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px;
}

.header-menu-wrapper {
    padding: 15px 0;
}

.menu-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.menu-toggler {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0d233e;
    cursor: pointer;
    padding: 5px;
    display: none;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu > li {
    position: relative;
    margin: 0 15px;
}

.main-menu > li > a {
    color: #0d233e;
    font-size: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.main-menu > li > a:hover {
    color: #bea44f;
    text-decoration: none;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 0;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu a {
    padding: 8px 20px;
    color: #0d233e;
    transition: all 0.3s ease;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #bea44f;
    text-decoration: none;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
    margin-top: -10px;
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

.nav-btn {
    margin-left: 20px;
}

/* Desktop Submenu Hover Styles */
        .desktop-menu .main-menu .menu-item-has-children,
        .desktop-menu .main-menu .dropdown {
            position: relative;
        }
        
        .desktop-menu .main-menu .menu-item-has-children > .sub-menu,
        .desktop-menu .main-menu .dropdown > .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 5px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            display: block !important;
        }
        
        .desktop-menu .main-menu .menu-item-has-children:hover > .sub-menu,
        .desktop-menu .main-menu .dropdown:hover > .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

		.desktop-menu .main-menu .menu-item-has-children:hover > .sub-menu, .desktop-menu .main-menu .dropdown:hover > .dropdown-menu > .dropdown-menu {
    left: 100%;
    top: 0;
}
        
        .desktop-menu .main-menu .sub-menu .menu-item,
        .desktop-menu .main-menu .dropdown-menu .dropdown-item {
            display: block;
            width: 100%;
        }
        
        .desktop-menu .main-menu .sub-menu .menu-item a,
        .desktop-menu .main-menu .dropdown-menu .dropdown-item {
            display: block;
            padding: 10px 20px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        
        .desktop-menu .main-menu .sub-menu .menu-item:last-child a,
        .desktop-menu .main-menu .dropdown-menu .dropdown-item:last-child {
            border-bottom: none;
        }
        
        .desktop-menu .main-menu .sub-menu .menu-item a:hover,
        .desktop-menu .main-menu .dropdown-menu .dropdown-item:hover {
            background: #f8f9fa;
            color: #b88316;
        }
        
        /* Nested Desktop Submenus */
        .desktop-menu .main-menu .sub-menu .menu-item-has-children > .sub-menu {
            top: 0;
            left: 100%;
        }
        
        /* Mobile Menu Styles */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu-sidebar {
            position: fixed;
            top: 0;
            left: -320px;
            width: 320px;
            height: 100%;
            background: #fff;
            z-index: 9999;
            transition: all 0.3s ease;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        }
        
        .mobile-menu-sidebar.active {
            left: 0;
        }
        
        .mobile-menu-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f9fa;
        }
        
        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            padding: 5px;
        }
        
        .mobile-menu-nav {
            padding: 0;
        }
        
        /* Mobile Menu Items */
        .mobile-menu-nav .main-menu {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .mobile-menu-nav .main-menu .menu-item {
            border-bottom: 1px solid #f0f0f0;
            position: relative;
        }
        
        .mobile-menu-nav .main-menu .menu-item a {
            display: block;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .mobile-menu-nav .main-menu .menu-item a:hover {
            background: #f8f9fa;
            color: #b88316;
        }
        
        .mobile-menu-nav .main-menu .menu-item a.has-submenu {
            padding-right: 50px;
        }
        
        .mobile-menu-nav .main-menu .menu-item .submenu-arrow {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
            font-size: 12px;
        }
        
        .mobile-menu-nav .main-menu .menu-item.active > a .submenu-arrow {
            transform: translateY(-50%) rotate(180deg);
        }
        
        /* Mobile Submenus */
        .mobile-menu-nav .sub-menu {
            list-style: none;
            margin: 0;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .mobile-menu-nav .menu-item.active > .sub-menu {
            max-height: 1000px;
        }
        
        /* Level 1 Submenus */
        .mobile-menu-nav .sub-menu-level-0 {
            background: #f8f9fa;
        }
        
        .mobile-menu-nav .sub-menu-level-0 .menu-item a {
            padding: 12px 20px 12px 40px;
            font-size: 14px;
            color: #666;
            font-weight: 400;
        }
        
        .mobile-menu-nav .sub-menu-level-0 .menu-item a.has-submenu {
            padding-right: 50px;
        }
        
        /* Level 2 Submenus */
        .mobile-menu-nav .sub-menu-level-1 {
            background: #e9ecef;
        }
        
        .mobile-menu-nav .sub-menu-level-1 .menu-item a {
            padding: 10px 20px 10px 60px;
            font-size: 13px;
            color: #666;
            font-weight: 400;
        }
        
        .mobile-menu-nav .sub-menu-level-1 .menu-item a.has-submenu {
            padding-right: 50px;
        }
        
        /* Level 3+ Submenus */
        .mobile-menu-nav .sub-menu-level-2 {
            background: #dee2e6;
        }
        
        .mobile-menu-nav .sub-menu-level-2 .menu-item a {
            padding: 8px 20px 8px 80px;
            font-size: 12px;
            color: #666;
            font-weight: 400;
        }
        
        .mobile-menu-nav .sub-menu-level-2 .menu-item a.has-submenu {
            padding-right: 50px;
        }
        
        /* Mobile Menu Buttons */
        .mobile-menu-buttons {
            padding: 20px;
            border-top: 1px solid #eee;
            background: #f8f9fa;
        }
        
        .mobile-menu-buttons .theme-btn {
            display: block;
            width: 100%;
            margin-bottom: 10px;
            text-align: center;
            padding: 12px;
            background: #b88316;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .mobile-menu-buttons .theme-btn:hover {
            background: #a0731a;
            color: #fff;
        }
        
        .mobile-menu-buttons .submit-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background: #2a5787;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
			height: auto;
        }
        
        .mobile-menu-buttons .submit-btn:hover {
            background: #1e4066;
        }
        
        /* Hide desktop elements on mobile */
        @media (max-width: 991.98px) {
            .desktop-menu {
                display: none;
            }
        }
        
        /* Show desktop elements only on desktop */
        @media (min-width: 992px) {
            .mobile-menu-overlay,
            .mobile-menu-sidebar {
                display: none !important;
            }
        }
        
        /* Scrollbar styling for mobile menu */
        .mobile-menu-sidebar::-webkit-scrollbar {
            width: 5px;
        }
        
        .mobile-menu-sidebar::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        .mobile-menu-sidebar::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }
        
        .mobile-menu-sidebar::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

.dropdown-toggle::after {
	display: none;
}

.theme-btn {
    background-color: #bea44f;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.theme-btn:hover {
    background-color: #b53822;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    border: none;
    color: #2a5787;
}

.submit-btn:hover {
    background-color: #e9ecef;
    color: #bea44f;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .header-menu-wrapper {
        padding: 10px 0;
    }
    
    .main-menu > li {
        margin: 0 10px;
    }
}

@media (max-width: 991.98px) {
    .header-area {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .menu-toggler {
        display: block;
    }
    
    .main-menu-content {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }
    
    .main-menu-content.active {
        left: 0;
    }
    
    .main-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .main-menu > li {
        margin: 0 0 15px;
        width: 100%;
    }
    
    .main-menu > li > a {
        padding: 10px 0;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border-left: 2px solid #f0f0f0;
        margin-left: 15px;
    }
    
    .dropdown-submenu .dropdown-menu {
        left: 0;
        margin-left: 15px;
    }
    
    .nav-btn.contact-form-action {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .theme-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .header-top-bar {
        padding: 8px 0;
    }
    
    .header-left .list-items {
        flex-direction: column;
    }
    
    .header-left .list-items li {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .header-flex-item {
        margin-bottom: 5px;
    }
    
    .select-contain {
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .logo img {
        max-height: 50px;
    }
    
    .header-top-content {
        flex-wrap: wrap;
    }
}

/* ============================================ Footer Styles ============================================= */
.footer-area {
    background-color: #191c71;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

/* Footer Top Links */
.term-box .list-items {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -10px;
}

.term-box .list-items li {
    padding: 0 10px;
    position: relative;
}

.term-box .list-items li:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgba(255,255,255,0.2);
}

.term-box .list-items a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.term-box .list-items a:hover {
    color: #bea44f;
    text-decoration: none;
}

/* Social Icons */
.footer-social-box .social-profile {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 -5px;
    justify-content: flex-end;
}

.footer-social-box .social-profile li {
    padding: 0 5px;
}

.footer-social-box .social-profile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-box .social-profile a:hover {
    background-color: #bea44f;
    color: #fff;
    transform: translateY(-3px);
}

/* Section Block Divider */
.section-block {
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    margin: 20px 0;
}

/* Footer Columns */
.responsive-column {
    margin-bottom: 30px;
}

.footer-item {
    position: relative;
}

.footer-item img {
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer__desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.title.curve-shape {
    position: relative;
    padding-bottom: 15px;
}

.title.curve-shape:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2.5px;
    background: linear-gradient(45deg, #b88316, #d6b354);
}

.footer-item ul, .list--items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item li, .list--items li {
    margin-bottom: 10px;
}

.footer-item a, .list--items a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-item a:hover, .list--items a:hover {
    color: #bea44f;
    text-decoration: none;
    transform: translateX(5px);
}

/* Form Control */
.form-control {
    display: block;
    width: 100%;
    padding: 15px 20px 15px 40px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Copyright */
.copy-right {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* Gallery Carousel Styles */
.gallery-carousel {
    position: relative;
}

.gallery-carousel .card-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-carousel .card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-carousel .card-item img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Owl Carousel Nav Arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-prev, 
.owl-next {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.8) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #333 !important;
    font-size: 24px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.owl-prev:hover, 
.owl-next:hover {
    background: #fff !important;
    color: var(--primary) !important;
}

.owl-prev {
    margin-left: -25px;
}

.owl-next {
    margin-right: -25px;
}

.owl-prev.disabled,
.owl-next.disabled {
    opacity: 0.3;
    cursor: default;
}

/* Home sliders on mobile: no arrows, dots only */
@media (max-width: 991.98px) {
    .home-blog-cards-slider.owl-carousel .owl-nav,
    .home-tours-cards-slider.owl-carousel .owl-nav,
    .home-stats-slider.owl-carousel .owl-nav,
    .home-destination-cards-slider.owl-carousel .owl-nav {
        display: none !important;
    }
}

/* Post content section: show/hide by device (theme options) */
@media (max-width: 991.98px) {
    #post-content.hide-post-content-on-mobile {
        display: none !important;
    }
}
@media (min-width: 992px) {
    #post-content.hide-post-content-on-desktop {
        display: none !important;
    }
}

/* Mobile: compact layout – less scroll, shorter sections */
@media (max-width: 991.98px) {
    /* Hero: shorter on mobile */
    .hero-area .hero-wrap {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .hero-area .hero-content .section-heading h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.35rem !important;
    }
    .hero-area .text-white.fw-bold {
        font-size: 0.95rem !important;
        margin-bottom: 0.75rem !important;
    }
    .hero-area .hero-buttons {
        margin-top: 0.75rem !important;
    }
    .hero-area .hero-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    /* Sections: less padding */
    section.trending-area.section-bg.py-5,
    section.dream-customization-section.py-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    section.info-area.pt-5,
    section.info-area#post-content.pt-5 {
        padding-top: 1.25rem !important;
    }
    section.info-area.pb-3,
    section.info-area#our-stats.pb-3 {
        padding-bottom: 1rem !important;
    }
    section.info-area.mb-4,
    section.info-area.mb-5,
    section.info-area#our-stats.mb-5 {
        margin-bottom: 1.25rem !important;
    }
    section.trending-area.section-bg:not(.py-5) {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    section.faqs-area.py-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    /* Section headings: tighter */
    .section-heading.py-4 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .section-heading.pb-3 {
        padding-bottom: 0.5rem !important;
    }
    .section-heading .sec__title {
        font-size: 1.35rem;
    }
    #our-stats .section-heading .sec__title {
        font-size: 1.5rem !important;
    }
    /* Content spacing */
    .padding-top-50px {
        padding-top: 1.25rem !important;
    }
    .padding-top-60px {
        padding-top: 1.25rem !important;
    }
    .home-stats-slider.padding-top-60px {
        padding-top: 1rem !important;
    }
    .accordion.padding-top-30px {
        padding-top: 1rem !important;
    }
    /* Cards in sliders: less gap */
    .home-blog-cards-slider .item.mb-4,
    .home-tours-cards-slider .item.mb-4,
    .home-destination-cards-slider .item.mb-4,
    .home-stats-slider .item {
        margin-bottom: 0.5rem !important;
    }
    .home-blog-cards-slider.owl-carousel .owl-item,
    .home-tours-cards-slider.owl-carousel .owl-item,
    .home-destination-cards-slider.owl-carousel .owl-item {
        margin-bottom: 0;
    }
    .home-destination-cards-slider .item .modern-destination-card {
        height: 100%;
    }
    /* Destination cards row */
    .trending-area .row.padding-top-50px {
        padding-top: 1rem !important;
    }
    .trending-area .mb-4 {
        margin-bottom: 0.75rem !important;
    }
    /* Dream section text */
    .dream-customization-section .dream-title {
        margin-bottom: 0.75rem !important;
    }
    .dream-customization-section .dream-description {
        margin-bottom: 1rem !important;
    }
    /* Container spacing */
    #post-content .container,
    .info-area .container {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    /* TripAdvisor / certs section */
    section.info-area.info-bg.pt-3.pb-3.mb-4 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    /* Stats icon boxes: smaller on mobile */
    #our-stats .counter-icon {
        height: auto;
        min-height: 140px;
        padding: 1rem 0.75rem;
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    #our-stats .info-icon img {
        width: 50px;
        height: 50px;
    }
    #our-stats .info-content.pt-3 {
        padding-top: 0.5rem !important;
    }
    #our-stats .info__title {
        font-size: 1.25rem;
    }
    /* Banner block */
    .container.my-2.mb-4 {
        margin-top: 0.5rem !important;
        margin-bottom: 1rem !important;
    }
}

/* Mobile only: footer – hide Main Links & top menu, social at start of footer */
@media (max-width: 991.98px) {
    .footer-col-main-links {
        display: none !important;
    }
    .footer-area .term-box.footer-item {
        display: none !important;
    }
    .footer-area > .container > .row.align-items-center {
        flex-direction: column;
    }
    .footer-area > .container > .row.align-items-center .col-lg-4 {
        order: -1;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }
    .footer-area > .container > .row.align-items-center .col-lg-4 .footer-social-box {
        text-align: center;
    }
    .footer-area > .container > .row.align-items-center .col-lg-4 .social-profile {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .gallery-carousel .card-item img {
        height: 300px;
    }
    
    .owl-prev {
        margin-left: -15px;
    }
    
    .owl-next {
        margin-right: -15px;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer-social-box .social-profile {
        justify-content: center;
    }
    
    .term-box .list-items {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .responsive-column {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .responsive-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .term-box .list-items li {
        margin-bottom: 10px;
    }
    
    .term-box .list-items li:after {
        display: none;
    }
}

/* YouTube Gallery */
.youtube-gallery-container {
    padding: 20px 0;
}

.video-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.video-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    height: 70%;
}

.video-modal .close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.video-modal .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-modal .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-modal .modal-content {
        width: 95%;
        height: 50%;
    }
    
    .col-lg-3 {
        margin-bottom: 20px;
    }
}

/* Blog Search Template Styles */
.bread-bg {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-content {
    text-align: center;
}

.section-heading h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.filter-bar {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.wpcf7 .form-control, .wpcf7 .select-contain-select {
    padding-left: 40px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    position: relative;
}

.theme-btn {
    background: #3b70a5;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-btn:hover {
    background: #1d4a75;
    color: #fff;
}

.theme-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.card-area {
    padding-bottom: 80px;
}

.blog-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-img {
    overflow: hidden;
	border-radius: 20px;
}

.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .card-img img {
    transform: scale(1.05);
}

.blog-card .card-body-link {
    display: block;
    flex-grow: 1;
    text-decoration: none;
    color: inherit;
}

.blog-card .card-body-link:hover {
    color: inherit;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.blog-card .card-body-link .card-title {
    color: #1d4a75;
}

.blog-card .card-body-link:hover .card-title {
    color: #3b70a5;
}

.card-title a {
    color: #1d4a75;
    text-decoration: none;
}

.card-title a:hover {
    color: #3b70a5;
}

.card-meta {
    color: #6c757d;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.card-footer {
    padding: 15px 20px;
}

.author-content {
    display: flex;
    align-items: center;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author__title {
    color: #1d4a75;
    font-weight: 600;
    text-decoration: none;
}

.author__title:hover {
    color: #3b70a5;
}

.post-date {
    color: #838384;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.post-cat {
    background: #f5f5f7;
    color: #be8d23;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.post-cat a {
    color: #be8d23;
}

.padding-top-50px {
    padding-top: 50px;
}

.responsive-column {
    margin-bottom: 30px;
}

/* Font Awesome specific adjustments */
.fa-search, .fa-book-open, .fa-calendar-alt, .fa-arrow-left, .fa-arrow-right {
    font-size: 1rem;
}

@media (max-width: 767px) {
    .filter-bar {
        flex-direction: column;
    }
    
    .form-group {
        width: 100% !important;
        margin-bottom: 15px;
    }
    
    .theme-btn {
        width: 100%;
    }
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 40px;
	text-align: center;
}

.pagination-wrapper ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper li {
    margin: 0 5px;
}

.pagination-wrapper a,
.pagination-wrapper span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666666;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-wrapper a:hover {
    background: linear-gradient(45deg, #b88316, #d6b354);
    color: #fff;
}

.pagination-wrapper .current {
    background: linear-gradient(45deg, #b88316, #d6b354);
	border: none !important;
    color: #fff;
}

.pagination-wrapper .dots {
    background: transparent;
    color: #6c757d;
}

/* Adjust icon sizes in pagination */
.pagination-wrapper .fa-chevron-left,
.pagination-wrapper .fa-chevron-right {
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 575px) {
    .pagination-wrapper li {
        margin: 0 2px;
    }
    
    .pagination-wrapper a,
    .pagination-wrapper span {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
}

.filter-sidebar {
    background: #191c71;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.filter-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #fff;
}

.price-range {
    display: flex;
    gap: 10px;
}

.price-range input {
    flex: 1;
}

.tours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tours-header h1 {
    margin: 0;
    color: #333;
}

.tours-count {
    color: #666;
    font-size: 0.9rem;
}

/* Tour Card Styles */
.tour-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.card-img {
    position: relative;
    height: 250px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(90deg, rgb(97 149 197) 0%, rgb(59 112 165) 50%, rgb(29 74 117) 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.tour-card span.location {
    color: #c14033;
    font-weight: bold;
}

.tour-price-from-wird {
    font-family: 'Oleo Script Swash Caps';
    font-style: italic;
    font-weight: 800;
    text-transform: capitalize;
    font-size: 22px;
}

.flight-time-item i {
    background: #c14033;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
}

.tour-badge {
    top: auto;
    left: 0;
    bottom: 0;
    right: 0;
    background: #28a745;
    border-radius: 0;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.card-title a {
    color: #333;
    text-decoration: none;
}

.card-title a:hover {
    color: #007bff;
}

.flight-details {
    margin: 15px 0;
    flex: 1;
}

.flight-time-item {
    margin-bottom: 15px;
}

.btn-box {
    margin-top: auto;
}

.theme-btn {
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.theme-btn:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

.price {
    font-weight: bold;
    font-size: 1.1rem;
}


@media (max-width: 768px) {
    .filter-sidebar {
        margin-bottom: 20px;
    }
    
    .tours-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==========================================================
 * ================= Home -==================================
 */

.hero-area {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: 1;
}

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

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
	border: none;
	background: #fff;
	color: #191c71;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, #b88316, #d6b354); /* Adjust to match your theme */
	color: #fff;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(45deg, #d6b354, #b88316);;
}

.hero-buttons .btn-outline-light:hover {
    background-color: #f5f5f5;
}

.card-item {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 35px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 13px 7px rgb(82 85 90 / 10%);
    -moz-box-shadow: 0 0 13px 7px rgb(82 85 90 / 10%);
    box-shadow: 0 0 13px 7px rgb(82 85 90 / 10%);
    border: 1px solid #dededeb0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
}

.card-item:hover {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}

.modern-destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(25, 28, 113, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 300px;
}

.modern-destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(25, 28, 113, 0.15);
}

.destination-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 300px;
}

.destination-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.destination-image, .destination-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(25,28,113,0.8) 0%, rgba(25,28,113,0.5) 50%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.modern-destination-card:hover .destination-content-overlay {
    padding-bottom: 35px;
    background: linear-gradient(0deg, rgba(25,28,113,0.9) 0%, rgba(25,28,113,0.6) 50%, transparent 100%);
}

.destination-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.modern-destination-card:hover .destination-title {
    transform: translateY(-3px);
}

.destination-cta-wrapper {
    display: flex;
    justify-content: flex-start;
}

.destination-cta {
    background: #b88316;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.destination-cta:hover {
    background: #d89b2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.destination-cta svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.destination-cta:hover svg {
    transform: translateX(3px);
}

.theme-btn, .theme-btn-alt {
    font-size: 15px;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(45deg, #b88316, #d6b354);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight: 500;
    border: 0;
    white-space: nowrap;
	padding: 12px 20px;
}

.theme-btn-alt {
    background: linear-gradient(90deg, rgb(157 56 60) 0%, rgb(193 65 52) 50%, rgb(212 62 28) 100%);
}

.icon-box .info-icon {
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 34px;
    color: #287dfa;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.icon-layout-2 .info-icon {
    margin-left: 0;
    margin-right: 15px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.icon-box .info-icon i {
    font-size: 60px;
    color: #fff;
}

.icon-box .info__title {
    color: #f5a968;
}

.info-area {
    position: relative;
}

.section-heading .sec__title {
    font-size: 28px;
    color: #0d233e;
    font-weight: 700;
}

.icon-box {
    margin-bottom: 30px;
    position: relative;
}

.counter-icon {
    background: #ffffff38;
    height: 250px;
    width: 260px;
    border-radius: 10px;
    padding: 25px 35px;
    border: 1px solid #fff;
}

.icon-box .info-icon {
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 34px;
    color: #287dfa;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.icon-layout-2 .info-icon {
    margin-left: 0;
    margin-right: 15px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: 70px;
    height: 70px;
    line-height: 70px;
}

.icon-box .info__title {
    font-size: 20px;
    color: #0d233e;
    margin-bottom: 13px;
}

.icon-layout-2 .info__title {
    margin-bottom: 7px;
    font-size: 19px;
	color: #f5a968;
}

.counter-icon .info__title {
    font-size: 40px;
}

.icon-box .info__desc {
    font-size: 16px;
    color: #5d646d;
    line-height: 27px;
}

#our-stats:before {
    content: "";
    background: linear-gradient(180deg, #191c71f2, #bea44fe6);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.logo-content-nav {
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
	list-style: none;
	padding: 0;
	margin: 0;
}

.logo-content-nav li {
    width: 200px;
    padding: 10px;
}

.single-content-nav ul li, .logo-content-nav li {
    display: inline-block;
}

/* ==============================================
   Single Post Styling
   ============================================== */

.single-post-content {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.single-post-content .entry-header {
    text-align: center;
    margin-bottom: 1rem !important;
}

.single-post-content .entry-title {
    font-size: 2rem;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
    font-weight: 700;
}

.single-post-content .entry-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.single-post-content .entry-meta a {
    color: #196d87;
    text-decoration: none;
}

.single-post-content .entry-meta a:hover {
    color: #c09f52;
    text-decoration: underline;
}

.single-post-content .featured-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.single-post-content .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

.single-post-content .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post-content .entry-content h2,
.single-post-content .entry-content h3,
.single-post-content .entry-content h4 {
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.single-post-content .entry-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 0.5rem;
}

.single-post-content .entry-content h3 {
    font-size: 1.5rem;
}

.single-post-content .entry-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dotted #3498db;
}

.single-post-content .entry-content a:hover {
    color: #2980b9;
    border-bottom-style: solid;
}

.single-post-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* Keep all content (images, figures) inside article – override inline widths */
.single-post-content {
    overflow-x: hidden;
}
.single-post-content .entry-content {
    overflow-x: hidden;
}
.single-post-content .entry-content figure,
.single-post-content .entry-content .wp-caption,
.single-post-content .entry-content figure img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
}
.single-post-content .entry-content .wp-caption-text,
.single-post-content .entry-content figcaption {
    font-size: 12px;
}
.single-post-content .post-thumbnail img {
    max-width: 100% !important;
    height: auto !important;
}

.single-post-content .entry-content blockquote {
    border-left: 4px solid #3498db;
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.single-post-content .entry-footer {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.single-post-content .entry-footer a {
    color: #196d87;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.nav-previous,
.nav-next {
    max-width: 48%;
}

.nav-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: #2c3e50;
}

/* ==============================================
   Sidebar Styling
   ============================================== */

.sidebar {
    padding-left: 2rem;
}

.sidebar .sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.sidebar-widget-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f1f1;
}

/* Latest Posts Widget */
.sidebar .latest-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .latest-posts-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #eee;
}

.sidebar .latest-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .latest-posts-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #34495e;
}

.sidebar .latest-posts-list a:hover {
    color: #3498db;
}

.sidebar .post-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.sidebar .post-info h4 {
    font-size: 1rem;
    margin: 0 0 0.3rem;
    line-height: 1.4;
}

.sidebar .post-info h4:hover {
    color: #196d87;
}

.sidebar .post-info time {
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* Latest Tours Widget */
.sidebar .latest-tours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .latest-tours-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #eee;
}

.sidebar .latest-tours-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .latest-tours-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #34495e;
}

.sidebar .latest-tours-list a:hover {
    color: #3498db;
}

.sidebar .tour-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.sidebar .tour-info h4 {
    font-size: 1rem;
    margin: 0 0 0.3rem;
    line-height: 1.4;
}

.sidebar .tour-info h4 {
    color: #196d87;
}

.sidebar .tour-price {
    display: block;
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 600;
}

/* Suggested Tours Widget */
.sidebar .suggested-tours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .suggested-tours-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #eee;
    transition: transform 0.2s ease;
}

.sidebar .suggested-tours-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .suggested-tours-list li:hover {
    transform: translateX(5px);
}

.sidebar .suggested-tours-list a {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #34495e;
    transition: color 0.3s ease;
}

.sidebar .suggested-tours-list a:hover {
    color: #3498db;
}

.sidebar .suggested-tours-list .tour-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar .suggested-tours-list a:hover .tour-thumb {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar .suggested-tours-list .tour-thumb-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    margin-right: 1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #191c71 0%, #b88316 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.sidebar .suggested-tours-list .tour-info {
    flex: 1;
    min-width: 0;
}

.sidebar .suggested-tours-list .tour-info h4 {
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
    line-height: 1.4;
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sidebar .suggested-tours-list a:hover .tour-info h4 {
    color: #196d87;
}

.sidebar .suggested-tours-list .tour-info .tour-price {
    display: inline-block;
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 700;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.sidebar .suggested-tours-list a:hover .tour-info .tour-price {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

/* Categories Widget */
.sidebar .categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 1;
}

.sidebar .categories-list li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #eee;
}

.sidebar .categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar .categories-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #34495e;
    padding: 0.3rem 0;
}

.sidebar .categories-list a:hover {
    color: #196d87;
}

.count {
    background: #f1f1f1;
    color: #7f8c8d;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* ==============================================
   Comments Styling
   ============================================== */

.comments-area {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.comments-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f1f1;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.comment {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    position: relative;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.fn {
    font-weight: 600;
    color: #2c3e50;
}

.comment-metadata {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-left: auto;
}

.comment-content {
    margin-left: 66px;
}

.comment-content p {
    margin-bottom: 0;
}

.reply {
    text-align: right;
    margin-top: 0.5rem;
}

.comment-reply-link {
    font-size: 0.8rem;
    color: #3498db;
    text-decoration: none;
}

.comment-reply-link:hover {
    text-decoration: underline;
}

.comment-respond {
    margin-top: 2rem;
}

.comment-reply-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.comment-form {
    display: grid;
    grid-gap: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.comment-form textarea {
    min-height: 150px;
}

.form-submit {
    text-align: right;
}

.submit {
    background: linear-gradient(45deg, #b88316, #d6b354);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.submit:hover {
    background: linear-gradient(45deg, #d6b354, #b88316);
}

/* ==============================================
   Related Posts Styling
   ============================================== */

.related-posts {
    margin: 3rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.related-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.related-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #196d87;
    margin: 0.5rem auto 0;
}

.related-post {
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.related-post-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: #2c3e50;
}

.related-post-date {
    display: block;
    font-size: 0.8rem;
    color: #7f8c8d;
}

@media (max-width: 767.98px) {
    .single-post-content {
		padding: 1rem;
	}
	.single-post-content .entry-title {
    	font-size: 1.4rem;
	}
	.related-posts {
		padding: 1rem;
	}
	.sidebar {
		padding-left: 0;
	}
	.sidebar .sidebar-widget {
		padding: 1rem;
	}
	.single-post-content .entry-content {
    	font-size: 1rem;
	}
}

/* ==============================================
   Tailor Made
   ============================================== */
/* Tailor Made Page Styling */
.tailor-made-page .tailor-made-hero {
    background: #191c71;
	padding: 0;
}

.tailor-made-page .divider {
    height: 3px;
    width: 80px;
}

.tailor-made-page .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tailor-made-page .card:hover .icon-box {
    transform: translateY(-5px);
}

/* Contact Form Styling */
.tailor-made-page .wpcf7-form {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tailor-made-page .wpcf7-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.tailor-made-page .wpcf7-form input,
.tailor-made-page .wpcf7-form textarea,
.tailor-made-page .wpcf7-form select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.tailor-made-page .wpcf7-form textarea {
    min-height: 150px;
}

.tailor-made-page .wpcf7-submit {
    color: white;
	border: none;
}

.wpcf7 p {
    margin: 0;
}

.input-box br {
    display: none;
}

@media (max-width: 767.98px) {
    .tailor-made-page .tailor-made-hero {
        text-align: center;
        padding: 3rem 0;
    }
    
    .tailor-made-page .hero-buttons {
        justify-content: center;
    }
    
    .tailor-made-page .contact-info {
        margin-top: 2rem;
    }
}

/* Form Container */
.wpcf7-form {
    font-family: inherit;
    color: #333;
}

/* Input Box */
.input-box {
    margin-bottom: 20px;
}

.input-box br {
    display: none;
}

.wpcf7 p {
    margin: 0;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.label-text {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3436;
}

/* Form Group */
.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #636e72;
    font-size: 16px;
	z-index: 999;
}

/* Input Fields */
.wpcf7-form-control {
    width: 100%;
    height: 50px;
    padding: 10px 15px 10px 40px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    background-color: #fff;
    color: #2d3436;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wpcf7-form-control:focus {
    border-color: #0984e3;
    box-shadow: 0 0 0 1px #0984e3;
    outline: none;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.wpcf7-recaptcha.g-recaptcha {
    width: auto;
    height: auto;
    background: none !important;
    padding: 0;
    border: none;
	margin-top: 10px;
	display: block;
}

/* Section Styling */
.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title-divider {
    height: 3px;
    width: 80px;
    background: #af9149;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Our Story */
.our-story .story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.our-story .story-content .highlight {
    font-weight: 600;
    font-style: italic;
    font-size: 1.2rem;
    color: #af9149;
}

.story-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.2), rgba(255, 193, 7, 0.2));
    z-index: 1;
}

/* How It Works */
.how-it-works .works-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.how-it-works .works-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
}

.step-card {
    padding: 25px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #af9149;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.single-nav-sticky {
    position: sticky !important;
    top: 0;
    width: 100%;
	z-index: 999;
	background: #fff;
}

section.single-tour-hero.py-0 {
    position: relative;
    height: 650px;
    background-position: center;
    background-size: cover;
}

.single-content-sidebar {
    position: relative;
    z-index: 1;
    background-color: transparent;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 0;
    -webkit-box-shadow: 0 0;
    -moz-box-shadow: 0 0;
    box-shadow: 0 0;
}

.tour-content-widget {
    background: linear-gradient(90deg, rgb(97 149 197) 0%, rgb(59 112 165) 50%, rgb(29 74 117) 100%) !important;
}

a.tour-scroll-link {
    font-size: 18px;
    font-weight: 800;
    font-family: Oxygen, monospace, sans-serif;
}

.theme-btn:hover, .theme-btn.active {
    background: linear-gradient(45deg, #d6b354, #b88316);
    color: #fff;
}

.friend-modal input, friend-modal select, .friend-modal label {
    width: 100% !important;
}

.gx-content-item {
    border-bottom: 1px solid #d7dce3;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 0 11px 0 rgb(155 155 155 / 42%);
    padding: 25px 12px 20px;
    background: #f2fcff;
}
.tour-info-table tr:nth-child(even){
    background: #e4f9ffc7;
}
.tour-info-table td {
    vertical-align: middle !important;
    padding: 10px !important;
    width: 50% !important;
    text-align: left;
    border: 0;
}

table {
	--bs-table-bg: transparent !important;
}

table tr:nth-child(even) {
    background: #e7f1f7;
}

.tour-info-table tr:nth-child(even) {
    background: #e4f9ffc7;
}

@media (max-width:550px) {
    .tour-info-table td {
        font-size: 14px;
    }
}

.accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.accordion-item .card-header {
    padding: 0;
    background-color: #fff;
    border-bottom: none;
    margin-bottom: 0;
    user-select: none;
    cursor: pointer;
}

.accordion-item .card-header .link {
    width: 100%;
    text-align: left;
    color: #0d233e;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 20px;
    text-transform: capitalize;
}

#prices_list .accordion-header {
    background: linear-gradient(45deg, #d13e1f 0%, #9f383b 100%);
    color: white;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 4px #1f4d78;
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
    background: linear-gradient(90deg, rgb(29 74 117) 0%, rgb(59 112 165) 50%, rgb(97 149 197) 100%);
}

.plan-features {
    padding: 0;
    margin: 0;
    text-align: center;
    list-style: outside none none;
    font-size: 0.8em;
    border-radius: 25px;
    overflow: hidden;
    padding: 10px;
    background-color: rgb(241 241 241 / 60%);
    border-radius: 10px;
    border-color: #FFDC64 !important;
	border: 1px solid;
}

.plan-features li {
    border-top: 1px solid #d2d7e2;
    padding: 4px 5%;
    border: 4px solid #f3f3f3;
    background-color: white;
}

.price-period-title-wrapper i {
    color: #c14033;
}

.clients-feedback .owl-carousel .owl-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.clients-feedback .star-rating i {
    color: #f4b223;
}

section.breadcrumb-top-bar {
    padding: 10px 0;
    background: #191c71;
    color: #fff;
}

section.breadcrumb-top-bar nav.rank-math-breadcrumb a {
    color: #d5b152;
}

nav.rank-math-breadcrumb p {
    margin: 0;
}

table thead{
    background: #191c71;
}
table thead th {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    border-left: 2px solid #D0E4F5;
}
table>:not(caption)>*>* {
    padding: .5rem .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
table tr:nth-child(even) {
    background: #D0E4F5;
}
.company-logo {
    bottom: 20px;
    right: 20px
}
table td, table th {
    border: 1px solid #AAAAAA;
    padding: 10px 2px;
    text-align: center;
}

.table-form .table, table {
    margin-bottom: 0;
    border: 1px solid #aaa;
}

table tr:nth-child(even) {
    background: #e7f1f7;
}
.table-form thead th, thead th {
    border: none;
    font-size: 17px;
    font-weight: 800;
    color: #fff !important;
    border: 1px solid #aaa;
}

.table-form th, table th {
    color: #0d233e
}

.table-form td,
.table-form th, table th, table td {
    font-size: 15px;
    border-top-color: rgba(128, 137, 150, .1);
}

.table-form td, table td {
    color: #5d646d !important;
    font-size: 17px;
}

.table-content img {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin-right: 10px
}

.table-content .title {
    font-size: 15px
}

.table-content .title.table-price {
    font-size: 19px
}

.general-tips-highlights .col-lg-6:first-child {
    border-right: 2px solid #007da4;
}

ul.featured-highlights-list i {
    color: #1fdc1f;
}

ul#menu-footer-top li {
    color: #fff !important;
    margin-right: 10px;
}

ul#menu-footer-top {
    display: flex;
}

ul#menu-footer-top li a {
    color: #fff;
}

.tour-detail-area {
    background: #f8f9fa;
}

/* Tour Hero */
.tour-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.tour-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.tour-hero .hero-content {
    position: relative;
    z-index: 2;
}

.tour-hero .hero-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
	color: #fff;
}

.tour-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.tour-hero .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-meta .meta-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
}

.tour-hero .tour-meta .meta-item {
	color: #fff !important;
	padding: 5px 15px;
}

.tour-hero .tour-meta {
	margin-top: 1.5rem;
}

.tour-hero .tour-meta .meta-link {
	color: #fff;
}

.tour-meta .meta-item i {
    margin-right: 5px;
}

/* Tour Overview */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #b88316, #d6b354);
}

/* Itinerary */
.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #dee2e6 !important;
}

.accordion-button {
    font-weight: 600;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #af9149;
}

.accordion-body {
    padding: 20px;
}

/* Inclusions & Exclusions */
.inclusions-box, .exclusions-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.inclusions-list li, .exclusions-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.inclusions-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

.exclusions-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #dc3545;
}

/* Base Styles */
.single-content-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.page-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.page-nav li {
    flex-shrink: 0;
}

.page-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    display: block;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.page-nav a:hover,
.page-nav a:focus {
    color: #0073aa;
    background: #f5f5f5;
}

.page-nav a.active {
    color: #fff;
    background: linear-gradient(45deg, #b88316, #d6b354);
}

/* Mobile Toggle Button (hidden by default) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.toggle-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    position: relative;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: #333;
    left: 0;
    transition: all 0.3s ease;
}

.toggle-icon::before {
    top: -6px;
}

.toggle-icon::after {
    bottom: -6px;
}

/* Mobile Styles */
@media (max-width: 768px) {
	ul#menu-footer-top {
		align-items: center;
		justify-content: center;
		margin-bottom: 10px;
	}
    .nav-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .page-nav {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .page-nav.active {
        max-height: 500px; /* Adjust based on your content */
    }
    
    .page-nav li {
        margin: 5px 0;
    }
    
    .page-nav a {
        padding: 10px 15px;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-toggle.active .toggle-icon {
        background: transparent;
    }
    
    .nav-toggle.active .toggle-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-toggle.active .toggle-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}

/* Sidebar */
.tour-sidebar {
    margin-top: -182px;
    position: relative;
}

.booking-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.booking-header {
    background: linear-gradient(45deg, #b88316, #d6b354);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.booking-title {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.tour-price {
    margin-top: 10px;
}

.tour-price .from {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tour-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.booking-body {
    padding: 20px;
}

.booking-form .form-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.tour-details {
    width: 100%;
    min-width: 0;
}

.tour-details-box {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #af9149;
}

.tour-details-list {
    list-style: none;
    padding: 8px 24px 20px;
    margin: 0;
}

.tour-details-list li {
    display: grid;
    grid-template-columns: minmax(140px, 42%) 1fr;
    align-items: start;
    gap: 8px 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    min-width: 0;
}

.tour-details-list li:last-child {
    border-bottom: none;
}

.tour-details-list li i {
    color: #b88316;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #555;
    min-width: 0;
    line-height: 1.4;
}

.detail-label i {
    width: 18px;
    flex-shrink: 0;
    text-align: center;
}

.detail-value {
    color: #191c71;
    font-weight: 600;
    text-align: right;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.5;
}

.detail-value p,
.detail-value ul,
.detail-value ol {
    margin: 0;
}

.detail-value p + p {
    margin-top: 4px;
}

.tour-map-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tour-map {
    height: 250px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.tour-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.help-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.help-content {
    text-align: center;
}

.help-content p {
    margin-bottom: 1rem;
}

.help-contacts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.help-contacts li {
    padding: 8px 0;
}

.help-contacts li a {
    color: #000;
}

.help-contacts i {
    width: 20px;
    text-align: center;
	color: #b88316;
}

.new_price_box_title {
        font-weight: 600;
        font-size: 24px;
        line-height: 130%;
        text-align: center;
        color: rgba(10, 43, 75, 1);
    }
    .new-prices-tbl {
        background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    .new-prices-tbl_title {
        font-weight: 500;
        font-size: 22px;
        line-height: 130%;
        color: rgba(10, 43, 75, 1);
        padding-bottom: 15px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .new-prices-tbl_title span {
        font-weight: 400;
        font-size: 18px;
        line-height: 150%;
        color: rgba(52, 64, 84, 1);
    }
    .new-prices-tbl_data {
        border-top: 0.5px solid rgba(224, 224, 232, 1);
        padding: 15px 0;
    }
    .new_price_box_price_price .pricelarge2 {
        font-weight: 600;
        font-size: 24px;
        line-height: 130%;
        color: #b88316;
    }
    .new_price_box_price_price .new_price_box_price_text {
        font-weight: 500;
        font-size: 18px;
        line-height: 150%;
        color: rgba(10, 43, 75, 1);
    }
    .new_price_box_price_text {
        font-weight: 500;
        font-size: 18px;
        line-height: 150%;
        color: rgba(10, 43, 75, 1);
    }
    
.new_price_box_hotels {
        background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    .new-hotel-boxes-img {
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 115px;
        border-radius: 16px;
    }
    .new-hotel-boxes-title {
        font-weight: 500;
        font-size: 14px;
        line-height: 130%;
        text-align: center;
        color: rgba(52, 64, 84, 1);
        margin-top: 20px;
    }
    .new-hotel-boxes-title ul {
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-top: 10px;
    }
.new-hotel-boxes-title ul i {
    color: gold;
}

.booking-cta {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.single-tour-reviews #tour-reviews {
    padding: 0 !important;
}

.single-tour-reviews #tour-reviews .section-heading {
    padding-top: 0 !important;
}

.hero-bg {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-box input[type="number"] {
    width: 40px;
    height: 30px;
    border-left: 1px solid #dfe6e9;
    border-right: 1px solid #dfe6e9;
    text-align: center;
    padding: 0;
    -moz-appearance: textfield;
}

iframe {
    border: 0;
    width: 100%;
}

.contact-section .card i {
    background: linear-gradient(45deg, #b88316, #d6b354);
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 50px;
    line-height: 50px;
    font-size: 20px;
    color: #fff;
}

@media only screen and (max-width: 768px) {
	.tour-hero {
    height: auto;
    min-height: auto;
    padding: 50px 0;
}
	.tour-hero .hero-title {
    font-size: 26px;
}
	.tour-sidebar {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
}

.dream-customization-section {
    background: linear-gradient(135deg, #191c71 0%, #9597d5 100%);
    background-size: cover;
    background-position: center;
}

.dream-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.dream-pattern {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 30%);
}

.dream-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.dream-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
	color: #d3af4f;
}

.dream-description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 90%;
}

.dream-illustration {
    animation: float 6s ease-in-out infinite;
}

.dream-main-img {
    border: 5px solid white;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.dream-main-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.dream-badge {
    animation: pulse 2s infinite;
}

.dream-badge i {
    color: #bf8e25;
}

.btn-lg {
    font-weight: 600;
    transition: all 0.3s ease;
}

.z-index-1 {
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 992px) {
    .dream-title {
        font-size: 2.2rem;
    }
    
    .dream-description {
        max-width: 100%;
    }
}

/* Shows only on mobile */
.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none !important;
    }
	
	.section-title {
		font-size: 1.7rem;
	}
}

section.tour-highlights .list-items i {
    color: #b88316 !important;
}

.partners-form .wpcf7-not-valid-tip {
	display: unset !important;
}

.facility-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(197, 149, 91, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 6px 0px rgb(0 0 0 / .05);
}

.facility-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 149, 91, 0.1), transparent);
    transition: left 0.5s ease;
}

.facility-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 4px 2px rgb(0 0 0 / .05);
    border-color: #e5e5e5;
}

.facility-item:hover::before {
    left: 100%;
}

.facilities-grid {
	display: grid; 
	grid-template-columns: repeat(2, 1fr); 
	gap: 15px;
}

@media (max-width: 767px) {
    .facilities-grid {
		display: grid; 
		grid-template-columns: repeat(1, 1fr); 
		gap: 15px;
	}
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-icon {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 14px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }
}

/* Hover Effect */
.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
	.single.single-tour .whatsapp-float {
		bottom: 60px;
	}
    .whatsapp-button {
        padding: 3px 10px;
        border-radius: 50px;
    }
}

.fixed-enquiry-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    padding: 0;
    background: linear-gradient(to top, rgba(28, 50, 92, 0.1), transparent);
    backdrop-filter: blur(10px);
}

.mobile-enquiry-btn {
    display: block;
    width: 100%;
    background: #c09f52;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    padding: 10px 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 -4px 20px rgba(197, 149, 91, 0.3);
}

.modern-tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(25, 28, 113, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(25, 28, 113, 0.15);
}

.card-image-wrapper {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
}

.card-image, .card-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-tour-card:hover .card-image {
    transform: scale(1.05);
}

.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.price-badge {
    background: #b88316;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(184, 131, 22, 0.3);
	width: fit-content;
}

.price-prefix {
    font-size: 12px;
    margin-right: 4px;
    opacity: 0.9;
}

.price-amount {
    font-size: 16px;
}

.availability-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #191c71;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 28, 113, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.modern-tour-card:hover .card-hover-overlay {
    opacity: 1;
}

.view-tour-btn {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(184, 131, 22, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-tour-btn:hover {
    background: #b88316;
	color: #fff;
    transform: translateY(-2px);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #555;
}

.meta-item svg {
    flex-shrink: 0;
}

.tour-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.3;
}

.tour-title a {
    color: #191c71;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tour-title a:hover {
    color: #b88316;
}

.tour-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tour-type {
    background: #f5f5f7;
    color: #191c71;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tour-cta {
    background: #191c71;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.tour-cta:hover {
    background: #b88316;
	color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 28, 113, 0.2);
}

/* Single tour: details header, price badge, PDF options */
.tour-details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    flex-wrap: wrap;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(180deg, #fbfaf6 0%, #fff 100%);
}

.tour-details-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #191c71;
    line-height: 1.25;
    position: relative;
    padding-bottom: 8px;
}

.tour-details-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(45deg, #b88316, #d6b354);
}

.tour-price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: #191c71;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tour-price-badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d6b354;
}

.tour-price-badge-amount {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.tour-docs {
    margin: 0;
    padding: 16px 24px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.tour-docs-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin: 0 0 12px;
}

.tour-docs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.tour-doc-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #ece8dc;
    border-radius: 10px;
}

.tour-doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #191c71;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.tour-doc-card-insurance .tour-doc-icon {
    background: #bea44f;
}

.tour-doc-body {
    flex: 1 1 140px;
    min-width: 0;
}

.tour-doc-title {
    font-size: 1rem;
    font-weight: 700;
    color: #191c71;
    margin: 0 0 2px;
    line-height: 1.2;
}

.tour-doc-subtitle {
    font-size: 0.8rem;
    color: #6b6b6b;
    margin: 0;
    line-height: 1.3;
}

.tour-doc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto;
}

.tour-doc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    background: none;
    white-space: nowrap;
}

.tour-doc-btn-view {
    background: #191c71;
    color: #fff;
}

.tour-doc-btn-view:hover {
    background: #0f1250;
    color: #fff;
}

.tour-doc-btn-download {
    background: #fff;
    color: #191c71;
    border-color: #d8d8e8;
}

.tour-doc-btn-download:hover {
    background: #bea44f;
    border-color: #bea44f;
    color: #fff;
}

.tour-pdf-modal .modal-header {
    align-items: center;
    gap: 12px;
    background: #191c71;
    color: #fff;
    border-bottom: 0;
}

.tour-pdf-modal .modal-title {
    color: #fff;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.tour-pdf-pager {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
}

.tour-pdf-nav {
    min-width: 36px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.tour-pdf-nav:hover {
    background: #bea44f;
    border-color: #bea44f;
    color: #fff;
}

.tour-pdf-body {
    position: relative;
    background: #525659;
}

.tour-pdf-stage {
    min-height: 70vh;
    overflow: hidden;
    text-align: center;
    padding: 0;
}

.tour-pdf-stage.is-locked {
    min-height: 0;
    height: 0;
    overflow: hidden;
}

.tour-pdf-stage:not(.is-locked) {
    min-height: 70vh;
    height: auto;
}

.tour-pdf-stage:not(.is-locked) .tour-pdf-frame {
    display: block !important;
    visibility: visible !important;
    height: 75vh;
    min-height: 480px;
}

.tour-pdf-frame {
    display: block;
    width: 100%;
    height: 75vh;
    min-height: 480px;
    border: 0;
    background: #525659;
}

.tour-pdf-frame[hidden] {
    display: none !important;
}

object.tour-pdf-frame {
    min-height: 75vh;
}

.tour-pdf-form-panel[hidden],
.tour-pdf-loading[hidden] {
    display: none !important;
}

.tour-pdf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 70vh;
    color: #fff;
    padding: 40px 20px;
}

.tour-pdf-loading p {
    margin: 0;
    font-size: 0.95rem;
}

.tour-pdf-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-top-color: #bea44f;
    border-radius: 50%;
    animation: tour-pdf-spin 0.8s linear infinite;
}

@keyframes tour-pdf-spin {
    to {
        transform: rotate(360deg);
    }
}

.tour-pdf-body.is-loading {
    background: #525659;
    min-height: 70vh;
}

.tour-pdf-form-panel {
    position: absolute;
    inset: auto 16px 16px auto;
    width: min(380px, calc(100% - 32px));
    background: #fff;
    color: #191c71;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.tour-pdf-body.is-gated {
    background: #f4f5fb;
    min-height: 420px;
}

.tour-pdf-form-panel.is-gate {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 460px;
    margin: 48px auto;
    border-radius: 12px;
}

.tour-pdf-wpform .wpforms-container,
.tour-pdf-wpform .wpcf7 {
    margin: 0;
}

.tour-pdf-wpform .wpforms-field {
    padding: 0 0 10px;
}

.tour-pdf-wpform input[type="text"],
.tour-pdf-wpform input[type="email"],
.tour-pdf-wpform input[type="tel"],
.tour-pdf-wpform input[type="number"] {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border: 1px solid #d8d8e8;
    border-radius: 8px;
}

.tour-pdf-wpform .wpforms-submit,
.tour-pdf-wpform .wpcf7-submit {
    width: 100%;
    margin-top: 6px;
}

.tour-pdf-wpform .wpforms-submit-container {
    margin-bottom: 0;
}

.tour-pdf-form-panel h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.tour-pdf-form-panel p {
    margin: 0 0 14px;
    color: #555;
    font-size: 0.9rem;
}

.tour-pdf-form-panel label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tour-pdf-form-panel input {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border: 1px solid #d8d8e8;
    border-radius: 8px;
}

.tour-pdf-form-panel button[type="submit"] {
    width: 100%;
    margin-top: 6px;
}

.tour-pdf-form-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: #191c71;
}

.tour-pdf-hp {
    position: absolute !important;
    left: -9999px !important;
}

.tour-pdf-recaptcha {
    margin: 4px 0 12px;
    min-height: 78px;
    overflow: hidden;
}

.tour-pdf-recaptcha > div {
    margin: 0 auto;
}

.tour-pdf-form-msg {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #1b7a3a;
}

.tour-pdf-form-msg.is-error {
    color: #b53822;
}

.tour-pdf-modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.85;
}

.tour-pdf-modal-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

#tourPdfRequestBtn[hidden] {
    display: none !important;
}

.tour-pdf-modal-frame {
    width: 100%;
    height: 75vh;
    min-height: 480px;
    border: 0;
    display: block;
    background: #525659;
}

@media (max-width: 767.98px) {
    .tour-details-header {
        align-items: flex-start;
        padding: 16px 16px 14px;
    }

    .tour-details-title {
        font-size: 1.25rem;
    }

    .tour-details-list {
        padding: 4px 16px 16px;
    }

    .tour-details-list li {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 0;
    }

    .detail-value {
        text-align: left;
        font-weight: 500;
        color: #333;
        padding-left: 28px;
    }

    .tour-price-badge {
        width: 100%;
        justify-content: center;
    }

    .tour-docs {
        padding: 14px 16px 16px;
    }

    .tour-doc-actions {
        width: 100%;
        margin-left: 0;
    }

    .tour-doc-btn {
        flex: 1 1 auto;
    }

    .tour-pdf-frame,
    .tour-pdf-modal-frame {
        height: 70vh;
        min-height: 360px;
    }

    .tour-pdf-form-panel:not(.is-gate) {
        inset: auto 12px 12px 12px;
        width: auto;
    }

    .tour-pdf-form-panel.is-gate {
        margin: 24px 16px;
        width: auto;
        max-width: none;
    }

    .tour-pdf-modal-header-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .tour-pdf-stage {
        min-height: 60vh;
    }
}