/* ===================================
   Global Styles & Reset
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - City Lights vs Nature Theme */
    --primary-color: #00a86b;
    /* Green - Nature */
    --secondary-color: #cddc39;
    /* Lime - Energy */
    --accent-color: #ff6600;
    /* Orange - Vibrant */
    --dark-bg: #0a0a0a;
    /* Deep Black */
    --light-bg: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #fff;
    --overlay: rgba(0, 0, 0, 0.7);
    --city-lights: #ffa500;
    /* Orange glow */
    --nature-green: #228b22;
    /* Forest green */

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.nav-brand h2 {
    color: var(--text-light);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%),
        url('../assets/hero-bg.jpg') center/cover no-repeat;
    background-blend-mode: multiply;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-container {
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin: 0;
    opacity: 0.9;
}

.typewriter {
    display: inline-block;
    border-right: 3px solid var(--secondary-color);
    white-space: nowrap;
    overflow: visible;
    animation: blink 0.7s infinite;
    line-height: 1.5;
}

@keyframes blink {

    0%,
    50% {
        border-color: var(--secondary-color);
    }

    51%,
    100% {
        border-color: transparent;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: #000;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(205, 220, 57, 0.5);
    position: relative;
    overflow: visible;
}

.neon-button {
    animation: neonPulse 2s infinite;
}

.neon-button::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    padding: 4px;
    background: linear-gradient(45deg, #ffff00, #000, #ffff00, #000);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    filter: blur(1px);
}

.neon-button::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(45deg, #ffff00, #000, #ffff00, #000);
    background-size: 300% 300%;
    opacity: 0.3;
    filter: blur(8px);
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
}

@keyframes rotateBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(205, 220, 57, 0.5),
            0 0 40px rgba(255, 255, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(205, 220, 57, 0.8),
            0 0 60px rgba(255, 255, 0, 0.5);
    }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: #e0ed4d;
}

/* ===================================
   Stats Section
   =================================== */

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            var(--accent-color),
            var(--secondary-color),
            var(--accent-color),
            transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(205, 220, 57, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(205, 220, 57, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #aaa;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* ===================================
   About Section
   =================================== */

.about {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: #ff0000;
    color: var(--text-light);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.youtube-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Section Titles
   =================================== */

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* ===================================
   Globe Section
   =================================== */

.globe-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d1f0d 100%);
    color: var(--text-light);
    position: relative;
}

.globe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.globe-section .section-title {
    color: var(--text-light);
}

.globe-section .section-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

#globeViz {
    width: 100%;
    height: 600px;
    position: relative;
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: grab;
}

#globeViz:active {
    cursor: grabbing;
}

.globe-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.control-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-light);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.control-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(205, 220, 57, 0.4);
}

/* ===================================
   Modal
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    position: relative;
    background: var(--light-bg);
    margin: 2% auto;
    padding: 2rem;
    width: 90%;
    max-width: 900px;
    border-radius: 15px;
    animation: slideIn 0.3s ease;
    border: 3px solid var(--accent-color);
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.4);
}

.modal-compact {
    max-width: 600px;
    margin: 5% auto;
    padding: 1.5rem;
}

.modal-compact #modalTitle {
    font-size: 1.5rem;
}

.modal-compact .video-container {
    margin-bottom: 1rem;
}

.modal-compact #modalDescription {
    font-size: 0.9rem;
    max-height: 100px;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
}

.close:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(90deg);
}

#modalTitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.video-carousel img {
    width: 150px;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.video-carousel img:hover {
    transform: scale(1.05);
}

#modalDescription {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.watch-youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #ff0000;
    color: var(--text-light);
    border-radius: 5px;
    font-weight: 600;
}

.watch-youtube-btn:hover {
    background: #cc0000;
}

/* ===================================
   Charity Section
   =================================== */

.charity {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.charity-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.charity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.charity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.charity-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.charity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.charity-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.impact-counter {
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 5px;
}

.counter {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.donation-section {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.donation-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.donation-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.donation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.donation-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.testimonials {
    margin-top: 3rem;
}

.testimonials h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
}

.testimonial {
    min-width: 300px;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial span {
    font-weight: 600;
    color: var(--primary-color);
}

/* ===================================
   Gallery Section
   =================================== */

.gallery {
    padding: 6rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay p {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===================================
   Upcoming Expeditions
   =================================== */

.upcoming {
    padding: 6rem 0;
    background: var(--dark-bg);
    color: var(--text-light);
}

.upcoming .section-title {
    color: var(--text-light);
}

.upcoming .section-subtitle {
    color: #aaa;
}

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

.expedition-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.expedition-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.expedition-date {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expedition-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.expedition-card p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.learn-more {
    color: var(--secondary-color);
    font-weight: 600;
}

.learn-more:hover {
    color: var(--accent-color);
}

.newsletter {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* ===================================
   Animations
   =================================== */

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* ===================================
   Google Maps-Style Markers
   =================================== */

.map-marker {
    position: relative;
    width: 30px;
    height: 45px;
    transform-origin: bottom center;
    animation: markerDrop 0.5s ease-out;
}

.map-marker-small {
    width: 20px;
    height: 30px;
}

.map-marker-small .marker-pin {
    width: 20px;
    height: 20px;
    border: 2px solid white;
}

.map-marker-small .marker-pin::before {
    width: 8px;
    height: 8px;
}

.map-marker-small .marker-pulse {
    width: 20px;
    height: 20px;
}

.map-marker-small .marker-shadow {
    width: 14px;
    height: 6px;
}

.marker-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
    border: 3px solid white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.marker-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.marker-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(3px);
}

.marker-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: rgba(255, 102, 0, 0.4);
    border-radius: 50%;
    animation: pulse 2s infinite;
    transform: rotate(-45deg);
}

.map-marker:hover .marker-pin {
    transform: rotate(-45deg) scale(1.2);
    background: linear-gradient(135deg, #cddc39 0%, #00a86b 100%);
}

@keyframes markerDrop {
    0% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }

    60% {
        transform: translateY(5px) scale(1.1);
    }

    80% {
        transform: translateY(-2px) scale(0.95);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: rotate(-45deg) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: rotate(-45deg) scale(1.8);
        opacity: 0;
    }

    100% {
        transform: rotate(-45deg) scale(1);
        opacity: 0;
    }
}

/* ===================================
   Ambient Sound Controls
   =================================== */

.sound-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
    transition: var(--transition);
}

.sound-control:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.6);
}

.sound-control i {
    font-size: 24px;
    color: white;
}

.sound-menu {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 20px;
    display: none;
    min-width: 250px;
    backdrop-filter: blur(10px);
}

.sound-menu.active {
    display: block;
    animation: slideUp 0.3s ease;
}

.sound-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    color: white;
    margin-bottom: 8px;
}

.sound-option:hover {
    background: rgba(255, 102, 0, 0.2);
}

.sound-option.active {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.sound-option i {
    font-size: 20px;
    color: var(--secondary-color);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Travel-Themed Icons & Enhancements
   =================================== */

.section-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.travel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent-color), var(--city-lights));
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 5px;
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.3);
}

/* ===================================
   Scroll Reveal Animations
   =================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Utility Classes
   =================================== */

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}