:root {
    --primary-color: #f89608;
    --secondary-color: #ffc107;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --muted-color: #6c757d;
    --white: #ffffff;
    --black: #000000;
    /* Animation Classes */
    .animate-fadeInDown {
    animation: fadeInDown 0.8s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    padding-top: 76px;
    color: var(--dark-color);
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled {
    background-color: whitesmoke !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

    .navbar-brand img {
        height: 40px;
        margin-right: 10px;
    }

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

    .navbar-nav .nav-link:hover {
        color: black !important;
        transform: translateY(-1px);
    }

        .navbar-nav .nav-link:hover::after {
            content: "";
            position: absolute;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            margin: 0;
            left: 50%;
            opacity: 1;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            background-color: #E46D30;
        }

    .navbar-nav .nav-link.active::after {
        width: 80%;
    }

.navbar-nav .nav-link {
    position: relative;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #E46D30;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link.active::after {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        margin: 0;
        left: 50%;
        opacity: 1;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #E46D30;
    }

.nav-link.active {
    color: black !important;
}

.nav-link-color {
    color: black;
}

.fixed-top {
    background: white !important;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    align-items: center;
}

.hero-bg {
    background-size: cover;
    background-position: center 20%; /* shift view slightly upward */
    min-height: 100vh;
    height: auto;
    position: relative;
}
@media (min-width: 992px) {
    .hero-bg {
        background-position: center 20%;
    }
}




.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(44, 90, 160, 0.4));
    display: flex;
    align-items: center;
}

.hero-section .display-4 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
body.no-padding-body {
    margin: 0 !important;
    padding: 0 !important;
}

.lead1 {
    color: black;
    font-family: "Jost", Sans-serif;
    font-size: 18px;
    line-height: 28px;
    clear: both;
    font-size: 1.10rem;
    font-weight: 300 !important;
}

.hero-section .lead {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-carousel-enhanced {
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" patternUnits="userSpaceOnUse" width="30" height="30"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="15" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="25" cy="25" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>');
    animation: particleFloat 25s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-20px) translateX(10px);
    }

    66% {
        transform: translateY(10px) translateX(-15px);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.floating-element-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .hero-badge:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.25);
    }

    .hero-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.8s;
    }

    .hero-badge:hover::before {
        left: 100%;
    }

.hero-main-title {
    position: relative;
    display: inline-block;
}

    .hero-main-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary-color), #ffdb4d);
        border-radius: 2px;
        animation: titleUnderline 1s ease forwards;
        animation-delay: 0.5s;
        opacity: 0;
    }

@keyframes titleUnderline {
    from {
        opacity: 0;
        width: 0;
    }

    to {
        opacity: 1;
        width: 100px;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-highlight {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

    .hero-highlight::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--secondary-color);
        animation: highlightGlow 2s ease-in-out infinite;
    }

@keyframes highlightGlow {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-btn-primary, .hero-btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.hero-btn-primary:hover .btn-shine,
.hero-btn-secondary:hover .btn-shine {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.hero-btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-trust-indicators {
    margin-top: 2.5rem;
}

.trust-badges-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .trust-badge-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .trust-badge-item i {
        font-size: 1rem;
        color: var(--secondary-color);
    }

.hero-stats {
    margin-top: 3rem;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

    .scroll-indicator:hover {
        transform: translateX(-50%) translateY(-5px);
    }

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: bounceArrow 2s infinite;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

    .scroll-arrow i {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
    }

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.hero-control {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0.8;
}

    .hero-control:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.1);
        opacity: 1;
    }

.hero-control-middle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0.8;
    z-index: 10;
}

    .hero-control-middle:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

.carousel-control-prev.hero-control-middle {
    left: 30px;
}

.carousel-control-next.hero-control-middle {
    right: 30px;
}

.hero-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

    .hero-indicators button {
        width: 60px;
        height: 4px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.5);
        border: none;
        margin: 0 8px;
        transition: all 0.3s ease;
    }

        .hero-indicators button.active {
            background: var(--secondary-color);
            width: 80px;
        }

.animate-fadeInDown {
    animation: fadeInDown 1s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 1s ease forwards;
}

