/* © 2025 ByteWebster. All Rights Reserved.  */
/*Unauthorized copying, modification, distribution, or use of this code in any form is strictly prohibited and may result in legal action.*/

:root {
    --color-gold: #d4af37;
    --color-gold-light: #f3e5ab;
    --color-saffron: #fd5056;
    --color-saffron-hover: #8a0000;
    --color-text-main: #2c2c2c;
    --color-text-light: #666666;
    --bg-cream: #fffbf5;
    --bg-white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(212, 175, 55, 0.15);
    --shadow-hover: 0 15px 40px rgba(212, 175, 55, 0.25);
    --text-light: #f5f5f5;
}

.adi-kailash-page-body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text-main);
    background-color: var(--bg-cream);
}

.divine-hero {
    position: relative;
    min-height: 60vh;
    width: 100%;
    background-image: url('https://nagarjunatravels.com/images/packages/adi-kailash-yatra-package-from-haldwani-kathgodam-66aa07e87f864.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.65));
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--color-gold), #ffd700);
    color: #1f1f1f;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-actions .btn i {
    font-size: 1.1rem;
}

.btn-divine {
    background: var(--color-saffron);
    color: #fff;
    padding: 15px 42px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
}

.btn-divine:hover {
    background: var(--color-saffron-hover);
    transform: translateY(-2px);
    color: #fff;
}

.btn-divine-outline {
    background: transparent;
    color: #fff;
    padding: 15px 42px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.btn-divine-outline:hover {
    background: #fff;
    color: #111;
}

.package-tabs {
    display: flex;
    justify-content: center;
    background: white;
    padding: 10px;
    border-radius: 60px;
    box-shadow: var(--shadow-soft);
    margin: 0 auto 40px auto;
    width: fit-content;
    border: 1px solid var(--color-gold-light);
}

.tab-btn {
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-gold), #e6c200);
    color: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.itinerary-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 5px solid var(--color-gold);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.itinerary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.day-badge {
    background: var(--color-gold-light);
    color: #8a6d00;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.pricing-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-gold-light);
    position: sticky;
    top: 100px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-saffron);
    margin: 15px 0;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--color-gold);
    margin-right: 10px;
    font-size: 1.1rem;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.gallery-img:hover {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .gallery-img {
        height: 230px;
    }
}

@media (max-width: 768px) {
    .gallery-img {
        height: 220px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-img {
        height: 200px;
        border-radius: 12px;
    }
}

.divine-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.divine-table th {
    background-color: var(--color-gold);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    padding: 15px;
}
.divine-table td {
    padding: 15px;
    color: var(--color-text-light);
    border-bottom: 1px solid #eee;
}

.bank-box {
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
    border: 1px solid var(--color-gold-light);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
}
.bank-box:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
}

@keyframes floatUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.floating-om {
    position: absolute;
    font-size: 15rem;
    color: rgba(212, 175, 55, 0.05);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .divine-hero {
        min-height: 55vh;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .divine-hero {
        min-height: 60vh;
        background-position: center;
    }

    .hero-inner {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 7px 20px;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 22px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-actions .btn {
        width: auto;
        min-width: 220px;
        max-width: 260px;
        padding: 13px 22px;
        font-size: 0.85rem;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .divine-hero {
        min-height: 58vh;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-actions .btn {
        min-width: 210px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 390px) {
    .divine-hero {
        min-height: 55vh;
    }

    .hero-title {
        font-size: 1.65rem;
    }
}

.btn-cta-call,
.btn-cta-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-call {
    background: linear-gradient(135deg, #b30000, #8a0000);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 25px rgba(179, 0, 0, 0.25);
}

.btn-cta-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(179, 0, 0, 0.35);
    color: #ffffff;
}

.btn-cta-mail {
    background: #ffffff;
    color: #b30000;
    border: 2px solid #b30000;
}

.btn-cta-mail:hover {
    background: #b30000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(179, 0, 0, 0.25);
}

@media (max-width: 992px) {
    .btn-cta-call,
    .btn-cta-mail {
        padding: 13px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .btn-cta-call,
    .btn-cta-mail {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .btn-cta-call,
    .btn-cta-mail {
        max-width: 100%;
        padding: 12px 22px;
        font-size: 0.9rem;
    }
}

.divine-gallery-title {
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

.divine-gallery-slider {
    padding: 20px 0 50px;
}

.divine-slide {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.divine-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.divine-slide:hover img {
    transform: scale(1.08);
}

.divine-next,
.divine-prev {
    color: var(--color-gold);
}

.divine-pagination .swiper-pagination-bullet {
    background: #caa45c;
    opacity: 0.4;
}

.divine-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.section-spiritual {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://nagarjunatravels.com/images/packages/adi-kailash-om-parvat-yatra-from-tanakpur-66b4525906bf8.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
}
.divider-gold {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin-top: 15px;
}
.spiritual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
}
.spiritual-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}
.spiritual-card .icon-wrapper {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}
.spiritual-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}
.spiritual-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

/* 2. FEATURES SECTION (Why Choose Us) */
.feature-box {
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    height: 100%;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-gold-light);
}
.feature-box i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    display: inline-block;
}
.feature-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-main);
}

/* 3. TESTIMONIALS SECTION (Pilgrim Voices) */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid var(--color-gold-light);
    height: 100%;
}
.testimonial-card .quote-icon {
    color: var(--color-gold-light);
    font-size: 2rem;
    margin-bottom: 15px;
}
.review-text {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 20px;
}
.reviewer-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.stay-narrative-section {
    background: #ffffff;
}

.stay-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.stay-title {
    font-weight: 800;
    font-size: 33px;
    margin-bottom: 18px;
    color: var(--color-text-main);
}

.stay-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.stay-flow {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.stay-flow::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--color-gold),
        transparent
    );
}

