/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force immediate visibility - no loading screens */
html,
body {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Prevent horizontal scroll on mobile */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: #215D9A;
    color: white;
    box-shadow: 0 4px 15px rgba(33, 93, 154, 0.3);
}

.btn-primary:hover {
    background: #1a4d82;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 93, 154, 0.4);
}

.btn-outline {
    background: transparent;
    color: #215D9A;
    border: 2px solid #215D9A;
}

.btn-outline:hover {
    background: #215D9A;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* 
===== REMOVED LOADING ANIMATIONS ===== */
/* Page now loads immediately without fade-in animations */

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(168, 70, 63, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; /* allow absolute .nav-menu to align to this container */
    z-index: 200;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h2 {
    color: #215D9A;
    font-weight: 700;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #215D9A;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #215D9A;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    width: 40px;
    height: 32px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 220;
}

.mobile-menu-toggle:hover {
    background: rgba(33, 93, 154, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: #222;
    border-radius: 3px;
    transition: transform .24s ease, opacity .18s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    width: 100%;
    padding-top: 140px;
    /* More spacing from navbar */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #215D9A url('/assetslanding/hero.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(33, 93, 154, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr minmax(360px, 420px);
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 120px);
    /* Account for navbar and padding */
    max-width: 100%;
    box-sizing: border-box;
    padding: 1rem 0;
}

.hero-text {
    padding-right: 2rem;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== HERO FORM ===== */
.hero-form {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    margin-top: 2rem;
}

.query-form {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 6px 15px rgba(33, 93, 154, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 100%;
    max-width: 420px;
    min-width: 360px;
    box-sizing: border-box;
    transform: translateY(0);
    transition: all 0.3s ease;
    /* margin-top: 2rem; */
}

.query-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(33, 93, 154, 0.15);
}

.query-form h3 {
    color: #215D9A;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.query-form h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #215D9A, #4A90C2);
    border-radius: 2px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-row {
    display: flex;
    gap: 0.8rem;
    width: 100%;
    box-sizing: border-box;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e1e8ed;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    background: #fafbfc;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 400;
    min-height: 42px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #215D9A;
    background: white;
    box-shadow: 0 0 0 3px rgba(33, 93, 154, 0.08);
    transform: translateY(-1px);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #6c757d;
    font-weight: 400;
}

.quote-form textarea {
    resize: none;
    width: 100%;
    min-height: 50px;
    max-height: 70px;
    line-height: 1.4;
}

/* Hero CTA Button */
.hero-cta-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #215D9A 0%, #4A90C2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(33, 93, 154, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, #1a4a7a 0%, #215D9A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 93, 154, 0.4);
}

.hero-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(33, 93, 154, 0.3);
}

.hero-cta-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Date field styling with labels */
.date-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
}

.date-field label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #215D9A;
    margin-bottom: 0.2rem;
}

/* Position calendar icon inside the date field */
.date-field input[type="date"] {
    position: relative;
}

.date-field::after {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    position: absolute;
    right: 12px;
    bottom: 12px;
    pointer-events: none;
    color: #215D9A;
    font-size: 14px;
}

/* Additional form styling for better UX */
.quote-form input[type="date"] {
    color: #495057;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    padding-right: 35px;
}

/* Make the entire date field clickable */
.quote-form input[type="date"]::-webkit-datetime-edit {
    cursor: pointer;
}

.quote-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    /* Make calendar icon cover the entire input so clicking anywhere opens the calendar */
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

/* Custom Dropdown Wrapper - Completely replaces native select */
.custom-select-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
}

.custom-select-wrapper select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e1e8ed;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    background: #fafbfc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 400;
    min-height: 42px;
    user-select: none;
    position: relative;
}

.custom-select-trigger.placeholder {
    color: #6c757d;
}

.custom-select-trigger:hover {
    border-color: #c5d0dc;
    background: #f0f4f8;
}

.custom-select-wrapper.active .custom-select-trigger {
    border-color: #215D9A;
    background: white;
    box-shadow: 0 0 0 3px rgba(33, 93, 154, 0.08);
}