.animate-slideInRight {
    animation: slideInRight 1s ease forwards;
}

.animate-bounceInUp {
    animation: bounceInUp 1.2s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    60% {
        opacity: 1;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Testimonials Section - Light Background */
.testimonials-section-light {
    background: #f8f9fa !important;
    color: var(--dark-color) !important;
}

    .testimonials-section-light .testimonial-card {
        background: var(--white);
        border: 1px solid #e9ecef;
        color: var(--dark-color);
    }

        .testimonials-section-light .testimonial-card::before {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

    .testimonials-section-light .testimonial-text {
        color: var(--dark-color);
    }

    .testimonials-section-light .testimonial-author {
        color: var(--primary-color);
    }

    .testimonials-section-light .testimonial-control-middle {
        background: rgba(44, 90, 160, 0.15);
        border: 1px solid rgba(44, 90, 160, 0.3);
    }

        .testimonials-section-light .testimonial-control-middle:hover {
            background: rgba(44, 90, 160, 0.25);
        }

/* Testimonials Carousel Controls - Centered at Bottom */
.testimonial-control-middle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0.8;
    z-index: 10;
}

    .testimonial-control-middle:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

/* Position left and right controls correctly */
.carousel-control-prev.testimonial-control-middle {
    left: -60px;
}

.carousel-control-next.testimonial-control-middle {
    right: -60px;
}
/* Add extra padding to testimonials section to accommodate bottom controls */
.testimonials-section-with-controls {
    padding-bottom: 120px !important;
}

/* Inline Chat Section - Below Tours, Right Aligned */
.chat-section-inline {
    max-width: 400px;
    width: 100%;
}

.chat-intro h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.chat-intro p {
    color: var(--muted-color);
    font-size: 0.95rem;
}

.chat-toggle-inline {
    background: linear-gradient(135deg, var(--primary-color), #1e4080);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

    .chat-toggle-inline:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
        background: linear-gradient(135deg, #1e4080, var(--primary-color));
    }

.chat-window-inline {
    margin-top: 15px;
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    flex-direction: column;
    overflow: hidden;
}

    .chat-window-inline .chat-header {
        background: linear-gradient(135deg, var(--primary-color), #1e4080);
        color: var(--white);
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .chat-window-inline .chat-header h6 {
            margin: 0;
            font-weight: 600;
        }

    .chat-window-inline .chat-messages {
        height: 300px;
        padding: 15px;
        overflow-y: auto;
        background: #f8f9fa;
    }

    .chat-window-inline .chat-input {
        padding: 15px;
        border-top: 1px solid #e9ecef;
        display: flex;
        gap: 10px;
        background: var(--white);
    }

        .chat-window-inline .chat-input input {
            flex: 1;
            border: 2px solid #e9ecef;
            border-radius: 20px;
            padding: 10px 15px;
            font-size: 0.9rem;
            transition: border-color 0.3s ease;
        }

            .chat-window-inline .chat-input input:focus {
                outline: none;
                border-color: var(--primary-color);
                box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
            }

        .chat-window-inline .chat-input button {
            background: linear-gradient(135deg, var(--primary-color), #1e4080);
            color: var(--white);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

            .chat-window-inline .chat-input button:hover {
                transform: scale(1.05);
            }

    /* Message styles for inline chat */
    .chat-window-inline .message {
        margin-bottom: 15px;
        padding: 10px 15px;
        border-radius: 15px;
        max-width: 85%;
        animation: messageSlide 0.3s ease;
    }

        .chat-window-inline .message.user {
            background: linear-gradient(135deg, var(--primary-color), #1e4080);
            color: var(--white);
            margin-left: auto;
            border-bottom-right-radius: 5px;
        }

        .chat-window-inline .message.admin {
            background: var(--white);
            color: var(--dark-color);
            border-bottom-left-radius: 5px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
        }

    .chat-window-inline .message-sender {
        font-size: 0.75rem;
        font-weight: 600;
        margin-bottom: 5px;
        opacity: 0.8;
    }

    .chat-window-inline .message-text {
        line-height: 1.4;
        font-size: 0.9rem;
    }

    .chat-window-inline .message-time {
        font-size: 0.7rem;
        margin-top: 5px;
        opacity: 0.7;
    }

    /* Custom scrollbar for inline chat */
    .chat-window-inline .chat-messages::-webkit-scrollbar {
        width: 6px;
    }

    .chat-window-inline .chat-messages::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .chat-window-inline .chat-messages::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }

        .chat-window-inline .chat-messages::-webkit-scrollbar-thumb:hover {
            background: #1e4080;
        }
.price-card {
    background: linear-gradient(to bottom right, #ffffff, #f9fafc);
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* Enhanced Featured Tours Section */
.tour-card-enhanced {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    background: linear-gradient(to bottom right, #ffffff, #f9fafc);
}

    .tour-card-enhanced:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    }

.tour-image-enhanced {
    position: relative;
    height: 280px;
    overflow: hidden;
}

    .tour-image-enhanced img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.tour-card-enhanced:hover .tour-image-enhanced img {
    transform: scale(1.1);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.tour-card-enhanced:hover .tour-overlay {
    opacity: 1;
}

.tour-badges {
    display: flex;
    gap: 10px;
    align-self: flex-start;
}

    .tour-badges .badge {
        font-size: 0.75rem;
        padding: 8px 12px;
        border-radius: 20px;
        font-weight: 600;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

.tour-quick-info {
    align-self: flex-end;
    display: flex;
    gap: 15px;
}

.duration-badge, .group-size-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
}

.tour-content-enhanced {
    position: relative;
    background: var(--white);
}

.tour-meta-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-rating {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.rating-text {
    color: var(--muted-color);
    font-size: 0.8rem;
}

.tour-title-enhanced {
    color: var(--dark-color);
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 15px;
    min-height: 65px;
}

.tour-description-enhanced {
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 35px;
}

.tour-highlights-enhanced {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

    .highlight-item:last-child {
        margin-bottom: 0;
    }

    .highlight-item i {
        font-size: 0.8rem;
    }

.tour-footer-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
    gap: 15px;
}

.price-section-enhanced {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.current-price-enhanced {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price-per-person {
    font-size: 0.85rem;
    margin-top: 2px;
}

.tour-btn-enhanced {
    background: linear-gradient(135deg, var(--primary-color), #1e4080);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    position: relative;
    overflow: hidden;
}

    .tour-btn-enhanced:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
        background: linear-gradient(135deg, #1e4080, var(--primary-color));
    }

    .tour-btn-enhanced::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .tour-btn-enhanced:hover::before {
        left: 100%;
    }

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-control-middle {
        width: 40px;
        height: 40px;
        bottom: -70px;
    }

    .carousel-control-prev.testimonial-control-middle {
        transform: translateX(-60px);
    }

    .carousel-control-next.testimonial-control-middle {
        transform: translateX(20px);
    }

    .testimonials-section-with-controls {
        padding-bottom: 100px !important;
    }

    /* Inline chat responsive */
    .chat-section-inline {
        max-width: 100%;
    }

    .chat-window-inline {
        max-width: 100%;
    }

    .chat-intro {
        text-align: center !important;
    }

    .d-flex.justify-content-end {
        justify-content: center !important;
    }

    /* Enhanced tours responsive */
    .tour-image-enhanced {
        height: 240px;
    }

    .tour-title-enhanced {
        font-size: 1.2rem;
        min-height: auto;
    }

    .tour-footer-enhanced {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .price-section-enhanced {
        align-items: center;
    }

    .tour-btn-enhanced {
        width: 100%;
        text-align: center;
    }

    .tour-quick-info {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .testimonial-control-middle {
        display: none;
    }

    .testimonials-section-with-controls {
        padding-bottom: 60px !important;
    }

    /* Inline chat mobile */
    .chat-window-inline .chat-messages {
        height: 250px;
    }

    .chat-toggle-inline {
        width: 100%;
        text-align: center;
    }

    /* Enhanced tours mobile */
    .tour-image-enhanced {
        height: 200px;
    }

    .tour-meta-enhanced {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .tour-highlights-enhanced {
        padding: 12px;
    }

    .highlight-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .trust-badges-hero {
        flex-direction: column;
        gap: 15px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
        margin: 10px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-control-middle {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev.hero-control-middle {
        left: 15px;
    }

    .carousel-control-next.hero-control-middle {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .hero-main-title::after {
        width: 60px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .hero-indicators {
        bottom: 60px;
    }

    .floating-element {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-particles,
    .floating-elements,
    .animate-fadeInDown,
    .animate-fadeInUp,
    .animate-slideInLeft,
    .animate-slideInRight,
    .animate-bounceInUp {
        animation: none;
    }

    .hero-badge::before,
    .btn-shine {
        display: none;
    }
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    position: relative;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }

    .feature-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

.feature-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h5 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--muted-color);
    line-height: 1.7;
}

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

    .tour-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .tour-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
.fallback-img {
    object-fit: contain !important; /* Prevents cropping */
    background-color: #f0f0f0; /* Optional: adds padding around image */
}

.tour-card:hover .tour-image img {
    transform: scale(1.08);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--danger-color), #e85d75);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--secondary-color), #ffdb4d);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.tour-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-title {
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--dark-color);
    font-size: 1.2rem;
    min-height: 54px;
}

.tour-description {
    background-color: #f9f9f9; /* Soft gray background */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    line-height: 1.7;
    font-size: 1.05rem;
    color: #333;
}

    .tour-description h3 {
        font-size: 1.75rem;
        color: #0d6efd; /* Bootstrap primary */
        border-bottom: 2px solid #0d6efd;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .tour-description p {
        margin-bottom: 0;
        text-align: justify;
    }


.tour-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

    .tour-highlights li {
        padding: 6px 0;
        font-size: 0.95rem;
        color: var(--dark-color);
        display: flex;
        align-items: center;
    }

        .tour-highlights li i {
            margin-right: 8px;
            font-size: 0.9rem;
        }

.tour-price {
    font-weight: 700;
    flex-shrink: 0;
}

.tour-meta .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    font-weight: 500;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--secondary-color), var(--warning-color));
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.25);
    }

.testimonial-stars {
    margin-bottom: 20px;
}

    .testimonial-stars i {
        margin-right: 3px;
        font-size: 1.1rem;
    }

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--white);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.blog-image {
    height: 220px;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-title {
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.blog-summary {
    color: var(--muted-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.blog-meta {
    font-size: 0.9rem;
}

.background-image {
    background: url('/images/breadcrumb.jpg?v=2075645') !important;
    background-position: center !important;
    background-size: cover !important;
}

.page-header {
    padding: 100px 0 60px;
    margin-top: 0px;
    background: linear-gradient(135deg, var(--primary-color), #1e4080);
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="a" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
    }

    .page-header .container {
        position: relative;
        z-index: 2;
    }

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ""; /* Unicode for › */
    font-family: Arial, Helvetica, sans-serif; /* Ensure supported fonts */
    color: rgba(255, 255, 255, 0.6);
    padding: 0 6px;
    vertical-align: middle;
    font-size: 1rem;
}


/* Optional styling for breadcrumb links */
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.booking-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    }


.price-section {
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
    background: linear-gradient(135deg, #f8f9fa, var(--white));
}

.original-price {
    font-size: 1rem;
    color: var(--muted-color);
}

.current-price {
    margin: 15px 0 8px;
    color: var(--primary-color);
}

.booking-features {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.feature-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

    .feature-item i {
        margin-right: 10px;
        width: 16px;
    }
.custom-img-size {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Optional: ensures the image doesn't look stretched */
}

.included-card, .not-included-card {
    background: var(--white);
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.included-card {
    border-left: 4px solid var(--success-color);
}

    .included-card:hover {
        border-left-color: var(--success-color);
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
    }

.not-included-card {
    border-left: 4px solid var(--danger-color);
}

    .not-included-card:hover {
        border-left-color: var(--danger-color);
        box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
    }

.btn {
    border-radius: 12px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: 2px solid ;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #1e4080);
    border-color: var(--primary-color);
    color: var(--white);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #1e4080, var(--primary-color));
        border-color: #1e4080;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
        color: var(--white);
    }

.btn-warning {
    background: linear-gradient(135deg, var(--secondary-color), #ffdb4d);
    border-color: var(--secondary-color);
    color: var(--dark-color);
}

    .btn-warning:hover {
        background: linear-gradient(135deg, #ffdb4d, var(--secondary-color));
        border-color: #e0a800;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
        color: var(--dark-color);
    }

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

    .btn-outline-primary:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    }

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

    .btn-outline-light:hover {
        background: var(--white);
        color: var(--primary-color);
        transform: translateY(-2px);
    }

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
    }

.alert {
    border-radius: 15px;
    border: none;
    padding: 20px;
    margin-bottom: 25px;
}

/* Enhanced Contact Form Styles */
.contact-form-card-enhanced {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef !important;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
}

.contact-form-card-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.form-control-enhanced, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control-enhanced:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
    transform: translateY(-1px);
}

.form-floating > label {
    padding: 1rem 0.75rem;
    font-weight: 500;
    color: var(--muted-color);
}

.form-floating > .form-control-enhanced:focus ~ label,
.form-floating > .form-control-enhanced:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-enhanced {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), #1e4080);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
    background: linear-gradient(135deg, #1e4080, var(--primary-color));
}

.btn-enhanced .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.btn-enhanced:hover .btn-shine {
    left: 100%;
}

/* Enhanced Contact Info Styles */
.contact-info-card-enhanced {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef !important;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px 15px 0 0;
}

.contact-info-card-enhanced .contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-info-card-enhanced .contact-badges {
    margin-top: auto;
}

.contact-item-enhanced {
    transition: all 0.3s ease;
    border-left-width: 4px !important;
}

.contact-item-enhanced:hover {
    transform: translateX(5px);
    background: var(--white) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item-enhanced:hover .contact-icon-wrapper {
    transform: scale(1.1);
    background: rgba(44, 90, 160, 0.2);
}

.operating-hours-enhanced {
    background: linear-gradient(135deg, var(--primary-color), #1e4080) !important;
    transition: all 0.3s ease;
}

.operating-hours-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.badge-item {
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-2px);
    background: var(--white) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
    position: relative;
}

.contact-form-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-info-header {
    position: relative;
}

.contact-info-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

/* Form Submit Section */
.form-submit-section {
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    margin-top: auto !important;
}

.contact-form-enhanced {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-control-middle {
        width: 40px;
        height: 40px;
        bottom: -70px;
    }

    .carousel-control-prev.testimonial-control-middle {
        transform: translateX(-60px);
    }

    .carousel-control-next.testimonial-control-middle {
        transform: translateX(20px);
    }

    .testimonials-section-with-controls {
        padding-bottom: 100px !important;
    }

    /* Inline chat responsive */
    .chat-section-inline {
        max-width: 100%;
    }

    .chat-window-inline {
        max-width: 100%;
    }

    .chat-intro {
        text-align: center !important;
    }

    .d-flex.justify-content-end {
        justify-content: center !important;
    }

    /* Enhanced tours responsive */
    .tour-image-enhanced {
        height: 240px;
    }

    .tour-title-enhanced {
        font-size: 1.2rem;
        min-height: auto;
    }

    .tour-footer-enhanced {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .price-section-enhanced {
        align-items: center;
    }

    .tour-btn-enhanced {
        width: 100%;
        text-align: center;
    }

    .tour-quick-info {
        flex-direction: column;
        gap: 8px;
    }

    /* Contact form responsive */
    .contact-form-card-enhanced,
    .contact-info-card-enhanced {
        padding: 1.5rem !important;
    }
    
    .btn-enhanced {
        width: 100%;
        padding: 15px !important;
    }
    
    .contact-item-enhanced {
        padding: 1rem !important;
    }
    
    .form-control-enhanced {
        padding: 12px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .trust-badges-hero {
        flex-direction: column;
        gap: 15px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
        margin: 10px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-control-middle {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev.hero-control-middle {
        left: 15px;
    }

    .carousel-control-next.hero-control-middle {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-control-middle {
        display: none;
    }

    .testimonials-section-with-controls {
        padding-bottom: 60px !important;
    }

    /* Inline chat mobile */
    .chat-window-inline .chat-messages {
        height: 250px;
    }

    .chat-toggle-inline {
        width: 100%;
        text-align: center;
    }

    /* Enhanced tours mobile */
    .tour-image-enhanced {
        height: 200px;
    }

    .tour-meta-enhanced {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .tour-highlights-enhanced {
        padding: 12px;
    }

    .highlight-item {
        font-size: 0.85rem;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .hero-main-title::after {
        width: 60px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .hero-indicators {
        bottom: 60px;
    }

    .floating-element {
        display: none;
    }
}

/* Enhanced Booking Form Styles */
.booking-form-card-enhanced {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef !important;
    position: relative;
    transition: all 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
}

.booking-form-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
}

.booking-form-card-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.booking-form-enhanced {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-form-header {
    position: relative;
    margin-bottom: 2rem;
}

.booking-form-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(44, 90, 160, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
}

.form-section:hover {
    background: rgba(44, 90, 160, 0.05);
    border-color: rgba(44, 90, 160, 0.2);
}

.section-title {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Pricing Tiers Styles */
.pricing-tiers-section {
    margin-top: 1rem;
}

.participant-card {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef !important;
    background: var(--white) !important;
}

.participant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color) !important;
}

.participant-card .badge {
    font-size: 0.85rem;
    padding: 6px 12px;
    font-weight: 600;
}

.single-pricing-section .participant-card {
    border: 2px solid var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(44, 90, 160, 0.02)) !important;
}

/* Booking Summary Styles */
.booking-summary-enhanced {
    background: linear-gradient(135deg, #f8f9fa, var(--white)) !important;
    border: 2px solid var(--primary-color) !important;
    position: relative;
    transition: all 0.3s ease;
}

.booking-summary-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px 12px 0 0;
}

.booking-summary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.15);
}

.summary-details {
    font-size: 0.95rem;
}

.summary-details .text-muted {
    color: var(--muted-color) !important;
}

/* Enhanced Modal Styles */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
}

.modal-header.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), #1e4080) !important;
}

.terms-section {
    padding: 1rem;
    background: rgba(44, 90, 160, 0.02);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.terms-section h6 {
    color: var(--primary-color);
}

.terms-section .list-unstyled li {
    padding: 0.25rem 0;
    color: var(--dark-color);
}

/* Responsive Enhancements for Booking */
@media (max-width: 768px) {
    .booking-form-card-enhanced {
        padding: 1.5rem !important;
    }
    
    .form-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .participant-card {
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .booking-summary-enhanced {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .booking-form-header h3 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .participant-card .badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .form-section {
        padding: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-particles,
    .floating-elements,
    .animate-fadeInDown,
    .animate-fadeInUp,
    .animate-slideInLeft,
    .animate-slideInRight,
    .animate-bounceInUp {
        animation: none;
    }

    .hero-badge::before,
    .btn-shine {
        display: none;
    }
}

@media print {
    .hero-particles,
    .scroll-indicator,
    .hero-control,
    .floating-elements,
    .chat-widget {
        display: none !important;
    }

    .feature-card,
    .tour-card,
    .testimonial-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
.details-control-middle {
    top: 50%;
    transform: translateY(-50%);
    width: 45px; /* Slightly bigger click area */
    height: 45px;
    background-color: rgba(0, 0, 0, 0.85); /* Darker for max contrast */
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.7); /* Shadow for separation */
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    position:absolute;
    justify-content: center;
}

    .details-control-middle:hover {
        background-color: rgba(0, 0, 0, 1); /* Solid black on hover */
        transform: translateY(-50%) scale(1.15);
    }
.details-control-prev-middle {
    left: 15px; /* padding from left */
}

.details-control-next-middle {
    right: 15px; /* padding from right */
}

    .details-control-middle .carousel-control-prev-icon,
    .details-control-middle .carousel-control-next-icon {
        filter: brightness(0) invert(1) drop-shadow(0 0 3px rgba(0,0,0,0.8)); /* White arrows with subtle outline */
        width: 20px; /* Slightly bigger arrow */
        height: 20px;
        background-size: 100% 100%;
    }

