
/* ── CSS Variables ── */
:root {
    --primary: #E8540A;
    /* Deep Saffron-Orange */
    --primary-dk: #C1440B;
    --accent: #00B4C8;
    /* Turquoise */
    --accent-dk: #0097AA;
    --gold: #F5A623;
    /* Rajasthani Gold */
    --dark: #1A1A2E;
    --dark-soft: #2D2D44;
    --light: #F9F5EF;
    --white: #FFFFFF;
    --text: #3D3D3D;
    --text-muted: #777;
    --border: #E8E0D5;

    --font-display:  serif;
    --font-body: 'Poppins', sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    line-height: 1.25;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dk);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Utility ── */
.section-pad {
    padding: 90px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.badge-label {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 48px;
}

/* ── Buttons ── */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-primary-custom:hover {
    background: var(--primary-dk);
    border-color: var(--primary-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 84, 10, 0.35);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary) !important;
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 200, 0.35);
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-pill i {
    font-size: 1.05rem;
    line-height: 1;
}

.btn-pill:hover {
    transform: translateY(-2px);
    filter: brightness(0.98);
}

.btn-pill-whatsapp {
    background: #25D366;
    color: #fff !important;
}

.btn-pill-whatsapp:hover {
    background: #1fb85a;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
}

.btn-pill-call {
    background: var(--primary);
    color: #ffffff !important;
}

.btn-pill-call:hover {
    background: #f0a314;
    box-shadow: 0 14px 34px rgba(245, 166, 35, 0.28);
}


/* ============================================
         Page-specific components
         ============================================ */
.max-container {
    max-width: 1220px;
}

/* Hero */
.hero-band {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-band .hero-bg-img {
    position: absolute;
    inset: 0;
    opacity: 0.10;
}

.hero-band .hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-band .hero-inner {
    position: relative;
    z-index: 2;
}

.hero-band h1 {
    color: var(--white);
}

.hero-band h1 span {
    color: var(--gold);
}

.hero-lead {
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-chip i {
    color: var(--gold);
}

.timeline-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 0.75rem;
}

.timeline-step {
    flex: 1 1 180px;
    display: flex;
    justify-content: center;
}

.timeline-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    min-width: 170px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 24px;
    color: var(--dark);
    background: rgba(232, 84, 10, 0.08);
    border: 1px solid rgba(232, 84, 10, 0.2);
    box-shadow: 0 22px 40px rgba(60, 46, 28, 0.06);
    transition: var(--transition);
    text-align: center;
}

.timeline-chip:hover {
    transform: translateY(-3px);
}

.timeline-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1rem;
    min-width: 40px;
}

.timeline-divider .fa-arrow-right {
    display: inline-block;
}

.timeline-divider .fa-arrow-down {
    display: none;
}

@media (max-width: 767px) {
    .timeline-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-divider {
        min-width: auto;
    }

    .timeline-divider .fa-arrow-right {
        display: none;
    }

    .timeline-divider .fa-arrow-down {
        display: inline-block;
    }
}

/* Quick booking card in hero */
.quick-card {
    background: var(--white);
    color: var(--text);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.75rem;
    position: relative;
}

.quick-card .ribbon {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--light);
    text-decoration: none;
    margin-bottom: 12px;
}

.quick-link .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.quick-link .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
}

.quick-link .value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
}

.quick-link .arrow {
    color: var(--primary);
    flex-shrink: 0;
}

.quick-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding-top: 18px;
    margin-top: 6px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.quick-foot i {
    color: var(--primary);
}

/* Feature (why choose) cards */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    height: 100%;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(232, 84, 10, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Pricing cards */
.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.price-card .most-booked {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.price-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.price-card .price-head {
    padding: 1.25rem 1.5rem;
}

.price-head.head-primary {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--white);
}

.price-head.head-dark {
    background: var(--dark);
    color: var(--white);
}

.price-head.head-muted {
    background: var(--light);
    color: var(--dark);
}

.price-head h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0;
}

.price-head .seats-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    white-space: nowrap;
}

.price-head.head-muted .seats-badge {
    background: var(--primary);
    color: var(--white);
}

.price-head .rate {
    font-size: 0.85rem;
    margin-top: 6px;
    opacity: 0.9;
}

.price-body {
    padding: 1.5rem;
    flex: 1;
}

.price-body .label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.price-tag-sm {
    display: inline-block;
    background: var(--light);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid var(--border);
    margin: 8px 6px 0 0;
}

/* Tempo traveller banner */
.tempo-banner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tempo-banner .tempo-side {
    background: var(--dark);
    color: var(--white);
    padding: 2rem;
}

.tempo-banner .tempo-side .badge-label-soft {
    background: rgba(232, 84, 10, 0.18);
    color: var(--gold);
}

.tempo-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem;
    height: 100%;
}

.tempo-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0;
}

.tempo-item .label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 10px;
}

.tempo-item .fare {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Route cards */
.route-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
}

.route-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.route-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.route-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.route-meta i {
    color: var(--primary);
}

/* FAQ accordion */
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-accordion .accordion-button {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
    background: var(--white);
    padding: 1.1rem 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--light);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border);
}

.faq-accordion .accordion-body {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0 1.25rem 1.25rem 1.25rem;
    line-height: 1.7;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(232, 84, 10, 0.15);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    position: relative;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(232, 84, 10, 0.55), transparent);
}

.final-cta .cta-inner {
    position: relative;
    z-index: 2;
}