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

html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

/* Main font: Poppins - Modern and readable sans-serif font (matching home page) */
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2; /* Above stickers */
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.visible {
    transform: translateY(0);
    opacity: 1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-brand-text {
    font-family: "Anton", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #fff;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding-left: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.hamburger:hover .bar {
    background-color: #d4af37;
}

.nav-brand-text.nav-brand-anim-mountain {
    animation: navMountainRise 6.5s ease-in-out infinite;
}

@keyframes navMountainRise {
    0%, 100% {
        letter-spacing: 2px;
        text-shadow: 0 0 6px rgba(212, 175, 55, 0.35), 0 6px 12px rgba(0, 0, 0, 0.25);
    }
    50% {
        letter-spacing: 3px;
        text-shadow: 0 -6px 18px rgba(166, 213, 255, 0.6), 0 8px 16px rgba(0, 0, 0, 0.4);
    }
}

.btn {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #000;
    position: relative;
}

/* Override for black sections */
.tours h2,
.planner h2,
.best-time h2 {
    color: #fff;
}

.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 10px auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Video background with entrance animation */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.5) contrast(1.2);
    animation: videoFadeIn 2s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

@keyframes videoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Mobile: keep video background for consistent behavior */
@media (max-width: 768px) {
    .hero-video {
        display: block;
    }
    
    .hero {
        background: transparent;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

.hero-heading {
    font-family: "Anton", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 3;
}

.hero-heading .welcome-text {
    color: #d4af37;
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.hero-heading .heading-line {
    display: inline-block;
    font-size: 3.5rem;
}

/* Different colors for each word */
.hero-heading .heading-the {
    color: #ffffff;
    margin-right: 10px;
}

.hero-heading .heading-land {
    color: #d4af37;
    margin-right: 10px;
}

.hero-heading .heading-of {
    color: #f4d03f;
    margin-right: 10px;
}

.hero-heading .heading-mystical {
    color: #ffffff;
    margin-right: 10px;
}

/* Mountains word with animation */
.hero-heading .heading-mountains {
    color: #d4af37;
    display: inline-block;
    position: relative;
}

/* Mountain animation for each letter */
.hero-heading .mountain-letter {
    display: inline-block;
    position: relative;
    animation: mountainRise 3s ease-in-out infinite;
}

/* Staggered animation delays for mountain letters to create wave effect */
.hero-heading .mountain-letter:nth-child(1) { animation-delay: 0s; } /* M */
.hero-heading .mountain-letter:nth-child(2) { animation-delay: 0.15s; } /* o */
.hero-heading .mountain-letter:nth-child(3) { animation-delay: 0.3s; } /* u */
.hero-heading .mountain-letter:nth-child(4) { animation-delay: 0.45s; } /* n */
.hero-heading .mountain-letter:nth-child(5) { animation-delay: 0.6s; } /* t */
.hero-heading .mountain-letter:nth-child(6) { animation-delay: 0.75s; } /* a */
.hero-heading .mountain-letter:nth-child(7) { animation-delay: 0.9s; } /* i */
.hero-heading .mountain-letter:nth-child(8) { animation-delay: 1.05s; } /* n */
.hero-heading .mountain-letter:nth-child(9) { animation-delay: 1.2s; } /* s */

/* Mountain rise animation - resembles mountain peaks */
@keyframes mountainRise {
    0%, 100% {
        transform: translateY(0) scaleY(1);
    }
    25% {
        transform: translateY(-8px) scaleY(1.1);
    }
    50% {
        transform: translateY(-15px) scaleY(1.2);
    }
    75% {
        transform: translateY(-8px) scaleY(1.1);
    }
}

/* Mountain peak shadow effect */
.hero-heading .mountain-letter::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    animation: peakGlow 3s ease-in-out infinite;
}

@keyframes peakGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scaleY(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1.5);
    }
}

/* Keep the original fade-in animation */
.hero-heading.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

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

/* Geography Section */
.geography {
    background-color: #fafaf7;
    position: relative;
}

.geography-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.geography-text {
    flex: 1;
    min-width: 300px;
}

.geography-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.geography-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

