/* root start */
:root {
    /* 🔤 Font */
    --font-primary: 'Poppins', sans-serif;

    /* 🎨 Shiv Ji Color Palette */
    --color-neel: #0f172a;
    /* Neelkanth Blue */
    --color-himalaya: #1e293b;
    /* Slate Blue */
    --color-bhagwa: #f97316;
    /* Bhagwa Orange */
    --color-bhagwa-dark: #ea580c;

    --color-white: #ffffff;
    --color-light: #f8fafc;
    --color-border: #cbd5e1;
    --color-muted: #94a3b8;
    --color-text: #1e293b;

    /* 🌈 Gradients */
    --gradient-shiv: linear-gradient(90deg, var(--color-neel), var(--color-himalaya));

    /* 🔠 Font Sizes */
    --fs-xs: 12px;
    --fs-sm: 13px;
    --fs-md: 15px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-xxl: 24px;

    /* 🏷️ Heading Sizes */
    --h1: 36px;
    --h2: 30px;
    --h3: 24px;
    --h4: 20px;
    --h5: 18px;

    /* 📏 Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 15px;
    --space-lg: 25px;
    --space-xl: 40px;

    /* 🔘 Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 12px;

    /* 🌫️ Shadow */
    --shadow-soft: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-bhagwa: 0 6px 16px rgba(249, 115, 22, 0.35);

    /* ⏱️ Transition */
    --transition-fast: 0.3s ease;
}

/* root end */

/* TERMS SECTION */
.terms-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--color-light);
    font-family: var(--font-primary);
}

/* HERO */
.terms-hero {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: var(--space-xl);
}

.terms-hero h1 {
    font-size: var(--h1);
    color: var(--color-bhagwa);
    margin-bottom: var(--space-sm);
}

.terms-hero p {
    font-size: var(--fs-md);
    color: var(--color-text);
    opacity: 0.9;
}

/* WRAPPER */
.terms-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    /* gap kam kiya */
}

/* CARD */
.terms-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* CARD HEADING */
.terms-card h2 {
    font-size: var(--h4);
    color: var(--color-neel);
    margin-bottom: var(--space-xs);
}

/* TEXT */
.terms-card p,
.terms-card li {
    font-size: var(--fs-sm);
    color: var(--color-text);
    line-height: 1.7;
}

/* LIST */
.terms-card ul {
    padding-left: 18px;
    margin: 0;
}

/* MOBILE */
@media (max-width: 600px) {
    .terms-hero h1 {
        font-size: var(--h3);
    }

    .terms-section {
        padding: var(--space-lg) var(--space-sm);
    }
}


/* privacy policies css */
/* PRIVACY SECTION */
.privacy-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--color-light);
    font-family: var(--font-primary);
}

/* HERO */
.privacy-hero {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: var(--space-xl);
}

.privacy-hero h1 {
    font-size: var(--h1);
    color: var(--color-bhagwa);
    margin-bottom: var(--space-sm);
}

.privacy-hero p {
    font-size: var(--fs-md);
    color: var(--color-text);
    opacity: 0.9;
}

/* WRAPPER */
.privacy-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

/* CARD */
.privacy-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* HEADING */
.privacy-card h2 {
    font-size: var(--h4);
    color: var(--color-neel);
    margin-bottom: var(--space-xs);
}

/* TEXT */
.privacy-card p,
.privacy-card li {
    font-size: var(--fs-sm);
    color: var(--color-text);
    line-height: 1.7;
}

/* LIST */
.privacy-card ul {
    padding-left: 18px;
    margin: 0;
}

/* MOBILE */
@media (max-width: 600px) {
    .privacy-hero h1 {
        font-size: var(--h3);
    }

    .privacy-section {
        padding: var(--space-lg) var(--space-sm);
    }
}


/* ===========================
BLOG DETAIL SECTION
=========================== */

.blog-detail {
    max-width: 1100px;
    margin: auto;
    padding: var(--space-xl) var(--space-lg);
    line-height: 1.8;
}

/* ===========================
HERO SECTION
=========================== */

.blog-hero-box {
    margin-bottom: var(--space-xl);
}

.blog-hero-box img {
    width: 100%;
    max-height: 480px;
    object-fit: fill;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-soft);
}

