:root {
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
    /* Primary Brand Colors — inspired by safari, earth, sun, and wildlife */
    --color-primary: #8b5e3c; /* Rich safari brown (like dry earth or animal hide) */
    --color-secondary: #d4a574; /* Warm sand/gold — perfect for accents */
    --color-accent: #5a7f4d; /* Deep safari green (savanna foliage) */
    --color-highlight: #e6b325; /* Sunlight gold — for CTAs or highlights */

    /* Neutral & Text Colors */
    --color-text: #2d2d2d; /* Dark gray (softer than pure black) */
    --color-text-light: #555555; /* Muted gray for subtitles */
    --color-background: rgb(255, 255, 255); /* Clean white */
    --color-bg-light: #f9f7f2; /* Warm off-white (like parchment) */

    /* UI & Interactive */
    --color-success: #4caf50;
    --color-warning: #ff9800;
    --color-danger: #f44336;

    /* Shadows & Borders */
    --shadow-light: 0 2px 8px rgba(139, 94, 60, 0.1);
    --border-color: #e0d6c9; /* Soft earthy border */

    /* Navbar Variables */
    --black-color: rgba(0, 0, 0, 1);
    --black-color-light: hsl(220, 24%, 15%);
    --black-color-lighten: hsl(220, 20%, 18%);
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Montserrat', sans-serif;
    --normal-font-size: 0.938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 1000;

    --header-height: 3.5rem;
}

body {
    background: #fff;
    font-family: 'Andika', arial, sans-serif;
    font-weight: 200;
    font-size: 18px;
    width: 100%;
    line-height: 1.8;
}

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px; /* Vertical scrollbar width */
    height: 6px; /* Horizontal scrollbar height */
}

::-webkit-scrollbar-thumb {
    background: #888; /* Scroll thumb color */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-moz-selection {
    color: #fff;
    background: var(--color-secondary);
}

::selection {
    color: #fff;
    background: var(--color-secondary);
}

a {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--color-highlight);
    font-family: 'Andika', times, serif;
}

.container-fluid {
    max-width: 1600px;
}

.btn {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 4px;
}

.btn.uppercase {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.2em;
}


.btn,
.form-control {
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn:focus,
.btn:active,
.form-control:focus,
.form-control:active {
    outline: none;
}

.form-control {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    height: 50px;
    border: 2px solid #cccccc;
}

.form-control:active,
.form-control:focus {
    border: 2px solid #65c0ba;
}

textarea.form-control {
    height: inherit;
}

.logo-img {
    max-width: 150px;
    height: auto;
    display: block;
    transition: max-width 0.3s ease;
}

/* Tablet */
@media (max-width: 992px) {
    .logo-img {
        max-width: 180px;
        padding-top: 8px;
        padding-left: 8px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-img {
        max-width: 120px;
        padding-top: 6px;
        padding-left: 6px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        max-width: 100px;
        padding-top: 4px;
        padding-left: 4px;
    }
}
.full-height {
    height: 100vh;
    min-height: 700px;
}

.site-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../images/hero-img-desktop.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* margin-top: var(--header-height); */
    /* margin-top: 6rem; */
    /* height: 100vh; */
    min-height: 300px;
    width: 100%;
}

.other-pages-hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* min-height: 300px;
    width: 100%; */
}

@media (max-width: 768px) {
    .site-hero {
        background-image: linear-gradient(
                rgba(0, 0, 0, 0.3),
                rgba(0, 0, 0, 0.3)
            ),
            url('../images/hero-img-mobile.jpg');
    }
}
.site-hero-experiences {
    background-size: contain;
    background-position: center center;
    background-attachment: fixed;
    max-height: 300px;
    min-height: 300px;
    width: 100%;
}

.site-hero .scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    text-align: center;
    /* -webkit-transform: translateX(-50%); */
    /* -ms-transform: translateX(-50%); */
    /* transform: translateX(-50%); */
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
}

.cta__btn {
    /* background-color: var(--color-primary); */
    background-color: rgba(139, 94, 60, 0.95);
    color: white;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: 2px 2px 2px 2px rgba(255, 255, 255, 0.3); /* inner soft light */
    transition: all 0.3s ease;
}