.custom-select-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #6b7280;
    margin-left: 10px;
    transition: transform 0.25s ease, border-top-color 0.3s ease;
    flex-shrink: 0;
}

.custom-select-wrapper.active .custom-select-arrow {
    transform: rotate(180deg);
    border-top-color: #215D9A;
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid #215D9A;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 240px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select-wrapper.active .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.custom-select-option:hover {
    background: #f0f4f8;
    border-left-color: #215D9A;
    color: #215D9A;
}

.custom-select-option.selected {
    background: #e8f2ff;
    color: #215D9A;
    font-weight: 500;
    border-left-color: #215D9A;
}

.custom-select-option:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.custom-select-option:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

/* Scrollbar styling for dropdown */
.custom-select-options::-webkit-scrollbar {
    width: 8px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 4px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: #c1c8d1;
    border-radius: 4px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: #215D9A;
}

/* Fallback for native select (hidden but functional for form submission) */
.quote-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* =
==== SECTIONS COMMON STYLES ===== */
section {
    padding: 80px 0;
}

/* Hero section should be visible immediately */
.hero {
    opacity: 1 !important;
    transform: translateY(0) !important;
    padding: 0;
    visibility: visible !important;
}

.hero-content {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-text {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-form {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Initial state for animated elements (excluding hero) */
section:not(.hero),
.package-card,
.service-card,
.testimonial {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-out;
}

section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #215D9A;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #215D9A, #DF2229);
    border-radius: 2px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem 0 2rem 0;
}

.features {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.2rem;
    justify-content: center;
    /* allow wrapping so items form multiple rows instead of a horizontal slider */
    flex-wrap: wrap;
    overflow-x: visible;
}

.feature {
    background: white;
    padding: 0.6rem 0.4rem;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 70, 63, 0.1);
    position: relative;
    overflow: visible;
    /* allow the card to grow with content instead of forcing a fixed height */
    min-height: auto;
    max-height: none;
    /* flexible sizing: allow 3-4 cards per row depending on screen */
    flex: 1 1 220px;
    max-width: 300px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    box-shadow: 0 2px 8px rgba(33,93,154,0.07);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #215D9A, #DF2229);
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(33,93,154,0.13);
}

.feature-icon {
    width: 36px;
    height: 36px;
    margin: 0 10px 0 0;
    background: linear-gradient(135deg, #215D9A, #DF2229);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(33, 93, 154, 0.18);
    flex-shrink: 0;
}

.feature h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #215D9A;
    margin-bottom: 0.25rem;
    margin-top: 0;
    line-height: 1.15;
}

.feature p {
    color: #666;
    line-height: 1.35;
    font-size: 0.72rem;
    margin-bottom: 0;
    margin-top: 0;
    /* show full paragraph text and allow wrapping */
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    max-height: none;
}
@media (max-width: 600px) {
        .features {
            /* on small screens stack vertically */
            flex-wrap: wrap;
            overflow-x: visible;
            gap: 0.75rem;
        }
        .feature {
            /* make cards full width on tiny screens for readability */
            flex: 1 1 100%;
            max-width: 100%;
            padding: 0.6rem 0.6rem;
            flex-direction: row;
            align-items: flex-start;
        }
        .feature-icon {
            margin: 0 8px 0 0;
            align-self: flex-start;
        }
        .feature h3 {
            font-size: 0.7rem;
        }
        .feature p {
            font-size: 0.55rem;
            max-height: none;
            overflow: visible;
        }
}

/*
 ===== PACKAGES SECTION ===== */
.packages {
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 70, 63, 0.1);
    position: relative;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

 .package-image {
     position: relative;
     height: 250px;
     overflow: hidden;
     background: none;
 }

 .package-image img {
     width: 100%;
     height: 100%;
     display: block;
     object-fit: cover;
     object-position: center center;
     transition: transform 0.45s ease;
 }

 .package-image:hover img {
     transform: scale(1.03);
 }

@media (max-width: 600px) {
    .package-image { height: 160px; }
}

.package-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(168, 70, 63, 0.1));
    z-index: 2;
}

