/* ================================================================
   SAME DAY AGRA TOUR — Page-Specific Styles
   Extends index.css with Agra / Taj Mahal dawn aesthetic
   ================================================================ */

/* ── HERO ──────────────────────────────────────────────────────── */
.tour-hero {
    position: relative;
    height: clamp(460px, 70vh, 680px);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.tour-hero-bg {
    position: absolute;
    inset: 0;
}

.tour-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 6, 0, 0.92) 0%,
        rgba(20, 10, 0, 0.65) 40%,
        rgba(30, 15, 0, 0.30) 70%,
        rgba(40, 20, 0, 0.10) 100%
    );
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 3.5rem;
    width: 100%;
    max-width: var(--cw);
    margin: 0 auto;
    padding-inline: 2rem;
}

.tour-badge {
    display: inline-block;
    font-family: var(--f-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
    color: var(--gold-pale);
    border: 1px solid rgba(212,175,106,0.45);
    background: rgba(166,124,49,0.18);
    padding: 0.38rem 1rem;
    border-radius: var(--rp);
    margin-bottom: 1.1rem;
    backdrop-filter: blur(6px);
}

.tour-main-title {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.tour-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--f-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
}

.meta-icon { font-size: 1rem; }

/* ── TOUR DETAIL SECTION ───────────────────────────────────────── */
.tour-detail-section {
    padding: 4rem 0 5rem;
    background: var(--cream);
}

.mode-switcher-container {
    padding: 2rem 2.2rem;
    margin-bottom: 2.5rem;
    border-radius: var(--r3);
    border: 1px solid var(--gold-border);
    background: var(--cream-alt);
}

.mode-switcher-container h3 {
    font-family: var(--f-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.mode-switcher-container > p {
    font-family: var(--f-body);
    font-size: 0.88rem;
    color: var(--ink-soft);
    margin-bottom: 1.3rem;
    line-height: 1.6;
}

.mode-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.mode-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border: 1.5px solid var(--b-mid);
    border-radius: var(--rp);
    background: var(--cream);
    font-family: var(--f-body);
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.22s var(--ease);
    letter-spacing: 0.3px;
}

.mode-tab-btn:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-bg);
}

.mode-tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.tab-icon { font-size: 1rem; }

/* ── TOUR GRID LAYOUT ──────────────────────────────────────────── */
.tour-layout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.tour-left-col { display: flex; flex-direction: column; gap: 1.8rem; }

.detail-block {
    padding: 2rem 2.2rem;
    border-radius: var(--r3);
    border: 1px solid var(--b-soft);
    background: #fff;
    box-shadow: var(--sh-sm);
}

.block-title {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--b-soft);
}

.block-text {
    font-family: var(--f-body);
    font-size: 0.94rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
}

.mode-highlights { margin-top: 0.5rem; }

.highlight-pill {
    font-family: var(--f-body);
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--gold-bright);
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    border-radius: var(--r2);
    padding: 0.75rem 1.1rem;
    font-weight: 500;
}

/* ── TIMELINE ITINERARY ────────────────────────────────────────── */
.itinerary-timeline { display: flex; flex-direction: column; gap: 0; }

