/* ================================================================
   SARVAGYA YATRA - CUSTOM UI
   Theme: Saffron / Gold / Dark
   Author: VK IT Company
================================================================ */

/* GLOBAL RESET */
body {
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #333;
    font-weight: 700;
}

.section-sub {
    font-size: 1.1rem;
    color: #d35400;
    font-weight: 600;
}



/* ================================================================
   HERO SECTION
================================================================ */

.hero-section-premium {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}

.glass-card-dark {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 189, 89, 0.4);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(7px);
    text-align: center;
    transition: 0.3s;
    max-width: 750px;
    margin: auto;
}

.glass-card-dark:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 189, 89, 0.75);
}

.text-gradient {
    background: linear-gradient(45deg, #ffbd59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.decoration-line {
    width: 70px;
    height: 4px;
    background: #ffbd59;
    border-radius: 10px;
    margin: 0 auto 20px auto;
}

.btn-group-custom {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-saffron {
    background: linear-gradient(45deg, #d35400, #ffbd59);
    color: #fff !important;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(211,84,0,0.35);
}

.btn-saffron:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(211,84,0,0.55);
}

.btn-transparent {
    border: 2px solid rgba(255,255,255,0.55);
    padding: 12px 35px;
    border-radius: 50px;
    color: white !important;
    font-weight: 600;
    transition: 0.3s;
}

.btn-transparent:hover {
    background: white;
    color: #333 !important;
}



/* ================================================================
   WHY CHOOSE US
================================================================ */

.feature-box-premium {
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    border: 1px solid rgba(255,170,80,0.3);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.feature-box-premium:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 18px 45px rgba(211,84,0,0.25);
    border-color: #ffbd59;
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    margin: auto;
    background: linear-gradient(135deg,#ffb347,#ff7b00,#ffcc33);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.7rem;
    box-shadow: 0 10px 25px rgba(255,140,0,0.45);
    transition: 0.5s;
    position: relative;
    z-index: 2;
}

.feature-box-premium:hover .icon-wrapper {
    transform: scale(1.08) rotateY(360deg);
}

.bg-number {
    font-size: 7rem;
    font-weight: 900;
    position: absolute;
    bottom: -10px;
    left: -5px;
    color: rgba(255,140,0,0.08);
    transition: 0.4s;
}

.feature-box-premium:hover .bg-number {
    transform: scale(1.15);
    color: rgba(255,140,0,0.18);
}



/* ================================================================
    PROMO STRIP
================================================================ */

.promo-section {
    background: linear-gradient(45deg, #d35400, #ffbd59);
    padding: 40px 20px;
    box-shadow: 0 8px 25px rgba(255,140,0,0.3);
}



/* ================================================================
   ABOUT SECTION
================================================================ */

.small-heading {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
}

.title-main {
    font-family: "Playfair Display", serif;
    color: #333;
    font-size: 2.5rem;
    line-height: 1.3;
}

.title-main span {
    color: #d35400;
}

.about-img-composition {
    position: relative;
}

.about-img-composition .img-1 img {
    width: 85%;
    border-radius: 10px;
}

.about-img-composition .img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border: 6px solid white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: #d35400;
    border-radius: 50%;
    border: 3px solid white;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: floatBadge 3s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(211,84,0,0.4);
}

@keyframes floatBadge {
    0% {transform: translateY(0);}
    50% {transform: translateY(-12px);}
    100% {transform: translateY(0);}
}

.about-points {
    list-style: none;
    padding: 0;
}

.about-points li {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.about-points i {
    margin-right: 8px;
    color: #d35400;
}



/* ================================================================
   TOUR PACKAGES
================================================================ */

.tour-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(211,84,0,0.2);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    overflow: hidden;
}

.tour-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(211,84,0,0.30);
    border-color: rgba(211,84,0,0.5);
}

.tour-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 18px;
    border-radius: 30px;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.hot {background: linear-gradient(135deg, #ff6262, #ff2e2e);}
.gold {background: linear-gradient(135deg, #ffce4f, #d35400);}
.elite {background: linear-gradient(135deg, #6d48ff, #4322c7);}
.holy {background: linear-gradient(135deg, #3ac16d, #1a8f47);}
.classic {background: linear-gradient(135deg, #3f8cff, #004cbf);}

.tour-btn {
    border: 1px solid #d35400;
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-block;
    color: #d35400;
    transition: 0.3s;
}

.tour-btn:hover {
    background: #d35400;
    color: #fff;
}



/* ================================================================
   TESTIMONIALS
================================================================ */

.testimonials-section {
    padding: 70px 0;
    background: #fff7ec;
}

.testimonial-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.testimonial-card {
    min-width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(211,84,0,0.25);
}

.quote-mark {
    font-size: 3.5rem;
    color: #d35400;
}



/* ================================================================
   STEPS SECTION
================================================================ */

.steps-section {
    padding: 70px 0;
}

.step-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(211,84,0,0.25);
}

.step-box span {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg,#d35400,#ffbd59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* ================================================================
   FAQ
================================================================ */

.faq-section {
    padding: 60px 0;
    background: #fffdf6;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #d35400;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}



/* ================================================================
   FOOTER
================================================================ */

footer.dark {
    background: #111;
    padding: 70px 0 0;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffbd59;
}

.footer-links a {
    color: #ccc;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffbd59;
    padding-left: 5px;
}

.footer-social a {
    font-size: 1.3rem;
    margin-right: 10px;
    color: #ffbd59;
    transition: 0.3s;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-logo {
    filter: brightness(0.9);
}



/* ================================================================
   FLOATING WHATSAPP BUTTON
================================================================ */

.floating-wp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 32px;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: 0.3s;
    z-index: 9999;
}

.floating-wp-btn:hover {
    transform: scale(1.1);
}



/* ================================================================
   RESPONSIVE FIXES
================================================================ */

@media(max-width:767px) {

    .glass-card-dark {
        padding: 30px 20px;
    }

    .title-main {
        font-size: 2rem;
    }

    .about-img-composition .img-2 {
        display: none;
    }

    .experience-badge {
        width: 90px;
        height: 90px;
        font-size: 12px;
    }

    .tour-img img {
        height: 200px;
    }

}