.package-duration {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #DF2229;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(223, 34, 41, 0.3);
}

.package-header {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    z-index: 3;
}

.package-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.package-content {
    padding: 2rem 1.5rem;
}

.package-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #215D9A;
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-features i {
    color: #28a745;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.package-footer {
    text-align: center;
}

.package-cta,
.cta-button {
    background: #215D9A;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    text-decoration: none;
}

.package-cta:hover,
.cta-button:hover {
    background: #1a4d82;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 93, 154, 0.3);
}

/* 
===== ABOUT SECTIONS ===== */
.about-himalayan-yatra,
.why-himalayan-yatra {
    padding: 60px 0;
}

.about-himalayan-yatra {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-himalayan-yatra h2,
.why-himalayan-yatra h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #215D9A;
    margin-bottom: 1.5rem;
}

.about-himalayan-yatra p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.why-himalayan-yatra {
    background: #f8f6f3;
}

.why-himalayan-yatra>div {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-himalayan-yatra>div>div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.why-himalayan-yatra>div>div>div {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 70, 63, 0.1);
}

.why-himalayan-yatra>div>div>div:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.why-himalayan-yatra img {
    height: 40px;
    margin-bottom: 1rem;
}

.why-himalayan-yatra h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #215D9A;
    margin-bottom: 1rem;
}

.why-himalayan-yatra p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 70, 63, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #215D9A;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-card h3 i {
    font-size: 1.5rem;
    color: #215D9A;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #215D9A;
    font-weight: bold;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: white;
    padding: 4rem 0;
}

.testimonials .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.review-date {
    color: #6c757d;
    font-size: 0.8rem;
}

.google-logo {
    background: #4285f4;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.review-text {
    color: #495057;
    line-height: 1.5;
    font-size: 0.9rem;
}

.read-more {
    color: #ff6b35;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: underline;
    display: none;
    margin-top: 0.5rem;
}

.read-more:hover {
    color: #e55a2b;
}

.testimonial .avatar {
    width: 40px;
    height: 40px;
    background: #6c757d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== SEO SECTION ===== */
.seo-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.keyword-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.keyword-chip {
    background: white;
    color: #666;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.keyword-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.keyword-chip:hover::before {
    left: 100%;
}

.keyword-chip:hover {
    background: linear-gradient(135deg, #215D9A, #4A90C2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 93, 154, 0.3);
    border-color: #215D9A;
}

.keyword-chip:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(33, 93, 154, 0.2);
}

/* ====
= CONTACT SECTION ===== */
    .features {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .feature {
        flex-direction: column;
        align-items: flex-start;
        min-height: 110px;
        max-height: 110px;
        padding: 0.7rem 0.4rem;
    }
    .feature-icon {
        margin: 0 0 0.5rem 0;
        align-self: flex-start;
    }
    .feature h3 {
        font-size: 0.78rem;
    }
    .feature p {
        font-size: 0.62rem;
        max-height: 1.7em;
    }

    /* ===== GUEST GALLERY (minimal, modern) ===== */
    .guest-gallery {
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
        padding: 48px 0;
    }
    .guest-gallery h2 {
        margin-bottom: 0.5rem;
    }
    .guest-gallery p {
        margin-bottom: 1.5rem;
    }
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
        max-width: 1100px;
        margin: 0 auto;
    }
    .gallery-item {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(33, 93, 154, 0.06);
        background: white;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .gallery-item img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }
    .gallery-item .gallery-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 8px 12px;
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
        color: white;
        font-weight: 600;
        font-size: 0.95rem;
    }
    .gallery-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 48px rgba(33, 93, 154, 0.12);
    }
    .gallery-item:hover img {
        transform: scale(1.06);
    }

    @media (max-width: 480px) {
        .gallery-item img { height: 120px; }
    }

    /* ===== LIGHTBOX MODAL ===== */
    .lightbox {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.7);
        z-index: 2000;
        padding: 24px;
    }
    .lightbox.open {
        display: flex;
    }
    .lightbox-content {
        max-width: 1100px;
        width: 100%;
        max-height: 90vh;
        border-radius: 12px;
        overflow: hidden;
        background: #000;
        box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    }
    .lightbox img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        max-height: 90vh;
    }
    .lightbox-close {
        position: absolute;
        top: 18px;
        right: 18px;
        background: rgba(255,255,255,0.06);
        color: white;
        border: none;
        padding: 8px 10px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.1rem;
    }

    @media (max-width: 600px) {
        .lightbox-content { max-width: 95%; }
    }



