/* ===== VARIABLES ===== */
:root {
    --teal: #1e3a5f;
    --teal-dark: #152c4a;
    --teal-light: #edf2f8;
    --gold: #d4a76a;
    --gold-light: #fdf5eb;
    --cream: #fefaf6;
    --cream-dark: #f2ece4;
    --text: #2c3e50;
    --text-light: #6b7c93;
    --white: #ffffff;
    --accent: #e07a5f;
    --accent-dark: #c96a52;
    --deep: #0f1f38;
    --coral: #e07a5f;
    --peach: #ffecd2;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
    --radius: 4px;
    --radius-sm: 3px;
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text);
}
.section-sub {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 40px;
}
.highlight { color: var(--coral); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}
.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--teal); }
.btn-card {
    background: var(--teal);
    color: var(--white);
    width: 100%;
    margin-top: auto;
}
.btn-card:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-nav {
    background: var(--accent);
    color: var(--white);
    padding: 8px 22px;
    font-size: 0.85rem;
    border-color: var(--accent);
}
.btn-nav:hover { background: var(--accent-dark); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 42px; height: 42px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-weight: 700; font-size: 1.2rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-weight: 700; font-size: 1.1rem; color: var(--teal-dark); }
.logo-tagline { font-size: 0.65rem; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; font-size: 0.9rem; color: var(--text); transition: var(--transition); }
.nav-links a:hover { color: var(--teal); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15,31,56,0.8) 0%, rgba(15,31,56,0.55) 50%, rgba(15,31,56,0.75) 100%),
        url('https://images.pexels.com/photos/31306743/pexels-photo-31306743.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(200,148,74,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26,107,90,0.3) 0%, transparent 50%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; color: var(--white); }
.hero-badge {
    display: inline-block;
    background: rgba(224,122,95,0.15);
    border: 1px solid rgba(224,122,95,0.35);
    color: var(--peach);
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--coral); }
.hero-sub { font-size: 1.15rem; opacity: 0.85; max-width: 550px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 2rem; font-weight: 700; color: var(--coral); }
.stat-label { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

/* ===== DESTINATIONS BANNER ===== */
.destinations-banner {
    background: var(--teal);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.scroll-track {
    display: inline-flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
}
.scroll-track span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}
.scroll-track span::after { content: ' \2022'; margin-left: 40px; opacity: 0.4; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== PACKAGES ===== */
.packages { padding: 80px 0; }
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.package-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-image {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.haridwar-bg {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)),
        url('https://images.pexels.com/photos/8171698/pexels-photo-8171698.jpeg?auto=compress&cs=tinysrgb&w=600&h=400&fit=crop') center/cover no-repeat;
}
.kedarnath-bg {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)),
        url('https://images.pexels.com/photos/19271393/pexels-photo-19271393.jpeg?auto=compress&cs=tinysrgb&w=600&h=400&fit=crop') center/cover no-repeat;
}
.manali-bg {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)),
        url('https://images.pexels.com/photos/31776512/pexels-photo-31776512.jpeg?auto=compress&cs=tinysrgb&w=600&h=400&fit=crop') center/cover no-repeat;
}
.mcleodganj-bg {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)),
        url('https://images.pexels.com/photos/5014930/pexels-photo-5014930.jpeg?auto=compress&cs=tinysrgb&w=600&h=400&fit=crop') center/cover no-repeat;
}
.shangarh-bg {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)),
        url('https://images.pexels.com/photos/34358244/pexels-photo-34358244.jpeg?auto=compress&cs=tinysrgb&w=600&h=400&fit=crop') center/cover no-repeat;
}
.spiti-bg {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)),
        url('https://images.pexels.com/photos/31346683/pexels-photo-31346683.jpeg?auto=compress&cs=tinysrgb&w=600&h=400&fit=crop') center/cover no-repeat;
}
.tirthan-bg {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)),
        url('https://images.pexels.com/photos/29818341/pexels-photo-29818341.jpeg?auto=compress&cs=tinysrgb&w=600&h=400&fit=crop') center/cover no-repeat;
}
.card-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 14px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-budget { background: #27ae60; color: white; }
.badge-popular { background: #e74c3c; color: white; }
.badge-trending { background: #f39c12; color: white; }
.badge-trek { background: #8e44ad; color: white; }
.badge-offbeat { background: #2980b9; color: white; }
.badge-expedition { background: #c0392b; color: white; }
.badge-nature { background: #16a085; color: white; }
.card-price {
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.2rem;
    backdrop-filter: blur(8px);
    margin-left: auto;
}
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.tag {
    background: var(--teal-light);
    color: var(--teal);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.card-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.card-desc { color: var(--text-light); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.5; }
.card-meta {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: 14px;
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}
.card-highlights {
    display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px;
}
.card-highlights span {
    background: var(--gold-light);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ===== GALLERY ===== */
.gallery { padding: 80px 0; background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
    margin-top: 32px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-tall { grid-row: span 2; }
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-tall { grid-row: span 2; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
}

/* ===== ABOUT ===== */
.about { padding: 80px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.about-content p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; line-height: 1.7; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.value { display: flex; gap: 12px; align-items: flex-start; }
.value-icon { font-size: 1.3rem; line-height: 1; color: var(--teal); width: 40px; height: 40px; background: var(--teal-light); border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.value span { font-size: 0.8rem; color: var(--text-light); }
.about-visual { position: relative; }
.about-image-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-image-main:hover img { transform: scale(1.03); }
.about-image-secondary {
    position: absolute;
    bottom: -30px; left: -30px;
    width: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-image-secondary img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.about-stats-overlay {
    position: absolute;
    top: 20px; right: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-stat-item { text-align: center; }
.about-card-num {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}
.about-stat-item span:last-child { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }

/* ===== WHY US ===== */
.why-us { padding: 80px 0; }
.why-us .section-title { text-align: center; }
.why-us .section-badge { display: block; text-align: center; }
.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.promise-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--cream-dark);
}
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
.promise-icon { font-size: 1.4rem; margin-bottom: 12px; color: var(--teal); width: 50px; height: 50px; background: var(--teal-light); border-radius: 3px; display: flex; align-items: center; justify-content: center; }
.promise-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.promise-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; background: var(--white); }
.how-it-works .section-title, .how-it-works .section-badge { text-align: center; display: block; }
.steps { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 48px; flex-wrap: wrap; }
.step {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    max-width: 220px;
    flex: 1;
    min-width: 180px;
}
.step-num {
    width: 48px; height: 48px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-weight: 700; font-size: 1.2rem;
    margin: 0 auto 16px;
}
.step h4 { margin-bottom: 8px; font-size: 1rem; }
.step p { color: var(--text-light); font-size: 0.85rem; }
.step-arrow { font-size: 1.5rem; color: var(--accent); font-weight: 700; }

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15,31,56,0.85) 0%, rgba(15,31,56,0.78) 100%),
        url('https://images.pexels.com/photos/17935048/pexels-photo-17935048.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover no-repeat;
    text-align: center;
    color: var(--white);
}
.cta h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.cta p { opacity: 0.85; font-size: 1.1rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; font-size: 1rem; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
    display: flex; gap: 16px; align-items: center;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid var(--cream-dark);
}
.contact-method:hover { border-color: var(--teal); transform: translateX(4px); }
.contact-icon { font-size: 1.2rem; color: var(--teal); width: 44px; height: 44px; background: var(--teal-light); border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method strong { display: block; font-size: 0.9rem; }
.contact-method span { font-size: 0.82rem; color: var(--text-light); }
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}
.contact-form h3 { font-family: 'DM Serif Display', serif; margin-bottom: 24px; font-size: 1.3rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    margin-bottom: 14px;
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26,107,90,0.1);
}
.contact-form textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--deep); color: var(--white); padding: 60px 0 24px; }
.footer .logo-name { color: var(--white); }
.footer .logo-tagline { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.6); margin: 16px 0; font-size: 0.9rem; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}
.social-links a:hover { background: var(--teal); }
.footer-links h4 { margin-bottom: 16px; font-size: 0.95rem; }
.footer-links a { display: block; color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 10px; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ===== ITINERARY PAGE STYLES ===== */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(15,31,56,0.78) 0%, rgba(15,31,56,0.65) 100%),
        url('https://images.pexels.com/photos/17033848/pexels-photo-17033848.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover no-repeat;
    color: var(--white);
}
.page-hero.haridwar-hero {
    background: linear-gradient(135deg, rgba(15,31,56,0.72) 0%, rgba(15,31,56,0.65) 100%),
        url('https://images.pexels.com/photos/8171698/pexels-photo-8171698.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover no-repeat;
}
.page-hero.kedarnath-hero {
    background: linear-gradient(135deg, rgba(15,31,56,0.68) 0%, rgba(15,31,56,0.65) 100%),
        url('https://images.pexels.com/photos/12151764/pexels-photo-12151764.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover no-repeat;
}
.page-hero.manali-hero {
    background: linear-gradient(135deg, rgba(15,31,56,0.68) 0%, rgba(15,31,56,0.65) 100%),
        url('https://images.pexels.com/photos/31776512/pexels-photo-31776512.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover no-repeat;
}
.page-hero.mcleodganj-hero {
    background: linear-gradient(135deg, rgba(15,31,56,0.68) 0%, rgba(15,31,56,0.65) 100%),
        url('https://images.pexels.com/photos/30400910/pexels-photo-30400910.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover no-repeat;
}
.page-hero.shangarh-hero {
    background: linear-gradient(135deg, rgba(15,31,56,0.68) 0%, rgba(15,31,56,0.65) 100%),
        url('https://images.pexels.com/photos/34358244/pexels-photo-34358244.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover no-repeat;
}
.page-hero.spiti-hero {
    background: linear-gradient(135deg, rgba(15,31,56,0.68) 0%, rgba(15,31,56,0.65) 100%),
        url('https://images.pexels.com/photos/31346706/pexels-photo-31346706.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover no-repeat;
}
.page-hero.tirthan-hero {
    background: linear-gradient(135deg, rgba(15,31,56,0.68) 0%, rgba(15,31,56,0.65) 100%),
        url('https://images.pexels.com/photos/34480582/pexels-photo-34480582.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover no-repeat;
}
.page-hero .section-badge { background: rgba(224,122,95,0.15); color: var(--peach); border: 1px solid rgba(224,122,95,0.3); }
.page-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 12px;
}
.page-hero p { opacity: 0.85; font-size: 1.1rem; max-width: 600px; }
.trip-meta {
    display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px;
}
.meta-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    min-width: 140px;
}
.meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; margin-bottom: 4px; }
.meta-value { font-size: 1.1rem; font-weight: 700; }
.meta-value.price { color: var(--coral); font-size: 1.4rem; }

/* Itinerary Timeline */
.itinerary { padding: 60px 0; }
.timeline { max-width: 750px; margin: 0 auto; }
.day-card {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}
.day-card::before {
    content: '';
    position: absolute;
    left: 22px; top: 50px; bottom: -40px;
    width: 2px;
    background: var(--teal-light);
}
.day-card:last-child::before { display: none; }
.day-num {
    position: absolute;
    left: 0; top: 0;
    width: 46px; height: 46px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
}
.day-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}
.day-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.day-tag {
    display: inline-block;
    background: var(--gold-light);
    color: var(--accent);
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.day-content ul { margin: 0; padding: 0; }
.day-content li {
    padding: 4px 0 4px 20px;
    position: relative;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}
.day-content li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 8px; height: 8px;
    background: var(--teal-light);
    border-radius: 50%;
}

/* Trip Gallery on itinerary pages */
.trip-gallery { padding: 60px 0; background: var(--white); }
.trip-gallery .section-title { text-align: center; margin-bottom: 32px; }
.trip-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.trip-gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.trip-gallery-grid img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
    .trip-gallery-grid { grid-template-columns: 1fr; max-width: 500px; }
    .trip-gallery-grid img { height: 220px; }
}

/* Inclusions / Exclusions */
.incl-excl { padding: 60px 0; background: var(--cream); }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 32px auto 0; }
.incl-card, .excl-card {
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--cream-dark);
}
.incl-card { background: var(--teal-light); border-color: rgba(26,107,90,0.15); }
.excl-card { background: #fff5f5; border-color: rgba(231,76,60,0.15); }
.incl-card h3 { color: var(--teal); margin-bottom: 16px; }
.excl-card h3 { color: #e74c3c; margin-bottom: 16px; }
.incl-card li, .excl-card li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
    list-style: none;
}
.incl-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.excl-card li::before { content: '\2717'; position: absolute; left: 0; color: #e74c3c; font-weight: 700; }

/* Book CTA on itinerary page */
.book-cta {
    padding: 60px 0;
    text-align: center;
}
.book-cta h2 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; margin-bottom: 8px; }
.book-cta p { color: var(--text-light); margin-bottom: 24px; }
.book-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    .nav-links.active { transform: translateY(0); }
    .hero-stats { gap: 24px; }
    .package-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 300px; }
    .about-values { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .steps { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .trip-meta { gap: 12px; }
    .meta-item { min-width: 120px; flex: 1; }
    .incl-grid { grid-template-columns: 1fr; }
    .day-card { padding-left: 50px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .promise-grid { grid-template-columns: 1fr; }
}
