/* About Page Styles */

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes border-dance {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

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

/* Fixed Background */
.about-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
}

/* Breadcrumb */
.breadcrumb-section {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
}

.breadcrumb-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6b7280;
}

.breadcrumb a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #1f2937;
}

.breadcrumb span {
    color: #9ca3af;
}

/* ===================================
   HERO SECTION - MINIMAL
   =================================== */
.hero-section {
    position: relative;
    padding: 100px 0 80px;
    color: white;
    overflow: hidden;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(44, 62, 53, 0.88) 0%,
        rgba(44, 95, 79, 0.82) 100%);
}

/* Decorative elements - subtle */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
    color: white;
    max-width: 800px;
    letter-spacing: -0.01em;
}

.hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.hero-badge i {
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Statistics */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: white;
}

.hero-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Content Sections */
.content-section {
    position: relative;
    padding: 120px 0 40px 0;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.65);
}

.section-bg-alt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.48);
}

.section-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Styled Section Titles */
.section-title {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #1f2937 !important;
    margin-bottom: 20px;
    opacity: 1 !important;
    transform: none !important;
    background: none !important;
    -webkit-text-fill-color: #1f2937 !important;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-title::before {
    display: none !important;
}

.section-title::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--forest-green, #2c5f4f);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-family: 'Inter', sans-serif;
    color: #6b7280 !important;
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
}

.section-description::before {
    display: none !important;
}

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

/* Mission Header with decorative background */
.mission-header {
    margin-bottom: 40px;
    padding: 32px 40px;
    background: rgba(245, 245, 240, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mission-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 95, 79, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.mission-header .section-title {
    margin-bottom: 12px;
}

.mission-header .section-description {
    margin: 0;
    max-width: none;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* History Section special styling */
#history .section-title {
    font-size: 36px;
    margin-bottom: 24px;
}

#history .text-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#history .text-content .info-card {
    margin-top: auto;
}

/* Text Content Block with subtle styling */
.text-content {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
    padding: 32px 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.text-content p {
    margin-bottom: 20px;
}

.text-content p:last-of-type {
    margin-bottom: 0;
}

/* Image Container with enhanced styling */
.image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255,255,255,0.1) inset;
}

.image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

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

/* Info Card - Date/Important Info */
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(254, 243, 199, 0.4);
    border-radius: 12px;
    margin-top: 28px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--warm-beige, #d4a574);
}

.info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    color: var(--warm-beige, #d4a574);
    flex-shrink: 0;
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-title {
    font-family: 'Inter', sans-serif;
    color: #78350f;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.info-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #92400e;
}

/* ===================================
   MISSION CARDS - MINIMAL
   =================================== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.mission-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.mission-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.2s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.05);
}

.mission-icon-green {
    background: rgba(209, 250, 229, 0.5);
    color: #059669;
}

.mission-icon-blue {
    background: rgba(219, 234, 254, 0.5);
    color: #2563eb;
}

.mission-icon-amber {
    background: rgba(254, 243, 199, 0.5);
    color: var(--warm-beige, #d4a574);
}

.mission-card h3 {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 12px;
}

.mission-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* ===================================
   NATURE ZONES - MINIMAL
   =================================== */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.zone-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.zone-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.zone-card:hover .zone-image {
    transform: scale(1.15);
}

/* Overlay gradient */
.zone-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.zone-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-green, #2c5f4f);
    transition: transform 0.2s ease;
    z-index: 2;
}

.zone-card:hover .zone-badge {
    transform: scale(1.05);
}

.zone-content {
    padding: 20px;
}

.zone-content h3 {
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 8px;
}

.zone-height {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #4b5563;
    background: rgba(245, 245, 240, 0.8);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.zone-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

/* ===================================
   RARE SPECIES - MINIMAL
   =================================== */
.species-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.species-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.species-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.species-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.species-card:hover .species-image {
    transform: scale(1.08);
}

/* Image overlay with gradient */
.species-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.species-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(254, 226, 226, 0.95);
    backdrop-filter: blur(8px);
    color: #991b1b;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    z-index: 3;
}

.species-content {
    padding: 24px;
}

.species-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 10px;
}

.species-title i {
    color: var(--forest-green, #2c5f4f);
    width: 22px;
    height: 22px;
}

.species-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

/* ===================================
   GALLERY - ENHANCED
   =================================== */
.gallery-tabs {
    max-width: 100%;
}

.tabs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 400px;
    margin: 0 auto 48px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-button {
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button:hover:not(.active) {
    color: #6b7280;
    background: rgba(255, 255, 255, 0.6);
}

.tab-button.active {
    background: white;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.9) 0%,
        rgba(15, 23, 42, 0.4) 40%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay p {
    color: white;
    font-size: 18px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Magnify icon on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.3-4.3'%3E%3C/path%3E%3Cpath d='M11 8v6'%3E%3C/path%3E%3Cpath d='M8 11h6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Videos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.video-card {
    position: relative;
    height: 288px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-preview {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--forest-green, #2c5f4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    z-index: 10;
}

.video-card:hover .video-play {
    background: #234d40;
    transform: translate(-50%, -50%) scale(1.05);
}

.play-icon {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    z-index: 10;
}

.video-title {
    color: #111827;
    font-weight: 600;
    margin-bottom: 4px;
}

.video-duration {
    font-size: 14px;
    color: #4b5563;
}

/* ===================================
   INTERACTIVE MAP - ENHANCED
   =================================== */
#interactive-map-container {
    position: relative;
    background: rgba(245, 245, 240, 0.5);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

#interactive-map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.park-map {
    width: 100%;
    height: 500px;
    border-radius: 0 0 20px 20px;
}

.map-legend-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 16px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    font-size: 14px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.map-legend-box:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.legend-title {
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-title::before {
    content: '';
    width: 3px;
    height: 14px;
    background: var(--forest-green, #2c5f4f);
    border-radius: 2px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.legend-item:hover {
    background: rgba(0, 0, 0, 0.03);
    color: #374151;
}

.legend-line {
    width: 26px;
    height: 3px;
    border: 2px dashed var(--forest-green, #2c5f4f);
    border-radius: 1px;
    background: transparent;
}

.legend-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.legend-item:hover .legend-marker {
    transform: scale(1.1);
}

.legend-marker-blue {
    background: var(--sky-blue, #5a8db8);
}

.legend-marker-orange {
    background: var(--warm-beige, #d4a574);
}

.map-fullscreen-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1000;
}

.map-fullscreen-btn:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-fullscreen-btn:hover i {
    color: #1f2937;
}

.map-fullscreen-btn i {
    color: #6b7280;
    transition: color 0.2s ease;
}

/* ===================================
   CTA SECTION - ENHANCED
   =================================== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section .section-bg {
    background: linear-gradient(135deg,
        rgba(44, 62, 53, 0.95) 0%,
        rgba(44, 62, 53, 0.9) 50%,
        rgba(44, 62, 53, 0.95) 100%);
}

/* Decorative orbs - removed for cleaner design */

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section .section-title {
    color: white !important;
    font-size: 40px;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .section-title::after {
    display: none !important;
}

.cta-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.cta-button-primary {
    background: white;
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 50px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px 32px;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    .hero-stat-value {
        font-size: 24px;
    }

    .hero-stat-label {
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .image-container {
        height: 300px;
    }

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

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

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

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .map-legend-box {
        font-size: 12px;
        padding: 12px;
    }
}
