:root {
    /* Original Site Brand Colors */
    --primary: #04AA6D;
    --primary-dark: #038857;
    --dark: #213a2b;
    --dark-alt: #1a2f22;
    --light: #f4f7f5;
    --text: #213a2b;
    --text-light: #526f60;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.text-center {
    text-align: center;
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 1rem 0 2rem;
}

.accent-line.center {
    margin: 1rem auto 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.dark-bg {
    background-color: var(--dark);
    color: var(--white);
}

.dark-bg h2,
.dark-bg h3,
.dark-bg h4 {
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    transition: var(--transition);
    border-radius: 4px;
}

.navbar.scrolled .logo img {
    height: 45px;
}

.navbar.solid-nav {
    background: var(--dark);
    padding: 0.8rem 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-links a,
.navbar.solid-nav .nav-links a {
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links .btn-book {
    background: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    color: var(--white);
    text-shadow: none;
}

.nav-links .btn-book::after {
    display: none;
}

.nav-links .btn-book:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('../img/giraffeonplains.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-primary i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro Details */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.intro-images {
    position: relative;
    height: 500px;
}

.img-float {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    object-fit: cover;
}

.img-1 {
    width: 70%;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 2;
}

.img-2 {
    width: 60%;
    height: 300px;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 10px solid var(--light);
}

.img-float:hover {
    transform: translateY(-10px);
    z-index: 4;
}

/* Adventure Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.adventure-card {
    background: var(--dark-alt);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 420px;
    transition: var(--transition);
}

.adventure-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-img {
    height: 50%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.adventure-card:hover .card-img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    height: 50%;
    background: var(--dark-alt);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.card-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s;
}

.adventure-card:hover .card-link::after {
    transform: translateX(8px);
}

/* Footer & Subpages */
.sub-page-hero {
    height: 40vh;
    min-height: 300px;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-page-hero h1 {
    color: var(--white);
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-content {
    padding: 4rem 0;
}

.content-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.footer {
    background: #1a2920;
    /* Deep rich forest green */
    color: #e2e8e4;
    padding: 5rem 0 0;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    flex: 2 1 250px;
}

.footer-links,
.footer-extra,
.footer-contact {
    flex: 1 1 150px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-brand p {
    color: #aebdb4;
    max-width: 360px;
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.05rem;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1.8rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: #aebdb4;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-contact p {
    margin-bottom: 1.4rem;
    color: #aebdb4;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 300;
}

.footer-contact a {
    color: #aebdb4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact i {
    color: var(--primary);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(159, 193, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact a:hover i,
.footer-contact p:hover i {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.footer-bottom {
    background: #142019;
    padding: 1.5rem 0;
    text-align: center;
    color: #6a7c70;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-images {
        margin-top: 2rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        gap: 3rem;
    }

    .footer-brand {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links,
    .footer-extra,
    .footer-contact {
        flex: 1 1 40%;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .navbar.scrolled .hamburger {
        color: var(--white);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-links,
    .footer-extra,
    .footer-contact {
        flex: 1 1 100%;
        text-align: center;
    }

    .img-2 {
        width: 80%;
    }

    .img-1 {
        width: 90%;
    }
}

/* Custom WhatsApp Chat Widget */
.wa-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--font-body);
}

.wa-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.wa-widget-container:hover .wa-chat-box,
.wa-widget-container.wa-show .wa-chat-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.wa-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.wa-chat-title {
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

.wa-chat-close {
    color: #aaa;
    cursor: pointer;
    font-size: 1.1rem;
}

.wa-chat-body {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 15px;
}

.wa-chat-avatar {
    position: relative;
    width: 45px;
    height: 45px;
    background: #6c5ce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px #ffa502;
}

.wa-chat-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #00e676;
    border-radius: 50%;
    border: 2px solid white;
}

.wa-chat-message {
    background: #f5f6fa;
    padding: 12px 15px;
    border-radius: 0 12px 12px 12px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.wa-chatbot-btn {
    width: 65px;
    height: 65px;
    background-color: #0052cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    float: right;
}

.wa-chatbot-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .wa-widget-container {
        bottom: 20px;
        right: 20px;
    }

    .wa-chatbot-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .wa-chat-box {
        bottom: 70px;
        width: 280px;
    }
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: #FFF;
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.float-chat {
    background-color: var(--primary);
}

.float-chat:hover {
    box-shadow: 0 6px 20px rgba(203, 168, 118, 0.4);
}

/* Tooltip on Hover */
.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    background: var(--dark);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(10px);
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Tooltip Triangle */
.float-btn::after {
    content: '';
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--dark);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.float-btn:hover::before,
.float-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(-50%);
}

.float-btn:hover::before {
    transform: translateX(0);
    /* Reset for before specifically since it had X transform */
}

@media (max-width: 768px) {
    .floating-widgets {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .float-btn::before,
    .float-btn::after {
        display: none;
        /* Hide tooltips on mobile */
    }
}

/* Rich Tour Page Layout */
.tour-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

@media (max-width: 900px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }
}

.tour-main-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tour-sidebar {
    position: sticky;
    top: 100px;
}

/* Tabs */
.tour-tabs {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tour-tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    font-family: inherit;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.tour-tab-btn i {
    margin-right: 8px;
}

.tour-tab-btn:hover {
    color: var(--primary);
}

.tour-tab-btn.active {
    color: white;
    background: #9FC154;
    /* Light greenish from mockup */
    border-color: #9FC154;
    border-radius: 4px 4px 0 0;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Meta Data */
.tour-meta {
    display: flex;
    gap: 20px;
    font-weight: 600;
    color: #444;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.tour-meta i {
    color: #9FC154;
    margin-right: 8px;
}

/* Includes/Excludes Split */
.split-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 30px;
    overflow: hidden;
}

@media (max-width: 600px) {
    .split-lists {
        grid-template-columns: 1fr;
    }
}

.list-col {
    padding: 25px;
}

.list-col h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.list-col.includes {
    border-right: 1px solid #eee;
}

@media (max-width: 600px) {
    .list-col.includes {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

/* FAQ Accordion */
.faq-section {
    margin-top: 50px;
}

.faq-accordion .faq-item {
    border: 1px solid #ebebeb;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-accordion .faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: white;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-accordion .faq-question:hover {
    background: #fafafa;
}

.faq-accordion .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background: white;
}

.faq-accordion .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
    border-top: 1px solid #eee;
}

.faq-accordion .faq-item .fa-chevron-down {
    transition: transform 0.3s;
    color: #aaa;
}

.faq-accordion .faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Sidebar Booking Form */
.booking-widget {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.booking-widget h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.booking-badge {
    display: inline-block;
    background: #9FC154;
    color: white;
    padding: 10px 25px;
    font-weight: 600;
    margin-bottom: 25px;
    border-radius: 4px;
}

.booking-form .form-group {
    margin-bottom: 15px;
    position: relative;
}

.booking-form .form-group i {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #aaa;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.booking-form textarea {
    padding: 15px;
    height: 120px;
    resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: #9FC154;
    outline: none;
}

.booking-form .btn-submit {
    width: 100%;
    padding: 15px;
    background: #9FC154;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.booking-form .btn-submit:hover {
    background: #8caf45;
}

.promo-image {
    margin-top: 30px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.promo-image img {
    width: 100%;
    display: block;
    filter: brightness(0.7);
    transition: filter 0.3s;
}

.promo-image:hover img {
    filter: brightness(0.9);
}

.promo-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}