/* css/style.css - Safari Luxury Theme */

/* ========== VARIABLES ========== */
:root {
    /* Safari Luxury Palette */
    --primary-green: #1F3D2B;
    --accent-gold: #C6A75E;
    --accent-brown: #8B5E34;
    --background-light: #F4EFE6;
    --text-dark: #1C1C1C;
    --white: #FFFFFF;

    /* Functional variables */
    --bg-primary: var(--white);
    --bg-alt: var(--background-light);
    --text-primary: var(--text-dark);
    --header-bg: var(--primary-green);
    --footer-bg: var(--primary-green);
    --card-bg: var(--white);
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

.dark-mode {
    --primary-green: #14271D;
    --accent-gold: #C6A75E;   /* keep gold */
    --accent-brown: #8B5E34;   /* keep brown */
    --background-light: #1E3428;
    --text-dark: #EDEDED;
    --white: #1A1A1A;          /* dark background for cards etc. */
    --bg-primary: #14271D;
    --bg-alt: #1A2A20;
    --text-primary: #EDEDED;
    --header-bg: #0E1E14;
    --footer-bg: #0E1E14;
    --card-bg: #1E3428;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ========== GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-alt);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--accent-brown);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    border: 2px solid var(--accent-gold);
    color: var(--text-white);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--header-bg);
    box-shadow: var(--shadow);
    transition: background-color 0.3s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--white);
}

.logo span {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 0;
    color: var(--white);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
}

.dark-mode .dropdown-menu {
    background-color: var(--card-bg);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu li {
    padding: 8px 20px;
    color: var(--text-primary);
}

.dropdown-menu li:hover {
    background-color: var(--bg-alt);
}

/* Dark mode toggle */
.dark-mode-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--white);
    padding: 5px 10px;
}

.dark-mode-toggle:hover {
    color: var(--accent-gold);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Mobile menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--header-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 15px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding: 10px 0;
        background-color: var(--bg-alt);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown .fa-chevron-down {
        transition: transform 0.3s;
    }

    .dropdown.active .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31,61,43,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== ABOUT SECTION ========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ========== CARDS (animals, parks, hotels) ========== */
.animal-grid,
.park-cards,
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.animal-card,
.park-card,
.hotel-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.animal-card:hover,
.park-card:hover,
.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.animal-card img,
.park-card img,
.hotel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.animal-info,
.park-content,
.hotel-content {
    padding: 20px;
}

.animal-info h3,
.park-content h3,
.hotel-content h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.scientific {
    font-style: italic;
    color: var(--accent-brown);
    margin-bottom: 10px;
}

.fun-fact {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--accent-brown);
    border-top: 1px solid var(--bg-alt);
    padding-top: 10px;
}

/* ========== FILTERS ========== */
.filter-btn,
.category-tab,
.filter-tag {
    padding: 8px 20px;
    border: 1px solid var(--accent-gold);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-primary);
}

.filter-btn.active,
.filter-btn:hover,
.category-tab.active,
.category-tab:hover,
.filter-tag.active,
.filter-tag:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

.search-bar input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 1px solid var(--bg-alt);
    border-radius: 50px;
    font-size: 1rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.search-bar i {
    color: var(--accent-gold);
}

/* ========== PARKS PAGE ========== */
.park-card .btn {
    margin-top: 15px;
}

/* ========== HOTELS PAGE ========== */
.hotel-card .rating {
    color: var(--accent-gold);
}

.hotel-card .amenities i {
    color: var(--accent-gold);
}

.price {
    font-weight: 600;
    color: var(--primary-green);
    margin: 15px 0;
}

