/* =============================================
   RAPID ADVENTURE NEPAL - Main Stylesheet
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
    --primary:    #0a2240;
    --primary-lg: #163a63;
    --accent:     #e8621a;
    --accent-dk:  #c24e10;
    --teal:       #0097a7;
    --green:      #2e7d32;
    --white:      #ffffff;
    --light:      #f5f7fa;
    --text:       #2c3e50;
    --text-muted: #6c757d;
    --border:     #dee2e6;
    --shadow:     0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.2);
    --radius:     12px;
    --radius-lg:  20px;
    --trans:      all 0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

a { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

/* ---- UTILITY ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight { color: var(--accent); }

.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(232,98,26,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--accent);
    background: rgba(232,98,26,0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--trans);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-dk);
    border-color: var(--accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,98,26,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.8);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-card {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding: 13px 24px;
}

.btn-card.blue  { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-card.blue:hover  { background: #00838f; border-color: #00838f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,151,167,0.4); }

.btn-card.orange { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-card.orange:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,26,0.4); }

.btn-card.green  { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-card.green:hover  { background: #1b5e20; border-color: #1b5e20; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,0.4); }

.btn-submit {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
}
.btn-submit:hover {
    background: var(--accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,98,26,0.4);
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

#navbar.scrolled {
    background: rgba(10,34,64,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-wave {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}

.logo-text strong { color: var(--accent); }

.nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--trans);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-link.nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
}
.nav-link.nav-cta:hover {
    background: var(--accent-dk);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232,98,26,0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--trans);
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(5, 15, 30, 0.85) 0%,
        rgba(10, 34, 64, 0.7) 50%,
        rgba(232, 98, 26, 0.15) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,98,26,0.25);
    border: 1px solid rgba(232,98,26,0.5);
    color: #ffc299;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-content h1 .highlight {
    color: var(--accent);
    -webkit-text-stroke: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 20px 40px;
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 32px;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

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

.scroll-arrow {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: var(--white);
    animation: bounce 2s infinite;
    font-size: 1rem;
}

.scroll-arrow a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages {
    padding: 100px 0;
    background: var(--light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 2px solid var(--accent);
    position: relative;
}

.card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.package-card:hover .card-img { transform: scale(1.08); }

.trishuli-bg {
    background-image: url('../images/trishuli_white_water_rafting.jpg');
    background-color: #1a6a3f;
}

.karnali-bg {
    background-image: url('../images/Karnali-river-rafting.jpg');
    background-color: #0a2240;
}

.bardiya-bg {
    background-image: url('../images/babai-river-rafting-rapidadventurenepal.jpg');
    background-color: #2e4a1a;
}

.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 2;
    color: var(--white);
}

.card-tag.beginner { background: var(--teal); }
.card-tag.popular  { background: var(--accent); }
.card-tag.wildlife { background: var(--green); }

.card-river-name {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-header-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.card-icon.blue   { background: rgba(0,151,167,0.12); color: var(--teal); }
.card-icon.orange { background: rgba(232,98,26,0.12); color: var(--accent); }
.card-icon.green  { background: rgba(46,125,50,0.12); color: var(--green); }

.card-header-row h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-loc {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.card-loc i { margin-right: 4px; }

.card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-features li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.card-features li i { color: #22c55e; font-size: 0.85rem; }

/* Price Box */
.price-box {
    background: var(--light);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 4px;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.price-row.single { grid-template-columns: 1fr; }

.price-option {
    background: var(--white);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-option.best {
    border-color: var(--accent);
    background: rgba(232,98,26,0.04);
}

.price-option.full { width: 100%; }

.price-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.best-badge {
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.price-value.large { font-size: 1.6rem; }
.price-value sub { font-size: 0.65rem; font-weight: 500; color: var(--text-muted); }

.price-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.price-note i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('../images/Karnali-river-rafting.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,34,64,0.95) 0%,
        rgba(10,34,64,0.85) 50%,
        rgba(10,34,64,0.5) 100%
    );
}

.about .container { position: relative; z-index: 1; }

.about-inner {
    max-width: 600px;
    color: var(--white);
}

.about-inner h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 20px;
}

.about-inner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    backdrop-filter: blur(8px);
}

.about-badge i { color: var(--accent); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

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

.why-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    text-align: center;
    transition: var(--trans);
    cursor: default;
}

.why-card:hover {
    border-color: var(--accent);
    background: rgba(232,98,26,0.03);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(232,98,26,0.12), rgba(232,98,26,0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--accent);
    transition: var(--trans);
}

.why-card:hover .why-icon {
    background: var(--accent);
    color: var(--white);
}

.why-card h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 100px 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 16px;
}

.g-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

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

.g-item.g-large {
    grid-column: span 2;
    grid-row: span 2;
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,34,64,0.6);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--trans);
}

