/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */
:root {
    --primary-green: #184d27;
    --secondary-green: #2ecc40;
    --light-green: #eafbe6;
    --bg-green: #f4f8f4;
    --text-dark: #1a3d1a;
    --text-light: #666;
    --white: #fff;
    --shadow-light: rgba(24,77,39,0.08);
    --shadow-medium: rgba(24,77,39,0.15);
    --whatsapp-green: #25d366;
    --whatsapp-dark: #128c7e;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg-green);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-green);
    margin: 0 0 1rem 0;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    background: var(--secondary-green);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.btn:hover {
    background: var(--primary-green);
}

.btn-secondary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-green);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 120px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #a8e063;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero, .tour-hero, .spot-hero, .page-hero {

    color: var(--white);
    text-align: center;
    padding: 5rem 1rem 4rem 1rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact page hero - reduced height */
.contact-page .hero {
    min-height: 30vh;
}

.hero {
    position: relative;
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(37, 37, 37, 0.1), rgba(0, 0, 0, 0));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content, .tour-hero-content, .spot-hero-content, .page-hero-content {
    max-width: 800px;
}

.hero-content h1, .tour-hero-content h1, .spot-hero-content h1, .page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-content p, .tour-subtitle, .spot-subtitle, .page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons, .tour-hero-buttons, .spot-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   CARDS & GRIDS
   ======================================== */
.tour-card:hover, .spot-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 6px 24px var(--shadow-medium);
}

.tour-card, .spot-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 300px;
    text-align: left;
}

.tour-card img, .spot-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.tour-card h3, .spot-card h3 {
    margin: 0.5rem 0 0.7rem 0;
    color: var(--primary-green);
}

.tour-card p, .spot-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tour-buttons, .spot-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.tour-buttons .btn, .spot-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.tours, .birding-spots {
    padding: 4rem 1rem;
    text-align: center;
    background: var(--light-green);
}

.tours h2, .birding-spots h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.tour-cards, .spots-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.gallery {
    padding: 4rem 1rem;
    text-align: center;
    background: var(--bg-green);
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.gallery-grid, .tour-gallery-grid, .spot-gallery-grid {
    display: grid;
    gap: 1.2rem;
    margin-top: 2rem;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.tour-gallery-grid, .spot-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px var(--shadow-light);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(24, 77, 39, 0.8));
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-caption {
    padding: 1.5rem;
    color: var(--white);
    width: 100%;
}

.gallery-caption h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.gallery-caption p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-green);
}

#modal-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

#modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    max-width: 80%;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    padding: 1rem 0.8rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }
    
    #modal-image {
        max-width: 95%;
        max-height: 70vh;
    }
    
    #modal-caption {
        bottom: 10px;
        max-width: 90%;
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    .modal-nav {
        padding: 0.8rem 0.6rem;
        font-size: 1.2rem;
    }
    
    .modal-nav.prev {
        left: 10px;
    }
    
    .modal-nav.next {
        right: 10px;
    }
    
    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 1.5rem;
    }
}

/* ========================================
   TOUR PAGES
   ======================================== */
.tour-overview, .spot-overview {
    padding: 4rem 0;
    background: var(--white);
}

.tour-info-grid, .spot-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tour-main-image img, .spot-main-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

/* Allow larger images for specific pages */
.spot-main-image img.howler-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
}

/* Tapir Valley page - make main image 100% of container */
.tapir-valley-page .spot-main-image img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: cover;
}

/* ========================================
   MONKEY SPECIES PAGE
   ======================================== */
.monkey-intro {
    padding: 4rem 0;
    background: var(--bg-green);
}

.intro-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
    text-align: left;
    transition: transform 0.2s;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight-text h4 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.highlight-text p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.intro-note {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.monkey-species {
    padding: 4rem 0;
    background: var(--white);
}

.species-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 2px solid var(--light-green);
}

.species-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.species-header {
    text-align: center;
    margin-bottom: 3rem;
}