/* ========== LEARN PAGE ========== */
.learn-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.learn-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.learn-card h2 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* ========== GALLERY PAGE ========== */
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ========== CONTACT PAGE ========== */
.contact-info i {
    color: var(--accent-gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--bg-alt);
    border-radius: 5px;
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* ========== NEWSLETTER ========== */
.newsletter {
    background: var(--bg-alt);
}

.newsletter h2 {
    color: var(--primary-green);
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--bg-alt);
    border-radius: 50px;
    background-color: var(--card-bg);
    color: var(--text-primary);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h3,
.footer h4 {
    color: var(--white);
}

.footer a {
    color: var(--white);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top-color: rgba(255,255,255,0.1);
}

.social-links a {
    color: var(--white);
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* ========== STATS SECTION ========== */
.stat-item {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-number {
    color: var(--accent-gold);
}

/* ========== MODAL ========== */
.modal-content {
    background-color: var(--card-bg);
    color: var(--text-primary);
}

.close-modal {
    color: var(--accent-gold);
}

/* ========== LIGHTBOX ========== */
.lightbox {
    background-color: rgba(0,0,0,0.95);
}

/* ========== MAP SECTION ========== */
.map-container path {
    fill: var(--accent-brown);
    stroke: var(--primary-green);
    transition: fill 0.3s;
}

.map-container path:hover {
    fill: var(--accent-gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}
/* Add to css/style.css */

/* ========== FUTURISTIC STATISTICS SECTION ========== */
.futuristic-stats {
    background: linear-gradient(145deg, #0A1F12 0%, #021007 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dark-mode .futuristic-stats {
    background: linear-gradient(145deg, #0C1F14 0%, #030A06 100%);
}

.futuristic-stats .section-title {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.futuristic-stats .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.stats-grid-futuristic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card-futuristic {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(198, 167, 94, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpStats 0.6s forwards;
}

.stat-card-futuristic:nth-child(1) { animation-delay: 0.1s; }
.stat-card-futuristic:nth-child(2) { animation-delay: 0.2s; }
.stat-card-futuristic:nth-child(3) { animation-delay: 0.3s; }
.stat-card-futuristic:nth-child(4) { animation-delay: 0.4s; }
.stat-card-futuristic:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeUpStats {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card-futuristic:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(198, 167, 94, 0.2);
}

.stat-number-futuristic {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(198, 167, 94, 0.5);
    animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 15px rgba(198, 167, 94, 0.5); }
    50% { text-shadow: 0 0 30px rgba(198, 167, 94, 0.8); }
    100% { text-shadow: 0 0 15px rgba(198, 167, 94, 0.5); }
}

.stat-label-futuristic {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 20px;
}

.stat-accent-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    margin: 0 auto;
    transition: width 0.3s;
}

.stat-card-futuristic:hover .stat-accent-line {
    width: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .futuristic-stats .section-title {
        font-size: 2rem;
    }
    .stat-number-futuristic {
        font-size: 3rem;
    }
    .stats-grid-futuristic {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid-futuristic {
        grid-template-columns: 1fr;
    }
}
/* Add to css/style.css */

/* ========== WILDLIFE SHOWCASE SECTION ========== */
.wildlife-showcase {
    background: linear-gradient(135deg, #0F2419 0%, #071008 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dark-mode .wildlife-showcase {
    background: linear-gradient(135deg, #0A1C12 0%, #020A04 100%);
}

.wildlife-showcase .section-title {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.wildlife-showcase .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .wildlife-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .wildlife-grid {
        grid-template-columns: 1fr;
    }
}

/* Wildlife Card */
.wildlife-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(198, 167, 94, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpCard 0.6s forwards;
}

.wildlife-card:nth-child(1) { animation-delay: 0.1s; }
.wildlife-card:nth-child(2) { animation-delay: 0.2s; }
.wildlife-card:nth-child(3) { animation-delay: 0.3s; }
.wildlife-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wildlife-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 25px 50px rgba(198, 167, 94, 0.3);
}

.wildlife-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s;
}

.wildlife-card:hover .wildlife-card-image {
    transform: scale(1.1);
}

.wildlife-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px;
    color: white;
    transition: all 0.4s;
}

.wildlife-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: white;
}

.wildlife-card .tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
    color: var(--accent-gold);
}

.wildlife-card .quick-facts {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    border-top: 1px solid rgba(198,167,94,0.3);
    padding-top: 0;
}

.wildlife-card:hover .quick-facts {
    max-height: 150px;
    padding-top: 10px;
}

.wildlife-card .quick-facts p {
    margin: 5px 0;
}

.wildlife-card .quick-facts i {
    color: var(--accent-gold);
    margin-right: 8px;
}

/* Modal adjustments */
.modal-content {
    max-width: 700px;
    background: var(--card-bg);
}

.modal-body {
    padding: 20px;
}

.modal-body .modal-hero {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.modal-body h2 {
    color: var(--primary-green);
    margin-bottom: 5px;
}

.modal-body .scientific {
    font-style: italic;
    color: var(--accent-brown);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.modal-body .modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.modal-body .detail-item {
    background: var(--bg-alt);
    padding: 10px;
    border-radius: 8px;
}

.modal-body .detail-item strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.modal-body .fun-facts {
    margin-top: 20px;
    border-top: 1px solid var(--accent-gold);
    padding-top: 15px;
}

.modal-body .fun-facts h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.modal-body .fun-facts ul {
    list-style: none;
}

.modal-body .fun-facts li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body .fun-facts i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Wildlife ID badge */
.wildlife-id {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    color: var(--accent-gold);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--accent-gold);
    z-index: 2;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-body .modal-details {
        grid-template-columns: 1fr;
    }
}
/* Add to css/style.css */

/* ========== EXPLORE NATIONAL PARKS SECTION (Savannah Theme) ========== */
.explore-parks-section {
    /* Section background: warm sand gradient */
    background: linear-gradient(135deg, #E8D8B5 0%, #F2E6D3 100%);
    position: relative;
    isolation: isolate;
}

/* Optional subtle grain texture overlay */
.explore-parks-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wNSIgLz48L3N2Zz4=');
    background-repeat: repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.explore-parks-section .container {
    position: relative;
    z-index: 1;
}

/* Section title */
.explore-parks-section .section-title {
    color: #6B4423; /* Deep Earth */
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 40px;
}

.explore-parks-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C6A75E, #A4712A, #C6A75E, transparent);
}

/* Park cards within this section */
.explore-parks-section .park-card {
    background: #FFFFFF;
    border: 1px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.explore-parks-section .park-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(164, 113, 42, 0.25); /* Savannah Brown shadow */
    border-color: #A4712A;
}

/* Image hover effect - warm up */
.explore-parks-section .park-card:hover img {
    filter: saturate(1.2) contrast(1.1);
    transition: filter 0.4s ease;
}

/* Gold shimmer line animation on hover */
.explore-parks-section .park-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #C6A75E, transparent);
    transition: left 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.explore-parks-section .park-card:hover::before {
    left: 100%;
}

/* Card title */
.explore-parks-section .park-info h3 {
    color: #6B4423; /* Deep Earth */
}

/* Card description */
.explore-parks-section .park-info p {
    color: #f8f7f7;
}

/* Custom button for this section */
.explore-parks-section .btn-explore {
    background-color: #A4712A; /* Savannah Brown */
    color: #FFFFFF;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.explore-parks-section .btn-explore:hover {
    background-color: #6B4423; /* Deep Earth */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 113, 42, 0.3);
}

.explore-parks-section .btn-explore i {
    transition: transform 0.3s ease;
}

.explore-parks-section .btn-explore:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments (keep existing) */
@media (max-width: 768px) {
    .explore-parks-section .park-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
/* Add to css/style.css */

/* ========== LUXURY SHOWCASE SECTION ========== */
.luxury-showcase {
    background: linear-gradient(145deg, #0F2A1C 0%, #051008 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dark-mode .luxury-showcase {
    background: linear-gradient(145deg, #0A1F12 0%, #020A04 100%);
}

.luxury-showcase .section-title {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.luxury-showcase .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .luxury-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .luxury-grid {
        grid-template-columns: 1fr;
    }
}

.luxury-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpLuxury 0.6s forwards;
}

.luxury-card:nth-child(1) { animation-delay: 0.1s; }
.luxury-card:nth-child(2) { animation-delay: 0.2s; }
.luxury-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeUpLuxury {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.luxury-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.luxury-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luxury-card:hover .luxury-image img {
    transform: scale(1.1);
}

.luxury-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    color: white;
    text-align: left;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(198, 167, 94, 0.3);
    transition: background 0.4s ease;
}

.luxury-card:hover .luxury-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
}

.luxury-location {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
}

.luxury-overlay h3 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.luxury-overlay p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.luxury-rating {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-luxury {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-luxury:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-luxury i {
    transition: transform 0.3s ease;
}

.btn-luxury:hover i {
    transform: translateX(5px);
}

/* Ensure the section fits with existing scroll animations */
.luxury-card {
    will-change: transform, opacity;
}
/* Add to css/style.css */

/* ========== WHY VISIT SECTION (Savannah Theme) ========== */
.why-visit-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e7631980b?q=80&w=2070&auto=format&fit=crop'); /* Serengeti sunset */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* subtle parallax */
    padding: 100px 0;
    isolation: isolate;
}

/* Warm overlay gradient */
.why-visit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(164,113,42,0.6) 0%, rgba(107,68,35,0.8) 100%);
    z-index: 1;
}

/* Subtle vignette effect */
.why-visit-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
    pointer-events: none;
    z-index: 2;
}

.why-visit-section .container {
    position: relative;
    z-index: 3;
}

.why-visit-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.why-visit-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

.reason-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    color: white;
    border: 1px solid rgba(221, 158, 10, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpReason 0.6s forwards;
}

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }
.reason-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUpReason {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 25px 50px rgba(198, 167, 94, 0.4);
}

.reason-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.reason-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Dark mode adjustments */
.dark-mode .why-visit-section::before {
    background: linear-gradient(135deg, rgba(42,28,18,0.8) 0%, rgba(26,17,10,0.9) 100%);
}

.dark-mode .reason-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}
/* Additional CSS for wildlife.html - Add to style.css */

/* Wildlife Hero */
.wildlife-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.wildlife-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
}

.wildlife-hero .hero-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease;
}

