/* Philippines Wildlife - Nature's Paradise Styling */

:root {
    /* Color Palette - Nature & Wildlife Theme */
    --primary-forest: #2D774A;
    /* Deep forest green */
    --secondary-emerald: #10B981;
    /* Bright emerald */
    --accent-sunset: #F97316;
    /* Warm sunset orange */
    --accent-sky: #0EA5E9;
    /* Sky blue */
    --accent-earth: #A16207;
    /* Earth brown */

    /* Nature Gradients */
    --gradient-forest: linear-gradient(135deg, #2D774A 0%, #10B981 100%);
    --gradient-sunset: linear-gradient(135deg, #F97316 0%, #FCD34D 100%);
    --gradient-sky: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
    --gradient-wilderness: linear-gradient(135deg, #2D774A 0%, #F97316 50%, #0EA5E9 100%);

    /* Background Colors */
    --bg-primary: #0F172A;
    /* Deep night */
    --bg-secondary: #1E293B;
    /* Dark slate */
    --bg-card: #334155;
    /* Card background */
    --bg-light: #F8FAFC;
    /* Light background */
    --bg-nature: rgba(45, 119, 74, 0.05);
    /* Nature tint */

    /* Text Colors */
    --text-primary: #F8FAFC;
    /* Primary white text */
    --text-secondary: #CBD5E1;
    /* Secondary light gray */
    --text-muted: #94A3B8;
    /* Muted gray */
    --text-dark: #1E293B;
    /* Dark text for light backgrounds */

    /* Border & Effects */
    --border-nature: rgba(16, 185, 129, 0.2);
    --shadow-nature: 0 10px 40px rgba(45, 119, 74, 0.3);
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.4);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Floating Wildlife Elements */
.floating-wildlife {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatWildlife 15s infinite linear;
    animation-delay: var(--delay);
}

.floating-element.bird {
    top: 10%;
    left: 5%;
    animation-duration: 20s;
}

.floating-element.butterfly {
    top: 30%;
    right: 10%;
    animation-duration: 18s;
}

.floating-element.turtle {
    bottom: 40%;
    left: 8%;
    animation-duration: 25s;
}

.floating-element.parrot {
    top: 60%;
    right: 15%;
    animation-duration: 22s;
}

.floating-element.whale {
    bottom: 20%;
    right: 5%;
    animation-duration: 30s;
}

.floating-element.monkey {
    top: 80%;
    left: 12%;
    animation-duration: 16s;
}

@keyframes floatWildlife {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-40px) rotate(-3deg);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-20px) rotate(2deg);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-nature);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-weight: 700;
    font-size: 1.4rem;
    background: var(--gradient-forest);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-forest);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-wilderness);
    overflow: hidden;
}

#wildlifeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--border-nature);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-emerald);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-forest);
    color: white;
    box-shadow: var(--shadow-nature);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(45, 119, 74, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-nature);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gradient-forest);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.2);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(45, 119, 74, 0.2);
    border: 1px solid var(--border-nature);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-emerald);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Experiences Section */
.experiences {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.experience-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-nature);
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-forest);
    color: white;
    transform: translateY(-2px);
}

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

.experience-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-nature);
    position: relative;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.experience-image {
    position: relative;
    height: 200px;
    background: var(--gradient-forest);
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.experience-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.experience-badge.endangered {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.experience-badge.nocturnal {
    background: rgba(30, 41, 59, 0.9);
    color: white;
}

.experience-badge.gentle-giant {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.experience-badge.endemic {
    background: rgba(249, 115, 22, 0.9);
    color: white;
}

.experience-badge.conservation {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.experience-badge.interactive {
    background: rgba(168, 85, 247, 0.9);
    color: white;
}

.experience-content {
    padding: 2rem;
}

.experience-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.experience-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.experience-features {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(16, 185, 129, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--secondary-emerald);
}

.experience-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.experience-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-sunset);
}

.experience-rating {
    text-align: right;
}

.stars {
    color: #FCD34D;
    margin-bottom: 0.2rem;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.conservation-impact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(45, 119, 74, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-emerald);
    margin-top: 1rem;
}

.impact-icon {
    font-size: 1.2rem;
}

.conservation-impact span:last-child {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Wildlife Showcase */
.wildlife-showcase {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.wildlife-gallery {
    margin-top: 4rem;
}

.wildlife-category {
    margin-bottom: 3rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.category-icon {
    font-size: 2rem;
}

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

.species-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-nature);
}

.species-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.species-image {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
}

.species-info h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.species-status {
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.species-status.endangered {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.species-status.vulnerable {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
}

.species-status.near-threatened {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.species-status.stable {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.species-status.endemic {
    background: rgba(168, 85, 247, 0.2);
    color: #A855F7;
}

.species-population {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Conservation Section */
.conservation {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.conservation-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.conservation-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-emerald);
}

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

.conservation-initiatives {
    margin-top: 2rem;
}

.initiative {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.initiative-icon {
    font-size: 1.5rem;
    min-width: 50px;
    text-align: center;
    margin-top: 0.2rem;
}

.initiative-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.initiative-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.conservation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.impact-circle {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-forest);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.impact-icon {
    font-size: 3rem;
    margin-top: 2rem;
}

.impact-text {
    font-weight: 600;
    color: white;
}

.impact-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--border-nature);
    border-radius: 50%;
    border-top-color: var(--secondary-emerald);
    animation: rotate 3s linear infinite;
}

.ring-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tours Section */
.tours {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.tour-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--border-nature);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.tour-card.featured {
    border-color: var(--accent-sunset);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
}

.tour-card.premium {
    border-color: #FCD34D;
    box-shadow: 0 0 30px rgba(252, 211, 77, 0.3);
}

.tour-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-sunset);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tour-card.premium .tour-badge {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    color: var(--text-dark);
}

.tour-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tour-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tour-subtitle {
    color: var(--text-secondary);
}

.tour-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-sunset);
}

.price-period {
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.tour-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.duration-icon {
    font-size: 1.2rem;
}

.tour-highlights {
    margin-bottom: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tour-conservation {
    background: rgba(45, 119, 74, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-emerald);
}

.conservation-badge {
    display: inline-block;
    background: var(--gradient-forest);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.tour-conservation p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.contact-features {
    margin: 2rem 0;
}

.contact-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
    margin-top: 0.2rem;
}

.feature-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-details {
    margin-top: 2rem;
}

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

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span:first-child {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Form Styling */
.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-nature);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-nature);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
}

.form-checkbox label {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    background: var(--gradient-forest);
    padding: 4rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-info p {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    flex-shrink: 0;
}

.form-input {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    min-width: 400px;
}

.form-input input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    background: transparent;
}

.form-input button {
    padding: 1rem 2rem;
    background: var(--accent-sunset);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-input button:hover {
    background: #EA580C;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-nature);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-brand .brand-icon {
    font-size: 2rem;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover {
    color: var(--secondary-emerald);
}

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

.social-link {
    display: inline-block;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-nature);
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-light);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .species-grid {
        grid-template-columns: 1fr;
    }

    .conservation-content {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .form-input {
        min-width: auto;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        margin: 0;
    }
}