.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #215D9A, #DF2229);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #215D9A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.whatsapp-link {
    color: #25d366;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #1da851;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(168, 70, 63, 0.1);
}

.contact-form h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #215D9A;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #333;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #215D9A;
    background: white;
    box-shadow: 0 0 0 3px rgba(33, 93, 154, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    width: 100%;
    resize: none;
    margin-bottom: 1.5rem;
}

/* ===== CONTACT LAYOUT: left contact details, right message form ===== */
.contact-content {
    display: grid;
    /* left column flexible, right column can shrink between 260px and 420px */
    grid-template-columns: 1fr minmax(260px, 420px);
    gap: 2rem;
    align-items: start;
    align-content: start;
    width: 100%;
    box-sizing: border-box;
    /* prevent horizontal overflow inside grid cells */
    min-width: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(168, 70, 63, 0.06);
    box-shadow: 0 6px 18px rgba(33, 93, 154, 0.06);
}

.contact-info .contact-item > div {
    display: block;
}

/* Make the icon vertically aligned a little higher */
.contact-info .contact-item i {
    margin-top: 6px;
}

.contact-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* allow form rows to wrap on narrower widths and let inputs shrink gracefully */
.contact-form .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
    min-width: 0; /* allow flex children to shrink and avoid overflow */
}

/* Slightly narrower form column on medium screens */
@media (max-width: 1000px) {
    .contact-content {
        grid-template-columns: 1fr minmax(220px, 360px);
    }
}

