:root {
    --bs-primary: #2c7a2c;
    --bs-secondary: #4a9d4a;
    --bs-accent: #f39c12;
    --bs-light: #e8f5e8;
    --bs-dark: #1a5a1a;
    --bs-white: #ffffff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    
    /* RGBA colors */
    --bs-white-rgba-08: rgba(255, 255, 255, 0.08);
    --bs-white-rgba-05: rgba(255, 255, 255, 0.5);
    --bs-white-rgba-01: rgba(255, 255, 255, 0.1);
    --bs-black-rgba-06: rgba(0, 0, 0, 0.6);
    --bs-black-rgba-02: rgba(0, 0, 0, 0.2);
    --bs-primary-rgba-03: rgba(44, 122, 44, 0.3);
    --bs-accent-rgba-03: rgba(243, 156, 18, 0.3);
    --bs-search-bg: rgba(240, 245, 251, 0.5);
}

/*** Spinner Start ***/
/*** 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;
}

#spinner.d-none {
    display: none !important;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

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

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

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

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.topbar {
    padding: 8px 0;
    background: var(--bs-primary) !important;
    font-size: 14px;
}

.topbar a,
.topbar a i {
    transition: 0.3s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand h1 {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-brand h1:hover {
    color: var(--bs-secondary) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    padding: 12px 0;
    color: var(--bs-dark) !important;
    position: relative;
    transition: all 0.3s ease;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--bs-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

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

.dropdown-item {
    padding: 10px 20px;
    font-weight: 400;
    color: var(--bs-dark);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--bs-light);
    color: var(--bs-primary);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.btn-primary {
    background: var(--bs-secondary) !important;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--bs-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.3);
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 10px 15px;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}
/*** Navbar End ***/


/*** Footer ***/
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}

footer h3 {
    font-weight: 600;
    font-size: 1.5rem;
}

footer h5 {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--bs-primary);
}

footer .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease;
}

footer a.text-white-50:hover {
    color: var(--bs-white) !important;
}

footer .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

footer .btn-outline-light:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
    transform: translateY(-3px);
}

footer .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

footer .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(44, 122, 44, 0.25);
    background: rgba(255, 255, 255, 0.15);
}

footer .btn-primary {
    border-radius: 8px;
    padding: 8px 12px;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(44, 122, 44, 0.4);
}

/*** Footer End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(var(--bs-black-rgba-06), var(--bs-black-rgba-06)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh;
}

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

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(var(--bs-black-rgba-06), var(--bs-black-rgba-06));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid var(--bs-white-rgba-01);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: var(--bs-white-rgba-05);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px var(--bs-black-rgba-02);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px var(--bs-primary-rgba-03);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid var(--bs-white-rgba-08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/


/*** Home Page Modern Styles ***/

/* Hero Section Modern Styling */
.carousel-header .carousel-caption h4 {
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bs-accent) !important;
}

.carousel-header .carousel-caption h1 {
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    color: var(--bs-white) !important;
}

.carousel-header .carousel-caption p {
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: var(--bs-white) !important;
}

.carousel-header .btn-primary {
    background: var(--bs-accent) !important;
    color: var(--bs-white) !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.carousel-header .btn-primary:hover {
    background: var(--bs-secondary) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 157, 74, 0.4);
}

.carousel-header .btn-outline-light {
    border: 2px solid var(--bs-white);
    color: var(--bs-white) !important;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
}

.carousel-header .btn-outline-light:hover {
    background: var(--bs-accent) !important;
    border-color: var(--bs-accent);
    color: var(--bs-white) !important;
}

/* Features Section Modern Styling */
.container-fluid.bg-primary.py-5 {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%) !important;
}

.container-fluid.bg-primary.py-5 h3 {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--bs-white) !important;
}

.container-fluid.bg-primary.py-5 p {
    font-weight: 500;
    color: rgba(255,255,255,0.9) !important;
}

