/* ========================================
   WILDHEART SAFARIS - MAIN STYLESHEET
   Safari Tourism Website
   ======================================== */

/* ========================================
   ROOT VARIABLES - Safari Color Palette
   ======================================== */
:root {
    --primary-color: #D4A574;
    --secondary-color: #8B6F47;
    --accent-color: #E67E22;
    --dark-brown: #3E2723;
    --olive-green: #6B7C3F;
    --sand-color: #F4E8D8;
    --sunset-orange: #FF6B35;
    --text-dark: #2C2C2C;
    --text-light: #FFFFFF;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.3);
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}

img {
    max-width: 100%;
    height: auto;
}

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

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-brown);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(62, 39, 35, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light) !important;
    letter-spacing: 1px;
}

.navbar-brand i {
    color: var(--accent-color);
    margin-right: 8px;
}

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

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

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

.btn-safari {
    background: var(--accent-color);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.btn-safari:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION WITH SLIDER
   ======================================== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .carousel-indicators {
    bottom: 30px;
    z-index: 2;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-section .carousel-indicators button.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 126, 34, 0.7);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-section .carousel-control-prev {
    left: 30px;
}

.hero-section .carousel-control-next {
    right: 30px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    opacity: 1;
    background: var(--accent-color);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.7), rgba(139, 111, 71, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    animation: fadeInUp 1.4s ease;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-primary-safari {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--text-light);
}

.btn-primary-safari:hover {
    background: transparent;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.btn-outline-safari {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline-safari:hover {
    background: var(--text-light);
    color: var(--dark-brown);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--text-light);
}

/* ========================================
   BOOKING SEARCH SECTION
   ======================================== */
.booking-search {
    background: var(--sand-color);
    padding: 60px 0;
}

.search-card {
    background: var(--text-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.search-card h3 {
    color: var(--dark-brown);
    margin-bottom: 30px;
}

.search-card .form-control,
.search-card .form-select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
}

.search-card .form-control:focus,
.search-card .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

.btn-search {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: var(--sunset-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.3);
}

/* ========================================
   SAFARI PACKAGES
   ======================================== */
.packages-section {
    background: var(--text-light);
}

.package-card {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

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

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

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

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

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-content {
    padding: 25px;
}

.package-title {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.package-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.meta-item i {
    margin-right: 8px;
    color: var(--accent-color);
}

.package-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.package-price span {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-features li {
    padding: 8px 0;
    color: #666;
}

.package-features li i {
    color: var(--olive-green);
    margin-right: 10px;
}

.package-buttons {
    display: flex;
    gap: 10px;
}

.package-buttons .btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}

/* ========================================
   WILDLIFE EXPERIENCE
   ======================================== */
.wildlife-experience {
    background: linear-gradient(135deg, var(--dark-brown), var(--secondary-color));
    color: var(--text-light);
}

.wildlife-experience .section-title,
.wildlife-experience .section-subtitle {
    color: var(--text-light);
}

.experience-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.experience-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.experience-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ========================================
   DESTINATIONS
   ======================================== */
.destinations-section {
    background: var(--sand-color);
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 30px;
    cursor: pointer;
}

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

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(230, 126, 34, 0.9), rgba(0, 0, 0, 0.3));
}

.destination-title {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 10px;
}

.destination-info {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.9;
}

.destination-info i {
    margin-right: 8px;
}

/* ========================================
   LUXURY LODGES
   ======================================== */
.lodges-section {
    background: var(--text-light);
}

.lodge-card {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.lodge-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.lodge-rating {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--text-light);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.lodge-rating i {
    color: #FFD700;
}

.lodge-content {
    padding: 30px;
}

.lodge-title {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.lodge-location {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.lodge-location i {
    margin-right: 8px;
}

.lodge-amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.amenity-badge {
    background: var(--sand-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dark-brown);
}

.lodge-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.lodge-price span {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-section {
    background: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 300px;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 126, 34, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--text-light);
}

/* Gallery Filter */
.gallery-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 25px;
    margin: 5px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-light);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    background: var(--sand-color);
}

.testimonial-card {
    background: var(--text-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid var(--accent-color);
    overflow: hidden;
}

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

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 5px;
}

.testimonial-location {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.9), rgba(230, 126, 34, 0.9)),
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1200') center/cover;
    padding: 100px 0;
    text-align: center;
    color: var(--text-light);
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner .btn {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-brown);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 3px;
}

.newsletter-form .input-group {
    margin-top: 15px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    color: var(--text-light);
}

.newsletter-form .btn-safari {
    padding: 12px 25px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

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

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

.whatsapp-float i {
    line-height: 60px;
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

.scroll-top:hover {
    background: var(--sunset-orange);
    transform: translateY(-5px);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    background: var(--text-light);
}

.contact-info-card {
    background: var(--sand-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-light);
}

.contact-form {
    background: var(--text-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   SAFARI FILTERS
   ======================================== */
.filter-section {
    background: var(--sand-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.filter-section h5 {
    color: var(--dark-brown);
    margin-bottom: 20px;
}

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

.filter-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.filter-checkbox input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-checkbox label {
    cursor: pointer;
    margin: 0;
}

/* ========================================
   WILDLIFE CARDS
   ======================================== */
.wildlife-card {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.wildlife-image {
    height: 300px;
    overflow: hidden;
}

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

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

.wildlife-content {
    padding: 30px;
}

.wildlife-title {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.wildlife-scientific {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.wildlife-facts {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.wildlife-facts li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
}

.wildlife-facts li:last-child {
    border-bottom: none;
}

.fact-label {
    font-weight: 600;
    color: var(--dark-brown);
}

.fact-value {
    color: #666;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.9), rgba(139, 111, 71, 0.8)),
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1200') center/cover;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 30px;
        font-size: 1rem;
        margin: 5px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .search-card {
        padding: 25px;
    }
    
    .package-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .destination-card {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .testimonial-card {
        padding: 25px;
        margin: 10px;
    }
    
    .cta-banner {
        padding: 60px 0;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    .cta-banner p {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .package-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-safari {
    color: var(--accent-color);
}

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

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

.bg-dark-brown {
    background: var(--dark-brown);
}
