/* ==========================================================================
   Kumbh Mela Promotional Portal - Nagarjuna Travels
   Domain: kumbh.nagarjunatravels.com
   Brand Theme: Nagarjuna Coral Red (#fd5056), Warm Cream (#FAF8F5), Pure White
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --brand-primary: #fd5056;
    --brand-primary-hover: #e04046;
    --brand-dark: #1e293b;
    --brand-gold: #d4af37;
    --brand-gold-light: #fdf6e2;
    --brand-gold-border: rgba(212, 175, 55, 0.35);
    --bg-warm: #FAF8F5;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-heading: #0f172a;
    --text-body: #475569;
    --text-muted: #64748b;
    --border-subtle: rgba(0, 0, 0, 0.08);
    --card-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 20px 40px rgba(253, 80, 86, 0.12), 0 10px 25px rgba(0, 0, 0, 0.06);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Typography Utilities */
.font-serif {
    font-family: var(--font-serif);
}

.text-danger, .text-brand {
    color: var(--brand-primary) !important;
}

.text-gold {
    color: var(--brand-gold) !important;
}

.bg-warm {
    background-color: var(--bg-warm) !important;
}

.bg-white {
    background-color: var(--bg-white) !important;
}

/* ==========================================================================
   Top Helpline Bar
   ========================================================================== */
.kumbh-topbar {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 2px solid var(--brand-primary);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-desk-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.topbar-badge {
    background: var(--brand-primary);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f1f5f9;
    font-weight: 500;
}

.topbar-link:hover {
    color: var(--brand-primary);
}

/* ==========================================================================
   Main Header Navigation
   ========================================================================== */
.kumbh-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-tagline-text {
    border-left: 1px solid #cbd5e1;
    padding-left: 12px;
    display: flex;
    flex-direction: column;
}

.brand-tagline-text span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-primary);
}

.brand-tagline-text small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.nav-links-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    padding: 6px 0;
    position: relative;
}

.nav-item-link:hover, .nav-item-link.active {
    color: var(--brand-primary);
}

.nav-item-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: var(--transition);
}

.nav-item-link:hover::after, .nav-item-link.active::after {
    width: 100%;
}

.btn-header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.btn-header-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-header-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-primary);
    color: #ffffff;
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(253, 80, 86, 0.35);
    transition: var(--transition);
}

.btn-header-call:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #0f172a;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.kumbh-hero-light {
    background-color: var(--bg-warm);
    padding: 4.5rem 0 3.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.badge-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 80, 86, 0.08);
    border: 1px solid rgba(253, 80, 86, 0.25);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-size: clamp(2.3rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-heading);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.hero-lead-text {
    font-size: 1.08rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.hero-circuits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.2rem;
}

.circuit-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.circuit-pill-tag:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.hero-cta-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-primary);
    color: #ffffff;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(253, 80, 86, 0.3);
    transition: var(--transition);
}

.btn-primary-brand:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(253, 80, 86, 0.4);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary-outline:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    background: #ffffff;
}

/* Hero Right: Clean Image Frame */
.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border: 4px solid #ffffff;
}

.hero-showcase-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--brand-primary);
}

.floating-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.floating-card-desc {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.kumbh-trust-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.6rem 0;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-feature-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(253, 80, 86, 0.08);
    border: 1px solid rgba(253, 80, 86, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text-content h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.feature-text-content p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   Section Header Standard
   ========================================================================== */
.section-header-wrap {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3.5rem;
}

.section-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(253, 80, 86, 0.08);
    border: 1px solid rgba(253, 80, 86, 0.2);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

.section-main-heading {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.section-gold-divider {
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-intro-lead {
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   Gateway Destination Tabs Section
   ========================================================================== */
.kumbh-gateways-section {
    padding: 4.5rem 0;
    background-color: #ffffff;
}

.gateways-tabs-control {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
}

.gateway-tab-btn {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: var(--transition);
}

.gateway-tab-btn:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.gateway-tab-btn.active {
    background: var(--brand-primary);
    color: #ffffff;
    border-color: var(--brand-primary);
    box-shadow: 0 6px 18px rgba(253, 80, 86, 0.3);
}

.gateway-tab-pane {
    display: none;
    animation: fadeInTab 0.35s ease forwards;
}

.gateway-tab-pane.active {
    display: block;
}

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

.gateway-showcase-box {
    background: var(--bg-warm);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.gateway-card-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
}

.gateway-left-details {
    padding: 3rem;
}

.location-marker-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.85rem;
}

.gateway-name-title {
    font-size: 1.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.gateway-desc-body {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.shahi-dates-block-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shahi-mini-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 2rem;
}

.shahi-mini-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid var(--brand-primary);
    border-radius: var(--radius-sm);
    padding: 0.9rem 0.75rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.shahi-mini-card .order-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-primary);
    display: block;
    margin-bottom: 2px;
}

.shahi-mini-card .date-val {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 2px;
}

.shahi-mini-card .occasion-val {
    font-size: 0.74rem;
    color: #64748b;
    display: block;
}

.gateway-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 2.2rem;
}

.gateway-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
}

.gateway-checklist li i {
    color: #16a34a;
}

.gateway-right-side {
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.gateway-image-thumb {
    height: 240px;
    overflow: hidden;
}

.gateway-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gateway-showcase-box:hover .gateway-image-thumb img {
    transform: scale(1.04);
}

.gateway-schedule-panel {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.schedule-panel-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.schedule-dates-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 6px;
    margin-bottom: 1.5rem;
}

.schedule-date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.85rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
}

.schedule-date-item.highlight-snan {
    background: rgba(253, 80, 86, 0.06);
    border-color: rgba(253, 80, 86, 0.3);
}

.schedule-date-item .item-event {
    font-weight: 600;
    color: #1e293b;
}

.schedule-date-item .item-date {
    font-weight: 700;
    color: var(--brand-primary);
    text-align: right;
    white-space: nowrap;
}

/* ==========================================================================
   Master Bathing Calendar Section
   ========================================================================== */
.kumbh-calendar-section {
    padding: 4.5rem 0;
    background-color: var(--bg-warm);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.calendar-filters-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.8rem;
}

.filter-buttons-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.table-filter-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: var(--transition);
}