.container-fluid.bg-primary.py-5 .bg-white.bg-opacity-10 {
    background: rgba(255,255,255,0.15) !important;
    border: 2px solid rgba(255,255,255,0.2);
}

.container-fluid.bg-primary.py-5 .bg-white.bg-opacity-10:hover {
    background: var(--bs-accent) !important;
    border-color: var(--bs-accent);
    transform: scale(1.1);
}

/* Section Titles Modern Styling */
.section-title h5.sub-style {
    font-weight: 800;
    color: var(--bs-accent) !important;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.section-title h1.display-5 {
    font-weight: 900;
    color: var(--bs-dark) !important;
    margin-bottom: 1.5rem;
}

.section-title p.text-muted {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--bs-gray) !important;
}

/* About Section Modern Styling */
.section-title h5.sub-style.text-primary {
    color: var(--bs-accent) !important;
}

.section-title h1.display-5.mb-4 {
    font-weight: 900;
    color: var(--bs-dark) !important;
}

.section-title p.mb-4 {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--bs-gray) !important;
    line-height: 1.8;
}

.section-title .d-flex.align-items-center span {
    font-weight: 700;
    color: var(--bs-dark) !important;
}

.section-title .btn-primary {
    background: var(--bs-accent) !important;
    color: var(--bs-white) !important;
    font-weight: 700;
    border: none;
}

.section-title .btn-primary:hover {
    background: var(--bs-secondary) !important;
}

.section-title .btn-outline-primary {
    border: 2px solid var(--bs-accent);
    color: var(--bs-accent) !important;
    font-weight: 700;
}

.section-title .btn-outline-primary:hover {
    background: var(--bs-accent) !important;
    color: var(--bs-white) !important;
}

/* Destination Cards Modern Styling */
.destination-card h4 {
    font-weight: 800;
    color: var(--bs-dark) !important;
}

.destination-card p.text-muted {
    font-weight: 600;
    color: var(--bs-gray) !important;
}

.destination-card .text-primary.fw-bold {
    font-weight: 900;
    color: var(--bs-accent) !important;
    font-size: 1.2rem;
}

.destination-card .btn-primary {
    background: var(--bs-accent) !important;
    color: var(--bs-white) !important;
    font-weight: 700;
    border: none;
}

.destination-card .btn-primary:hover {
    background: var(--bs-secondary) !important;
}

/* Package Cards Modern Styling */
.package-card h4.mb-0 {
    font-weight: 800;
    font-size: 1.3rem;
}

.package-card .display-4 {
    font-weight: 900;
}

.package-card .text-primary.display-4 {
    color: var(--bs-accent) !important;
}

.package-card .text-secondary.display-4 {
    color: var(--bs-secondary) !important;
}

.package-card .text-dark.display-4 {
    color: var(--bs-dark) !important;
}

.package-card .btn-primary {
    background: var(--bs-accent) !important;
    color: var(--bs-white) !important;
    font-weight: 700;
    border: none;
}

.package-card .btn-secondary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-weight: 700;
    border: none;
}

.package-card .btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-weight: 700;
    border: none;
}

/* Experience Cards Modern Styling */
.experience-card h4 {
    font-weight: 800;
    color: var(--bs-dark) !important;
}

.experience-card p.text-muted {
    font-weight: 600;
    color: var(--bs-gray) !important;
}

.experience-card .bg-primary.bg-opacity-10 {
    background: rgba(44, 122, 44, 0.1) !important;
    border: 2px solid var(--bs-primary);
}

.experience-card:hover .bg-primary.bg-opacity-10 {
    background: var(--bs-accent) !important;
    border-color: var(--bs-accent);
}

.experience-card:hover .bg-primary.bg-opacity-10 i {
    color: var(--bs-white) !important;
}

/* Testimonial Cards Modern Styling */
.testimonial-card p.mb-3 {
    font-weight: 600;
    font-style: italic;
    color: var(--bs-dark) !important;
    line-height: 1.6;
}

