/* =========================================================
   KUMUD TRAVELS - RESPONSIVE STYLES
   ========================================================= */

/* Large Desktop (1280px+) - already handled in base */

/* Tablet/Desktop transition (1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .hero-swiper {
        height: auto;
        min-height: 70vh;
    }

    .hero-slide {
        min-height: 70vh;
    }

    .jain-banner {
        flex-direction: column;
        text-align: center;
    }

    .jain-banner-content {
        flex-direction: column;
    }

    .jain-banner-actions {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .departure-card {
        grid-template-columns: 80px 1fr;
        gap: 12px;
        padding: 16px;
    }

    .departure-seats,
    .departure-price,
    .departure-actions {
        grid-column: 2;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================================
   MOBILE (768px and below)
   ========================================================= */
@media (max-width: 768px) {
    :root {
        --section-padding: 48px 0;
    }

    /* ── GLOBAL OVERFLOW FIX ─────────────────────── */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    * {
        max-width: 100%;
    }

    /* ── HERO QUICK FORM ─────────────────────────── */
    .hero-quick-form {
        border-top: 3px solid var(--primary);
    }

    .quick-form-card {
        padding: 18px 14px;
    }

    .compact-form .form-row {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .compact-form .form-group {
        margin-bottom: 0;
    }

    .compact-form .form-actions {
        flex-direction: column;
    }

    .compact-form .form-actions .btn {
        width: 100%;
        justify-content: center;
    }



    /* Hide desktop arrows on mobile - better to swipe */
    .hero-prev,
    .hero-next {
        display: none !important;
    }

    .header-main {
        padding: 12px 0;
    }

    .site-logo img {
        max-height: 45px;
        /* Hide broken image icon (tilted rectangle/cross) if user upload fails */
        color: transparent;
        text-indent: -9999px;
    }

    .site-logo img::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
    }

    .header-actions {
        gap: 8px;
    }

    .header-whatsapp,
    .header-inquiry {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    /* Mobile nav drawer */
    .site-nav {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 82%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        overflow-y: auto;
        padding: 76px 20px 40px;
        transition: left 0.3s ease;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.18);
    }

    .site-nav.open {
        left: 0;
    }

    .nav-menu {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        width: 100%;
    }

    .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu>li>a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0 !important;
        width: 100%;
        font-size: 1rem;
        font-weight: 600;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: #f8f8f8;
        border-radius: 0 !important;
        display: none;
        padding: 4px 0 4px 12px;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    /* ── HERO – KEY FIX: no fixed height, stack vertically ─ */
    .hero-swiper {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-slide {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
        height: auto !important;
        position: relative;
    }

    .hero-bg,
    .hero-slide>.hero-bg {
        height: 260px;
        position: relative;
        flex-shrink: 0;
    }

    .hero-content {
        position: relative !important;
        padding: 28px 0 24px !important;
        /* NO giant bottom padding */
        text-align: center;
        background: linear-gradient(135deg, #1A4B8C 0%, #0d2d5a 100%);
        color: #fff;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-num {
        font-size: 1.3rem;
    }

    /* Quick form – sits BELOW the hero content, full width */
    .quick-form-card {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 20px 16px;
        width: 100%;
    }

    .hero-quick-form,
    .hero-bottom {
        display: block !important;
    }

    .compact-form .form-row {
        grid-template-columns: 1fr;
    }

    /* ── CATEGORIES ──────────────────────────────── */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 18px 10px;
    }

    .cat-icon-wrap {
        width: 52px;
        height: 52px;
    }

    .cat-name {
        font-size: 0.82rem;
    }

    /* ── PACKAGES ────────────────────────────────── */
    .packages-grid {
        grid-template-columns: 1fr !important;
        max-width: 440px;
        margin-inline: auto;
    }

    .pkg-filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        gap: 8px;
    }

    .pkg-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* ── SECTION HEADERS ─────────────────────────── */
    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* ── WHY US ──────────────────────────────────── */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    /* ── DEPARTURES ──────────────────────────────── */
    .departure-card {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
    }

    .departure-date-col {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 12px;
    }

    .departure-seats,
    .departure-price,
    .departure-actions {
        grid-column: 1;
    }

    /* ── JAIN BANNER ─────────────────────────────── */
    .jain-banner {
        padding: 32px 20px;
        flex-direction: column;
        text-align: center;
    }

    .jain-banner-content {
        flex-direction: column;
        align-items: center;
    }

    .jain-banner-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .jain-banner-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* ── GALLERY ─────────────────────────────────── */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    /* ── BLOG ────────────────────────────────────── */
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-inline: auto;
    }

    /* ── TRUST BADGES ────────────────────────────── */
    .trust-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .trust-badge-item {
        min-width: 120px;
        text-align: center;
    }

    /* ── CTA BANNER ──────────────────────────────── */
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-content {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* ── FOOTER ──────────────────────────────────── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-logo img {
        max-height: 44px;
    }

    /* ── FLOATING ELEMENTS ───────────────────────── */
    .wa-label {
        display: none !important;
    }

    .whatsapp-float {
        border-radius: 50% !important;
        padding: 14px !important;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    .whatsapp-float i {
        font-size: 1.4rem;
    }

    .scroll-top {
        bottom: 80px;
        right: 14px;
        width: 40px;
        height: 40px;
    }

    /* ── FORMS ───────────────────────────────────── */
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    /* ── MODALS ──────────────────────────────────── */
    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .modal {
        border-radius: 20px 20px 0 0;
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* ── BREADCRUMB ──────────────────────────────── */
    .breadcrumb-section {
        padding: 80px 0 28px;
    }

    .breadcrumb-title {
        font-size: 1.5rem;
    }

    /* ── PAGE-SPECIFIC ───────────────────────────── */
    .package-single-layout {
        grid-template-columns: 1fr;
    }

    .package-sidebar {
        position: static !important;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-block;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .packages-layout {
        grid-template-columns: 1fr;
    }

    .packages-sidebar {
        position: static !important;
    }

    .trip-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jain-regions-grid {
        grid-template-columns: 1fr;
    }

    .jain-special-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   SMALL MOBILE (480px and below)
   ========================================================= */
@media (max-width: 480px) {
    :root {
        --section-padding: 36px 0;
    }

    .container {
        padding: 0 14px;
    }

    .hero-title {
        font-size: 1.45rem;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .category-card {
        padding: 14px 8px;
    }

    .cat-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 16px 10px;
    }

    .trust-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .trust-badge-item:nth-child(odd):last-child {
        grid-column: span 2;
    }

    .whatsapp-float {
        bottom: 14px;
        right: 14px;
    }

    .scroll-top {
        bottom: 76px;
        right: 12px;
    }

    .gallery-page-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .trip-type-grid {
        grid-template-columns: 1fr 1fr;
    }

    .breadcrumb-title {
        font-size: 1.25rem;
    }

    .pkg-section-title {
        font-size: 1.1rem;
    }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {

    .site-header,
    .whatsapp-float,
    .scroll-top,
    .cta-banner,
    .site-footer {
        display: none !important;
    }

    .main {
        padding: 0;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }
}


/* Print */
@media print {

    .site-header,
    .whatsapp-float,
    .scroll-top,
    .cta-banner,
    .site-footer {
        display: none !important;
    }

    .main {
        padding: 0;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }
}

/* =========================================================
   INDIVIDUAL PACKAGE PAGE STYLES
   ========================================================= */
.package-single-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.package-main-content {
    min-width: 0;
}

.package-sidebar {
    position: sticky;
    top: 100px;
}

.package-gallery-swiper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.package-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.gallery-thumbs {
    margin-top: 10px;
}

.gallery-thumbs .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    outline: 2px solid var(--primary);
}

.gallery-thumbs img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.package-header {
    margin-bottom: 32px;
}

.package-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.package-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.pkg-meta-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
}

.pkg-meta-badge i {
    color: var(--primary);
}

/* Itinerary Accordion */
.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.itinerary-day {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.itinerary-day.active {
    border-color: var(--primary);
}

.itinerary-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    background: #fff;
    transition: var(--transition);
}

.itinerary-day.active .itinerary-day-header {
    background: var(--gradient-primary);
    color: #fff;
}

.day-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.itinerary-day.active .day-badge {
    background: rgba(255, 255, 255, 0.25);
}

.day-title {
    font-weight: 600;
}

.day-toggle {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.itinerary-day.active .day-toggle {
    transform: rotate(180deg);
    color: #fff;
}

.itinerary-day-body {
    display: none;
    padding: 20px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-warm);
}

.itinerary-day.active .itinerary-day-body {
    display: block;
}

.itinerary-day-body p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-medium);
    white-space: pre-line;
}

/* Inclusions Exclusions */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.inc-exc-box {
    padding: 24px;
    border-radius: var(--radius-md);
}

.inc-exc-box--inc {
    background: rgba(0, 184, 148, 0.06);
    border: 1px solid rgba(0, 184, 148, 0.2);
}

.inc-exc-box--exc {
    background: rgba(229, 62, 62, 0.04);
    border: 1px solid rgba(229, 62, 62, 0.15);
}

.inc-exc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inc-exc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.inc-exc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.inc-exc-list li i {
    margin-top: 2px;
    flex-shrink: 0;
}

.inc-list i {
    color: var(--success);
}

.exc-list i {
    color: var(--error);
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.pricing-table th {
    background: var(--secondary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-table tr:nth-child(even) td {
    background: var(--bg-light);
}

.pricing-table .price-col {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Package Sidebar (Inquiry Form) */
.sidebar-inquiry-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-light);
}

.sidebar-inquiry-header {
    background: var(--gradient-secondary);
    padding: 20px 24px;
    color: #fff;
}

.sidebar-price {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.sidebar-price-amount {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.sidebar-price-per {
    font-size: 0.8rem;
    opacity: 0.8;
}

.sidebar-inquiry-body {
    padding: 24px;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .big-num {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    display: block;
    line-height: 1;
}

.about-experience-badge span {
    font-size: 0.8rem;
    display: block;
    opacity: 0.9;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-card);
    border-color: rgba(224, 123, 57, 0.2);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-card a:hover {
    color: var(--primary);
}

.map-embed {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-page-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

/* =========================================================
   FAQ PAGE
   ========================================================= */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    background: #fff;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: rgba(224, 123, 57, 0.04);
}

.faq-toggle {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.8;
    border-top: 1px solid var(--border-light);
}

.faq-item.active .faq-answer {
    display: block;
}

/* =========================================================
   PACKAGES LISTING PAGE
   ========================================================= */
.packages-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.packages-sidebar {
    position: sticky;
    top: 100px;
}

.filter-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-medium);
    cursor: pointer;
}

.filter-option input {
    accent-color: var(--primary);
}

.filter-option:hover {
    color: var(--primary);
}

/* =========================================================
   PLAN YOUR TRIP PAGE
   ========================================================= */
.plan-trip-steps {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 120px;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.step-indicator.active .step-num {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: #fff;
}

.step-indicator.done .step-num {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
}

.step-indicator.active .step-label {
    color: var(--primary);
    font-weight: 700;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--border);
    align-self: center;
    max-width: 60px;
}

.plan-step-content {
    display: none;
}

.plan-step-content.active {
    display: block;
}

.trip-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.trip-type-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.trip-type-card input {
    display: none;
}

.trip-type-card:has(input:checked),
.trip-type-card.selected {
    border-color: var(--primary);
    background: rgba(224, 123, 57, 0.06);
}

.trip-type-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.trip-type-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

/* Responsive Tables */
@media (max-width: 768px) {
    .package-single-layout {
        grid-template-columns: 1fr;
    }

    .package-sidebar {
        position: static;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .packages-layout {
        grid-template-columns: 1fr;
    }

    .packages-sidebar {
        position: static;
    }

    .trip-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-trip-steps {
        flex-wrap: wrap;
    }

    .about-experience-badge {
        right: 8px;
        bottom: 8px;
    }
}

/* =========================================================
   JAIN TIRTH PAGE
   ========================================================= */
.jain-regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jain-region-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.jain-region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-jain);
}

.jain-region-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.jain-region-icon {
    font-size: 2.5rem;
    color: var(--jain-saffron);
    margin-bottom: 16px;
}

.jain-region-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.jain-region-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.jain-destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.jain-dest-tag {
    font-size: 0.72rem;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.jain-special-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.jain-special-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--jain-saffron);
}

.jain-special-icon {
    font-size: 1.6rem;
    color: var(--jain-saffron);
    flex-shrink: 0;
}

.jain-special-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.jain-special-item p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .jain-regions-grid {
        grid-template-columns: 1fr;
    }

    .jain-special-grid {
        grid-template-columns: 1fr;
    }
}