/* Global Styles */
:root {
    --primary-color: #09612b;
    --primary-dark: #054d1f;
    --secondary-color: #080206;
    --secondary-dark: #15602b;
    --text-color: #333;
    --text-light: #777;
    --light-bg: #f9f9f9;
    --white: #fff;
    --black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.section-padding {
    padding: 80px 0;
}

.dark-bg {
    background-color: var(--secondary-color);
    color: var(--white);
}

.light-bg {
    background-color: var(--light-bg);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    text-transform: uppercase;
}

.dark-bg .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dark-bg .section-subtitle {
    color: rgba(255,255,255,0.8);
}

/* ====================== */
/* UPDATED HEADER STYLES */
/* ====================== */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header_logo {
    display: flex;
    align-items: center;
}

.header_logo-svg {
    margin-right: 15px;
}

.header_logo-svg svg {
    width: 50px;
    height: 50px;
}

.header_logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

/* Navigation Styles */
.header_navbar {
    display: flex;
    margin-left: auto;
}

.nav-item {
    width: 100%;
    margin: 10px 0;
}

.navbar_btn {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar_btn:hover {
    color: var(--primary-color);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #555;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 8px 0;
}

/* Mobile Toggle Button */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Slider Styles */
#main {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateX(100%);
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

/* Ensure content stays above slides */
.index__main {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* ================================= */
/* OUR SPECIAL DAY TOURS - BOOKING SECTION */
/* ================================= */

/* ================================= */
/* OUR SPECIAL DAY TOURS - MZINGO STYLE */
/* ================================= */

#faq {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

#faq .container {
    position: relative;
    z-index: 2;
}

#faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/index/safari-pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.day-tours-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.day-tours-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.day-tours-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.day-tours-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 18px;
}

.day-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.tour-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: white;
    border: none;
}

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

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

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

.tour-card-content {
    padding: 20px;
    background: white;
}

.tour-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.tour-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tour-duration {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.tour-duration i {
    margin-right: 8px;
}

.tour-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.view-details-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

.view-details-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tour Highlights */
.tour-highlights {
    margin-top: 15px;
}

.tour-highlights h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.tour-highlights ul {
    list-style: none;
    margin-bottom: 15px;
}

.tour-highlights li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.tour-highlights li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Booking Callout */
.booking-callout {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.booking-callout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/index/safari-pattern-light.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.booking-callout h3 {
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.booking-callout p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.booking-phone {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-phone:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .day-tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .tour-card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .day-tours-header h2 {
        font-size: 30px;
    }
    
    .day-tours-header p {
        font-size: 16px;
    }
    
    .booking-callout h3 {
        font-size: 24px;
    }
    
    .booking-phone {
        font-size: 18px;
        padding: 12px 25px;
    }
}

@media (max-width: 576px) {
    .day-tours-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-card-image {
        height: 180px;
    }
    
    .booking-callout {
        padding: 20px;
    }
    
    .booking-callout h3 {
        font-size: 22px;
    }
    
    .booking-callout p {
        font-size: 16px;
    }
}

/* ================================= */
/* HAPPY CLIENTS GALLERY SECTION */
/* ================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transition: all 0.4s ease;
}

.gallery-caption h4 {
    font-size: 18px;
    margin-bottom: 5px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.gallery-caption p {
    font-size: 14px;
    opacity: 0.9;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.2s;
}

/* Hover Effects */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-caption {
    bottom: 0;
}

.gallery-item:hover .gallery-caption h4,
.gallery-item:hover .gallery-caption p {
    transform: translateY(0);
    opacity: 1;
}

/* Animation for Scroll */
@media (prefers-reduced-motion: no-preference) {
    .gallery-item {
        animation-play-state: paused;
    }
    
    .gallery-item.in-view {
        animation-play-state: running;
    }
}

/* ====================== */
/* EXISTING CONTENT STYLES */
/* ====================== */

/* Hero Section */
#main {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    text-align: center;
}

.index__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.index__main-left {
    max-width: 800px;
    margin: 0 auto;
}

.index__main-slogan {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.index__main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.index__main-desc {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.index__main-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.link_btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.link_btn.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
}

.link_btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.link_btn.secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Safari Packages */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.card h3 {
    color: var(--primary-color);
    font-size: 22px;
    padding: 20px 20px 10px;
}

.card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.card-footer {
    padding: 15px 20px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-small {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background-color: var(--primary-dark);
}

/* Foundation Section */
.foundation {
    text-align: center;
}

.foundation h2 {
    margin-bottom: 30px;
}

.foundation p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.foundation-donate button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.foundation-donate button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.foundation-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.foundation-grid img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.index__about-left {
    flex: 1;
    min-width: 300px;
}

.index__about-img {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.index__about-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.about-features {
    margin: 20px 0;
    list-style: none;
}

.about-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Footer */
.footer__nav {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.nav__block {
    flex: 1;
    min-width: 200px;
}

.nav__label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.nav__link {
    display: block;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.nav__link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer {
    background-color: var(--secondary-dark);
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.footer__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__logo {
    display: flex;
    align-items: center;
}

.logo__svg svg {
    width: 40px;
    height: 40px;
}

.logo__text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header_navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        overflow-y: auto;
    }
    
    .header_navbar.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        margin: 10px 0;
    }
    
    .navbar_btn {
        padding: 12px 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
        border-left: 2px solid var(--primary-color);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown-toggle i {
        transform: rotate(0deg) !important;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg) !important;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .navbar-toggler.active {
        position: fixed;
        right: 20px;
        top: 20px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    #faq::before {
        font-size: 80px;
        right: -30px;
        top: 30px;
    }
    
    .day-tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .index__main-title {
        font-size: 32px;
    }
    
    .index__main-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .link_btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    #faq::before {
        display: none;
    }
    
    .tour-card img {
        height: 180px;
    }
    
    .book-now-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .header_logo-text {
        font-size: 20px;
    }
    
    .index__main-title {
        font-size: 28px;
    }
    
    .index__main-slogan {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.card, .gallery-grid img, .day-tours-grid img {
    animation: fadeIn 0.5s ease forwards;
}

.link_btn:hover, .btn-small:hover, .foundation-donate button:hover {
    animation: pulse 1s infinite;
}

/* Tour Booking Page Styles */
.tour-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.tour-hero-content {
    flex: 1;
    min-width: 300px;
}

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

.tour-hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.tour-title {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.tour-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.tour-duration, .tour-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
}

.tour-highlights {
    margin-top: 30px;
}

.tour-highlights h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.tour-highlights ul {
    list-style: none;
}

.tour-highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-highlights i {
    color: var(--primary-color);
}

.tour-details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.tour-description {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.itinerary {
    margin-top: 30px;
}

.itinerary-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.itinerary-item:last-child {
    border-bottom: none;
}

.time {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.activity h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.activity p {
    color: var(--text-light);
}

.booking-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.booking-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(9, 97, 43, 0.1);
}

.book-now-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-now-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.booking-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.booking-info h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.booking-info ul {
    list-style: none;
}

.booking-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-info i {
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 20px;
}

.rating {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-author h4 {
    color: white;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tour-details-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        position: static;
    }
    
    .tour-hero {
        flex-direction: column;
    }
    
    .tour-hero-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .tour-title {
        font-size: 28px;
    }
    
    .tour-meta {
        flex-direction: column;
        gap: 10px;
    }
}