.wildlife-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.wildlife-hero p {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Wildlife Stats Strip */
.wildlife-stats {
    background: var(--deep-brown);
    color: white;
    padding: 30px 0;
}

.stats-strip {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stats-strip .stat-item {
    text-align: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.stats-strip .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1.2;
}

.stats-strip .stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

/* Sticky Filter Bar */
.filter-bar-sticky {
    position: sticky;
    top: 80px;
    z-index: 900;
    background: var(--bg-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: background-color 0.3s;
}

.dark-mode .filter-bar-sticky {
    background: var(--bg-alt);
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-wrapper .search-bar {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--accent-gold);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--text-primary);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--accent-gold);
    color: white;
}

/* Animal Cards (Premium) */
.animals-grid .animal-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpCard 0.6s forwards;
}

.animal-card:nth-child(1) { animation-delay: 0.1s; }
.animal-card:nth-child(2) { animation-delay: 0.15s; }
.animal-card:nth-child(3) { animation-delay: 0.2s; }
.animal-card:nth-child(4) { animation-delay: 0.25s; }
.animal-card:nth-child(5) { animation-delay: 0.3s; }
.animal-card:nth-child(6) { animation-delay: 0.35s; }
/* Add more as needed, but JS will handle dynamic classes? We'll use class-based delay via nth-child */