.stay-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 40px 0 40px 40px;
    position: relative;
}

@media (max-width: 768px) {
    .stay-row {
        grid-template-columns: 1fr;
        padding-left: 30px;
    }
}

.stay-marker {
    position: absolute;
    left: 1px;
    top: 48px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid var(--color-saffron);
    border-radius: 50%;
}

.stay-location h3 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.stay-context {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    max-width: 420px;
}

.stay-hotels {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.stay-hotels span {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff7e6;
    color: #444;
    border: 1px solid #f1e2c6;
}

.stay-note {
    font-size: 0.85rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}
.stay-hotels span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff7e6;
    color: #444;
    border: 1px solid #f1e2c6;
}

.stay-hotels span i {
    color: var(--color-gold);
    font-size: 0.95rem;
}

.lipulekh-disclaimer-section {
    background: linear-gradient(135deg, #fff7e6, #fff);
}

.lipulekh-disclaimer-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--color-saffron);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.disclaimer-header i {
    font-size: 2rem;
    color: #d97706;
}

.disclaimer-header h3 {
    font-weight: 800;
    margin: 0;
    color: var(--color-text-main);
}

.disclaimer-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.disclaimer-content strong {
    color: #111;
}

@media (max-width: 768px) {
    .lipulekh-disclaimer-box {
        padding: 25px;
    }

    .disclaimer-header h3 {
        font-size: 1.25rem;
    }
}

.munsiyari-section {
    background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 38%)), url(https://nagarjunatravels.com/images/packages/khaliya-top-zero-point-summit-trek-munsiyari-684a6db141162.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
    position: relative;
}

.munsiyari-content {
    border-left: 5px solid var(--color-gold);
    padding-left: 30px;
}

.munsiyari-content h2{
    color: #ffffff;
}

.munsiyari-content p{
    color: #ffffff;
}

.munsiyari-badge {
    background-color: var(--color-gold);
    color: #000;
    padding: 5px 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.elite-stay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.elite-stay-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.elite-stay-card:hover {
    transform: translateY(-10px);
}

.elite-stay-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.elite-stay-body {
    padding: 20px;
    text-align: center;
}

.elite-stay-body h5 {
    color: var(--color-text-main);
    font-weight: 700;
    margin-bottom: 5px;
}

.elite-stay-body p {
    color: #777;
    font-size: 0.9rem;
}

.deluxe-amenity-icon {
    color: var(--color-gold);
    margin: 0 5px;
}

@media (max-width: 768px) {
    .elite-stay-grid-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .elite-stay-grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .elite-stay-grid {
        display: flex;
        gap: 20px;
        padding: 10px 5px;
        margin-top: 30px;
    }

    .elite-stay-card {
        min-width: 80%;
        flex: 0 0 auto;
    }

    .elite-stay-grid-wrapper {
        scroll-snap-type: x mandatory;
    }

    .elite-stay-card {
        scroll-snap-align: start;
    }

    .elite-stay-card:hover {
        transform: none;
    }
}

.fleet-section {
    background-color: #fcf9ed;
    position: relative;
}

.fleet-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.fleet-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.fleet-icon {
    color: var(--color-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ritual-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ritual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ritual-box:hover .ritual-img {
    transform: scale(1.1);
}

.ritual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    color: white;
}

.support-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.support-icon {
    background-color: var(--color-gold);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}