.species-header h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.scientific-name {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0;
}

.species-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.monkey-species-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.species-info h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.species-info h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
}

.species-info p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.species-info ul {
    list-style: none;
    padding: 0;
}

.species-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e8e0;
    font-size: 1rem;
}

.species-info li:last-child {
    border-bottom: none;
}

@media (max-width: 900px) {
    .species-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .species-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .monkey-species {
        padding: 2rem 0;
    }
    
    .species-section {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .species-header {
        margin-bottom: 2rem;
    }
    
    .species-header h2 {
        font-size: 1.8rem;
    }
    
    .scientific-name {
        font-size: 1rem;
    }
}

/* ========================================
   BAIRD'S TAPIR PAGE
   ======================================== */
.tapir-intro {
    padding: 4rem 0;
    background: var(--bg-green);
}

.tapir-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tapir-species {
    padding: 4rem 0;
    background: var(--white);
}

.tapir-species-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.conservation-story {
    padding: 4rem 0;
    background: var(--light-green);
}

.conservation-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-date {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 120px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
    flex: 1;
}

.timeline-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    line-height: 1.7;
    margin: 0;
}

.conservation-methods {
    padding: 4rem 0;
    background: var(--white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: var(--bg-green);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow-light);
    transition: transform 0.2s;
}

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

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.method-card p {
    line-height: 1.6;
    margin: 0;
}

.viewing-info {
    padding: 4rem 0;
    background: var(--light-green);
}

.viewing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.viewing-text h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.viewing-text h3 {
    color: var(--primary-green);
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
}

.viewing-text p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.viewing-text ul {
    list-style: none;
    padding: 0;
}

.viewing-text li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e8e0;
    font-size: 1rem;
}

.viewing-text li:last-child {
    border-bottom: none;
}

.viewing-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow-light);
}