/* Stack vertically on small screens (existing mobile rules also set this) */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    .contact-info .contact-item {
        align-items: center;
    }
    /* reduce contact form padding on small screens to avoid overflow */
    .contact-form {
        padding: 1.25rem;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #215D9A, #1a4a7a);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(33, 93, 154, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #1a4a7a, #215D9A);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 93, 154, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}


/* Floating Get Quote Button (above scroll-to-top) */
.get-quote-btn {
    position: fixed;
    right: 30px;
    bottom: 100px; /* sits above the scroll-to-top which is at 30px */
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 12px 16px;
    background: linear-gradient(135deg, #DF2229 0%, #215D9A 100%);
    color: white;
    border: none;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(33, 93, 154, 0.18);
    cursor: pointer;
    z-index: 1020;
    font-weight: 700;
    font-family: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.get-quote-btn i {
    font-size: 1rem;
}

.get-quote-btn .gq-text {
    display: inline-block;
    font-size: 0.95rem;
}

.get-quote-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(33, 93, 154, 0.22);
}

@media (max-width: 480px) {
    .get-quote-btn {
        right: 20px;
        bottom: 80px;
        padding: 10px 12px;
    }
    .get-quote-btn .gq-text { display: none; }
}



/* 
===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #215D9A;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Makes logo white */
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    aspect-ratio: 1/1;
    background: #215D9A;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: #DF2229;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 93, 154, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #215D9A;
    opacity: 1;
    padding-left: 0.5rem;
}

.footer .contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer .contact-info i {
    margin-right: 0.75rem;
    color: #215D9A;
    width: 20px;
    font-size: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header Mobile */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        border-radius: 0 0 15px 15px;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(33, 93, 154, 0.1);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
        padding-top: 1rem;
    }

    .hero-form {
        justify-content: center;
        /* margin-top: 1.5rem; */
    }

    .query-form {
        padding: 1.5rem;
        margin-top: 0;
        max-width: 100%;
        width: 100%;
        min-width: auto;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .hero-cta-btn {
        padding: 0.9rem 1.3rem;
        font-size: 1rem;
    }

    .query-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Sections Mobile */
    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .features,
    .packages-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .query-form {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .query-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .hero-cta-btn {
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .feature,
    .package-card,
    .service-card,
    .testimonial {
        padding: 2rem 1.5rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Adjust floating buttons for mobile */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }


}

/* ===== SCROLL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .feature:nth-child(1) {
        animation-delay: 0.1s;
    }

    .feature:nth-child(2) {
        animation-delay: 0.2s;
    }

    .feature:nth-child(3) {
        animation-delay: 0.3s;
    }

    .feature:nth-child(4) {
        animation-delay: 0.4s;
    }

    .feature:nth-child(5) {
        animation-delay: 0.5s;
    }

    .package-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .package-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .package-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .package-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .package-card:nth-child(5) {
        animation-delay: 0.5s;
    }
}

/* ===== LOADING STATE ===== */
body {
    opacity: 1 !important;
    visibility: visible !important;
}

body.loaded {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Loading spinner removed - page loads immediately */

/* Responsive container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

/* Responsive hero section */
.hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f6f3;
    overflow: hidden;
    padding-top: 80px; /* space for navbar */
    padding-bottom: 32px;
    box-sizing: border-box;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-text, .hero-form {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 480px;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.about-himalayan-yatra {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.about-himalayan-yatra picture,
.about-himalayan-yatra img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 2px 16px #0002;
    box-sizing: border-box;
}

/* Remove any horizontal scroll for all sections */
section, header, footer {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Mobile styles */
@media (max-width: 600px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
        max-width: 100%;
    }
    .header-content {
        padding: 0 8px;
        height: 56px;
    }
    .logo img {
        height: 36px;
    }
    .nav-menu {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 2px 12px #0001;
        display: none;
        width: 100%;
        max-width: 100vw;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li a {
        padding: 16px;
        border-bottom: 1px solid #eee;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero {
        padding-top: 64px;
        padding-bottom: 16px;
        min-height: 360px;
        width: 100%;
        max-width: 100vw;
    }
    .hero-content {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        width: 100%;
        max-width: 100vw;
    }
    .hero-text, .hero-form {
        min-width: 0;
        max-width: 100%;
        margin-bottom: 0;
    }
    .about-himalayan-yatra picture,
    .about-himalayan-yatra img {
        max-width: 100vw;
        border-radius: 8px;
        margin-left: 0;
        margin-right: 0;
    }
    .about-himalayan-yatra {
        padding-left: 0;
        padding-right: 0;
        max-width: 100vw;
    }
}

/* Ensure nav container is positioned so the absolute mobile menu is placed correctly */
.header .header-content {
	position: relative; /* allow absolute .nav-menu to align to this container */
	z-index: 200;
}

/* Hamburger (mobile menu toggle) - default hidden, shown in media query */
.mobile-menu-toggle {
	display: none;
	width: 40px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	gap: 4px;
	z-index: 220;
}

.mobile-menu-toggle span {
	display: block;
	width: 22px;
	height: 3px;
	background: #222;
	border-radius: 3px;
	transition: transform .24s ease, opacity .18s ease;
}

/* Mobile behaviour */
@media (max-width: 768px) {
	/* show hamburger */
	.mobile-menu-toggle {
		display: flex;
	}

	/* Make header fixed and on top */
	.header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		background: rgba(255,255,255,0.98);
		z-index: 210;
	}

	/* mobile nav: hidden by default, full-width dropdown when active */
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		gap: 0;
		box-shadow: 0 8px 24px rgba(0,0,0,0.08);
		padding: 8px 0;
		margin: 0;
		list-style: none;
		z-index: 215;
		max-height: calc(100vh - 64px);
		overflow-y: auto;
	}

	.nav-menu.active {
		display: flex;
	}

	.nav-menu li a {
		padding: 14px 16px;
		display: block;
		color: #222;
	}

	/* Hamburger -> X animation when active */
	.mobile-menu-toggle.active span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	.mobile-menu-toggle.active span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}
	.mobile-menu-toggle.active span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

/* ...existing code... */