/* Optional hover effect for extra emphasis */
.cta__btn:hover {
    box-shadow: 2px 2px 2px 2px rgba(255, 255, 255, 0.9); /* inner soft light */
    transform: translateY(-2px);
}

.site-hero-inner {
    min-height: 400px;
}
.site-hero-inner-hero-1 {
    min-height: 200px;
}

.site-hero-inner-hero-1 .heading {
    font-size: 40px;
    font-family: 'Andika', times, serif;
    color: #fff;
    line-height: 1;
    font-weight: bold;
}
.site-hero-inner .heading {
    font-size: 40px;
    font-family: 'Andika', times, serif;
    color: #fff;
    line-height: 1;
    font-weight: bold;
}

@media (max-width: 991.98px) {
    .site-hero-inner-hero-1 .heading {
        font-size: 24px;
    }
    .site-hero-inner .heading {
        font-size: 30px;
    }
}

.site-hero-inner .sub-heading {
    font-family: 'Andika', times, serif;
    font-size: 16px;
    font-weight: 200;
    color: #fff;
    line-height: 1.5;
}

.site-hero-inner-hero-1 .sub-heading {
    font-family: 'Andika', times, serif;
    font-size: 16px;
    font-weight: 200;
    color: #fff;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .site-hero-inner .sub-heading {
        font-size: 14px;
    }
    .site-hero-inner-hero-1 .sub-heading {
        font-size: 12px;
    }
}