.research-impact {
    padding: 4rem 0;
    background: var(--white);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.research-item {
    background: var(--bg-green);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.research-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.research-item p {
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-date {
        align-self: flex-start;
    }
    
    .viewing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .tapir-intro, .tapir-species, .conservation-story, .conservation-methods, .viewing-info, .research-impact {
        padding: 2rem 0;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .method-card, .research-item {
        padding: 1.5rem;
    }
    
    .tapir-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.tour-highlights, .species-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tour-highlights li, .species-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e8e0;
    font-size: 1.1rem;
}

.tour-stats, .spot-stats {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.stat, .spot-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tour-description, .habitat-info {
    padding: 4rem 0;
    background: var(--bg-green);
}

.description-content, .habitat-content {
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.habitat-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.habitat-text h3 {
    color: var(--primary-green);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.habitat-text p {
    margin-bottom: 1.5rem;
}

.habitat-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow-light);
}

.tour-booking, .booking-cta, .night-tour-cta {
    padding: 4rem 0;
    background: var(--primary-green);
    color: var(--white);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.booking-info li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.booking-buttons, .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* ========================================
   BIRDING SPOTS
   ======================================== */
.spots-cta {
    margin-top: 2rem;
}

.map-info {
    text-align: center;
    margin-bottom: 2rem;
}

.spots-overview {
    padding: 4rem 0;
    background: #fff;
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.spot-overview {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow-light);
    transition: transform 0.2s;
}

.spot-overview:hover {
    transform: translateY(-5px);
}

.spot-overview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.spot-content {
    padding: 1.5rem;
    flex: 1;
}

.spot-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.spot-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.birding-tips {
    padding: 4rem 0;
    background: var(--light-green);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
    text-align: center;
}

.tip h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* ========================================
   SPECIES SECTIONS
   ======================================== */
.bird-species, .frog-species {
    padding: 4rem 0;
    background: var(--light-green);
}

.species-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.species-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.species-category h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.seasonal-highlights {
    padding: 4rem 0;
    background: var(--white);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.season {
    background: var(--bg-green);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.season h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.season p {
    margin-bottom: 0.8rem;
}

.featured-species {
    padding: 4rem 0;
    background: var(--white);
}

.species-profile {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    background: var(--bg-green);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.species-profile:nth-child(even) {
    flex-direction: row-reverse;
}

.species-image {
    flex: 0 0 300px;
}

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

.species-details {
    padding: 2rem;
    flex: 1;
}

.species-details h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.species-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.complete-species-list {
    padding: 4rem 0;
    background: var(--light-green);
}

.species-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.species-list-column ul {
    list-style: none;
    padding: 0;
}

.species-list-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e8e0;
    font-size: 1rem;
}

.species-list-column li:last-child {
    border-bottom: none;
}

.species-list-column em {
    color: var(--text-light);
    font-style: italic;
}

/* ========================================
   VISITOR INFO
   ======================================== */
.visitor-info {
    padding: 4rem 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--bg-green);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.info-card p {
    margin-bottom: 0.8rem;
}

/* ========================================
   AUDIO PLAYER STYLES
   ======================================== */
.audio-section {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.audio-section h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.audio-section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.howler-audio {
    width: 100%;
    margin: 1rem 0;
    border-radius: 8px;
    background: var(--white);
}

.howler-audio::-webkit-media-controls-panel {
    background: var(--white);
}

.howler-audio::-webkit-media-controls-play-button {
    background: var(--primary-green);
    border-radius: 50%;
}

.howler-audio::-webkit-media-controls-play-button:hover {
    background: var(--secondary-green);
}

.audio-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

/* Embed Toggle Button */
.embed-toggle {
    margin-top: 2rem;
    text-align: center;
}

.embed-toggle-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.embed-toggle-btn:hover {
    background: var(--secondary-green);
}

.toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

/* Embed Section Styles */
.embed-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(24,77,39,0.1);
}

.embed-section h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.embed-section p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.embed-code-container {
    position: relative;
    margin: 1rem 0;
}

.embed-code {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    background: var(--white);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    resize: vertical;
    cursor: text;
}

.embed-code:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(46, 204, 64, 0.1);
}

.copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.copy-btn:hover {
    background: var(--secondary-green);
}

.embed-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 3rem 0 0 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-green);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 20px;
    color: var(--accent-green);
    font-size: 1.1rem;
}

.contact-item div p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.contact-item div a,
.contact-item div span {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item div a:hover {
    color: var(--accent-green);
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--accent-green);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-item i {
        align-self: flex-start;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 900px) {
    .tour-info-grid, .spot-info-grid, .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tour-gallery-grid, .spot-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .species-profile {
        flex-direction: column !important;
    }
    
    .species-image {
        flex: none;
        height: 250px;
    }
    
    .species-list-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tour-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-green);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .spots-grid {
        grid-template-columns: 1fr;
    }
    
    .spot-overview {
        flex-direction: column;
    }
    
    .spot-overview img {
        width: 100%;

    }
    
    #birding-map {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .tour-card, .spot-card {
        width: 90%;
    }
    
    .hero-content h1, .tour-hero-content h1, .spot-hero-content h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tour-stats, .spot-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tour-gallery-grid, .spot-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-hero-buttons, .spot-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .species-categories {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   MAP STYLES
   ======================================== */
.map-section {
    padding: 3rem 0;
    background: var(--bg-green);
}

.map-container {
    margin-bottom: 2rem;
}

#birding-map {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

/* Custom Map Markers */
.custom-marker {
    background: transparent !important;
    border: none !important;
}

.marker-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background: var(--white);
    z-index: 2;
    position: relative;
}

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

.marker-pin {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 15px solid var(--white);
    margin-top: -2px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    z-index: 1;
}

/* Enhanced Popup Styles */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 0;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 0;
    padding: 0;
    min-width: 280px;
}

.map-popup {
    display: flex;
    flex-direction: column;
}

.popup-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

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

.popup-content {
    padding: 1.5rem;
    background: var(--white);
}

.popup-content h3 {
    color: var(--primary-green);
    margin: 0 0 0.8rem 0;
    font-size: 1.2rem;
}

.popup-content p {
    margin: 0 0 1rem 0;
    color: var(--text-light);
    line-height: 1.5;
}

.popup-content .btn {
    width: 100%;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

/* Popup Arrow */
.leaflet-popup-tip {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Hover Effects */
.marker-container:hover .marker-image {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.marker-container:hover .marker-pin {
    border-top-color: var(--secondary-green);
    transition: border-top-color 0.2s ease;
}

/* ========================================
   WILDLIFE PAGE STYLES
   ======================================== */
.wildlife-intro {
    padding: 4rem 0;
    background: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.wildlife-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.wildlife-stats .stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.wildlife-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.wildlife-stats .stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Species Grid */
.species-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.species-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-medium);
    transition: transform 0.3s;
}

.species-card:hover {
    transform: translateY(-8px);
}

.species-card.coming-soon {
    opacity: 0.8;
    background: var(--light-green);
}

.species-image {
    height: 250px;
    overflow: hidden;
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-green);
    font-size: 4rem;
}

.species-content {
    padding: 2rem;
}

.species-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.species-scientific {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.species-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.species-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.species-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.species-actions .btn {
    width: 50%;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

/* Habitats Section */
.wildlife-habitats {
    padding: 4rem 0;
    background: var(--light-green);
}

.habitats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.habitat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow-light);
    transition: transform 0.2s;
}

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

.habitat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.habitat-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.habitat-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Conservation Section */
.conservation-focus {
    padding: 4rem 0;
    background: var(--white);
}

.conservation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.conservation-text h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.conservation-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.conservation-text h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.conservation-text ul {
    list-style: none;
    padding: 0;
}

.conservation-text li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.conservation-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow-light);
}

/* Wildlife Tips */
.wildlife-tips {
    padding: 4rem 0;
    background: var(--bg-green);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
    text-align: center;
}

.tip-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-intro {
    padding: 4rem 0;
    background: var(--white);
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-stats .stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-green);
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.contact-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-stats .stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.contact-methods {
    padding: 4rem 0;
    background: var(--bg-green);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow-light);
    transition: transform 0.2s;
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-details {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-details h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(24,77,39,0.1);
}

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

.contact-label {
    font-weight: 600;
    color: var(--primary-green);
}

.booking-note {
    background: var(--bg-green);
    padding: 2rem;
    border-radius: 12px;
}

.booking-note h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.booking-note ul {
    list-style: none;
    padding: 0;
}

.booking-note li {
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

.contact-form {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(24,77,39,0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.faq-section {
    padding: 4rem 0;
    background: var(--bg-green);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.faq-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.location-section {
    padding: 4rem 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.location-info h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.location-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.location-details {
    margin-bottom: 2rem;
}

.location-details h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.location-details ul {
    list-style: none;
    padding: 0;
}

.location-details li {
    padding: 0.3rem 0;
    color: var(--text-light);
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow-light);
}

/* ========================================
   FAQ PAGE STYLES
   ======================================== */
.faq-intro {
    padding: 4rem 0;
    background: var(--white);
}

.faq-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-stats .stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-green);
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.faq-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.faq-stats .stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.booking-info-section {
    padding: 4rem 0;
    background: var(--white);
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.booking-info-card {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-light);
}

.booking-info-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

.booking-info-card li {
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

.contact-cta {
    padding: 4rem 0;
    background: var(--bg-green);
}

.contact-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ========================================
   BOOKING SECTION STYLES
   ======================================== */
.booking-section {
    padding: 4rem 0;
    background: var(--white);
}

.booking-widget {
    margin-top: 3rem;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow-light);
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-stats, .faq-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .booking-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .contact-methods .btn {
        text-align: center;
    }
}