.geography-points {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.geography-points li {
    color: #333;
    line-height: 2;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.geography-points li:hover {
    transform: translateX(10px);
    color: #d4af37;
}

.geography-map {
    flex: 1;
    min-width: 300px;
    height: 450px;
}

.geography-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Tours Section */
.tours {
    background-color: #000;
    color: #fff;
}

.well-choosen {
    font-family: "Anton", sans-serif;
}

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

.tour-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

/* Price tag that appears on hover */
.tour-price-hover {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    color: #000;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 25px;
    z-index: 10;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tour-card:hover .tour-price-hover {
    opacity: 1;
    transform: scale(1);
}

.tour-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.sikkim-tour1 {
    background-image: url('../assets/images/SIKKIM/WELL-CHOOSEN/ONE.webp');
}

.sikkim-tour2 {
    background-image: url('../assets/images/SIKKIM/WELL-CHOOSEN/TWO.webp');
}

.sikkim-tour3 {
    background-image: url('../assets/images/SIKKIM/WELL-CHOOSEN/THREE.webp');
}

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.tour-content p {
    color: #ccc;
    margin-bottom: 15px;
}

.know-more-btn {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tour-card:hover .know-more-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Itineraries Section */
.itineraries {
    background-color: #fafaf7;
    position: relative;
}

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

.itinerary-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.itinerary-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.itinerary1 {
    background-image: url('../assets/images/SIKKIM/AUTHENTIC-ESCORTED/ONE.webp');
}

.itinerary2 {
    background-image: url('../assets/images/SIKKIM/AUTHENTIC-ESCORTED/TWO.webp');
}

.itinerary3 {
    background-image: url('../assets/images/SIKKIM/AUTHENTIC-ESCORTED/THREE.webp');
}

.itinerary4 {
    background-image: url('../assets/images/SIKKIM/AUTHENTIC-ESCORTED/FOUR.webp');
}

.itinerary5 {
    background-image: url('../assets/images/SIKKIM/AUTHENTIC-ESCORTED/FIVE.webp');
}

.itinerary6 {
    background-image: url('../assets/images/SIKKIM/AUTHENTIC-ESCORTED/SIX.webp');
}

.itinerary-content {
    padding: 20px;
}

.itinerary-content h3 {
    color: #000;
    margin-bottom: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    margin: 10px 0;
}

.duration {
    color: #666;
    margin-bottom: 15px;
}

.view-more-btn {
    width: 100%;
    background: #d4af37;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #b8860b;
    transform: translateY(-2px);
}

/* Planner Section */
.planner {
    background-color: #000;
    color: #fff;
}

.planner-heading {
    color: white !important;
    font-family: "Anton", sans-serif;
}

.planner-form {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background: #333;
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: #999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    background: #d4af37;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Facts Section */
.facts {
    background-color: #fafaf7;
    text-align: center;
    position: relative;
}

.facts-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.fact-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #333;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Best Time & Things To Do */
.best-time {
    background-color: #000;
    color: #fff;
}

.best-time-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.best-time-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.best-time-text h2 {
    text-align: center;
    margin-bottom: 20px;
    color: aliceblue;
}

.best-time-text p {
    color: #ccc;
    line-height: 1.8;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto 40px;
}

.things-to-do {
    flex: 1 1 100%;
    min-width: 300px;
    margin-top: 40px;
}

.things-to-do h2 {
    text-align: center;
    margin-bottom: 20px;
    color: aliceblue;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.activity {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Fill water effect on hover */
.activity::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    transition: top 0.5s ease;
    z-index: 0;
}

.activity:hover::before {
    top: 0;
}

.activity i,
.activity span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.activity:hover i,
.activity:hover span {
    color: #000;
}

.activity:hover {
    background: #2a2a2a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.activity i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.activity span {
    text-align: center;
    font-weight: 500;
}

/* Connect With Us */
.connect {
    background-color: #fafaf7;
    position: relative;
}

.connect-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.connect-text h2 {
    margin-bottom: 30px;
}

.illustration {
    width: 200px;
    height: 200px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.illustration i {
    color: #d4af37;
}

/* Glitch Container */
.logo-glitch-container {
    position: relative;
}

.logo-animated {
    max-width: 150px;
    height: auto;
    position: relative;
}

/* Main logo */
.glitch-main {
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: filter 0.3s ease;
}

.glitch-main:hover {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
}

/* Glitch layers */
.glitch-layer {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.glitch-red {
    z-index: 0;
    filter: drop-shadow(0 0 15px rgba(255, 0, 193, 0.6)) brightness(2);
    animation: glitch-r 8s infinite;
    animation-delay: 0s;
}

.glitch-blue {
    z-index: 0;
    filter: drop-shadow(0 0 15px rgba(0, 255, 249, 0.6)) brightness(2);
    animation: glitch-b 8s infinite;
    animation-delay: 0.05s;
}

/* RGB Split Animation */
@keyframes glitch-r {
    0%, 88%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    89% {
        transform: translate(-4px, 2px);
        opacity: 0.8;
    }
    90% {
        transform: translate(4px, -2px);
        opacity: 0.8;
    }
    91% {
        transform: translate(-2px, 0px);
        opacity: 0.6;
    }
    92% {
        transform: translate(2px, 0px);
        opacity: 0.6;
    }
}

@keyframes glitch-b {
    0%, 88%, 100% {
        transform: translate(0);
        opacity: 0;
    }
    89% {
        transform: translate(4px, -2px);
        opacity: 0.8;
    }
    90% {
        transform: translate(-4px, 2px);
        opacity: 0.8;
    }
    91% {
        transform: translate(2px, 0px);
        opacity: 0.6;
    }
    92% {
        transform: translate(-2px, 0px);
        opacity: 0.6;
    }
}

/* Intense glitch on hover */
.logo-glitch-container:hover .glitch-red {
    animation: glitch-r-hover 0.5s infinite;
}

.logo-glitch-container:hover .glitch-blue {
    animation: glitch-b-hover 0.5s infinite;
}

@keyframes glitch-r-hover {
    0%, 100% {
        transform: translate(0);
        opacity: 0.7;
    }
    10% {
        transform: translate(-5px, 3px);
        opacity: 0.9;
    }
    20% {
        transform: translate(5px, -3px);
        opacity: 0.9;
    }
    30% {
        transform: translate(-3px, 0);
        opacity: 0.7;
    }
    40% {
        transform: translate(3px, 0);
        opacity: 0.7;
    }
    50% {
        transform: translate(0);
        opacity: 0.7;
    }
}

@keyframes glitch-b-hover {
    0%, 100% {
        transform: translate(0);
        opacity: 0.7;
    }
    10% {
        transform: translate(5px, -3px);
        opacity: 0.9;
    }
    20% {
        transform: translate(-5px, 3px);
        opacity: 0.9;
    }
    30% {
        transform: translate(3px, 0);
        opacity: 0.7;
    }
    40% {
        transform: translate(-3px, 0);
        opacity: 0.7;
    }
    50% {
        transform: translate(0);
        opacity: 0.7;
    }
}

.social-links {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook i {
    background: #3b5998;
}

.instagram i {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.whatsapp i {
    background: #25d366;
}

.social-link span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-home-btn,
.footer-top-btn {
    padding: 10px 25px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-home-btn {
    text-decoration: none;
    color: #000;
}

.footer p {
    color: #999;
    font-size: 0.9rem;
}

/* Fade-in on scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

.modal.closing {
    animation: fadeOut 0.3s ease forwards;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-content.closing {
    animation: slideOut 0.3s ease forwards;
}

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

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 10;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.modal-body {
    padding: 30px;
    margin-top: 30px;
}

.modal-body h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    color: #d4af37;
    margin-bottom: 15px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 5px;
}

.modal-section ul,
.modal-section ol {
    padding-left: 20px;
}

.modal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.book-now-modal {
    display: block;
    width: 100%;
    margin: 20px 0;
    background: #d4af37;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.book-now-modal:hover {
    background: #b8860b;
    transform: translateY(-2px);
}

/* Form in Modal */
#bookingForm .form-group {
    margin-bottom: 20px;
    width: 100%;
    min-width: 100%;
}

#bookingForm input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.payment-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

#bookingForm button {
    width: 100%;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .geography-content {
        flex-direction: column;
    }
    
    .geography-map {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        z-index: 1000;
    }

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

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .nav-link {
        padding: 15px;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.5);
        box-shadow: none;
        margin-top: 5px;
        display: none;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-logo .logo-img {
        height: 40px;
    }

    .nav-brand-text {
        display: none;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .social-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* social */
.social-links {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    padding-left: 6px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

ul {
    list-style: none;
}

.example-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.example-2 .icon-content {
    margin: 0 10px;
    position: relative;
}

.example-2 .icon-content .tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

.example-2 .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #4d4d4d;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-2 .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
}

.example-2 .icon-content a:hover {
    color: white;
}

.example-2 .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
    height: 100%;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
    background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
    background-color: #3b5998;
}

.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
    background: linear-gradient(45deg,
            #405de6,
            #5b51db,
            #b33ab4,
            #c135b4,
            #e1306c,
            #fd1f1f);
}

.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
    background-color: #ff0000;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Doodle Stickers */
.doodle-stickers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.doodle-sticker {
    position: absolute;
    opacity: 0.15;
    user-select: none;
    animation: floatSticker 8s ease-in-out infinite;
    filter: blur(0.5px);
    transition: opacity 0.3s ease;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doodle-sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5);
    transition: filter 0.3s ease;
}

.doodle-sticker:hover {
    opacity: 0.25;
    filter: blur(0px);
}

.doodle-sticker:hover img {
    filter: grayscale(80%) brightness(0.6);
}

/* Individual sticker positions */
.doodle-sticker.sticker-1 { top: 10%; left: 5%; animation-delay: 0s; animation-duration: 10s; }
.doodle-sticker.sticker-2 { top: 20%; right: 8%; animation-delay: 1s; animation-duration: 12s; }
.doodle-sticker.sticker-3 { top: 45%; left: 3%; animation-delay: 2s; animation-duration: 9s; }
.doodle-sticker.sticker-4 { top: 60%; right: 5%; animation-delay: 1.5s; animation-duration: 11s; }
.doodle-sticker.sticker-5 { top: 75%; left: 10%; animation-delay: 0.5s; animation-duration: 13s; }
.doodle-sticker.sticker-6 { top: 30%; left: 85%; animation-delay: 2.5s; animation-duration: 10s; }
.doodle-sticker.sticker-7 { top: 15%; left: 70%; animation-delay: 2s; animation-duration: 11s; }
.doodle-sticker.sticker-8 { top: 80%; left: 90%; animation-delay: 1s; animation-duration: 12s; }
.doodle-sticker.sticker-9 { top: 55%; right: 15%; animation-delay: 3s; animation-duration: 9s; }
.doodle-sticker.sticker-10 { top: 65%; left: 45%; animation-delay: 0.8s; animation-duration: 14s; }
.doodle-sticker.sticker-11 { top: 25%; left: 75%; animation-delay: 1.5s; animation-duration: 10s; }
.doodle-sticker.sticker-12 { top: 85%; right: 10%; animation-delay: 2.2s; animation-duration: 11s; }
.doodle-sticker.sticker-13 { top: 10%; left: 12%; animation-delay: 0s; animation-duration: 9s; }
.doodle-sticker.sticker-14 { top: 70%; right: 15%; animation-delay: 1.5s; animation-duration: 12s; }
.doodle-sticker.sticker-15 { top: 40%; left: 85%; animation-delay: 2.5s; animation-duration: 10s; }
.doodle-sticker.sticker-16 { top: 20%; left: 8%; animation-delay: 0.5s; animation-duration: 11s; }
.doodle-sticker.sticker-17 { top: 60%; right: 20%; animation-delay: 1.8s; animation-duration: 9s; }
.doodle-sticker.sticker-18 { top: 85%; left: 50%; animation-delay: 0s; animation-duration: 13s; }
.doodle-sticker.sticker-19 { top: 30%; right: 30%; animation-delay: 2.2s; animation-duration: 10s; }
.doodle-sticker.sticker-20 { top: 50%; left: 60%; animation-delay: 1.2s; animation-duration: 12s; }

/* Floating animation */
@keyframes floatSticker {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(-5deg) scale(0.9);
    }
    75% {
        transform: translateY(-30px) translateX(5px) rotate(3deg) scale(1.05);
    }
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: bounceDown 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.scroll-arrow i {
    font-size: 1.2rem;
    color: #ffffff;
    animation: jump 1.5s ease-in-out infinite;
}

/* Fade in up animation for scroll down */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Bounce down animation */
@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Jump animation for arrow */
@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .doodle-sticker {
        width: 50px;
        height: 50px;
        opacity: 0.1;
    }
    
    .scroll-down {
        bottom: 30px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .scroll-down {
        bottom: 20px;
    }
    
    .scroll-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .scroll-arrow {
        width: 30px;
        height: 30px;
    }
    
    .scroll-arrow i {
        font-size: 1rem;
    }
}