.g-overlay p {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Gallery background images */
.rafting-hero-g {
    background-image: url('../images/bardiya1-rapidadventures.jpg');
    background-color: #1a3a6a;
}
.karnali-g {
    background-image: url('../images/bardiya2-rapidadventurenepal.jpg');
    background-color: #0a2240;
}
.bardiya-g {
    background-image: url('../images/bardiya3-rapidadventurenepal.jpg');
    background-color: #1a3a1a;
}
.nepal-landscape-g {
    background-image: url('../images/bardiya4-rapidadventurenepal.jpg');
    background-color: #1a2a40;
}
.fishing-g {
    background-image: url('../images/bardiya5-rapidadventurenepal.jpg');
    background-color: #0a3a2a;
}
.tiger-g {
    background-image: url('../images/bardiya6-rapidadventurenepal.jpg');
    background-color: #2a2a0a;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--primary);
}

.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header .section-tag { background: rgba(232,98,26,0.25); }

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

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--trans);
}

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

.quote-icon {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 16px;
}

.testimonial-card > p {
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
}
.author-avatar.blue   { background: var(--teal); }
.author-avatar.green  { background: var(--green); }
.author-avatar.orange { background: var(--accent); }

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.stars { color: #fbbf24; font-size: 0.85rem; }

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/booking-bg.jpg');
    background-size: cover;
    background-position: center;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,34,64,0.97) 0%, rgba(10,34,64,0.93) 100%);
}

.booking .container { position: relative; z-index: 1; }

.booking-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Booking Sidebar */
.booking-sidebar {
    background: rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 40px 32px;
}

.booking-sidebar h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-sidebar h3 i { color: var(--accent); }

.sidebar-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.sideicon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--white);
}

.sideicon.whatsapp { background: #25d366; }
.sideicon.email    { background: var(--accent); }
.sideicon.location { background: var(--teal); }

.sidebar-contact-item strong {
    display: block;
    color: var(--white);
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.sidebar-contact-item p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.booking-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(232,98,26,0.12);
    border: 1px solid rgba(232,98,26,0.3);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 20px;
}

.booking-info-box.success {
    background: rgba(46,125,50,0.12);
    border-color: rgba(46,125,50,0.3);
}

.booking-info-box > i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.booking-info-box.success > i { color: #4caf50; }

.booking-info-box strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.booking-info-box p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Booking Form */
.booking-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { margin-bottom: 20px; }

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i { color: var(--accent); }
.req { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--trans);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(232,98,26,0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f44336;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--primary);
    color: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.field-error {
    font-size: 0.75rem;
    color: #ff6b6b;
    min-height: 18px;
    display: block;
}

/* Flatpickr customization */
.flatpickr-calendar {
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid rgba(10,34,64,0.2) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}

.flatpickr-day.inRange {
    background: rgba(232,98,26,0.15) !important;
    border-color: transparent !important;
}

.flatpickr-months .flatpickr-month {
    background: var(--primary) !important;
}

.flatpickr-current-month, .flatpickr-weekday {
    color: var(--white) !important;
}

.flatpickr-prev-month svg, .flatpickr-next-month svg {
    fill: rgba(255,255,255,0.7) !important;
}

.form-submit { margin-top: 8px; }

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-note i { color: #4caf50; }

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: slideInUp 0.4s ease;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-icon i { color: #4caf50; }
.error-icon i   { color: #f44336; }

.modal-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.modal-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-main {
    background: #060f1e;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 1.4rem;
    color: var(--accent);
}

.footer-logo strong { color: var(--accent); }

.footer-brand > p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--trans);
}

.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.yt { background: #ff0000; }
.social-btn.wa { background: #25d366; }

.social-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--trans);
}

.footer-col a:hover { color: var(--accent); transform: translateX(4px); }

.footer-col a i { font-size: 0.7rem; }

.contact-list { display: flex; flex-direction: column; gap: 12px; }

.contact-list li {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.contact-list li i {
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.footer-bottom {
    background: #030a14;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: var(--trans);
}

.wa-float i { font-size: 1.3rem; }

.wa-float:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 998;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

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

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

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .booking-wrapper { grid-template-columns: 1fr; }
    .booking-sidebar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -8px 0 40px rgba(0,0,0,0.4);
        z-index: 999;
    }

    .nav-menu.open { right: 0; }
    .nav-link { font-size: 1rem; padding: 12px 16px; width: 100%; }

    /* Hero */
    .hero-stats { padding: 16px 20px; }
    .stat-item { padding: 6px 16px; }
    .stat-num { font-size: 1.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

    /* Packages */
    .packages { padding: 60px 0; }
    .packages-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Gallery */
    .gallery { padding: 60px 0; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .g-item.g-large { grid-column: span 2; grid-row: span 1; height: 240px; }
    .karnali-g, .bardiya-g, .nepal-landscape-g, .fishing-g, .tiger-g { height: 180px; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }
    .booking-form { padding: 28px 24px; }
    .booking-sidebar { padding: 28px 24px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    /* Float button */
    .wa-float span { display: none; }
    .wa-float { padding: 14px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }

    /* Section spacing */
    .why-us, .testimonials, .booking { padding: 60px 0; }
    .about { padding: 80px 0; }
}

@media (max-width: 480px) {
    .section-header { margin-bottom: 40px; }
    .hero-stats { flex-direction: column; gap: 0; }
    .stat-divider { width: 60px; height: 1px; }
    .stat-item { flex-direction: row; gap: 12px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .g-item.g-large { grid-column: span 1; }
    .price-row { grid-template-columns: 1fr; }
}