@keyframes fadeUpCard {
    to { opacity: 1; transform: translateY(0); }
}

.animal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: var(--accent-gold);
}

.animal-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s;
}

.animal-card:hover img {
    transform: scale(1.05);
}

.animal-id-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    border: 1px solid var(--accent-gold);
}

.conservation-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border: 1px solid;
}

.conservation-badge.vulnerable { background: #f39c12; color: #000; }
.conservation-badge.endangered { background: #e74c3c; color: #fff; }
.conservation-badge.critically-endangered { background: #c0392b; color: #fff; }
.conservation-badge.least-concern { background: #27ae60; color: #fff; }
.conservation-badge.near-threatened { background: #f1c40f; color: #000; }

.animal-info {
    padding: 20px;
    background: var(--card-bg);
    flex: 1;
}

.animal-info h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--deep-brown);
}

.animal-info .scientific {
    font-style: italic;
    color: var(--primary-brown);
    margin-bottom: 10px;
}

.quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--bg-alt);
    padding-top: 15px;
}

.quick-facts span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.quick-facts i {
    color: var(--accent-gold);
}

/* Hide quick facts by default, show on hover? Or always visible? We'll keep always visible for premium feel, but can add hover effect. */
.animal-card .quick-facts {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.animal-card:hover .quick-facts {
    max-height: 100px;
}

/* Modal Enhancements */
.modal-body .conservation-meter {
    margin: 15px 0;
    background: var(--bg-alt);
    border-radius: 20px;
    height: 8px;
    width: 100%;
    position: relative;
}

.conservation-meter-fill {
    height: 100%;
    border-radius: 20px;
    background: var(--accent-gold);
    width: 0%;
    transition: width 0.5s;
}

.modal-body .habitat-icons {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.habitat-icons span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-alt);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.habitat-icons i {
    color: var(--accent-gold);
}

.modal-body .fun-facts li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.modal-body .fun-facts i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Habitat Map Section */
.habitat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .habitat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.habitat-item {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.habitat-item:hover {
    transform: translateY(-5px);
}

.habitat-item i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.habitat-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--deep-brown);
}

.habitat-item p {
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Responsive Grid */
@media (max-width: 992px) {
    .animals-grid .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .animals-grid .container {
        grid-template-columns: 1fr;
    }
    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
}
.wildlife-hero h1,
.wildlife-hero p {
    color: #ffffff !important;
}