/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 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-dragon {
    animation: navDragonPulse 5.5s ease-in-out infinite;
}

@keyframes navDragonPulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(212, 175, 55, 0.4), 0 0 18px rgba(255, 140, 0, 0.25);
    }
    50% {
        text-shadow: 0 0 16px rgba(255, 191, 0, 0.75), 0 0 28px rgba(255, 94, 0, 0.45);
    }
}

.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;
}

.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;
    width: 100%;
    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;
    }
}

.video-fade-out {
    animation: videoFadeOut 1s ease-in-out forwards;
}

@keyframes videoFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.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 but retain image fallback behind it */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 3.8rem;
    }
}

.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;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.hero-kicker {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.55rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-title {
    display: block;
    margin: 0.2em 0;
    font-size: 5.5rem;
    letter-spacing: 0.25rem;
}

.hero-title .title-letter {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 3px #d4af37;
    text-stroke: 3px #d4af37;
    transition: transform 0.3s ease;
}

.hero-title .title-letter:hover {
    transform: scale(1.15);
}

.hero-subtitle {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0.45rem;
    color: #ffffff;
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.scroll-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.35rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.scroll-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    animation: bounceDown 2.1s ease-in-out infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}

.scroll-arrow i {
    color: #ffffff;
    font-size: 1.3rem;
    animation: jump 1.6s ease-in-out infinite;
}

.scroll-arrow:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.08);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(11px);
    }
}

@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

/* Geography Section */
.geography {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.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;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d4af37;
}

/* Tours Section */
.tours {
    background-color: #000;
    color: #fff;
    position: relative;
    z-index: 1;
}

.well-choosen {
    color: #ffffff !important;
    font-family: "Anton", sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    display: block;
    position: relative;
}

.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);
}

.know-more-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    margin-top: 16px;
}

.tour-card:hover .know-more-btn {
    opacity: 1;
    transform: translateY(0);
}

.tour-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.bhutan-tour1 {
    background-image: url('../assets/images/BHUTAN/ONE.jpg');
}

.bhutan-tour2 {
    background-image: url('../assets/images/BHUTAN/TWO.jpg');
}

.bhutan-tour3 {
    background-image: url('../images/bhutan-tour3.jpg');
}

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.tour-content p {
    color: #ccc;
}

.tour-card-coming-soon .tour-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.coming-soon-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px dashed rgba(212, 175, 55, 0.8);
    color: #d4af37;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Itineraries Section */
.itineraries {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.cooking-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.cooking-content p {
    font-size: 1.3rem;
    line-height: 2;
    color: #333;
    font-style: italic;
}

.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('../images/bhutan-itinerary1.jpg');
}

.itinerary2 {
    background-image: url('../images/bhutan-itinerary2.jpg');
}

.itinerary3 {
    background-image: url('../images/bhutan-itinerary3.jpg');
}

.itinerary4 {
    background-image: url('../images/bhutan-itinerary4.jpg');
}

.itinerary5 {
    background-image: url('../images/bhutan-itinerary5.jpg');
}

.itinerary6 {
    background-image: url('../images/bhutan-itinerary6.jpg');
}

.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;
}

/* Planner Section */
.planner {
    background-color: #000;
    color: #fff;
    position: relative;
    z-index: 1;
}

/* Ensure heading is visible on dark background */
.planner h2 { color: #fff; }

.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: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.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;
    position: relative;
    z-index: 1;
}

.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: #fff;
    position: relative;
    z-index: 1;
}

.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;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.illustration i {
    color: #d4af37;
}

.logo-animated {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-animated:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.book-now-modal {
    display: block;
    width: 100%;
    margin: 20px 0;
}

/* Modal Styles (aligned with home page) */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 12000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 12001;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    background: none;
    border: none;
}

.close-btn:hover {
    color: #d4af37;
}

.modal-header {
    padding: 20px 30px 10px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    color: #000;
    font-size: 1.8rem;
}

.modal-body {
    padding: 20px 30px;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.modal-section ul,
.modal-section ol {
    padding-left: 20px;
}

.modal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    padding-left: 6px;
}

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%); color: white; }

.example-2 .icon-content a svg { position: relative; z-index: 1; width: 30px; height: 30px; }

.example-2 .icon-content a .filled { position: absolute; 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); }

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.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);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 3.4rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-video {
        display: none;
    }

    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                    url('../assets/images/BHUTAN/TWO.jpg') center/cover no-repeat fixed;
    }

    .hero-heading {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .hero-subtitle {
        letter-spacing: 0.3rem;
        font-size: 1.4rem;
    }

    .scroll-down {
        bottom: 26px;
    }
    
    .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;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2.6rem;
        letter-spacing: 1px;
    }

    .hero-kicker {
        font-size: 1.1rem;
        letter-spacing: 0.3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.22rem;
    }

    .scroll-down {
        bottom: 18px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .social-links {
        flex-direction: column;
        gap: 20px;
    }
}