.testimonial-card h6.mb-0 {
    font-weight: 800;
    color: var(--bs-dark) !important;
}

.testimonial-card small.text-muted {
    font-weight: 600;
    color: var(--bs-accent) !important;
}

/* Booking CTA Modern Styling */
.container-fluid.bg-primary.py-5 {
    background: linear-gradient(135deg, var(--bs-accent) 0%, var(--bs-primary) 100%) !important;
}

.container-fluid.bg-primary.py-5 h2 {
    font-weight: 900;
    color: var(--bs-white) !important;
    font-size: 2rem;
}

.container-fluid.bg-primary.py-5 p {
    font-weight: 600;
    color: rgba(255,255,255,0.95) !important;
    font-size: 1.1rem;
}

.container-fluid.bg-primary.py-5 .btn-light {
    background: var(--bs-white) !important;
    color: var(--bs-accent) !important;
    font-weight: 800;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.container-fluid.bg-primary.py-5 .btn-light:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Badge Modern Styling */
.badge.bg-primary {
    background: var(--bs-accent) !important;
    font-weight: 700;
}

.badge.bg-secondary {
    background: var(--bs-secondary) !important;
    font-weight: 700;
}

.badge.bg-success {
    background: var(--bs-primary) !important;
    font-weight: 700;
}

.badge.bg-danger {
    background: var(--bs-accent) !important;
    font-weight: 700;
}

/* Destination Cards */
.destination-card {
    transition: all 0.3s ease;
    border: none;
}

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

.destination-card img {
    transition: transform 0.3s ease;
}

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

/* Package Cards */
.package-card {
    transition: all 0.3s ease;
    border: none;
}

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

.package-card .list-unstyled li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.package-card .list-unstyled li:last-child {
    border-bottom: none;
}

/* Experience Cards */
.experience-card {
    transition: all 0.3s ease;
    border: none;
}

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

.experience-card .bg-primary.bg-opacity-10 {
    transition: all 0.3s ease;
}

.experience-card:hover .bg-primary.bg-opacity-10 {
    background: var(--bs-accent) !important;
}

.experience-card:hover .bg-primary.bg-opacity-10 i {
    color: var(--bs-white) !important;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    border: none;
}

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

.testimonial-card img {
    border: 3px solid var(--bs-light);
}

/* Section Title Enhancements */
.section-title h5.sub-style {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-title h5.sub-style::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--bs-accent);
    border-radius: 2px;
}

/* Badge Styles */
.badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
}

/* Button Enhancements */
.btn.rounded-pill {
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.rounded-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Feature Icons */
.bg-white.bg-opacity-10 {
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.bg-white.bg-opacity-10:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .carousel-header .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-header .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-header .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-header .d-flex.gap-3 .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Booking CTA Section */
.bg-primary .btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-accent) !important;
}

/* Carousel Navigation Buttons */
.carousel-nav-buttons {
    position: relative;
    z-index: 10;
}

.btn-accent {
    background: var(--bs-accent) !important;
    color: var(--bs-white) !important;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.btn-outline-accent {
    border: 2px solid var(--bs-accent);
    color: var(--bs-accent) !important;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-accent:hover {
    background: var(--bs-accent) !important;
    color: var(--bs-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.btn-outline-secondary {
    border: 2px solid var(--bs-secondary);
    color: var(--bs-secondary) !important;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    transform: translateY(-2px);
}

/* Active state for carousel buttons */
.btn-accent.active,
.btn-outline-accent.active {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-nav-buttons .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .carousel-nav-buttons .btn-outline-secondary {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(25deg);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Image Placeholder Styles */
img[alt*="Safari"]:before,
img[alt*="Wildlife"]:before,
img[alt*="Maasai"]:before,
img[alt*="Amboseli"]:before,
img[alt*="Samburu"]:before {
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--bs-accent), var(--bs-primary));
    border-radius: 8px;
}

img[alt*="Client"]:before {
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bs-gray);
    font-size: 12px;
    text-align: center;
    padding: 10px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}