.hero-text h1 {
    font-size: var(--h1);
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.hero-text p {
    font-size: var(--fs-lg);
    color: var(--color-muted);
}

/* ===========================
ROW SECTION (IMAGE + TEXT)
=========================== */

.blog-row {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.blog-img {
    flex: 1;
}

.blog-img img {
    width: 100%;
    max-width: 450px;
    height: 460px;
    object-fit: fil;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.blog-text {
    flex: 1;
    font-size: var(--fs-lg);
    color: var(--color-text);
}

.blog-text h2 {
    font-size: var(--h3);
    margin-bottom: var(--space-sm);
}

/* ===========================
FULL IMAGE SECTION
=========================== */

.blog-full {
    margin-bottom: var(--space-xl);
}

.blog-full img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-soft);
}

.blog-text-full {
    font-size: var(--fs-lg);
    color: var(--color-text);
}

.blog-text-full h2 {
    font-size: var(--h3);
    margin-bottom: var(--space-sm);
}

/* ===========================
MOBILE RESPONSIVE
=========================== */

@media(max-width:768px) {

    .blog-detail {
        padding: var(--space-lg) var(--space-md);
    }

    .blog-row {
        flex-direction: column;
    }

    .blog-img img {
        max-width: 100%;
        height: 220px;
    }

    .blog-hero-box img {
        max-height: 260px;
    }

    .blog-full img {
        max-height: 240px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

}


/* agency css start */

.overview-section {
    padding: 60px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    font-size: 36px;
    color: #f97316;
    margin-bottom: 30px;
    font-weight: 700;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.overview-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.overview-item {
    font-size: 15px;
    color: #1e293b;
}

.overview-item b {
    color: #0f172a;
}

.overview-video iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.overview-img {
    width: 100%;
    height: 340px;
    object-fit: fill;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* MOBILE */

@media(max-width:900px) {

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-box {
        grid-template-columns: 1fr;
    }

    .overview-video iframe {
        height: 220px;
    }

}

@media(max-width:900px) {

    .overview-img {
        height: 180px;
    }

}

.city-section {
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.city-title {
    font-size: 34px;
    color: #f97316;
    margin-bottom: 30px;
}

.city-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.city-btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid #f97316;
    background: white;
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.city-btn:hover {
    background: #f97316;
    color: white;
}

.city-btn.active {
    background: #f97316;
    color: white;
}


.city-content {
    max-width: 900px;
    margin: auto;
}

.city-box {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.city-box.active {
    display: block;
}

.city-box h3 {
    margin-bottom: 15px;
    color: #0f172a;
}


/* MOBILE */

@media(max-width:600px) {

    .city-title {
        font-size: 26px;
    }

    .city-btn {
        padding: 8px 18px;
        font-size: 14px;
    }

    .city-box {
        padding: 20px;
    }

}

.yatra-section {
    padding: 70px 20px;
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}


/* OVERVIEW */

.yatra-overview {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.yatra-text h2 {
    font-size: 34px;
    color: #0f172a;
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 20px;
}

.yatra-text p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 15px;
}



/* ITINERARY */

.section-title {
    font-size: 34px;
    margin-bottom: 40px;
    color: #0f172a;
    text-align: center;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.day-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.day-card:hover {
    transform: translateY(-6px);
}

.day-card h3 {
    color: #f97316;
    margin-bottom: 10px;
}

.day-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}



/* TABLET */

@media(max-width:900px) {

    .itinerary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media(max-width:600px) {

    .yatra-text h2 {
        font-size: 26px;
    }

    .section-title {
        font-size: 26px;
    }

    .itinerary-grid {
        grid-template-columns: 1fr;
    }

    .yatra-overview {
        padding: 25px;
    }

}


/* inclusion exclusion */
.cost-terms-section {
    padding: 60px 20px;
    background: #f9fafb;
}

.cost-container {
    max-width: 900px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

.cost-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
}

.cost-container h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 22px;
}

.cost-container ul {
    padding-left: 20px;
}

.cost-container ul li {
    margin-bottom: 8px;
}

.contact-info {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}


/* kurmanchal css start */
.tour-overview-section {
    padding: 70px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.tour-container {
    max-width: 1200px;
    margin: auto;
}

.tour-header {
    text-align: center;
    margin-bottom: 40px;
}

.tour-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.rating {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 10px;
}

.tour-header p {
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}


.tour-highlights {
    margin-bottom: 40px;
}

.tour-highlights h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.tour-highlights ul {
    display: block;
    /* grid हटाया */
    padding-left: 20px;
    max-width: 700px;
}

.tour-highlights ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.tour-itinerary h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.itinerary-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.itinerary-card:hover {
    transform: translateY(-6px);
}

.itinerary-card h4 {
    color: #f97316;
    margin-bottom: 6px;
}

.itinerary-card p {
    font-size: 14px;
    line-height: 1.6;
}


/* MOBILE */
@media(max-width:600px) {

    .tour-header h2 {
        font-size: 26px;
    }

    .tour-highlights h3,
    .tour-itinerary h3 {
        font-size: 22px;
    }

}