.site-hero-inner .sub-heading a {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}
.site-hero-inner-hero-1 .sub-heading a {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.site-hero-inner .sub-heading a:hover {
    color: white;
    border-bottom: 2px solid white;
}
.site-hero-inner-hero-1 .sub-heading a:hover {
    color: white;
    border-bottom: 2px solid white;
}

/* .page-inside {
    height: 70vh;
    min-height: 100px;
} */

.menu-open .site-menu-toggle span {
    background: #000;
}

.site-menu-toggle {
    float: right;
    width: 30px;
    height: 35px;
    position: relative;
    margin: 0px auto;
    z-index: 200;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.site-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.site-menu-toggle span:nth-child(1) {
    top: 0px;
}

.site-menu-toggle span:nth-child(2) {
    top: 10px;
}

.site-menu-toggle span:nth-child(3) {
    top: 20px;
}

.site-menu-toggle.open span:nth-child(1) {
    top: 13px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.site-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.site-menu-toggle.open span:nth-child(3) {
    top: 13px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.section {
    padding: 2em 0;
}

.about-section {
    padding: 1.5em 0;
}

@media (max-width: 991.98px) {
    .section {
        padding: 1em 0;
    }
    .lead {
        font-size: 16px;
    }
}

.explore-hero-text {
    color: var(--color-secondary);
    font-weight: 900;
}

.about-title {
    font-family: 'Cinzel Decorative', display;
    font-size: 25px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: 25px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.section__title {
    font-family: 'Cinzel Decorative', display;
    font-size: 20px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.about-title-span {
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .about-title {
        font-size: 16px;
        display: block;
        /* flex-direction: column; */
        gap: 5px;
    }
    .about-section {
        padding: 0.5em 0;
    }
}

.about-title-content {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--color-text);
    line-height: 1.8;
}
.read_more_btn {
    background-color: var(--color-primary);
    color: white;
    border-radius: 25px;
    padding: 5px 25px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.home-packages-title {
    font-family: 'Cinzel Decorative', display;
    font-size: 25px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .home-packages-title {
        font-size: 20px;
    }
}

.home-packages-sub-title {
    font-family: 'Andika', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.card-img-top {
    height: 220px; /* adjust as you like */
    object-fit: cover;
    width: 100%;
}

.visit-section .visit {
    position: relative;
    top: 0;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.visit-section .visit a {
    color: #000;
}

.visit-section .visit a:hover {
    color: var(--color-accent);
}

.visit-section .visit img {
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.visit-section .visit h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.visit-section .visit:hover,
.visit-section .visit:focus {
    top: -1;
}

.visit-section .reviews-star span {
    font-size: 18px;
    color: var(--color-primary);
}

.visit-section .reviews-count {
    color: var(--color-warning);
    font-style: italic;
}

.primary-bg-text p {
    color: rgba(255, 255, 255, 0.7);
}

.bg-light {
    position: relative;
    overflow: hidden;
    background: var(--color-highlight) !important;
}

.bg-light:before {
    content: '';
    position: absolute;
    top: 0;
    height: 400px;
    width: 150%;
    left: 50%;
    background: var(--color-primary);
    -webkit-transform: rotate(-4deg) translateX(-50%) translateY(-100%);
    -ms-transform: rotate(-4deg) translateX(-50%) translateY(-100%);
    transform: rotate(-4deg) translateX(-50%) translateY(-100%);
}

.bg-light.no-slant:before {
    display: none;
}

.bg-light-2 {
    background: #fafafa;
    border-top: 1px solid #e0e0e0;
}

.btn-play .icon {
    width: 50px;
    height: 50px;
    position: relative;
    border: 2px solid #e6e6e6;
    border-radius: 50%;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.btn-play .icon > span {
    position: absolute;
    top: 50%;
    left: 55%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.btn-play .text {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.btn-play:hover .icon {
    border-color: #1a1a1a;
}

.btn-play:hover .icon span {
    color: #000;
}

.heading-serif,
.testimonial-section .heading,
.slider-section .heading,
.blog-post-entry .heading {
    font-size: 70px;
    font-family: 'Andika', times, serif;
    line-height: 1;
    margin-bottom: 30px;
}

@media (max-width: 991.98px) {
    .heading-serif,
    .testimonial-section .heading,
    .slider-section .heading,
    .blog-post-entry .heading {
        font-size: 40px;
    }
}

.bg-pattern {
    background: #e9ecef url('../img/round.png');
}

/* Reduce space above and below the slider */
.slider-section {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

/* Control the slider container */
.home-slider.major-caousel.owl-carousel {
    margin-bottom: 1rem !important; /* or 0.5rem for tighter */
}

/* Ensure images don’t add extra space */
.slider-item img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px; /* Optional: cap height for consistency */
    object-fit: cover;
}

/* Optional: Reduce space from parent container */
.section.slider-section {
    padding: 0;
}

.blog-post-entry {
    position: relative;
    margin-top: -500px;
    padding-top: 500px;
}

@media (max-width: 991.98px) {
    .blog-post-entry {
        margin-top: -300px;
        padding-top: 300px;
    }
}

.half .image,
.half .text {
    width: 50%;
}

@media (max-width: 991.98px) {
    .half .image,
    .half .text {
        width: 100%;
    }
}

.half .image {
    background-size: cover;
    background-position: center center;
}

@media (max-width: 991.98px) {
    .half .image {
        height: 300px;
    }
}

.half .text {
    padding: 100px 7%;
}

@media (max-width: 991.98px) {
    .half .text {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.half .text h2 {
    font-size: 40px;
}

@media (max-width: 991.98px) {
    .half .text h2 {
        font-size: 30px;
    }
}

.testimonial blockquote {
    padding: 0;
}

.testimonial blockquote p {
    line-height: 1.5;
    font-family: 'Andika', arial, sans-serif;
    font-size: 14px;
    color: #000;
    font-style: italic;
}

.testimonial .author-image img {
    width: 70px;
}

.post .media-custom {
    background: #fff;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
}

.post .media-custom:hover,
.post .media-custom:focus {
    -webkit-box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.post .media-custom a {
    color: #000;
}

.post .media-custom a:hover {
    color: #65c0ba;
}

.post .media-custom .media-body {
    padding: 10px 30px;
}

.post .media-custom h2 {
    font-size: 26px;
}

.media-custom .meta-post {
    color: #ced4da;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.owl-carousel .owl-item {
    opacity: 0.4;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -10px;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-prev:focus,
.owl-carousel .owl-nav .owl-prev:active,
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-next:focus,
.owl-carousel .owl-nav .owl-next:active {
    outline: none;
}

.owl-carousel .owl-nav .owl-prev span:before,
.owl-carousel .owl-nav .owl-next span:before {
    font-size: 40px;
}

.owl-carousel .owl-nav .owl-prev {
    left: 30px !important;
}

.owl-carousel .owl-nav .owl-next {
    right: 30px !important;
}

.owl-carousel .owl-dots {
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
    border-width: 2px !important;
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
}

.owl-carousel.home-slider {
    z-index: 1;
    position: relative;
}

.owl-carousel.home-slider .owl-nav {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.owl-carousel.home-slider .owl-nav button {
    color: #fff;
}

.owl-carousel.home-slider:focus .owl-nav,
.owl-carousel.home-slider:hover .owl-nav {
    opacity: 1;
    visibility: visible;
}

.owl-carousel.home-slider .slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: calc(100vh - 117px);
    min-height: 700px;
    position: relative;
}

.owl-carousel.home-slider .slider-item .slider-text {
    color: #fff;
    height: calc(100vh - 117px);
    min-height: 700px;
}

.owl-carousel.home-slider .slider-item .slider-text h1 {
    font-size: 40px;
    color: #fff;
    line-height: 1.2;
    font-weight: 800 !important;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .owl-carousel.home-slider .slider-item .slider-text h1 {
        font-size: 40px;
    }
}

.owl-carousel.home-slider .slider-item .slider-text p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
    color: white;
}

.owl-carousel.home-slider .slider-item.dark .child-name {
    color: #000;
}

.owl-carousel.home-slider .slider-item.dark h1 {
    color: #000;
}

.owl-carousel.home-slider .slider-item.dark p {
    color: #000;
}

.owl-carousel.home-slider .owl-dots {
    position: absolute;
    bottom: 100px;
    width: 100%;
}

.owl-carousel.home-slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: none !important;
    position: relative;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    background: #fff;
}

.owl-carousel.home-slider .owl-dots .owl-dot.active {
    border: 2px solid white;
    background: none;
}

.owl-carousel.major-caousel {
    -webkit-box-shadow: 0 10px 70px -10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 70px -10px rgba(0, 0, 0, 0.2);
}

.owl-carousel.major-caousel .owl-stage-outer {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.owl-carousel.major-caousel .owl-stage-outer {
    padding-top: 30px;
    padding-bottom: 30px;
}

.owl-carousel.major-caousel .slider-item {
    height: inherit;
    min-height: inherit;
}

.owl-carousel.major-caousel .slider-item img {
    margin-bottom: 0;
}

.owl-carousel.major-caousel .owl-nav {
    opacity: 1;
    visibility: visible;
}

.owl-carousel.major-caousel .owl-nav .owl-prev,
.owl-carousel.major-caousel .owl-nav .owl-next {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    color: #495057;
}

.owl-carousel.major-caousel .owl-nav .owl-prev:hover,
.owl-carousel.major-caousel .owl-nav .owl-prev:focus,
.owl-carousel.major-caousel .owl-nav .owl-next:hover,
.owl-carousel.major-caousel .owl-nav .owl-next:focus {
    color: #6c757d;
    outline: none;
}

.owl-carousel.major-caousel .owl-nav .owl-prev.disabled,
.owl-carousel.major-caousel .owl-nav .owl-next.disabled {
    color: #dee2e6;
}

.owl-carousel.major-caousel .owl-nav .owl-prev {
    left: -60px !important;
}

.owl-carousel.major-caousel .owl-nav .owl-next {
    right: -60px !important;
}

.owl-carousel.major-caousel .owl-dots {
    bottom: 50px !important;
}

@media (max-width: 991.98px) {
    .owl-carousel.major-caousel .owl-dots {
        bottom: 10px !important;
    }
}

.owl-custom-nav {
    float: right;
    position: relative;
    z-index: 10;
}

.owl-custom-nav .owl-custom-prev,
.owl-custom-nav .owl-custom-next {
    padding: 10px;
    font-size: 30px;
    background: #ccc;
    line-height: 0;
    width: 60px;
    text-align: center;
    display: inline-block;
}

.footer-section {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    font-size: 15px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-section h3 i {
    color: var(--color-highlight);
    /* font-size: 20px; */
    margin-right: 5px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-highlight) !important;
}

.footer-section .link li {
    margin-bottom: 10px;
}

.footer-section .link i {
    color: var(--color-highlight);
    margin-right: 5px;
    transition: transform 0.2s ease;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.footer-section .contact-info i {
    color: var(--color-highlight);
    width: 20px;
    text-align: center;
}

.footer-section .bordertop {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Social Icons */
.footer-section .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin: 0 6px;
    line-height: 1;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.footer-section .social a:hover {
    /* background: var(--color-highlight); */
    /* color: #fff; */
    transform: translateY(-3px);
}

.footer-section .social .tripadvisor-link {
    width: 40px;
}

.footer-section .social .tripadvisor-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 auto;
}
.ftco-img-flaticon {
    text-align: center;
}

.ftco-img-flaticon img {
    width: 70px;
}

.side-box,
.sidebar-search {
    padding: 30px;
    background: #fff;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.side-box .heading,
.sidebar-search .heading {
    font-size: 18px;
    margin-bottom: 30px;
    font-family: 'Andika', arial, sans-serif;
}

.post-list li {
    margin-bottom: 20px;
}

.post-list li a > div {
    margin-top: -10px;
}

.post-list li a .meta {
    font-size: 13px;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-list li a .image {
    width: 150px;
}

.post-list li a h3 {
    font-size: 16px;
}

.post-list li:last-child {
    margin-bottom: 0;
}

.sidebar-search .form-group {
    position: relative;
    margin-bottom: 0;
}

.sidebar-search .icon-search {
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sidebar-search .search-input {
    border-color: #dee2e6;
    padding-left: 40px;
    border-radius: 0px;
}

.sidebar-search .search-input:focus,
.sidebar-search .search-input:active {
    border-color: #343a40;
}

.contact-section .contact-info p {
    font-family: 'Andika', times, serif;
    color: #000;
    font-size: 30px;
    margin-bottom: 30px;
}

.contact-section .contact-info p .d-block {
    font-size: 14px;
    letter-spacing: 0.2em;
    font-family: 'Andika', arial, sans-serif;
    text-transform: uppercase;
    color: #65c0ba;
    font-weight: bold;
}

.contact-section form.bg-white {
    -webkit-box-shadow: 0 3px 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 20px -5px rgba(0, 0, 0, 0.5);
}

.post-categories li {
    display: block;
}

.post-categories li a {
    display: block;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.post-categories li a .count {
    position: absolute;
    top: 0;
    right: 0;
    color: #6c757d;
}

.custom-pagination .page-item .page-link {
    text-align: center;
    border: none;
    background: none;
    border-radius: 50% !important;
    width: 50px;
    height: 50px;
    padding: 0;
    line-height: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.custom-pagination .page-item.active .page-link {
    background: #65c0ba;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
}
.inspirations-section {
    padding: 80px 0;
    background-color: #f9f7f2; /* Warm off-white from your palette */
}

.inspirations-section .heading {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.inspirations-section .sub-heading {
    color: var(--color-text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.inspiration-box {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.inspiration-box img {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.box-content {
    padding: 24px;
}

.box-content h3 {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.box-content p {
    color: var(--color-accent);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .inspiration-box img {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .inspirations-section {
        padding: 60px 0;
    }

    .box-content {
        padding: 20px;
    }

    .box-content h3 {
        font-size: 1.4rem;
    }

    .inspiration-box img {
        height: 200px;
    }
}

.top-bar {
    width: 100%;
    background: var(--color-primary);
    color: white;
    font-size: 0.9rem;
    padding: 6px 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-bar .contact-info span {
    margin-right: 15px;
}

.top-bar i {
    margin-right: 5px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #d1f7f7;
}

@media (max-width: 767.98px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 1px;
    }
    .top-bar-email {
        display: none;
    }
}

.text-teal {
    color: teal;
}

.bg-experiences {
    background: #fafafa;
    border-top: 1px solid #e0e0e0;
}

.home-packages-section {
    background: #fafafa;
    border-top: 1px solid #e0e0e0;
    /* background-color: #f9f7f2; Warm off-white */
}
.services-section {
    padding: 80px 0;
    background-color: #f9f7f2; /* Warm off-white */
}

.services-section .heading {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-section .sub-heading {
    color: var(--color-text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); */
    color: white;
    transition: background 0.3s ease;
}

.service-card:hover .card-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
}

.card-content h3 {
    margin-bottom: 12px;
    line-height: 1;
}

.highlight-badge {
    position: relative;
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-highlight); /* #E6B325 */
    color: #000;
    font-size: 1.6rem;
    font-weight: 400;
    border-radius: 4px;
    z-index: 1;
}

/* Optional: Add a subtle tilt for a dynamic look (like a ribbon) */
.highlight-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    bottom: 0;
    width: 100%;
    background: inherit;
    z-index: -1;
    transform: skewX(-8deg);
    border-radius: 4px;
}

/* Ensure text stays upright */
.highlight-badge span {
    position: relative;
    z-index: 2;
}

.divider {
    width: 40px;
    height: 3px;
    background: var(--color-warning);
    margin: 12px 0 16px;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-read-more {
    background-color: var(--color-highlight);
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-read-more:hover {
    color: white;
    background-color: var(--color-highlight);
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .service-card img {
        height: 240px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

    .btn-read-more {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
.experiences-section .heading {
    font-family: 'Cinzel Decorative', serif;
    color: var(--color-highlight);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.experience-card {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-height: 280px;
}

.experience-card .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.experience-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.experience-card .card-body {
    position: relative;
    z-index: 1;
}

/* Camps and Lodges Styles */
.card-text {
    font-size: 14px;
    margin-bottom: 8px;
}
.camp-card__button {
    background-color: var(--color-primary);
    color: white;
    border-radius: 25px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    gap: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.camp-card__button:hover {
    background-color: var(--color-accent);
    text-decoration: none;
    color: white;
}

/* NavBar Styles */
@media screen and (min-width: 1024px) {
    :root {
        --normal-font-size: 10px;
    }
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== HEADER ===============*/
.header {
    /* position: fixed; */
    /* top: 0;
    left: 0; */
    width: 100%;
    background-color: var(--color-background);
    /* height: fit-content; */
    /* background-color: var(--color-primary); */
    /* box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3); */
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
}

.nav__burger,
.nav__close {
    color: black;
}

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

.nav__logo {
    width: 1.5rem;
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
    opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
    .nav__menu {
        position: absolute;
        left: 0;
        top: 4.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
        z-index: var(--z-fixed);
    }

    .nav__menu::-webkit-scrollbar {
        width: 0;
    }

    .nav__list {
        background-color: var(--white-color);
        width: 100%;
        padding: 0 1rem 0.5rem 0.5rem;
        /* padding-top: 1rem; */
    }

    .nav__data {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

.nav__link {
    color: black;
    font-weight: var(--font-semi-bold);
    /* font-size: 1rem; */
    font-size: 12px;
    padding: 0.5rem;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5px;
    text-transform: uppercase;
    align-items: center;
    transition: background-color 0.3s;
}

/* Show menu */
.show-menu {
    opacity: 1;
    top: 6.5rem;
    pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 12px;
    -webkit-text-stroke: 0.5px currentColor;
    text-shadow: 0 0 1px currentColor;
    transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
    padding: 0.25rem 1rem;
    color: var(--black-color);
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: var(--font-semi-bold);
    font-size: 12px;
    transition: background-color 0.3s;
}

.dropdown__link i,
.dropdown__sublink i {
    font-size: 1rem;
    font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
    color: var(--color-primary);
}

.dropdown__menu {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    /* transition: max-height 0.4s ease-out; */
    transition: opacity max-height 0.2s ease;
}
.dropdown__submenu {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    /* transition: max-height 0.4s ease-out; */
    transition: opacity max-height 0.2s ease;
}

/* Show dropdown menu & submenu */
/* .dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height 0.4s ease-in;
} */

.open_dropdown__menu {
    max-height: 1000px;
    transition: max-height 0.4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
    margin-left: auto;
}

.dropdown__sublink {
    background-color: var(--black-color-lighten);
}

/* For large devices */
@media screen and (min-width: 1118px) {
    .container {
        margin-inline: auto;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav__menu {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: top 0.4s, opacity 0.3s;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 32px;
    }

    .nav__link {
        height: 100%;
        padding: 0;
    }

    .nav__link:hover {
        /* background-color: var(--color-primary); */
        color: var(--color-primary);
    }

    .dropdown__item,
    .dropdown__subitem {
        position: relative;
    }

    .dropdown__menu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        z-index: var(--z-fixed);
        background-color: white;
        left: 0;
        width: 150px;
        top: 3.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s, top 0.3s;
    }
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        z-index: var(--z-fixed);
        left: 0;
        top: 1rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s, top 0.3s;
    }
    /* 
    .dropdown__link,
    .dropdown__sublink {
        background: var(--color-secondary);
    } */

    .dropdown__menu li {
        padding: 0.5rem 0.5rem;
    }

    .dropdown__subitem .dropdown__link {
        padding-inline: 1rem;
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: 0.5rem;
    }

    /* Show dropdown menu */
    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        top: 100%;
        pointer-events: initial;
        transition: top 0.3s;
    }

    /* Show dropdown submenu */
    .dropdown__subitem:hover > .dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top 0.3s;
    }
}
/* Contact Section */
#contact {
    padding: 80px 0;
    padding-bottom: 0%;
}

#contact .heading {
    color: var(--color-primary);
    font-size: 2.5rem;
}

#contact .sub-heading {
    color: var(--color-text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

#contact .info-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

#contact .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#contact .form-control:focus {
    border-color: var(--color-highlight);
    box-shadow: 0 0 0 0.25rem rgba(230, 179, 37, 0.15);
}

#contact .btn-primary {
    background-color: var(--color-primary);
    border: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

#contact .btn-primary:hover {
    background-color: var(--color-highlight);
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    #contact .heading {
        font-size: 2rem;
    }
}
/* === Safari Card – Premium Design === */
/* Animated Compass (top-right corner) */
.adventure-compass {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--color-highlight);
    animation: floatCompass 8s infinite ease-in-out;
    z-index: 10;
    opacity: 0.9;
    display: none;
}

@media (min-width: 992px) {
    .adventure-compass {
        display: block;
    }
}

@keyframes floatCompass {
    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }
    25% {
        transform: rotate(5deg) translateY(-5px);
    }
    75% {
        transform: rotate(-5deg) translateY(5px);
    }
}

/* Animated Section Title */
.adventure-title {
    position: relative;
    display: inline-block;
}

.adventure-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-highlight);
    animation: titleTrail 1.2s forwards ease-out;
}

@keyframes titleTrail {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.safari-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(139, 94, 60, 0.08);
}

.safari-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(139, 94, 60, 0.22);
}

/* --- Image --- */
.safari-card .card-img-top {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.safari-card:hover .card-img-top {
    transform: scale(1.03);
}

.safari-card .card-img-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
    pointer-events: none;
    z-index: 1;
}

/* --- Badge: Duration --- */
.safari-card .duration-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-highlight);
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* --- Body --- */
.safari-card .card-body {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.safari-card h3.card-title {
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
    font-size: 1.35rem;
    line-height: 1.3;
}

.safari-card p.overview {
    color: var(--color-text);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.98rem;
}

/* --- Section Headings (Itinerary, Includes, etc.) --- */
.safari-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 1.1rem 0 0.6rem;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 0.3rem;
}

.safari-card h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 1px;
}

/* --- Lists --- */
.safari-card ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1rem;
    flex: 1;
}

.safari-card ul li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.65rem;
    font-size: 0.94rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.safari-card ul li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--color-highlight);
    font-size: 0.92rem;
    width: 1.2rem;
    text-align: center;
}

/* --- Price & CTA --- */
.safari-card .price {
    font-weight: 800;
    color: var(--color-highlight);
    font-size: 1.35rem;
    margin: 0.8rem 0;
    line-height: 1.3;
}

.safari-card .price small {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: block;
    margin-top: 0.25rem;
}

.btn-book-safari {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.55rem 1.4rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.35s ease;
    text-align: center;
    text-decoration: none;
    font-size: 0.98rem;
    margin-top: auto;
    width: fit-content;
}

.btn-book-safari:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 94, 60, 0.25);
}

/* === Responsive Adjustments === */

/* Tablet */
@media (max-width: 992px) {
    .safari-card .card-img-top {
        height: 220px;
    }
    .safari-card h3.card-title {
        font-size: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .safari-card {
        border-radius: 14px;
    }
    .safari-card .card-img-top {
        height: 200px;
    }
    .safari-card .card-body {
        padding: 1.4rem;
    }
    .safari-card h3.card-title {
        font-size: 1.2rem;
    }
    .safari-card .price {
        font-size: 1.25rem;
    }
    .btn-book-safari {
        padding: 0.5rem 1.3rem;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .safari-card .card-img-top {
        height: 180px;
    }
    .safari-card h3.card-title {
        font-size: 1.15rem;
    }
    .safari-card ul li {
        font-size: 0.9rem;
        padding-left: 1.7rem;
    }
}

.experience-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid rgba(139, 94, 60, 0.12);
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(139, 94, 60, 0.15);
}

.experience-card .card-body {
    padding: 1.6rem;
}

.experience-card h3 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-size: 1.3rem;
}

.experience-card p.time {
    font-size: 0.92rem;
    color: var(--color-secondary);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.experience-card p.description {
    color: var(--color-text);
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
}

.experience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.experience-card ul li i {
    color: var(--color-highlight);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.package-duration {
    font-weight: 700;
    color: #8b5e3c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.itinerary-day-title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 900;
}

.itinerary-day-description {
    font-size: 14px;
}

.safari__card_title {
    font-family: 'Roboto', serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}
.fa-circle-xmark {
    color: red;
}
.fa-circle-check {
    color: green;
}

/* =========================================
   STICKY CTA & WHATSAPP FLOAT STYLES
   ========================================= */

/* Mobile Sticky CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  background: white;
  border-top: 1px solid #eee;
  height: 60px; /* Fixed height to prevent layout shifts */
}

.sticky-cta-bar .btn {
  border-radius: 0; /* Full flushed buttons */
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.sticky-cta-bar .btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
}

.sticky-cta-bar .btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
}

.sticky-cta-bar .btn-book {
  background-color: var(--color-primary); /* Uses your brand color */
  color: white;
  border: none;
}

.sticky-cta-bar .btn-book:hover {
  background-color: #6d4c2f;
  color: white;
}

/* Add padding to body/section on mobile to prevent content from being hidden behind bar */
@media (max-width: 768px) {
  body.has-sticky-cta {
    padding-bottom: 60px;
  }
  
  /* Or specifically for package page content wrapper */
  section.section {
    padding-bottom: 80px; 
  }
}

/* Global Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
  box-shadow: 4px 4px 6px #666;
}

.whatsapp-float i {
  margin-top: 2px; /* Visual adjustment for FontAwesome icon */
}

/* Adjust position on mobile if sticky bar is present */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 80px; /* Move up above the sticky bar (60px + 20px gap) */
    right: 20px;
    font-size: 25px;
  }
}

/* WhatsApp Float Tooltip */
.whatsapp-float .whatsapp-tooltip {
  visibility: hidden;
  width: 200px;
  background-color: white;
  color: #333;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  position: absolute;
  bottom: 15px;
  right: 75px; /* Position to the left of the button */
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  font-size: 13px;
  line-height: 1.4;
  border: 1px solid #eee;
}

.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 70%;  /* Arrow position vertical */
  right: -10px; /* Pointing to the right */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

.whatsapp-float:hover .whatsapp-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Adjust tooltip for mobile if needed, or hide it if it takes too much space */
@media (max-width: 768px) {
  .whatsapp-float .whatsapp-tooltip {
    display: none; /* Often better to hide hover tooltips on touch devices */
  }
}