.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--b-soft);
    position: relative;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-day {
    font-family: var(--f-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: none;
    padding-top: 0.2rem;
    line-height: 1.4;
    text-align: right;
    border-right: 2px solid var(--gold-border);
    padding-right: 1rem;
}

.timeline-content h4 {
    font-family: var(--f-body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.timeline-content p {
    font-family: var(--f-body);
    font-size: 0.87rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

/* ── INCLUSIONS / EXCLUSIONS ───────────────────────────────────── */
.inclusions-exclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.ie-block {
    padding: 1.6rem 1.8rem;
    border-radius: var(--r3);
    border: 1px solid var(--b-soft);
    background: #fff;
    box-shadow: var(--sh-sm);
}

.ie-title {
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ie-icon.green { color: #22c55e; }
.ie-icon.red   { color: #ef4444; }

.ie-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.ie-list li {
    font-family: var(--f-body);
    font-size: 0.84rem;
    color: var(--ink-soft);
    line-height: 1.55;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.ie-check { color: #22c55e; font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.ie-cross  { color: #ef4444; font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* ── SIDEBAR BOOKING ───────────────────────────────────────────── */
.tour-right-col { position: sticky; top: 1.5rem; }

.sticky-booking-card {
    padding: 2rem 2rem 2.2rem;
    border-radius: var(--r3);
    border: 1px solid var(--gold-border);
    background: #fff;
    box-shadow: var(--sh-md);
}




.sidebar-title {
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.sidebar-desc {
    font-family: var(--f-body);
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 1.4rem;
}

.sidebar-form { display: flex; flex-direction: column; gap: 1rem; }

.sidebar-form-group { position: relative; }

.sidebar-input {
    width: 100%;
    padding: 0.9rem 1rem 0.4rem;
    border: 1.5px solid var(--b-mid);
    border-radius: var(--r2);
    background: var(--cream-alt);
    font-family: var(--f-body);
    font-size: 0.88rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.sidebar-input:focus { border-color: var(--gold); }

.sidebar-label {
    position: absolute;
    top: 0.9rem; left: 1rem;
    font-family: var(--f-body);
    font-size: 0.78rem;
    color: var(--ink-faint);
    pointer-events: none;
    transition: all 0.2s;
}

.sidebar-input:focus + .sidebar-label,
.sidebar-input:not(:placeholder-shown) + .sidebar-label {
    top: 0.22rem;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.text-area-input { padding-top: 1rem; min-height: 80px; resize: vertical; }

.btn-sidebar-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: var(--r2);
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.22s var(--ease), transform 0.15s;
}

.btn-sidebar-submit:hover {
    background: var(--gold-bright);
    transform: translateY(-1px);
}

.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    gap: 0.8rem;
}

.success-message h3 {
    font-family: var(--f-display);
    font-size: 1.2rem;
    color: var(--ink);
}

.success-message p {
    font-family: var(--f-body);
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ── ROUTE MAP SECTION ─────────────────────────────────────────── */
.gt-map-section {
    padding: 5rem 0;
    background: var(--cream-alt);
}

.gt-map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gt-map-title {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0.5rem 0 0.8rem;
}

.gt-map-subtitle {
    font-family: var(--f-body);
    font-size: 0.95rem;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.gt-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

.gt-map-canvas {
    border-radius: var(--r3);
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.gt-svg { width: 100%; height: auto; display: block; }

.gt-city-cards { display: flex; flex-direction: column; gap: 1.2rem; }

.gt-city-card {
    padding: 1.4rem 1.6rem;
    background: #fff;
    border: 1px solid var(--b-soft);
    border-radius: var(--r2);
    box-shadow: var(--sh-xs);
    transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.gt-city-card:hover {
    box-shadow: var(--sh-sm);
    transform: translateY(-2px);
}

.city-card-icon { font-size: 1.8rem; margin-bottom: 0.5rem; display: block; }

.city-card-name {
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.45rem;
}

.city-card-desc {
    font-family: var(--f-body);
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 0.8rem;
}

.city-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.city-card-tags span {
    font-family: var(--f-body);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: none;
    color: var(--gold);
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    padding: 0.2rem 0.6rem;
    border-radius: var(--rp);
}

/* ── GLASS CARD UTILITY ────────────────────────────────────────── */
.glass-card {
    background: rgba(255,255,252,0.92);
    backdrop-filter: blur(8px);
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .tour-layout-grid    { grid-template-columns: 1fr; }
    .tour-right-col      { position: static; }
    .gt-map-wrapper      { grid-template-columns: 1fr; }
    .gt-city-cards       { flex-direction: row; flex-wrap: wrap; }
    .gt-city-card        { flex: 1 1 220px; }
}

@media (max-width: 768px) {
    .tour-main-title     { font-size: 1.9rem; }
    .inclusions-exclusions-grid { grid-template-columns: 1fr; }
    .timeline-item       { grid-template-columns: 75px 1fr; }
    .timeline-day        { font-size: 0.78rem; }
    .mode-tabs           { flex-direction: column; }
    .mode-tab-btn        { width: 100%; justify-content: center; }
}