.table-filter-btn:hover, .table-filter-btn.active {
    background: var(--brand-primary);
    color: #ffffff;
    border-color: var(--brand-primary);
}

.table-box-container {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.master-snan-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.master-snan-table th {
    background: #0f172a;
    color: #ffffff;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.master-snan-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #334155;
    vertical-align: middle;
}

.master-snan-table tr:hover td {
    background-color: #f8fafc;
}

.master-snan-table tr.row-shahi-snan td {
    background-color: rgba(253, 80, 86, 0.04);
}

.master-snan-table tr.row-shahi-snan td:first-child {
    border-left: 4px solid var(--brand-primary);
}

.badge-shahi-tag {
    background: var(--brand-primary);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: inline-block;
}

.badge-parva-tag {
    background: #e2e8f0;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    display: inline-block;
}

/* ==========================================================================
   Packages & Swiss Camps Showcase
   ========================================================================== */
.kumbh-packages-section {
    padding: 4.5rem 0;
    background-color: #ffffff;
}

.packages-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.package-item-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(253, 80, 86, 0.4);
}

.package-card-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-item-card:hover .package-card-thumb img {
    transform: scale(1.06);
}

.package-duration-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
}

.package-card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.package-features-mini {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.4rem;
    flex-grow: 1;
}

.package-features-mini li {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-features-mini li i {
    color: #16a34a;
    font-size: 0.75rem;
}

.package-card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-price-wrap span {
    font-size: 0.72rem;
    color: #94a3b8;
    display: block;
}

.package-price-wrap strong {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 700;
}

.btn-package-inquire {
    background: rgba(253, 80, 86, 0.08);
    color: var(--brand-primary);
    border: 1px solid rgba(253, 80, 86, 0.25);
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-package-inquire:hover {
    background: var(--brand-primary);
    color: #ffffff;
}

/* ==========================================================================
   VIP Pilgrimage Services
   ========================================================================== */
.kumbh-services-section {
    padding: 4.5rem 0;
    background-color: var(--bg-warm);
    border-top: 1px solid var(--border-subtle);
}

.services-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.service-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 2rem 1.6rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.service-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(253, 80, 86, 0.4);
    box-shadow: var(--card-shadow-hover);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(253, 80, 86, 0.08);
    border: 1px solid rgba(253, 80, 86, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.service-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.65rem;
}

.service-feature-card p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   Consultation & Contact Hub Section (NO FORMS)
   ========================================================================== */
.kumbh-contact-hub-section {
    padding: 4.5rem 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-subtle);
}

.contact-hub-box {
    background: linear-gradient(135deg, #FAF8F5 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--card-shadow);
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.hub-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.85rem;
}

.hub-lead {
    font-size: 1.05rem;
    color: #475569;
    max-width: 720px;
    margin: 0 auto 2.2rem;
    line-height: 1.7;
}

.hub-actions-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-hub-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.btn-hub-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
}

.btn-hub-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-primary);
    color: #ffffff;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(253, 80, 86, 0.3);
    transition: var(--transition);
}

.btn-hub-call:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(253, 80, 86, 0.4);
}

.hub-helplines-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    text-align: left;
}

.hub-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hub-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(253, 80, 86, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.1rem;
}

.hub-card-text small {
    font-size: 0.72rem;
    color: #64748b;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hub-card-text strong {
    font-size: 0.92rem;
    color: #0f172a;
    font-weight: 700;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.kumbh-faq-section {
    padding: 4.5rem 0;
    background-color: var(--bg-warm);
}

.faq-accordion-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question-btn {
    width: 100%;
    padding: 1.2rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
}

.faq-toggle-icon {
    font-size: 0.95rem;
    color: var(--brand-primary);
    transition: transform 0.3s ease;
}

.faq-card-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer-pane {
    padding: 0 1.4rem 1.4rem;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.7;
    display: none;
}

.faq-card-item.active .faq-answer-pane {
    display: block;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.kumbh-footer-main {
    background: #090031;
    color: #94a3b8;
    padding: 4.5rem 0 2rem;
    border-top: 3px solid var(--brand-primary);
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-summary p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 1rem;
    color: #cbd5e1;
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 6px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--brand-primary);
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-links a {
    font-size: 0.86rem;
    color: #cbd5e1;
}

.footer-nav-links a:hover {
    color: var(--brand-primary);
    padding-left: 4px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1199.98px) {
    .packages-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .hero-grid-layout, .gateway-card-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .trust-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .hub-helplines-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .nav-links-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-subtle);
    }

    .nav-links-list.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .packages-cards-grid, .services-features-grid, .shahi-mini-cards-grid, .trust-features-grid {
        grid-template-columns: 1fr;
    }

    .gateway-left-details, .gateway-schedule-panel, .contact-hub-box {
        padding: 2rem 1.4rem;
    }

    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .topbar-wrapper {
        justify-content: center;
        text-align: center;
    }

    .topbar-links {
        display: none;
    }

    .brand-tagline-text {
        display: none;
    }
}
