/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}



/* Add this to your CSS file or style tag */
.owl-carousel .owl-carousel-item {
    position: relative;
    overflow: hidden;
}

/* Desktop - Fixed Height */
@media (min-width: 992px) {
    .owl-carousel .owl-carousel-item img {
        width: 100%;
        height: 90vh; /* Adjust this value as needed */
        object-fit: cover;
        object-position: center;
    }
    
    .owl-carousel-inner {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }
}



/* Optional: Adjust content positioning */
.owl-carousel-inner .container {
    width: 100%;
}

/* Ensure text remains readable */
.display-1 {
    font-size: calc(1.5rem + 3vw);
    line-height: 1.2;
}




/* Footer Partners Image Sizing */
.footer-partners img {
    height: 25px !important; /* Reduced from 30px */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Adjust the text size to match */
.footer-partners .text-light {
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .footer-partners {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    .footer-partners .text-light {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .footer-partners img {
        height: 22px !important; /* Slightly smaller on mobile */
        margin: 0 4px !important;
    }
}

/* Hover effects (optional) */
.footer-partners img:hover {
    transform: scale(1.05);
    opacity: 1;
}






  /* Safari Experiences Section - Scoped Styles */
.safari-experiences-section .section-title {
    color: #e67e22;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
    display: block;
}

.safari-experiences-section .display-5 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

/* Card Styling - Scoped to section */
.safari-experiences-section .position-relative {
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.safari-experiences-section .position-relative:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.safari-experiences-section .rounded-top {
    border-top-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
}

.safari-experiences-section .rounded-bottom {
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.safari-experiences-section .bg-white {
    background-color: #fff !important;
}

/* Icon Styling - Scoped */
.safari-experiences-section .bg-light {
    background-color: #f8f9fa !important;
}

.safari-experiences-section .rounded-circle {
    border-radius: 50% !important;
}

.safari-experiences-section .text-primary {
    color: #e67e22 !important;
}

.safari-experiences-section .fa-lg {
    font-size: 1.33em;
    line-height: 0.75em;
    vertical-align: -15%;
}

/* Text Styling - Scoped */
.safari-experiences-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.safari-experiences-section p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Adjustments - Scoped */
@media (max-width: 992px) {
    .safari-experiences-section .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .safari-experiences-section .display-5 {
        font-size: 1.8rem;
    }
    
    .safari-experiences-section h3 {
        font-size: 1.3rem;
    }
}

/* Testimonial Section - Scoped */
.testimonial-section .testimonial-content p {
    color: white !important;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-section .testimonial-content span {
    color: white !important;
    font-style: italic;
}

.testimonial-section .testimonial-content h4 {
    color: white !important;
    font-weight: 600;
}

.testimonial-section .fa-quote-left {
    color: white !important;
    opacity: 0.7 !important;
}

/* Signature Safari Packages - Scoped */
.signature-safaris-section .position-relative {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.signature-safaris-section .position-relative:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.signature-safaris-section .package-img {
    height: 220px;
    overflow: hidden;
}

.signature-safaris-section .package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.signature-safaris-section .position-relative:hover .package-img img {
    transform: scale(1.05);
}

.signature-safaris-section .package-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.signature-safaris-section .package-overlay small {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.signature-safaris-section .bg-primary { background-color: #e67e22 !important; }
.signature-safaris-section .bg-success { background-color: #28a745 !important; }
.signature-safaris-section .bg-warning { background-color: #ffc107 !important; }
.signature-safaris-section .bg-info { background-color: #17a2b8 !important; }
.signature-safaris-section .bg-danger { background-color: #dc3545 !important; }
.signature-safaris-section .bg-dark { background-color: #343a40 !important; }

.signature-safaris-section .text-primary { color: #e67e22 !important; }

.signature-safaris-section .p-4 {
    padding: 1.5rem !important;
}

.signature-safaris-section .package-highlights p {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.signature-safaris-section .fa-check-circle {
    color: #e67e22;
}

.signature-safaris-section .btn-primary {
    background-color: #e67e22;
    border-color: #e67e22;
}

.signature-safaris-section .btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
}

@media (max-width: 768px) {
    .signature-safaris-section .package-img {
        height: 180px;
    }
    
    .signature-safaris-section .p-4 {
        padding: 1rem !important;
    }
}

.review-link {
    text-decoration: none;
    color: inherit;
}

#reviewBadge {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}

#reviewBadge:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 5px rgba(161, 119, 41, 0.1);
}

#stars {
    color: #f5d444; /* Gold/yellow color for stars */
    letter-spacing: 1px;
}

#ratingValue {
    font-weight: bold;
    margin-left: 2px;
}

#reviewCount {
    font-weight: 600;
    margin-left: 2px;
}





/* Safari Inquiry Section Styles */
.section-title {
    color: #d8c37c;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: #d8c37c;
    bottom: -5px;
    left: 25%;
}

.display-5 {
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

/* Contact Info Box Styles */
.bg-light {
    background-color: #f9f9f9 !important;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

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

/* Form Styles */
.form-floating > label {
    color: #777;
    padding: 0.5rem 0.75rem;
}

.form-control, .form-select {
    border: 1px solid #ddd;
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: #d8c37c;
    box-shadow: 0 0 0 0.25rem rgba(216, 195, 124, 0.25);
}

textarea.form-control {
    height: auto !important;
    min-height: 120px;
}

/* Checkbox Styles */
.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
}

.form-check-input:checked {
    background-color: #d8c37c;
    border-color: #d8c37c;
}

.form-check-label {
    margin-left: 0.5em;
    color: #555;
}

/* Button Styles */
.btn-primary {
    background-color: #d8c37c;
    border-color: #d8c37c;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #c5b269;
    border-color: #c5b269;
    transform: translateY(-2px);
}

/* Contact Icons */
.flex-shrink-0 {
    transition: all 0.3s;
}

.flex-shrink-0:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .col-lg-4, .col-lg-8 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
    
    .form-check {
        margin-bottom: 0.5rem;
    }
    
    .col-md-4, .col-md-6 {
        margin-bottom: 1rem;
    }
}

/* Animation for Form Elements */
.wow.fadeInUp {
    animation-duration: 0.8s;
}

/* List Items in Why Book With Us */
.list-unstyled li {
    padding: 0.3rem 0;
    position: relative;
}

.list-unstyled li i {
    color: #d8c37c;
    font-size: 1.1rem;
}

/* Quick Contact Links */
.text-dark {
    transition: color 0.3s;
}

.text-dark:hover {
    color: #d8c37c !important;
    text-decoration: none;
}

/* Form Group Labels */
.form-group label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
    display: block;
}




    /* Scoped Safari Collection Styles - Modern Redesign */
    .safari-collection {
        max-width: 1200px;
        margin: 0 auto;
        padding: 5rem 2rem;
        font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        color: #2d3436;
        background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100px);
    }
    
    /* All selectors now prefixed with .safari-collection */
    .safari-collection .collection-header {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
    }
    
    .safari-collection .collection-header::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: #e17055;
        margin: 1.5rem auto 0;
        border-radius: 2px;
    }
    
    .safari-collection .collection-subtitle {
        font-size: 1rem;
        color: #e17055;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .safari-collection .collection-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #2d3436;
        line-height: 1.2;
    }
    
    .safari-collection .collection-description {
        font-size: 1.15rem;
        line-height: 1.7;
        max-width: 800px;
        margin: 0 auto 2rem;
        color: #636e72;
    }
    
    /* Safari Cards */
    .safari-collection .safari-packages {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
    
    .safari-collection .safari-card {
        display: flex;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        border: 1px solid #f0f0f0;
    }
    
    .safari-collection .safari-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-color: #ffece6;
    }
    
    .safari-collection .safari-image {
        flex: 1;
        min-height: 380px;
        position: relative;
        overflow: hidden;
    }
    
    .safari-collection .safari-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.3) 100%);
        z-index: 1;
    }
    
    .safari-collection .safari-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }
    
    .safari-collection .safari-card:hover .safari-image img {
        transform: scale(1.05);
    }
    
    .safari-collection .safari-content {
        flex: 1;
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        background: #fff;
    }
    
    .safari-collection .safari-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
        color: #2d3436;
        font-weight: 700;
        position: relative;
    }
    
    .safari-collection .safari-card h3::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background: #e17055;
        margin-top: 1rem;
        border-radius: 3px;
    }
    
    .safari-collection .safari-overview {
        line-height: 1.7;
        margin-bottom: 1.75rem;
        color: #636e72;
        font-size: 1.05rem;
    }
    
    .safari-collection .safari-details {
        display: flex;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .safari-collection .detail-group {
        flex: 1;
    }
    
    .safari-collection .safari-details p {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
        color: #636e72;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .safari-collection .icon {
        display: inline-block;
        width: 22px;
        height: 22px;
        margin-right: 12px;
        background-size: contain;
        background-repeat: no-repeat;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .safari-collection .calendar { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e17055"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10z"/></svg>'); }
    .safari-collection .location { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e17055"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>'); }
    .safari-collection .lodge { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e17055"><path d="M17 15h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm-3.26 0l1.26.84V7z"/><path d="M10 3v1.51l2 1.33V5h9v14h-4v2h6V3z"/><path d="M8.5 11.5L10 10.28V13H3V8h2v2.5l1.5-1 3 3zm-1.23 1.61L10 14.97V21h2v-3h3v-4h3V7h-9v6.11zM5 16h2v2H5z"/></svg>'); }
    .safari-collection .vehicle { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e17055"><path d="M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.85 7h10.29l1.08 3.11H5.77L6.85 7zM19 17H5v-5h14v5z"/><circle cx="7.5" cy="14.5" r="1.5"/><circle cx="16.5" cy="14.5" r="1.5"/></svg>'); }
    .safari-collection .guide { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e17055"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>'); }
    .safari-collection .camera { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e17055"><path d="M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/><path d="M12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>'); }
    .safari-collection .binoculars { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e17055"><path d="M11 6h2v7h-2z"/><path d="M20 4.5C20 3.12 18.88 2 17.5 2S15 3.12 15 4.5c0 .46.12.89.33 1.25l-2.09 2.09C12.52 7.6 12 8.22 12 8.95v.05c0 1.12.88 2 2 2 .73 0 1.35-.52 1.51-1.24l2.09-2.09c.36.21.79.33 1.25.33 1.38 0 2.5-1.12 2.5-2.5zm-5.5 0c0-.28.22-.5.5-.5s.5.22.5.5-.22.5-.5.5-.5-.22-.5-.5zM6.5 22C5.12 22 4 20.88 4 19.5S5.12 17 6.5 17s2.5 1.12 2.5 2.5S7.88 22 6.5 22zm0-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5.5-4v-2h-1v2H9v2h3v5h2v-5h3v-2h-5z"/></svg>'); }
    
    .safari-collection .detail-label {
        font-weight: 600;
        color: #2d3436;
        margin-right: 6px;
    }
    
    .safari-collection .safari-footer {
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    
    .safari-collection .price {
        font-size: 1.5rem;
        font-weight: 700;
        color: #e17055;
    }
    
    .safari-collection .price::before {
        content: 'From ';
        font-size: 0.9rem;
        font-weight: 500;
        color: #636e72;
    }
    
    .safari-collection .action-buttons {
        display: flex;
        gap: 1rem;
    }
    
    /* Scoped button classes to only affect buttons within safari-collection */
    .safari-collection .btn {
        padding: 0.9rem 1.75rem;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    
    .safari-collection .btn.primary {
        background-color: #e17055;
        color: white;
        border: 2px solid #e17055;
    }
    
    .safari-collection .btn.primary:hover {
        background-color: #d35400;
        border-color: #d35400;
        transform: translateY(-2px);
    }
    
    .safari-collection .btn.secondary {
        background-color: transparent;
        color: #e17055;
        border: 2px solid #e17055;
    }
    
    .safari-collection .btn.secondary:hover {
        background-color: rgba(225, 112, 85, 0.08);
        transform: translateY(-2px);
    }
    
    /* Scoped text links */
    .safari-collection .text-link {
        color: #e17055;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease;
        position: relative;
    }
    
    .safari-collection .text-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #e17055;
        transition: width 0.3s ease;
    }
    
    .safari-collection .text-link:hover {
        color: #d35400;
    }
    
    .safari-collection .text-link:hover::after {
        width: 100%;
    }
    
    /* Alternate Layout */
    .safari-collection .alt-layout {
        flex-direction: row-reverse;
    }
    
    /* Responsive */
    @media (max-width: 900px) {
        .safari-collection {
            padding: 3rem 1.5rem;
        }
        
        .safari-collection .collection-title {
            font-size: 2rem;
        }
        
        .safari-collection .collection-description {
            font-size: 1.05rem;
        }
        
        .safari-collection .safari-card,
        .safari-collection .alt-layout {
            flex-direction: column;
        }
        
        .safari-collection .safari-image {
            min-height: 280px;
        }
        
        .safari-collection .safari-content {
            padding: 2rem;
        }
        
        .safari-collection .safari-card h3 {
            font-size: 1.6rem;
        }
        
        .safari-collection .safari-details {
            flex-direction: column;
            gap: 1rem;
        }
        
        .safari-collection .safari-footer {
            flex-direction: column;
            gap: 1.5rem;
            align-items: flex-start;
        }
        
        .safari-collection .action-buttons {
            width: 100%;
        }
        
        .safari-collection .btn {
            width: 100%;
            text-align: center;
        }
    }




    /* Safari Content Styles - Scoped to Only Affect These Sections */
/* Font imports - already in your head section */
/* Font Awesome icons - already in your head section */

/* Safari Content Container Styles */
.safari-content-container .bg-white,
.safari-content-container .bg-light {
    font-family: 'Montserrat', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.safari-content-container h3.text-center {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.safari-content-container .font_14.text-center {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Styles */
.safari-content-container .card {
    transition: all 0.3s ease;
    border-radius: 8px !important;
}

.safari-content-container .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.safari-content-container .card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.safari-content-container .card-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.safari-content-container .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.safari-content-container .card-title a:hover {
    color: #e67e22;
}

.safari-content-container .card-text {
    color: #555;
    margin-bottom: 1rem;
}

.safari-content-container .text-success {
    color: #b3974b !important;
    font-weight: 600;
}

/* Icon Styles */
.safari-content-container h5 .fa {
    color: #b3974b;
    width: 24px;
    text-align: center;
}

/* Image Styles */
.safari-content-container .img-fluid.rounded.shadow {
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Form Styles */
.safari-content-container .sticky-sidebar {
    position: sticky;
    top: 20px;
    border-radius: 8px !important;
}

.safari-content-container .form-control,
.safari-content-container .form-select {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 6px !important;
}

.safari-content-container .btn-success {
    background-color: #b3974b;
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.safari-content-container .btn-success:hover {
    background-color: #b3974b;
    transform: translateY(-2px);
}

/* Text Link Styles */
.safari-content-container .text-link {
    color: #e67e22;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.safari-content-container .text-link:hover {
    color: #d35400;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .safari-content-container h3.text-center {
        font-size: 1.75rem;
    }
    
    .safari-content-container .font_14.text-center {
        font-size: 1rem;
    }
    
    .safari-content-container .card-img-top {
        height: 180px;
    }
}

/* Safari Popup Styles */
#classic-safari-popup {
    font-family: 'Montserrat', sans-serif;
}

#classic-safari-popup .safari-popup {
    max-width: 90%;
    width: 500px;
}

#classic-safari-popup .popup-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

#classic-safari-popup h3 {
    font-family: 'Playfair Display', serif;
}

#classic-safari-popup button {
    transition: all 0.3s;
}

#classic-safari-popup button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}


/* Preloader overlay */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff url('https://i.gifer.com/ZZ5H.gif') no-repeat center center;
  background-size: 80px 80px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

/* Hide after fade */
#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}





/* ===== Safari Packages With Tabs - Self Contained Styles ===== */
.safari-packages-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.safari-packages-section .section-header {
    margin-bottom: 60px;
}

.safari-packages-section .section-subtitle {
    color: #e67e22;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.safari-packages-section .section-title {
    color: #2c3e50;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.safari-packages-section .header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.safari-packages-section .header-divider .divider-line {
    width: 60px;
    height: 2px;
    background: #e67e22;
    display: inline-block;
}

.safari-packages-section .header-divider i {
    color: #e67e22;
    margin: 0 15px;
    font-size: 18px;
}

.safari-card .price-note {
    color: #7f8c8d;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 15px;
    display: block;
}

/* Safari Tabs Styles */
.safari-tabs {
    margin: 40px auto 30px;
    max-width: 800px;
}

.safari-tabs .nav-tabs {
    border: none;
    justify-content: center;
}

.safari-tabs .nav-link {
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.safari-tabs .nav-link:hover {
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
}

.safari-tabs .nav-link.active {
    color: #fff;
    background: #e67e22;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.safari-tabs .nav-link.active:hover {
    color: #fff;
}

.safari-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.safari-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.safari-card.featured {
    box-shadow: 0 5px 25px rgba(230, 126, 34, 0.2);
}

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

.safari-card .card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.safari-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.safari-card:hover .card-image img {
    transform: scale(1.1);
}

.safari-card .card-badge {
    position: absolute;
    top: 20px;
    right: -5px;
    background: #e67e22;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.safari-card .card-content {
    padding: 25px;
    position: relative;
}

.safari-card .rating {
    color: #f39c12;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.safari-card .rating i {
    margin-right: 5px;
}

.safari-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.safari-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: 0 95%;
    transition: all 0.3s ease;
}

.safari-card h3 a:hover {
    color: #e67e22;
    background-size: 100% 2px;
}

.safari-card .price {
    color: #e67e22;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.safari-card .price span {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 400;
}

.safari-card .card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.safari-card .meta-item {
    display: flex;
    align-items: center;
    color: #7f8c8d;
    font-size: 14px;
}

.safari-card .meta-item i {
    margin-right: 8px;
    color: #e67e22;
}

.safari-card .card-hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    transition: all 0.4s ease;
    opacity: 0;
}

.safari-card:hover .card-hover-content {
    bottom: 0;
    opacity: 1;
}

.safari-card .explore-btn {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.safari-card .explore-btn:hover {
    background: #d35400;
    transform: translateX(5px);
}

.safari-card .explore-btn i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.safari-card .explore-btn:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .safari-packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 991px) {
    .safari-tabs .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .safari-packages-section {
        padding: 60px 0;
    }
    
    .safari-packages-section .section-title {
        font-size: 36px;
    }
    
    .safari-card h3 {
        font-size: 20px;
    }
    
    .safari-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .safari-tabs .nav-link {
        white-space: nowrap;
    }
}

@media (max-width: 575px) {
    .safari-packages-section .section-title {
        font-size: 30px;
    }
    
    .safari-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .safari-card .card-image {
        height: 200px;
    }
    
    .safari-tabs .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }
}






/* === Safari Collection: Scoped Styles === */
.safari-collection {
  padding: 80px 0;
  background-color: #fefefe;
}

.safari-collection .collection-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.safari-collection .collection-subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #e67e22;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.safari-collection .collection-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 20px;
}

.safari-collection .collection-description {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.6;
}

.safari-collection .collection-description .text-link {
  color: #e67e22;
  text-decoration: none;
  font-weight: 600;
}

.safari-collection .collection-description .text-link:hover {
  text-decoration: underline;
}

.safari-collection .safari-packages {
  display: grid;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.safari-collection .safari-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.safari-collection .safari-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.safari-collection .safari-card.alt-layout {
  direction: rtl;
}

.safari-collection .safari-card.alt-layout .safari-content {
  direction: ltr;
}

.safari-collection .safari-image {
  position: relative;
  height: 100%;
  min-height: 300px;
}

.safari-collection .safari-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.safari-collection .safari-card:hover .safari-image img {
  transform: scale(1.05);
}

.safari-collection .card-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: #e67e22;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.safari-collection .safari-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.safari-collection .safari-content h3 {
  font-size: 24px;
  color: #34495e;
  margin-bottom: 10px;
}

.safari-collection .rating {
  font-size: 14px;
  font-weight: 600;
  color: #f39c12;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.safari-collection .rating i {
  margin-right: 5px;
}

.safari-collection .safari-overview {
  font-size: 15px;
  line-height: 1.6;
  color: #7f8c8d;
  margin-bottom: 25px;
  flex-grow: 1;
}

.safari-collection .safari-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.safari-collection .detail-group p {
  font-size: 14px;
  color: #7f8c8d;
  display: flex;
  align-items: center;
  gap: 6px;
}

.safari-collection .detail-group .detail-label {
  font-weight: 600;
  color: #2c3e50;
}

.safari-collection .safari-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: auto;
}

.safari-collection .price {
  font-size: 20px;
  font-weight: 700;
  color: #e67e22;
}

.safari-collection .price span {
  font-size: 13px;
  color: #7f8c8d;
  font-weight: 400;
}

.safari-collection .action-buttons {
  display: flex;
  gap: 10px;
}

.safari-collection .btn {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.safari-collection .btn.primary {
  background-color: #e67e22;
  color: #fff;
}

.safari-collection .btn.primary:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

.safari-collection .btn.secondary {
  background: transparent;
  color: #e67e22;
  border: 1px solid #e67e22;
}

.safari-collection .btn.secondary:hover {
  background-color: #fff4e6;
}

/* === Responsive === */
@media (max-width: 991px) {
  .safari-collection .safari-card,
  .safari-collection .safari-card.alt-layout {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .safari-collection .safari-image {
    min-height: 250px;
  }
}

@media (max-width: 767px) {
  .safari-collection {
    padding: 60px 0;
  }

  .safari-collection .collection-title {
    font-size: 28px;
  }

  .safari-collection .safari-details {
    grid-template-columns: 1fr;
  }

  .safari-collection .safari-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .safari-collection .btn {
    width: 100%;
    text-align: center;
  }
}


.card-img-top {
  width: 100%;
  height: 250px; /* or auto-adjustable via media query */
  object-fit: cover;
}
@media (max-width: 576px) {
  .card-img-top {
    height: 180px;
  }
}


/* Add this to your existing CSS */
.calendar-container {
  overflow: hidden;
  width: 100%;
}

.calendar-month {
  width: 100%;
  float: left;
  transition: transform 0.3s ease;
}

.calendar-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 15px 0;
}

/* Hide all months except the first one initially */
.calendar-month:not(:first-child) {
  display: none;
}

/* Alternative solution if you prefer sliding animation */
/*
.calendar-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  height: 200px; // Adjust based on your calendar height
}

.calendar-month {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: transform 0.3s ease;
}

.calendar-month:nth-child(2) {
  transform: translateX(100%);
}
*/


/* Prevent horizontal scroll globally */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}


/* Hide common preloaders */
#preloader,
.preloader,
.loading,
.loader,
#loader,
.page-loader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
/* Hide preloaders instantly */
#preloader,
.preloader,
.loading,
.loader,
#loader,
.page-loader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}



/* Safari Hero Section - Scoped CSS */
.tour-hero {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.image-slideshow {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

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

.slide-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: rgba(0,0,0,0.5);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(2px);
}

.slide-prev, 
.slide-next {
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.slide-indicator {
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

.tour-description {
    flex: 1;
    min-width: 0;
    padding: 0 0.5rem;
}

.tour-description h1 {
    color: #e67e22;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.tour-highlights {
    color: #555;
    font-size: clamp(0.875rem, 1.25vw, 1rem);
    font-weight: 500;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.tour-summary p {
    line-height: 1.6;
    color: #444;
    margin-bottom: 0.875rem;
    font-size: clamp(0.875rem, 1.1vw, 1rem);
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.fact-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.fact-icon {
    font-size: 1rem;
    background: rgba(230, 126, 34, 0.1);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    flex-shrink: 0;
}

.fact-item h4 {
    margin: 0;
    color: #333;
    font-size: 0.875rem;
    font-weight: 600;
}

.fact-item p {
    margin: 0.25rem 0 0;
    color: #666;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }
    
    .image-slideshow {
        width: 100%;
        max-width: 100%;
    }
    
    .tour-description {
        width: 100%;
        padding: 0;
    }
    
    .quick-facts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .quick-facts {
        grid-template-columns: 1fr;
    }
    
    .slide-nav {
        padding: 0.5rem;
        gap: 0.5rem;
    }
}

/* Font Import - Add this at the top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');




/* Fallback featured image for meta tags */
meta[property="og:image"]:not([content]),
meta[property="og:image"][content=""],
meta[property="og:image"][content*="undefined"],
meta[property="og:image"][content*="null"] {
  content: url('img/zuhuratours.webp') !important;
}

/* Fallback for Twitter card image */
meta[property="twitter:image"]:not([content]),
meta[property="twitter:image"][content=""],
meta[property="twitter:image"][content*="undefined"],
meta[property="twitter:image"][content*="null"] {
  content: url('img/zuhuratours.webp') !important;
}

/* JavaScript fallback for broken images - this will need to be added to your HTML */
.fallback-featured-image {
  position: relative;
}
.fallback-featured-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/zuhuratours.webp') center/cover no-repeat;
  display: none;
}
.fallback-featured-image img.error + ::after {
  display: block;
}





/* Calendar Card Styles */
.availability-calendar {
    margin: 15px 0;
    font-size: 0.85rem;
    max-width: 100%;
}

/* Calendar header (month/year) */
.availability-calendar .calendar-header {
    font-size: 0.9em;
    padding: 5px 0;
    margin-bottom: 5px;
}

/* Calendar grid */
.availability-calendar .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

/* Calendar day cells */
.availability-calendar .calendar-day {
    padding: 5px;
    min-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
}

/* Available dates */
.availability-calendar .available {
    background-color: #e8f5e9;
    border-radius: 3px;
}

/* Fully booked dates */
.availability-calendar .booked {
    background-color: #ffebee;
    border-radius: 3px;
    text-decoration: line-through;
    opacity: 0.7;
}

/* Day names (Mon, Tue, etc) */
.availability-calendar .day-name {
    font-size: 0.7em;
    text-align: center;
    padding: 3px 0;
    font-weight: bold;
}

/* Navigation arrows */
.availability-calendar .calendar-nav {
    font-size: 0.8em;
    padding: 3px 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .availability-calendar {
        margin: 10px 0;
    }
    
    .availability-calendar .calendar-day {
        padding: 3px;
        min-height: 20px;
        font-size: 0.7em;
    }
    
    .availability-calendar .day-name {
        font-size: 0.6em;
    }
}

@media (min-width: 769px) {
    .availability-calendar {
        max-width: 300px;
    }
}


/* Our Services Section - Redesigned */
.services-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('images/tz.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 82, 126, 0.4);
}

.services-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.services-header {
    margin-bottom: 3rem;
}

.services-title {
    font-family: 'Yesteryear', cursive;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.service-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #c19b76;
}

.service-link:hover:after {
    transform: scaleX(1);
    background-color: #c19b76;
}

.featured-brands {
    margin-top: 4rem;
}

.featured-title {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.brand-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.brand-logo:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .brands-grid {
        gap: 1.5rem;
    }
    
    .brand-logo {
        height: 30px;
    }
}






/* Luxury Destinations Section */
.about-us-area {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.about-us-area .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-us-left {
    padding-right: 30px;
}

.about-us-left h6.text-uppercase {
    color: #c19b76;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-us-left h3 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-us-left h3 b {
    color: #c19b76;
    font-weight: 700;
}

.about-us-left p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.list-wrap ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.list-wrap li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.list-wrap li:before {
    content: "•";
    color: #c19b76;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.list-wrap li strong {
    color: #333;
}

.primary-btn {
    display: inline-block;
    background: #c19b76;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #c19b76;
}

.primary-btn:hover {
    background: transparent;
    color: #c19b76;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 155, 118, 0.3);
}

.destination-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    height: 100%;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-10px);
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.destination-overlay h4 {
    margin: 0 0 5px;
    font-size: 22px;
}

.destination-overlay h4 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.destination-overlay h4 a:hover {
    color: #c19b76;
}

.destination-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-us-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-us-left h3 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .about-us-area {
        padding: 60px 0;
    }
    
    .about-us-left h3 {
        font-size: 26px;
    }
    
    .destination-card img {
        height: 220px;
    }
    
    .destination-overlay {
        padding: 15px;
    }
    
    .destination-overlay h4 {
        font-size: 18px;
    }
}










/* Tour Packages Section */
.ftco-section.bg-light {
    padding: 7em 0;
    background-color: #f8f9fa !important;
}

.heading-section .subheading {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    color: #f89d13;
    font-weight: 600;
    letter-spacing: 2px;
}

.heading-section h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
}

.destination {
    background: #fff;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px -5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.destination:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.img-2 {
    height: 250px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.icon {
    width: 60px;
    height: 60px;
    background: #f89d13;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.img-2:hover .icon {
    opacity: 1;
}

.icon-search2:before {
    content: "\f002";
    color: #fff;
    font-size: 20px;
}

.text {
    padding: 20px;
}

.text h3 a {
    color: #000;
    font-weight: 600;
}

.text .rate {
    color: #f89d13;
}

.text .price {
    font-size: 24px;
    color: #f89d13;
    font-weight: 700;
}

.text .days {
    font-size: 14px;
    color: #6c757d;
}

.text .bottom-area {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Testimonial Section */
.testimony-section {
    padding: 7em 0;
}

.testimony-section .subheading {
    font-size: 16px;
    color: #f89d13;
    font-weight: 600;
    letter-spacing: 2px;
}

.testimony-section h2 {
    font-size: 40px;
    font-weight: 600;
}

.carousel-testimony .item {
    padding: 0 15px;
}

.testimony-wrap {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px -5px rgba(0,0,0,0.1);
}

.testimony-wrap .text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
}

.testimony-wrap .name {
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.testimony-wrap .position {
    font-size: 14px;
    color: #6c757d;
}

/* Group Joining Safari Section */
.ftco-section {
    padding: 7em 0;
}

/* Map & Contact Section */
#map-section {
    padding: 7em 0;
}

.map-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.map-container, .form-container {
    flex: 1;
    min-width: 300px;
}

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px -5px rgba(0,0,0,0.1);
}

/* Licenses Section */
.license-card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px -5px rgba(0,0,0,0.1);
    height: 100%;
}

.license-card h4 {
    margin: 20px 0;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .map-contact-wrapper {
        flex-direction: column;
    }
    
    .map-container, .form-container {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .heading-section h2, 
    .testimony-section h2 {
        font-size: 30px;
    }
    
    .ftco-section, 
    .testimony-section, 
    #map-section {
        padding: 5em 0;
    }
}





body {
  background: url('images/price-bg.png') no-repeat center center fixed;
  background-size: cover;
}




.hero-wrap {
    position: relative;
    height: 50vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
}

.hero-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

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

.hero-wrap .slider-text {
    height: 50vh;
    min-height: 600px;
}

.hero-wrap .breadcrumbs {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    color: rgba(255,255,255,0.8);
}

.hero-wrap .breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.hero-wrap .breadcrumbs a:hover {
    color: #f8b500;
}

.hero-wrap .breadcrumbs span {
    color: rgba(255,255,255,0.5);
}

.hero-wrap h1 {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .hero-wrap h1 {
        font-size: 3rem;
    }
    
    .hero-wrap .breadcrumbs {
        font-size: 12px;
    }
}

@media (max-width: 680px) {
    .hero-wrap h1 {
        font-size: 2.5rem;
    }
    
    .hero-wrap {
        background-attachment: scroll;
    }
}

/* Animation for the text elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-wrap .ftco-animate {
    animation: fadeInUp 1s ease-out both;
}

.hero-wrap .breadcrumbs {
    animation-delay: 0.3s;
}

.hero-wrap h1 {
    animation-delay: 0.6s;
}







/* Tanzania Destinations & Parks Section */
#tanzania-destinations,
#tanzania-parks,
#tanzania-tips,
#tanzania-packing-list {
    font-family: 'Arial', sans-serif;
    padding: 4rem 0;
}

#tanzania-destinations .heading-section,
#tanzania-parks .heading-section,
#tanzania-tips .heading-section,
#tanzania-packing-list .heading-section {
    margin-bottom: 3rem;
}

#tanzania-destinations h2,
#tanzania-parks h2,
#tanzania-tips h2,
#tanzania-packing-list h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#tanzania-destinations p,
#tanzania-parks p,
#tanzania-tips p,
#tanzania-packing-list p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Why Tanzania List */
#tanzania-destinations ul {
    padding-left: 0;
    list-style: none;
}

#tanzania-destinations ul li {
    padding: 0.5rem 0;
    color: #34495e;
    font-size: 1.1rem;
}

#tanzania-destinations ul li i {
    color: #e67e22;
    margin-right: 0.5rem;
}

/* Park Cards */
.blog-entry {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-entry:hover {
    transform: translateY(-5px);
}

.block-20 {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-entry .text {
    padding: 1.5rem;
}

.blog-entry h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.blog-entry h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-entry p {
    color: #7f8c8d;
    font-size: 1rem;
}

/* View More Button */
#view-more-btn {
    background: #e67e22;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

#view-more-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #tanzania-destinations h2,
    #tanzania-parks h2,
    #tanzania-tips h2,
    #tanzania-packing-list h2 {
        font-size: 2rem;
    }
    
    .blog-entry {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    #tanzania-destinations,
    #tanzania-parks,
    #tanzania-tips,
    #tanzania-packing-list {
        padding: 3rem 0;
    }
    
    .block-20 {
        height: 150px;
    }
}


/* Lake Natron Section - Scoped Styles */
section .container.mt-5 {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #e67e22;
}

section h3 {
    color: #34495e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

section p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

section ul {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

section ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.5;
}

/* Image Styling */
.fixed-height-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.fixed-height-img:hover {
    transform: scale(1.02);
}

/* Card Styling */
section .card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

section .card-body {
    padding: 1.5rem;
}

section .card-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

section .card-text {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

section .font-weight-bold {
    color: #e67e22;
    font-weight: 700;
    font-size: 1.1rem;
}

section .btn-primary {
    background-color: #e67e22;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

section .btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section h2 {
        font-size: 1.8rem;
    }
    
    section h3 {
        font-size: 1.3rem;
    }
    
    .fixed-height-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    section h2 {
        font-size: 1.6rem;
    }
    
    section .card {
        margin-bottom: 20px;
    }
}




/* Serval Wildlife Sanctuary Section Styles */
section .container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

section .container h3 {
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

section .container p,
section .container li {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.fixed-height-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

/* Card Styles */
section .card {
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

section .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

section .card-text {
    font-size: 0.95rem;
    color: #555;
}

section .btn-primary {
    background-color: #1e5f74;
    border-color: #1e5f74;
}

section .btn-primary:hover {
    background-color: #144b5a;
    border-color: #144b5a;
}

/* Responsive fix for smaller devices */
@media (max-width: 767px) {
    .fixed-height-img {
        height: 180px;
    }

    section .container h2,
    section .container h3 {
        text-align: center;
    }

    section .card-title {
        font-size: 1rem;
    }

    section .card-text,
    section .container p,
    section .container li {
        font-size: 0.95rem;
    }
}



.package-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        overflow: hidden;
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }

    .package-card:hover {
        transform: translateY(-10px);
    }

    .package-image {
        background-size: cover;
        background-position: center;
        height: 300px;
    }

    .package-details {
        padding: 20px;
        text-align: center;
    }

    .package-details h3 {
        font-size: 22px;
        color: #2e8b57;
        margin-bottom: 15px;
    }

    .package-details p {
        color: #777;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .price span {
        font-size: 20px;
        font-weight: bold;
        color: #2e8b57;
        display: block;
        margin-bottom: 15px;
    }

    .btn-primary {
        background-color: #2e8b57;
        border-color: #2e8b57;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 16px;
    }

    .btn-primary:hover {
        background-color: #256b44;
        border-color: #256b44;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .package-card {
            margin-bottom: 20px;
        }

        .package-image {
            height: 150px;
        }
    }



    .tour-package {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.package-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.tour-package:hover .package-img img {
    transform: scale(1.05);
}

.destination-badge {
    position: absolute;
    bottom: 10px;
    left: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.package-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.package-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.package-info h3 a:hover {
    color: #f39c12;
}

.duration {
    color: #f39c12;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.package-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.package-cta {
    margin-top: auto;
}

.btn-primary {
    background-color: #f39c12;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.heading-section h2 {
    font-weight: 700;
    color: #333;
}

.heading-section .subheading {
    display: block;
    font-size: 14px;
    color: #f39c12;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}




/* ITINERARY SECTION STYLES */
.itinerary-section {
    padding: 60px 0;
    background: #fff;
    line-height: 1.6;
    color: #333;
}

.itinerary-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Description with Image */
.itinerary-description {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.description-text {
    flex: 1;
    min-width: 300px;
}

.description-image {
    flex: 1;
    min-width: 300px;
}

.description-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Content Wrapper */
.itinerary-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.itinerary-details {
    flex: 2;
    min-width: 300px;
}

.itinerary-sidebar {
    flex: 1;
    min-width: 300px;
}

/* Day by Day Itinerary */
.itinerary-day {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.itinerary-day:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.itinerary-day h3 {
    color: #081d20;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Sidebar Styles */
.sidebar-included, 
.sidebar-excluded {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-included h3 {
    color: #4CAF50;
    margin-top: 0;
}

.sidebar-excluded h3 {
    color: #f44336;
    margin-top: 0;
}

.sidebar-included ul, 
.sidebar-excluded ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.sidebar-included li, 
.sidebar-excluded li {
    margin-bottom: 8px;
}

/* Form Styles */
.inquiry-form {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.inquiry-form h3 {
    margin-top: 0;
    color: #081d20;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #081d20;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #081d20;
}

/* Responsive Styles */
@media (min-width: 992px) {
    .itinerary-sidebar {
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
    
    .description-text {
        order: 1;
    }
    
    .description-image {
        order: 2;
    }
    
    /* Alternate image position for different itineraries */
    .itinerary-section:nth-child(even) .description-text {
        order: 2;
    }
    
    .itinerary-section:nth-child(even) .description-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .itinerary-section {
        padding: 40px 0;
    }
    
    .itinerary-description {
        flex-direction: column;
    }
    
    .description-text, 
    .description-image {
        flex: 100%;
    }
}






  /* Banner Container */
  .go-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 70vh;
    min-height: 500px;
  }

  /* Slides */
  .go-slide {
    position: absolute;
    top: 0; left: 100%;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease;
    color: #fff;
  }
  .go-slide.active {
    left: 0;
  }

  /* Dark Overlay */
  .go-slide::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
  }

  /* Content */
  .go-content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 850px;
    padding: 0 15px;
  }
  .go-content h6 {
    font-size: 1.2rem;
    color: #ffce63;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .go-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  }
  .go-content a {
    display: inline-block;
    padding: 12px 30px;
    background: #ff8c00;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
  }
  .go-content a:hover {
    background: #e67300;
  }

  /* Navigation Dots */
  .go-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
  }
  .go-dots span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.3s;
  }
  .go-dots span.active {
    background: #ff8c00;
  }

  @media(max-width:768px){
    .go-content h2 { font-size: 2rem; }
    .go-content h6 { font-size: 1rem; }
    .go-content a { padding: 10px 22px; font-size: 0.9rem; }
  }





  /* Additional CSS for Tanzania Safari Packages */
.listing-item {
  border: 0px solid #e4e4e4;
  border-radius: 2px;
  padding: 20px;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.listing-item .left-image {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.listing-item .left-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.listing-item:hover .left-image img {
  transform: scale(1.05);
}

.listing-item .right-content {
  padding: 20px 0 0 0;
}

.listing-item .right-content h4 a {
  color: #2a2a2a;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.listing-item .right-content h4 a:hover {
  color: #3a8bcd;
}

.listing-item .right-content h6 {
  color: #3a8bcd;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 10px;
}

.listing-item .rate {
  padding: 0;
  margin: 10px 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.listing-item .rate li {
  display: inline-block;
  margin-right: 3px;
}

.listing-item .rate li i {
  color: #f7b11b;
  font-size: 14px;
}

.listing-item .rate li:last-child {
  margin-left: 10px;
  font-size: 13px;
  color: #6a6a6a;
}

.listing-item .rate li a {
  color: #6a6a6a;
  text-decoration: none;
}

.listing-item .rate li a:hover {
  color: #3a8bcd;
  text-decoration: underline;
}

.listing-item .price {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 10px 0;
}

.listing-item .price .icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.listing-item .price .icon i {
  color: #3a8bcd;
  font-size: 18px;
}

.listing-item .details {
  display: block;
  font-size: 14px;
  color: #6a6a6a;
  margin: 8px 0;
}

.listing-item .details em {
  font-style: normal;
  color: #2a2a2a;
  font-weight: 600;
}

.listing-item .info {
  padding: 0;
  margin: 15px 0;
  list-style: none;
}

.listing-item .info li {
  display: inline-block;
  margin-right: 15px;
  font-size: 13px;
  color: #6a6a6a;
}

.listing-item .info li i {
  margin-right: 5px;
  color: #3a8bcd;
}

.listing-item .main-white-button {
  margin-top: 15px;
}

.listing-item .main-white-button a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3a8bcd;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.listing-item .main-white-button a:hover {
  background-color: #2a2a2a;
}

.listing-item .main-white-button a i {
  margin-right: 5px;
}

/* Owl Carousel Adjustments */
.owl-listing .owl-stage {
  padding: 10px 0;
}

.owl-listing .owl-nav {
  position: absolute;
  top: -70px;
  right: 0;
  margin-top: 0;
}

.owl-listing .owl-nav button {
  width: 40px;
  height: 40px;
  background: #3a8bcd !important;
  color: #fff !important;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.owl-listing .owl-nav button:hover {
  background: #2a2a2a !important;
}

.owl-listing .owl-dots {
  margin-top: 20px;
}

.owl-listing .owl-dots button span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #d6d6d6;
  transition: all 0.3s ease;
}

.owl-listing .owl-dots button.active span,
.owl-listing .owl-dots button:hover span {
  background: #3a8bcd;
}

/* Section Styling */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.section-heading h6 {
  font-size: 16px;
  font-weight: 500;
  color: #3a8bcd;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .listing-item {
    margin-bottom: 30px;
  }
  
  .listing-item .right-content {
    padding: 20px 0 0 0;
  }
  
  .section-heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .listing-item .info li {
    display: block;
    margin-bottom: 5px;
  }
  
  .owl-listing .owl-nav {
    position: relative;
    top: 0;
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .listing-item {
    padding: 15px;
  }
  
  .listing-item .right-content h4 a {
    font-size: 17px;
  }
  
  .section-heading h2 {
    font-size: 24px;
  }
  
  .section-heading h6 {
    font-size: 14px;
  }
}







/* ============ About Us Section ============ */
.about-us-area {
    padding: 80px 0;
    background: #f8f9fa;
    font-family: "Poppins", sans-serif;
}

.about-us-left h6 {
    color: #d4af37; /* gold accent */
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-us-left h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a472a; /* safari green */
    margin-bottom: 20px;
}

.about-us-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.list-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.list-wrap ul li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #444;
    padding-left: 22px;
    position: relative;
}

.list-wrap ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a472a;
    font-weight: bold;
}

.primary-btn {
    display: inline-block;
    background: #1a472a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn:hover {
    background: #d4af37;
    color: #1a472a;
}

/* ===== Right Side Destination Grid ===== */
.destination-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-6px);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    padding: 18px;
    color: #fff;
}

.destination-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.destination-overlay h4 a {
    color: #fff;
    text-decoration: none;
}

.destination-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .about-us-left {
        margin-bottom: 40px;
    }
    .destination-grid {
        grid-template-columns: 1fr;
    }
}


/* Target ONLY the Google & TripAdvisor logos inside that container */
div[style*="display: flex"][style*="margin-top: 25px;"] img {
    width: auto;   /* desktop size */
    height: auto;   /* keep aspect ratio */
}

/* Adjust for mobile */
@media (max-width: 768px) {
    div[style*="display: flex"][style*="margin-top: 25px;"] img {
        width: auto;   /* smaller size on mobile */
        height: auto;
    }
}



/* Safari Section Styling */
.center_dest_dt .center_om {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.center_dest_dt .center_om::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.center_dest_dt h1 {
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.review-link {
    text-decoration: none;
}

#reviewBadge {
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 500;
}

#stars {
    color: #FFD700;
    font-size: 16px;
}

.center_dest_dt h6 {
    font-size: 16px;
}

/* Tab Styling */
.tabs-container {
    flex-direction: column;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    overflow-x: auto;
}

.tab-button {
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
}

.tab-button.active {
    color: #3a86ff;
    border-bottom-color: #3a86ff;
}

.tab-content {
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.tab-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
}

.tab-content h3 {
    color: #444;
    margin: 25px 0 15px;
    font-size: 22px;
}

.tab-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Price Boxes */
.tab-content > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-content > div > div {
    padding: 20px;
    border: 1px solid #e0e0e0;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.tab-content h4 {
    margin-top: 10px;
    color: #444;
}

/* Sidebar Styling */
.sidebar {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-section ul {
    padding-left: 20px;
}

.sidebar-section li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

/* Form Styling */
#booking-form label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

#booking-form input,
#booking-form textarea,
#booking-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#booking-form textarea {
    min-height: 100px;
    resize: vertical;
}

#booking-form button {
    background-color: #3a86ff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

#booking-form button:hover {
    background-color: #2667cc;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .tabs-container {
        flex-direction: row;
    }
    
    .sidebar {
        margin-left: 20px;
    }
    
    .tab-content > div {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .center_dest_dt .center_om {
        padding: 70px 0;
    }
    
    .center_dest_dt h1 {
        font-size: 32px;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}


/* Blog Area Specific Styles */
.blog_area.single-post-area .feature-img {
    margin-bottom: 30px;
    position: relative;
}

.blog_area.single-post-area .feature-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog_area.single-post-area .image-caption small {
    font-size: 0.85rem;
    color: #6c757d;
}

.blog_area.single-post-area .blog_info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.blog_area.single-post-area .post_tag .badge {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.75rem;
}

.blog_area.single-post-area .post_tag .badge-secondary {
    background-color: #6c757d;
}

.blog_area.single-post-area .post_tag .badge-gold {
    background-color: #d4af37;
    color: #fff;
}

.blog_area.single-post-area .post_tag .badge-dark {
    background-color: #343a40;
}

.blog_area.single-post-area .post_tag .badge-success {
    background-color: #28a745;
}

.blog_area.single-post-area .blog_meta {
    color: #495057;
    font-size: 0.9rem;
}

.blog_area.single-post-area .blog_meta i {
    margin-right: 5px;
    color: #d4af37;
}

.blog_area.single-post-area .social-links .btn-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.blog_area.single-post-area .social-links .btn-facebook {
    background-color: #3b5998;
    color: white;
}

.blog_area.single-post-area .social-links .btn-twitter {
    background-color: #1da1f2;
    color: white;
}

.blog_area.single-post-area .social-links .btn-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.blog_area.single-post-area .blog_details .excert.lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
}

.blog_area.single-post-area .divider {
    border-top: 1px solid #e9ecef;
}

.blog_area.single-post-area .custom-list {
    list-style-type: none;
    padding-left: 0;
}

.blog_area.single-post-area .custom-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.blog_area.single-post-area .custom-list i {
    position: absolute;
    left: 0;
    top: 10px;
}

.blog_area.single-post-area .text-gold {
    color: #d4af37;
}

.blog_area.single-post-area .card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.blog_area.single-post-area .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.blog_area.single-post-area .destination-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.blog_area.single-post-area .blockquote-gold {
    border-left: 4px solid #d4af37;
    background-color: #f8f9fa;
    padding: 20px;
    font-style: italic;
    color: #495057;
}

.blog_area.single-post-area .blockquote-footer {
    font-size: 0.9rem;
    color: #6c757d;
}

.blog_area.single-post-area .feature-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.blog_area.single-post-area .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog_area.single-post-area .navigation-area {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.blog_area.single-post-area .navigation-area .thumb img {
    max-width: 80px;
}

.blog_area.single-post-area .author_widget {
    text-align: center;
}

.blog_area.single-post-area .author_img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #d4af37;
    margin: 0 auto 15px;
}

.blog_area.single-post-area .popular_post_widget .media {
    margin-bottom: 20px;
}

.blog_area.single-post-area .popular_post_widget .media img {
    max-width: 80px;
}

.blog_area.single-post-area .btn-outline-gold {
    color: #d4af37;
    border-color: #d4af37;
    background-color: transparent;
}

.blog_area.single-post-area .btn-outline-gold:hover {
    background-color: #d4af37;
    color: white;
}

.blog_area.single-post-area .btn-gold {
    background-color: #d4af37;
    color: white;
    border: none;
    padding: 10px 20px;
}

.blog_area.single-post-area .btn-gold:hover {
    background-color: #c19b2e;
    color: white;
}

.blog_area.single-post-area .form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.blog_area.single-post-area select.form-control {
    height: auto;
    padding: 10px 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blog_area.single-post-area .author_img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .blog_area.single-post-area .author_img {
        width: 100px;
        height: 100px;
    }
    
    .blog_area.single-post-area .blog_info {
        text-align: left;
    }
    
    .blog_area.single-post-area .feature-card {
        margin-bottom: 20px;
    }
}





/* Force white color for h1 in banner only */
section h1 {
  color: #f09359 !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
}





/* Package Grid Area - New Design */
.package-grid-area {
  padding: 120px 0;
  background: linear-gradient(135deg, #f9f5f0 0%, #f0e8df 100%);
  position: relative;
  overflow: hidden;
}

.package-grid-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(193,155,118,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
  background-size: cover;
  z-index: 0;
}

/* Section Header - New Design */
.section-subtitle {
  display: inline-block;
  color: #c19b76;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  padding-bottom: 10px;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #c19b76;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.section-title span {
  color: #c19b76;
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(193,155,118,0.2);
  z-index: -1;
}

.section-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 50px;
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Package Cards - New Design */
.package-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0,0,0,0.03);
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.package-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.package-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.package-content {
  padding: 30px;
  position: relative;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.package-type {
  background: rgba(193,155,118,0.1);
  color: #c19b76;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-price {
  color: #27ae60;
  font-weight: 800;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
}

.package-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  line-height: 1.4;
}

.package-excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.package-duration {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.package-duration i {
  margin-right: 8px;
  color: #c19b76;
}

.package-link {
  color: #c19b76;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.package-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* View All Button - New Design */
.view-all-btn {
  display: inline-block;
  background: linear-gradient(to right, #c19b76 0%, #d4b08c 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(193,155,118,0.2);
  margin-top: 30px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.view-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #d4b08c 0%, #c19b76 100%);
  transition: all 0.4s ease;
  z-index: -1;
}

/* Hover Effects - New Design */
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.package-card:hover::before {
  opacity: 1;
}

.package-image:hover img {
  transform: scale(1.1);
}

.package-link:hover {
  color: #a5825e;
}

.package-link:hover i {
  transform: translateX(3px);
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(193,155,118,0.3);
}

.view-all-btn:hover::before {
  left: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .section-title {
    font-size: 36px;
  }
  
  .package-image {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .package-grid-area {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .section-description {
    font-size: 16px;
  }
}








/* Destinations Grid Styles */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 20px;
    color: white;
}

.destination-overlay h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.destination-overlay h4 a {
    color: white;
    text-decoration: none;
}

.destination-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

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

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

/* Responsive adjustments */
@media (max-width: 991px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card {
        height: 200px;
    }
}








/* Luxury Safari Packages Section */
.luxury-safari-packages {
  padding: 100px 0;
  background: #f8f5f0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header .subtitle {
  display: block;
  color: #c19b76;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.section-header h2 span {
  color: #c19b76;
}

.section-header .lead {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Safari Cards Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.safari-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.safari-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.safari-card:hover .card-image img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  color: #c19b76;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-content {
  padding: 25px;
}

.price-duration {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.price {
  color: #27ae60;
  font-weight: 700;
  font-size: 18px;
}

.duration {
  color: #888;
  font-size: 14px;
}

.duration i {
  margin-right: 5px;
  color: #c19b76;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.card-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  color: #c19b76;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.explore-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.explore-btn:hover {
  color: #a5825e;
}

.explore-btn:hover i {
  transform: translateX(5px);
}

/* View All Button */
.view-all-btn {
  display: inline-block;
  background: #c19b76;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(193,155,118,0.2);
}

.view-all-btn:hover {
  background: #a5825e;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(193,155,118,0.3);
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .luxury-safari-packages {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  .card-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
}



/* General text color override */
.top-category-widget-area,
.top-category-widget-area h2,
.top-category-widget-area p {
    color: #000; /* Force black text */
}

/* Section padding and layout */
.top-category-widget-area {
    background-size: cover;
    background-position: center;
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
}

/* Overlay box spacing fix */
.top-category-widget-area .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Spacing adjustment */
.top-category-widget-area .section-header {
    margin-bottom: 2rem;
    text-align: center;
}

/* Title styles */
.top-category-widget-area .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000;
}

/* Subtitle styles */
.top-category-widget-area .section-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
}

/* Optional: reduce the hard-coded spacer height on small screens */
@media (max-width: 768px) {
    .top-category-widget-area div[style*="height: 155px"] {
        height: 80px !important;
    }

    .top-category-widget-area .section-title {
        font-size: 2rem;
    }

    .top-category-widget-area .section-subtitle {
        font-size: 1rem;
    }
}






/* Safari Packages Grid - Responsive Layout */
.safari-packages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 15px;
}

/* Package Card Styling */
.package {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.package img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0 !important; /* Ensures square corners */
}

.package-content {
  padding: 20px;
  text-align: left;
}

.package-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.package-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

/* Package Details (Days/Price/Reviews) */
.package-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 13px;
  color: #555;
  flex-wrap: wrap;
  gap: 10px;
}

.package-details span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.package-details a {
  color: #ff6b6b;
  text-decoration: none;
}

/* "View Details" Button */
.package-content a[href*="luxuryinafrica.com"] {
  display: inline-block;
  padding: 8px 20px;
  background: #112125;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0;
  text-align: center;
  transition: background 0.3s;
}

.package-content a[href*="luxuryinafrica.com"]:hover {
  background: #112125;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .safari-packages {
    grid-template-columns: 1fr; /* Single column on mobile */
    padding: 0 10px;
    gap: 20px;
  }
  
  .package-content {
    padding: 15px;
  }
}



/* Ensure the container takes full width and height */
.content {
    position: relative;
    width: 100%;
    height: auto; /* Adjust height as needed */
}

/* Overlay for text readability */
.text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 50%; /* Centers the overlay vertically */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: #fff;
    padding: 20px;
    text-align: center;
    transform: translateY(-50%); /* Adjusts to center overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Center the section title and subtitle */
.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #141111;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #fff;
}

/* Title styling */
.text-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold; /* Makes title stand out */
}

.text-overlay p {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff; /* Makes the card text white */
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image covers the container without stretching */
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay to enhance text visibility */
    z-index: 1; /* Ensure overlay is above the image */
}



/* Luxury Africa Itinerary CSS */
.luxury-africa-itinerary {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}

.lai-container {
    width: 100%;
    margin: 0 auto;
}

.lai-description {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.lai-description-text {
    flex: 1;
    min-width: 300px;
}

.lai-description-text h1 {
    color: #1a3e6f;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.lai-description-image {
    flex: 1;
    min-width: 300px;
}

.lai-description-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.lai-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.lai-itinerary-details {
    flex: 2;
    min-width: 300px;
}

.lai-day {
    margin-bottom: 30px;
}

.lai-day h3 {
    color: #1a3e6f;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.lai-day p {
    margin-bottom: 15px;
}

.lai-day a {
    color: #d4a762;
    text-decoration: none;
    font-weight: 500;
}

.lai-day a:hover {
    text-decoration: underline;
}

.lai-sidebar {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lai-rates {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
}

.lai-rates h3 {
    color: #1a3e6f;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.lai-rates table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.lai-rates th, .lai-rates td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.lai-rates th {
    background-color: #1a3e6f;
    color: white;
}

.lai-rates tr:nth-child(even) {
    background-color: #f2f2f2;
}

.lai-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.lai-included, .lai-excluded {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
}

.lai-included h3, .lai-excluded h3 {
    color: #1a3e6f;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.lai-included ul, .lai-excluded ul {
    padding-left: 20px;
}

.lai-included li, .lai-excluded li {
    margin-bottom: 8px;
}

.lai-form-container {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
}

.lai-form-container h3 {
    color: #1a3e6f;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.lai-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lai-form-group {
    display: flex;
    flex-direction: column;
}

.lai-form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #444;
}

.lai-form-group input,
.lai-form-group select,
.lai-form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.lai-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.lai-submit-btn {
    background-color: #d4a762;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.lai-submit-btn:hover {
    background-color: #c09555;
}

@media (max-width: 768px) {
    .lai-description {
        flex-direction: column;
    }
    
    .lai-content-wrapper {
        flex-direction: column;
    }
    
    .lai-description-text, .lai-description-image {
        flex: none;
        width: 100%;
    }
}





/* ===== TOP CATEGORY WIDGET AREA ===== */
section[style*="price-bg.png"] {
  padding: 80px 20px !important;
  text-align: center;
  color: #111 !important;
  font-family: "Montserrat", sans-serif;
}

section[style*="price-bg.png"] nav {
  font-size: 14px;
  margin-bottom: 20px;
}
section[style*="price-bg.png"] nav a {
  color: #333 !important;
  text-decoration: none;
}
section[style*="price-bg.png"] nav a:hover {
  text-decoration: underline;
}

/* Title & Subtitle */
section[style*="price-bg.png"] h2 {
  font-size: 32px !important;
  font-weight: 800;
  margin-bottom: 12px;
  color: #000;
}
section[style*="price-bg.png"] p {
  font-size: 17px !important;
  margin-bottom: 20px;
  color: #444;
}

/* Reviews Badge */
section[style*="price-bg.png"] a[href="reviews"] {
  font-size: 15px !important;
  padding: 8px 16px !important;
  border-radius: 25px !important;
  background: #fff7e0 !important;
  border: 1px solid #ebaf40 !important;
  font-weight: 600;
  transition: 0.3s ease;
}
section[style*="price-bg.png"] a[href="reviews"]:hover {
  background: #ebaf40 !important;
  color: #fff !important;
}

/* Low Season Info Box */
section[style*="price-bg.png"] div[style*="border:1px solid"] {
  font-size: 15px !important;
  line-height: 1.6;
  background: #fff !important;
  border-radius: 8px !important;
  border: 1px solid #ddd !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
section[style*="price-bg.png"] div[style*="border:1px solid"] a {
  background: #000 !important;
  color: #fff !important;
  border-radius: 5px !important;
  padding: 8px 18px !important;
  margin-top: 10px;
  display: inline-block;
  font-size: 14px !important;
  transition: 0.3s ease;
}
section[style*="price-bg.png"] div[style*="border:1px solid"] a:hover {
  background: #ebaf40 !important;
  border-color: #ebaf40 !important;
}

/* ===== LOW SEASON MODAL ===== */
#lowSeasonModal {
  display: none;
  align-items: center;
  justify-content: center;
}
#lowSeasonModal > div {
  max-width: 520px !important;
  width: 90% !important;
  border-radius: 10px !important;
  padding: 25px !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
#lowSeasonModal h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
#lowSeasonModal table {
  width: 100%;
  border-collapse: collapse;
}
#lowSeasonModal table th,
#lowSeasonModal table td {
  border: 1px solid #ddd !important;
  padding: 10px !important;
  text-align: left;
}
#lowSeasonModal table th {
  background: #fafafa;
  font-weight: 600;
}
#lowSeasonModal p {
  font-size: 13px !important;
  margin-top: 12px;
  text-align: center;
  color: #666;
}
#lowSeasonModal span[onclick] {
  color: #000 !important;
  transition: 0.2s ease;
}
#lowSeasonModal span[onclick]:hover {
  color: red !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section[style*="price-bg.png"] h2 {
    font-size: 24px !important;
  }
  section[style*="price-bg.png"] p {
    font-size: 15px !important;
  }
  #lowSeasonModal > div {
    margin: 40px auto !important;
    padding: 18px !important;
  }
}



