/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c3a;
    --accent-color: #8db596;
    --text-dark: #2d3748;
    --text-light: #718096;
    --background: #ffffff;
    --background-alt: #f7fafc;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--background);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand .logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 80vh;
    padding: 100px 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

/* Quick Facts */
.quick-facts {
    background: var(--background-alt);
    padding: 4rem 0;
}

.quick-facts h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.fact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Welcome Section */
.welcome {
    padding: 4rem 0;
}

.welcome-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.welcome-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--background);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-light);
}

/* Mobile Responsive */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-cta {
        display: none;
    }
}

/* Page Hero Sections */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

/* Wildlife Page Styles */
.species-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.species-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.species-card:hover {
    transform: translateY(-5px);
}

.species-image .image-placeholder {
    height: 200px;
    background: var(--background-alt);
}

.species-info {
    padding: 1.5rem;
}

.species-facts {
    list-style: none;
    margin-top: 1rem;
}

.species-facts li {
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border);
}

/* Services Page Styles */
.service-section {
    margin-bottom: 4rem;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.service-features li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Visit Us Page Styles */
.visit-section {
    margin-bottom: 3rem;
}

.location-content, .contact-cards, .booking-options, .packing-grid, .guidelines {
    display: grid;
    gap: 2rem;
}

.contact-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.booking-options {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.booking-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.packing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.guidelines {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.guideline-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.guideline-card.important {
    border-left: 4px solid var(--primary-color);
}

/* Gallery Page Styles */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image .image-placeholder {
    height: 200px;
    background: var(--background-alt);
}

.gallery-caption {
    padding: 1rem;
}

/* News Page Styles */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-article {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-image .image-placeholder {
    height: 250px;
    background: var(--background-alt);
}

.article-content {
    padding: 2rem;
}

.article-date, .news-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.news-image .image-placeholder.small {
    height: 180px;
    background: var(--background-alt);
}

.news-content {
    padding: 1.5rem;
}

.newsletter-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.category-tag {
    background: var(--background-alt);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links-vertical .social-link {
    display: block;
    padding: 1rem;
    background: var(--background-alt);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

.social-links-vertical .social-link:hover {
    background: var(--primary-color);
    color: white;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-content,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .gallery-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}

/* About Page Specific Styles */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.content-text h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.content-text h2:first-child {
    margin-top: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-card {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Unique Features */
.unique-features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Sidebar Cards */
.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.facts-list {
    list-style: none;
}

.facts-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.facts-list li:last-child {
    border-bottom: none;
}

/* Partners Logos */
.partners-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.partner-logo .image-placeholder.small {
    height: 80px;
    background: var(--background-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
    
    .partners-logos {
        grid-template-columns: 1fr;
    }
}

/* Logo Styles */
.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: auto;
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Logo text fallback */
.logo-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-left: 0.5rem;
    display: none; /* Hidden by default, shows if image fails */
}

/* Mobile logo sizing */
@media (max-width: 768px) {
    .logo img {
        max-height: 80px;
        max-width: 80px;
    }
    
    .nav-brand {
        flex: 1;
    }
}

/* Logo with improved spacing */
.nav-brand .logo {
    padding: 5px 0;
}

/* Mobile Menu Styles for Components */
.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow);
    padding: 1rem;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
}

/* Hero Image Styles */
.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Remove the old placeholder styles */
.hero-image .image-placeholder {
    display: none;
}

/* Enhanced Hero Section with Background */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 80vh;
    padding: 100px 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Responsive Hero Image */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        gap: 2rem;
    }
    
    .hero-img {
        height: 300px;
        order: -1; /* Move image above text on mobile */
    }
    
    .hero-content {
        order: 2;
    }
}

/* Hero Content Enhancements */
.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Slideshow Styles - Clean Version */
.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Slide Caption Overlay */
.slide-caption {
    position: absolute;
    bottom: 80px; /* Position above navigation controls */
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.slide.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.slide-caption h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.slide-caption p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    z-index: 10;
}

.slide-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 25px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(45, 80, 22, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--secondary-color);
}

/* Responsive Slideshow */
@media (max-width: 768px) {
    .slideshow-container {
        height: 300px;
    }
    
    .slide-caption {
        bottom: 70px;
        padding: 0.8rem;
    }
    
    .slide-caption h3 {
        font-size: 1.3rem;
    }
    
    .slide-caption p {
        font-size: 0.9rem;
    }
    
    .slideshow-controls {
        bottom: 15px;
        padding: 0 0.8rem;
    }
    
    .slide-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .slide-indicators {
        padding: 0.4rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .slide-caption h3 {
        font-size: 1.1rem;
    }
    
    .slide-caption p {
        font-size: 0.8rem;
    }
}

/* Maintain existing hero layout */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 80vh;
    padding: 100px 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1; /* Move image above text on mobile */
    }
    
    .hero-content {
        order: 2;
    }
}

/* Hero Slideshow Styles - With Captions */
.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Slide Caption Overlay */
.slide-caption {
    position: absolute;
    bottom: 80px; /* Position above navigation controls */
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.slide.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.slide-caption h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.slide-caption p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    z-index: 10;
}

.slide-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Captions Container */
.captions-container {
    flex: 1;
    margin: 0 1rem;
    display: flex;
    justify-content: center;
}

.caption {
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: none;
}

.caption.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.caption h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.caption p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 25px;
    flex-shrink: 0;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(45, 80, 22, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--secondary-color);
}

/* Responsive Slideshow with Captions */
@media (max-width: 768px) {
    .slideshow-container {
        height: 300px;
    }
    
    .slide-caption {
        bottom: 70px;
        padding: 0.8rem;
    }
    
    .slide-caption h3 {
        font-size: 1.3rem;
    }
    
    .slide-caption p {
        font-size: 0.9rem;
    }
    
    .slideshow-controls {
        bottom: 15px;
        padding: 0 0.8rem;
    }
    
    .slide-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .captions-container {
        margin: 0 0.5rem;
    }
    
    .caption h4 {
        font-size: 1rem;
    }
    
    .caption p {
        font-size: 0.8rem;
    }
    
    .slide-indicators {
        padding: 0.4rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .slideshow-controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .captions-container {
        order: -1;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .caption h4 {
        font-size: 0.9rem;
    }
    
    .caption p {
        font-size: 0.75rem;
    }
}

/* Maintain existing hero layout */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 80vh;
    padding: 100px 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1; /* Move image above text on mobile */
    }
    
    .hero-content {
        order: 2;
    }
}

/* Form Success Styles */
.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Booking System Styles */
.booking-wizard {
    max-width: 1000px;
    margin: 0 auto;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-alt);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.progress-step.active .step-label {
    color: var(--primary-color);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

/* Visit Type Selection */
.visit-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.visit-type-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.visit-type-card:hover,
.visit-type-card.selected {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.visit-type-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.visit-type-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.visit-type-card li {
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border);
}

.visit-type-card li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
}

/* Date & Time Selection */
.date-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.calendar-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.time-selection {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.time-slots {
    display: grid;
    gap: 1rem;
}

.time-slot {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover,
.time-slot input:checked + span {
    border-color: var(--primary-color);
    background: var(--background-alt);
}

.time-slot input {
    margin-right: 1rem;
}

/* Activities Selection */
.activities-selection {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkbox-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-card:hover,
.checkbox-card input:checked ~ .card-content {
    border-color: var(--primary-color);
    background: var(--background-alt);
}

.checkbox-card input {
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.card-content {
    flex: 1;
}

.card-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    display: block;
}

/* Booking Summary */
.booking-summary {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.summary-details {
    display: grid;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.summary-item.total {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid var(--border);
}

/* Visitor Details Form */
.visitor-details-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Confirmation Step */
.confirmation-details {
    display: grid;
    gap: 2rem;
}

.confirmation-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.payment-options {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.payment-methods {
    display: grid;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover,
.payment-option input:checked + span {
    border-color: var(--primary-color);
    background: var(--background-alt);
}

.payment-option input {
    margin-right: 1rem;
}

.terms-agreement {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Wizard Buttons */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wizard-progress {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wizard-progress::before {
        display: none;
    }
    
    .progress-step {
        flex-direction: row;
        gap: 1rem;
    }
    
    .step-number {
        margin-bottom: 0;
    }
    
    .date-selection {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-type-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wizard-buttons .btn {
        width: 100%;
    }
}

/* Booking Success Styles */
.booking-success {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.booking-success h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-success p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.success-details {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.success-details p {
    margin-bottom: 1rem;
}

.success-details ul {
    list-style: none;
    margin-top: 1rem;
}

.success-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.success-details li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .btn {
        width: 200px;
    }
}

/* Fix Homepage Header */
.index-page .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Ensure header stays on top of slideshow */
.header {
    z-index: 1000;
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--background);
    box-shadow: var(--shadow);
}

/* Homepage specific hero spacing */
.index-page .hero {
    margin-top: 80px; /* Account for fixed header */
}

/* Mobile header fix for homepage */
@media (max-width: 768px) {
    .index-page .hero {
        margin-top: 70px;
        padding-top: 20px;
    }
    
    .index-page .header .nav-brand .logo img {
        max-height: 40px;
    }
}

/* Homepage Hero Section - Fixed */
.index-page .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 80vh;
    padding: 20px 2rem 2rem; /* Reduced top padding */
    max-width: 1200px;
    margin: 80px auto 0; /* Added top margin for header */
    gap: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Homepage slideshow specific fixes */
.index-page .hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 400px; /* Fixed height */
}

.index-page .slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* Ensure header is above everything */
.index-page .header {
    z-index: 1000;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile responsive fixes for homepage */
@media (max-width: 768px) {
    .index-page .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10px;
        gap: 2rem;
        margin-top: 70px;
        min-height: auto;
    }
    
    .index-page .hero-image {
        order: -1;
        height: 300px;
    }
    
    .index-page .hero-content {
        order: 2;
        padding: 1rem 0;
    }
    
    .index-page .header {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .index-page .nav-brand .logo img {
        max-height: 35px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .index-page .hero {
        padding: 10px 1rem 1rem;
        margin-top: 60px;
    }
    
    .index-page .hero-image {
        height: 250px;
    }
}

/* ============================================= */
/* HOMEPAGE HEADER FIX */
/* ============================================= */

/* Reset any conflicting styles for homepage header */
body.index-page .header {
    background: var(--background) !important;
    backdrop-filter: none !important;
    position: fixed !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: var(--shadow) !important;
    border-bottom: none !important;
}

/* Ensure consistent nav styling */
body.index-page .nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Fix logo size consistency */
body.index-page .nav-brand .logo img {
    height: 50px !important;
    max-height: 50px !important;
}

/* Fix navigation menu */
body.index-page .nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 2rem !important;
    flex-direction: row !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: auto !important;
}

body.index-page .nav-link {
    text-decoration: none !important;
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

body.index-page .nav-link:hover,
body.index-page .nav-link.active {
    color: var(--primary-color) !important;
}

/* Fix CTA button */
body.index-page .nav-cta {
    display: flex !important;
}

body.index-page .nav-cta .btn {
    padding: 12px 24px !important;
}

/* Mobile menu fixes for homepage */
@media (max-width: 768px) {
    body.index-page .nav-menu {
        display: none !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: white !important;
        box-shadow: var(--shadow) !important;
        padding: 1rem !important;
    }
    
    body.index-page .nav-menu.active {
        display: flex !important;
    }
    
    body.index-page .mobile-menu-btn {
        display: flex !important;
    }
    
    body.index-page .nav-cta {
        display: none !important;
    }
    
    body.index-page .nav {
        padding: 0.8rem 1rem !important;
    }
    
    body.index-page .nav-brand .logo img {
        max-height: 40px !important;
        height: 40px !important;
    }
}

/* Fix hero section spacing for homepage */
body.index-page .hero {
    margin-top: 80px !important;
    padding-top: 20px !important;
    min-height: calc(80vh - 80px) !important;
}

@media (max-width: 768px) {
    body.index-page .hero {
        margin-top: 70px !important;
        padding-top: 10px !important;
        min-height: auto !important;
    }
}

/* Remove any duplicate slideshow styles that might be causing issues */
body.index-page .hero-image {
    position: relative !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    height: 400px !important;
}

body.index-page .slideshow-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

/* Ensure header is above slideshow */
body.index-page .header {
    z-index: 1000 !important;
}

body.index-page .slideshow-container {
    z-index: 1 !important;
}

/* EMERGENCY HEADER FIX - Add this last */
body.index-page header.header {
    all: unset !important;
    background: var(--background) !important;
    box-shadow: var(--shadow) !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
}

body.index-page header.header .nav {
    all: unset !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

body.index-page .hero {
    margin-top: 80px !important;
}

/* Working Calendar Styles */
.calendar-container {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.calendar-header h4 {
    color: var(--primary-color);
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
}

.calendar-day:hover:not(.empty):not(.past) {
    background: var(--background-alt);
    border-color: var(--border);
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.past {
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.available {
    color: var(--text-dark);
    background: white;
}

.calendar-day.available:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.calendar-day.unavailable {
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: line-through;
}

.selected-date {
    background: var(--background-alt);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px dashed var(--border);
}

.selected-date.has-date {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Remove the old calendar styles */
#booking-calendar {
    display: none;
}

/* Wildlife Species Image Styles */
.species-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.species-card:hover .species-img {
    transform: scale(1.05);
}

/* Remove the old placeholder styles for species images */
.species-image .image-placeholder {
    display: none;
}

/* Enhanced species card styling */
.species-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.species-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.species-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.species-info {
    padding: 1.5rem;
}

.species-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.species-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.species-facts {
    list-style: none;
    background: var(--background-alt);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.species-facts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
}

.species-facts li:last-child {
    border-bottom: none;
}

.species-facts strong {
    color: var(--primary-color);
}

/* Responsive species grid */
@media (max-width: 768px) {
    .species-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .species-img {
        height: 200px;
    }
    
    .species-image {
        height: 200px;
    }
    
    .species-info {
        padding: 1rem;
    }
}

/* Styles for the intro section with image */
.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.intro-text-content {
    flex: 1;
    min-width: 300px;
}

.intro-image {
    flex: 1;
    min-width: 300px;
}

.sanctuary-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }
    
    .intro-text-content, .intro-image {
        width: 100%;
    }
}

/* ===== Wildlife Page Specific Styles ===== */

/* Intro section styles */
.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.intro-text-content {
    flex: 1;
    min-width: 300px;
}

.intro-image {
    flex: 1;
    min-width: 300px;
}

.sanctuary-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Conservation Approach Section */
.conservation-approach {
    margin: 3rem 0;
    padding: 2rem 0;
}

.conservation-approach h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c5530;
    font-size: 2rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.approach-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid #2c5530;
}

.approach-card h4 {
    margin: 0.5rem 0 1rem 0;
    color: #2c5530;
    font-size: 1.25rem;
    font-weight: 600;
}

.approach-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }
    
    .intro-text-content, .intro-image {
        width: 100%;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .conservation-approach h2 {
        font-size: 1.75rem;
    }
    
    .approach-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .conservation-approach {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .approach-card img {
        width: 70px;
        height: 70px;
    }
    
    .approach-card h4 {
        font-size: 1.1rem;
    }
}

/* Educational Programs Section */
.educational-programs {
    margin: 3rem 0;
    padding: 2rem 0;
    background: #f8f9fa;
    border-radius: 12px;
}

.educational-programs h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c5530;
    font-size: 2rem;
}

.programs-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.program-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.program-card h4 {
    margin: 0.5rem 0 1rem 0;
    color: #2c5530;
    font-size: 1.1rem;
    font-weight: 600;
}

.program-card p {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

/* Responsive adjustments for educational programs */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .program-card {
        min-height: 180px;
        padding: 1.5rem 1rem;
    }
    
    .program-icon {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .educational-programs {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .educational-programs h2 {
        font-size: 1.75rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        max-width: 500px;
    }
    
    .program-card {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .program-icon {
        font-size: 2.5rem;
    }
    
    .program-card h4 {
        font-size: 1.25rem;
    }
    
    .program-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .educational-programs {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .educational-programs h2 {
        font-size: 1.5rem;
    }
    
    .program-icon {
        font-size: 2rem;
    }
    
    .program-card h4 {
        font-size: 1.1rem;
    }
}

/* Service Section Styles */
.service-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-header h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-header p {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: scale(1.02);
}

.service-features {
    flex: 1;
    min-width: 300px;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #2c5530;
    color: white;
    border: 2px solid #2c5530;
}

.btn-primary:hover {
    background: #1e3a20;
    border-color: #1e3a20;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-outline:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-content,
    .service-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-image,
    .service-features {
        width: 100%;
    }
    
    .service-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .service-section {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .service-header h2 {
        font-size: 1.5rem;
    }
    
    .service-header p {
        font-size: 1rem;
    }
}

/* Visit Page Specific Styles */
.visit-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.visit-section h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Location & Directions Section */
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.address-card, .directions {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.address-card h3, .directions h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.directions-list {
    padding-left: 1.5rem;
}

.directions-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #2c5530;
}

.contact-card h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Operating Hours */
.hours-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.hours-card p {
    margin-bottom: 0.5rem;
    color: #555;
}

.note {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

/* Booking Section */
.booking-cta {
    background: #2c5530;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.booking-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.booking-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.booking-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.booking-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.booking-card li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* What to Bring Section */
.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.packing-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #2c5530;
}

.packing-item h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.packing-item p {
    color: #555;
    margin: 0;
}

/* Visitor Guidelines */
.guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.guideline-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-top: 4px solid #2c5530;
}

.guideline-card.important {
    border-top-color: #dc3545;
    background: #fff5f5;
}

.guideline-card h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.guideline-card.important h4 {
    color: #dc3545;
}

.guideline-card p {
    color: #555;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0.25rem;
}

.btn-primary {
    background: #2c5530;
    color: white;
    border: 2px solid #2c5530;
}

.btn-primary:hover {
    background: #1e3a20;
    border-color: #1e3a20;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: 2px solid #6c757d;
}

.btn-secondary:hover {
    background: #545b62;
    border-color: #545b62;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-outline:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-content {
        flex-direction: column;
    }
    
    .location-info, .map-container {
        width: 100%;
    }
    
    .visit-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-cards,
    .packing-grid,
    .guidelines {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .visit-section {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .visit-section h2 {
        font-size: 1.5rem;
    }
    
    .booking-cta {
        padding: 1.5rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
}

/* Gallery Page Specific Styles */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #2c5530;
    background: white;
    color: #2c5530;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gallery-caption p {
    color: #555;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.gallery-cta {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.gallery-cta h2 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.gallery-cta p {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-filter {
        gap: 0.25rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-cta {
        padding: 2rem 1rem;
    }
    
    .gallery-cta h2 {
        font-size: 1.75rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .gallery-cta h2 {
        font-size: 1.5rem;
    }
}

/* Lightbox/Slideshow Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0,0,0,0.9);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(0,0,0,0.9);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-caption {
    padding: 1.5rem;
    text-align: center;
    background: white;
    width: 100%;
}

.lightbox-caption h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.lightbox-caption p {
    color: #555;
    margin-bottom: 1rem;
}

.lightbox-counter {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Keyboard navigation hint */
.lightbox-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    .lightbox-caption {
        padding: 1rem;
    }
    
    .lightbox-caption h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    #lightbox-image {
        max-height: 60vh;
    }
}

.activity-breakdown {
    text-align: right;
    font-size: 0.9em;
}

.activity-breakdown div {
    margin: 2px 0;
    color: #666;
}

.summary-item.activity-details {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff; /* Change to your preferred hover color */
}

.social-link svg {
    flex-shrink: 0;
}

/* Submenu Styles */
.nav-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-nav-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sub-nav-link:hover,
.sub-nav-link.active {
    background: #f8f9fa;
    color: #2d5016;
}

/* Mobile submenu */
@media (max-width: 768px) {
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item-has-children.submenu-open .sub-menu {
        max-height: 200px;
    }
}

/* Additional CTA Button Styles */
.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Donation Page Styles */
.donation-amounts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.btn-amount {
    padding: 8px 16px;
    border: 2px solid #2d5016;
    background: white;
    color: #2d5016;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-amount:hover,
.btn-amount.active {
    background: #2d5016;
    color: white;
}

.custom-amount {
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    width: 120px;
}

.donation-form {
    max-width: 500px;
    margin: 30px auto;
    text-align: left;
}

.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;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2d5016;
    outline: none;
}

.investment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.investment-option {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.investment-option h3 {
    color: #2d5016;
    margin-bottom: 10px;
}

.contact-info {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Submenu Styles */
.nav-item-has-children {
    position: relative;
}

.nav-parent {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-item-has-children:hover .dropdown-arrow,
.nav-item-has-children.submenu-open .dropdown-arrow {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

.nav-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-nav-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.sub-nav-link:hover,
.sub-nav-link.active {
    background: #f8f9fa;
    color: #2d5016;
    padding-left: 25px;
}

/* Mobile submenu improvements */
@media (max-width: 768px) {
    .nav-parent {
        justify-content: space-between;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        margin: 0;
        border-radius: 0;
        border-left: 3px solid #2d5016;
        margin-left: 15px;
    }
    
    .nav-item-has-children.submenu-open .sub-menu {
        max-height: 500px;
        padding: 8px 0;
    }
    
    .sub-nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .sub-nav-link:hover,
    .sub-nav-link.active {
        padding-left: 20px;
        background: #e9ecef;
    }
    
    /* Ensure proper spacing in mobile menu */
    .nav-menu.active {
        max-height: 100vh;
        overflow-y: auto;
    }
}

/* Additional CTA Button Styles */
.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Prevent hover issues on touch devices */
@media (hover: hover) and (pointer: fine) {
    .nav-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-item-has-children .sub-menu {
        display: none;
    }
    
    .nav-item-has-children.submenu-open .sub-menu {
        display: block;
    }
}

/* Enhanced Logo Styles */
.nav-brand {
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: auto;
    transition: all 0.3s ease;
}

/* Enhanced CTA Button Styles */
.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 20px;
}

.btn-cta {
    padding: 12px 20px !important;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: max-content;
    border: 2px solid transparent;
}

.btn-cta.btn-primary {
    background: #2d5016;
    color: white;
    border-color: #2d5016;
}

.btn-cta.btn-primary:hover {
    background: #1f3510;
    border-color: #1f3510;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-cta.btn-secondary {
    background: #e9b949;
    color: #2d5016;
    border-color: #e9b949;
}

.btn-cta.btn-secondary:hover {
    background: #d4a742;
    border-color: #d4a742;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 185, 73, 0.3);
}

/* Navigation adjustments for removed "Home" item */
.nav-menu {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-cta {
        margin-left: 15px;
    }
    
    .btn-cta {
        padding: 10px 16px !important;
        height: 40px;
        font-size: 13px;
    }
    
    .logo img {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .nav-cta {
        display: none; /* Hide CTA buttons on mobile - they can be in mobile menu */
    }
    
    .logo img {
        width: 130px;
    }
    
    /* Show CTA buttons in mobile menu */
    .mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }
    
    .mobile-cta .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Add mobile CTA buttons to mobile menu */
@media (max-width: 768px) {
    .nav-menu.active::after {
        content: '';
        display: block;
        padding: 20px;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }
    
    .nav-menu.active::after {
        content: none;
    }
    
    /* Alternative: Add CTA buttons to mobile menu */
    .nav-menu {
        position: relative;
    }
}

/* Enhanced mobile menu with CTA buttons */
@media (max-width: 768px) {
    .nav-menu {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
    
    /* You can also add CTA buttons programmatically in the JavaScript if needed */
}

/* Optional: Add CTA buttons to mobile menu via JavaScript */
.mobile-cta-container {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    
    .mobile-cta-container .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Donation Page Specific Styles */
.donate-page .hero {
    background: linear-gradient(135deg, #e7e7e7 0%, #ffffff 100%);
    color: white;
}

.donate-page .hero-title {
    color: white;
}

.donate-page .hero-subtitle {
    color: #578659;
}

.donate-page .hero-description {
    color: #474747;
}

/* Impact Numbers */
.impact-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.impact-number {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.impact-number .number {
    font-size: 2rem;
    font-weight: 700;
    color: #2e7d32;
    display: block;
}

.impact-number .label {
    font-size: 0.9rem;
    color: #555;
}

/* Tables */
.investment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.investment-table th {
    background-color: #2e7d32;
    color: white;
    text-align: left;
    padding: 12px 15px;
}

.investment-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.investment-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.contribution-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contribution-table th {
    background-color: #1b5e20;
    color: white;
    text-align: left;
    padding: 12px 15px;
}

.contribution-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.contribution-table tr:nth-child(even) {
    background-color: #f1f8e9;
}

/* Quote Block */
.quote-block {
    background: #e8f5e9;
    border-left: 4px solid #2e7d32;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 4px;
}

/* Imagine List */
.imagine-list {
    list-style-type: none;
    padding-left: 0;
}

.imagine-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.imagine-list li:before {
    content: "🌿";
    position: absolute;
    left: 0;
}

/* Donation Amounts */
.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.btn-amount {
    padding: 8px 15px;
    border: 1px solid #2e7d32;
    background: white;
    color: #2e7d32;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-amount:hover, .btn-amount.active {
    background: #2e7d32;
    color: white;
}

.custom-amount {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 120px;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

/* Left-aligned content sections */
.left-aligned-content {
    text-align: left;
}

.left-aligned-content ul {
    padding-left: 20px;
}

.left-aligned-content li {
    margin-bottom: 8px;
}

/* Responsive adjustments for donation page */
@media (max-width: 768px) {
    .impact-numbers {
        flex-direction: column;
    }
    
    .investment-table, .contribution-table {
        display: block;
        overflow-x: auto;
    }
    
    .donation-amounts {
        justify-content: center;
    }
}

/* Activity Preview Images */
.activity-preview-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.activity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-preview-card:hover .activity-image {
    transform: scale(1.05);
}

/* Fallback for missing images */
.activity-preview-image:has(img[src=""]) {
    background-color: #c8e6c9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-weight: 500;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .activity-preview-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .activity-preview-image {
        height: 160px;
    }
}

/* Activity Preview Images */
.activity-preview-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.activity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-preview-card:hover .activity-image {
    transform: scale(1.05);
}

/* Fallback for missing images */
.activity-preview-image:has(img[src=""]) {
    background-color: #c8e6c9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-weight: 500;
}

/* Responsive image adjustments */
@media (max-width: 768px) {
    .activity-preview-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .activity-preview-image {
        height: 160px;
    }
}

/* Donate Page Specific Hero Styles */
.donate-page .hero {
    background: linear-gradient(135deg, #f6f7f6 0%, #cafccd 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.donate-page .hero-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.donate-page .hero-subtitle {
    color: hsl(122, 28%, 46%);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.donate-page .hero-description {
    color: #353535;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Donate Page Slideshow Specific Styles */
.donate-slideshow {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.donate-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.donate-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
}

.donate-slideshow .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donate-slideshow .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 25px 20px 20px;
    text-align: center;
    z-index: 3;
}

.donate-slideshow .slide-caption h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.donate-slideshow .slide-caption p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Donate Page Slideshow Controls */
.donate-page .slideshow-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

.donate-page .slide-nav-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #2e7d32;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 11;
}

.donate-page .slide-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.donate-page .slide-indicators {
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.4);
    padding: 8px 12px;
    border-radius: 20px;
    z-index: 11;
}

.donate-page .indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donate-page .indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.donate-page .indicator:hover {
    background: rgba(255,255,255,0.5);
}

/* Responsive Donate Slideshow */
@media (max-width: 1024px) {
    .donate-slideshow {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .donate-page .hero-title {
        font-size: 2.2rem;
    }
    
    .donate-page .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .donate-slideshow {
        height: 300px;
    }
    
    .donate-slideshow .slide-caption {
        padding: 20px 15px 15px;
    }
    
    .donate-slideshow .slide-caption h3 {
        font-size: 1.1rem;
    }
    
    .donate-slideshow .slide-caption p {
        font-size: 0.9rem;
    }
    
    .donate-page .slide-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .donate-page .indicator {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .donate-slideshow {
        height: 250px;
    }
    
    .donate-page .slideshow-controls {
        gap: 15px;
    }
    
    .donate-page .slide-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .donate-page .indicator {
        width: 10px;
        height: 10px;
    }
}

/* components/header.css - Styles for header component */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.homepage-header {
    background-color: transparent;
    box-shadow: none;
    position: absolute;
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand .logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2e7d32;
}

.nav-link.active {
    color: #2e7d32;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2e7d32;
}

/* Dropdown Styles */
.nav-item-has-children {
    position: relative;
}

.nav-parent {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    transition: transform 0.3s;
}

.nav-item-has-children:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 220px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.sub-nav-link:hover {
    background-color: #f5f5f5;
}

.sub-nav-link.active {
    color: #2e7d32;
    font-weight: 500;
    background-color: #f0f7f0;
}

/* CTA Button Styles */
.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: #2e7d32;
    color: white;
}

.btn-primary:hover {
    background-color: #1b5e20;
}

.btn-secondary {
    background-color: transparent;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.btn-secondary:hover {
    background-color: #2e7d32;
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile CTA Buttons - HIDDEN by default */
.mobile-cta {
    display: none; /* Always hidden by default */
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.mobile-cta .btn {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .nav-parent {
        justify-content: space-between;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    /* Show mobile CTA only when menu is active */
    .mobile-cta.active {
        display: flex;
    }

    /* Mobile Dropdown Styles */
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item-has-children.submenu-open .sub-menu {
        max-height: 500px;
    }

    .nav-item-has-children.submenu-open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .sub-nav-link {
        padding: 0.75rem 1rem;
        border-bottom: none;
        font-size: 0.95rem;
        color: #666;
    }

    .sub-nav-link.active {
        color: #2e7d32;
        background-color: transparent;
    }
}