/* ── MAIN LAYOUT ── */
.page-wrap {  margin: 0 auto; padding: 32px 24px 60px; }
.page-wrap{
        --navy: #0d1b2a;
        --navy-light: #1a2e45;
        --gold: #ff9900;
        --gold-light: #e8b96a;
        --cream: #faf7f2;
        --cream-dark: #ffffff;
        --text: #2c2c2c;
        --muted: #6b6b6b;
        --white: #faf7f2;
        --border: #e2d9cc;
        --red: #c0392b;
    }
.page-wrap .boby{
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
}
/*tour-header */
.tour-header h1 {
    font-size: 32px;
    color: var(--bs-primary);
    line-height: 1.2;
    margin-bottom: 10px;
}
/* tour-header end */            
/* Tab Nav */
.tab-nav {
    display: flex; gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 28px;
    overflow-x: auto;
}
.tab-nav a {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
}
.tab-nav a:hover, .tab-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }
/* Tab Nav end*/
/* Meta Pills */
    .meta-grid {
        display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px;
    }
    
        .meta-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 14px 16px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    .meta-icon {
        width: 36px; height: 36px;
        background: var(--cream-dark);
        border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        font-size: 20px;
    }
    .meta-label { font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; font-weight: 600; }
    .meta-value { font-size: 16px; font-weight: 600; color: var(--navy); margin-top: 2px; }
/* Meta Pills end */
/* Gallery */
    .gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 200px 200px; gap: 6px; border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
    .gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; cursor: pointer; }
    .gallery img:hover { transform: scale(1.03); }
    .gallery .main { grid-row: span 2; }
/* Section Cards */
    .section-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 28px;
        margin-bottom: 24px;
    }
    .section-title {
        font-size: 25px;
        color: var(--navy);
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border);
        display: flex; align-items: center; gap: 10px;
    }
    .section-title::before { content: ''; display: inline-block; width: 4px; height: 22px; background: var(--gold); border-radius: 2px; }

/* Description */
    .description p { font-size: 20px; color: var(--muted); line-height: 1.8; }
    /* Itinerary */
    .itinerary-list { list-style: none; }
    .itin-item {
        display: grid; grid-template-columns: 80px 1fr; gap: 0; margin-bottom: 0;
        position: relative;
    }
    /* ── Itinerary Timeline ── */
    .itin-day-col {
        display: flex; flex-direction: column; align-items: center; padding-top: 2px; width: 56px;
    }
    .itin-dot {
        width: 38px; height: 38px;
        background: linear-gradient(135deg, var(--gold) 0%, #e8a020 100%);
        border-radius: 14px;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 4px 14px rgba(201,148,58,.45), 0 1px 3px rgba(0,0,0,.12);
        transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, background .3s;
        z-index: 1;
        position: relative;
    }
    .itin-dot svg { width: 26px; height: 26px; display: block; }
    .itin-item:hover .itin-dot {
        transform: scale(1.12) translateY(-2px);
        background: linear-gradient(135deg, var(--navy) 0%, #1e3a58 100%);
        box-shadow: 0 8px 24px rgba(13,27,42,.35), 0 2px 6px rgba(0,0,0,.15);
    }

    /* Road line with animated car */
    .itin-line {
        flex: 1; width: 4px;
        background: linear-gradient(to bottom, rgba(201,148,58,.6) 0%, rgba(201,148,58,.15) 100%);
        margin: 4px 0;
        border-radius: 2px;
        position: relative;
        overflow: visible;
        opacity: 0;
        max-height: 0;
        transition: opacity .4s ease, max-height .4s ease;
    }
    .itin-item.open .itin-line {
        opacity: 1;
        max-height: 1000px;
    }
    .itin-item:not(:last-child) .itin-line::before {
        content: '';
        position: absolute;
        left: 50%; top: 0; bottom: 0;
        transform: translateX(-50%);
        width: 4px;
        background: repeating-linear-gradient(
        to bottom,
        transparent 0px, transparent 6px,
        rgba(201,148,58,.25) 6px, rgba(201,148,58,.25) 12px
        );
    }
    .itin-line::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 28px; height: 42px;
        top: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 48'%3E%3C!-- fuselage --%3E%3Cellipse cx='16' cy='24' rx='4' ry='18' fill='%23ffffff'/%3E%3C!-- nose cone --%3E%3Cellipse cx='16' cy='6' rx='3' ry='5' fill='%230d1b2a'/%3E%3C!-- main wings --%3E%3Cpolygon points='16,20 2,30 6,30 16,24 26,30 30,30' fill='%23c9943a'/%3E%3C!-- tail fins --%3E%3Cpolygon points='16,38 8,46 12,46 16,42 20,46 24,46' fill='%23c9943a'/%3E%3C!-- window strip --%3E%3Crect x='13.5' y='12' width='5' height='14' rx='2' fill='%2387ceeb' opacity='.7'/%3E%3C!-- engine pod left --%3E%3Cellipse cx='8' cy='27' rx='2' ry='3.5' fill='%230d1b2a'/%3E%3C!-- engine pod right --%3E%3Cellipse cx='24' cy='27' rx='2' ry='3.5' fill='%230d1b2a'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0;
        animation: carDrive 3.2s ease-in-out infinite;
        filter: drop-shadow(0 2px 4px rgba(201,148,58,.6));
    }
    .itin-item:hover .itin-line::after { opacity: 1; }
    @keyframes carDrive {
        0%   { top: -14px; opacity: 0; }
        8%   { opacity: 1; }
        88%  { opacity: 1; }
        100% { top: calc(100% - 14px); opacity: 0; }
    }
    .itin-day-num { font-size: 10px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
    .itin-content { padding: 0 0 28px 16px; }
    .itin-content h3 {
        font-size: 20px; color: var(--navy); margin-bottom: 6px; line-height: 1.3;
        cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    }
    .itin-content h3 .toggle { font-size: 20px; color: var(--gold); transition: transform .3s; }
    .itin-content h3.open .toggle { 
        transform: rotate(45deg); }
    .itin-body { font-size: 18px; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .4s ease; }
    .itin-body.open { max-height: 600px; }
    .meal-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
    .meal-tag { font-size: 11px; padding: 2px 9px; border-radius: 12px; font-weight: 600; }
    .meal-tag.b { background: #e8f5e9; color: #2e7d32; }
    .meal-tag.l { background: #fff3e0; color: #e65100; }
    .meal-tag.d { background: #e3f2fd; color: #1565c0; }
    .meal-tag.c { background: #f4d0f4; color: #5c5a5c; }
/* Terms accordion */
    .terms-section h3 {
        font-size: 15px; font-weight: 600; color: var(--navy);
        margin: 16px 0 8px; cursor: pointer; display: flex; justify-content: space-between;
        padding: 12px 0; border-bottom: 1px solid var(--border);
    }
    .terms-section h3 .arr { transition: transform .3s; display: inline-block; }
    .terms-section h3.open .arr { transform: rotate(180deg); }
    .terms-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
    .terms-body.open { max-height: 2000px; }
    .terms-body ul { list-style: none; padding: 8px 0; }
    .terms-body ul li { font-size: 13px; color: var(--muted); padding: 5px 0 5px 16px; position: relative; line-height: 1.6; }
    .terms-body ul li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }

/**start**/
/* ── TWO-COLUMN LAYOUT ── */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 28px;
            align-items: start;
        }
        /* ── STICKY SIDEBAR ── */
        .right-sidebar { position: relative; }
        .sticky-sidebar {
            position: sticky; top: 110px;
            background: #fff; border: 1px solid #e2d9cc;
            border-radius: 14px; overflow: hidden;
            box-shadow: 0 8px 32px rgba(13,27,42,.10);
        }
        /* Sidebar Header */
        .sb-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1a2e45 100%);
            padding: 18px 20px; color: #fff;
        }
        .sb-pkg-id { font-size: 11px; opacity: .55; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
        .sb-duration { font-size: 13px; opacity: .8; }
        /* Sidebar Tabs */
        .sb-tabs { display: flex; border-bottom: 1px solid #e2d9cc; background: #faf7f2; }
        .sb-tab {
            flex: 1; padding: 10px 4px; font-size: 10px; font-weight: 700;
            color: #6b6b6b; background: none; border: none; cursor: pointer;
            border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .2s;
            text-transform: uppercase; letter-spacing: .5px;
            font-family: 'Aptos','Calibri',sans-serif;
        }
        .sb-tab:hover { color: #ff9900; }
        .sb-tab.active { color: #ff9900; border-bottom-color: #ff9900; background: #fff; }
        .sb-panel { display: none; }
        .sb-panel.active { display: block; }
        /* Customize Panel */
        .sb-section { padding: 14px 18px 0; }
        .sb-sec-title {
            font-size: 13px; font-weight: 700; color: #0d1b2a;
            margin-bottom: 11px; display: flex; align-items: center; gap: 7px;
        }
        .sb-sec-title::before { content:''; display:inline-block; width:3px; height:14px; background:#ff9900; border-radius:2px; }
        /* Option chips */
        .opt-group { margin-bottom: 11px; }
        .opt-label { display: block; font-size: 10px; font-weight: 700; color: #6b6b6b; text-transform: uppercase; letter-spacing: .9px; margin-bottom: 5px; }
        .opt-chips { display: flex; flex-wrap: wrap; gap: 5px; }
        .opt-chip {
            padding: 4px 4px; font-size: 14px; font-weight: 500; border-radius: 5px;
            border: 1.5px solid #e2d9cc; background: #faf7f2; cursor: pointer;
            transition: all .2s; color: #2c2c2c; font-family: 'Aptos','Calibri',sans-serif;
        }
        .opt-chip:hover { border-color: #ff9900; color: #ff9900; background: #fff8ee; }
        .opt-chip.sel { background: #ff9900; color: #fff; border-color: #ff9900; }
        /* Traveler rows */
        .trav-row {
            display: flex; align-items: center; justify-content: space-between;
            background: #faf7f2; border: 1px solid #e2d9cc; border-radius: 7px;
            padding: 6px 11px; margin-bottom: 5px;
        }
        .trav-lbl { font-size: 12px; font-weight: 600; color: #0d1b2a; }
        .trav-sub { font-size: 10px; color: #6b6b6b; }
        .trav-ctrl { display: flex; align-items: center; gap: 9px; }
        .trav-btn {
            width: 26px; height: 26px; border-radius: 50%;
            border: 1.5px solid #ff9900; background: #fff; color: #ff9900;
            font-size: 16px; font-weight: 700; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all .2s; line-height: 1;
        }
        .trav-btn:hover { background: #ff9900; color: #fff; }
        .trav-num { font-size: 14px; font-weight: 700; min-width: 16px; text-align: center; color: #0d1b2a; }
        /* Toggle switches */
        .toggle-row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 6px 0; border-bottom: 1px dashed #e2d9cc;
        }
        .toggle-row:last-child { border-bottom: none; }
        .tgl-lbl { font-size: 12px; font-weight: 600; color: #2c2c2c; }
        .tgl-sub { font-size: 10px; color: #6b6b6b; margin-top: 1px; }
        .tgl-sw { position: relative; width: 36px; height: 20px; flex-shrink: 0; }
        .tgl-sw input { opacity: 0; width: 0; height: 0; }
        .tgl-slider { position: absolute; cursor: pointer; inset: 0; background: #ddd; border-radius: 20px; transition: .3s; }
        .tgl-slider::before { content:''; position:absolute; width:14px; height:14px; left:3px; top:3px; background:#fff; border-radius:50%; transition:.3s; box-shadow:0 1px 3px rgba(0,0,0,.2); }
        .tgl-sw input:checked + .tgl-slider { background: #ff9900; }
        .tgl-sw input:checked + .tgl-slider::before { transform: translateX(16px); }
        
        
        /* CTA buttons */
        .sb-ctas { padding: 11px 18px 14px; display: flex; flex-direction: column; gap: 6px; }
        .btn-gold {
            width: 100%; padding: 10px; border-radius: 7px; border: none;
            background: #ff9900; color: #fff; font-size: 12px; font-weight: 700;
            cursor: pointer; transition: all .2s; font-family: 'Aptos','Calibri',sans-serif;
            display: flex; align-items: center; justify-content: center; gap: 6px;
        }
        .btn-gold:hover { background: #0d1b2a; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,153,0,.3); }
        .btn-outline-gold {
            width: 100%; padding: 9px; border-radius: 7px; border: 1.5px solid #ff9900;
            background: transparent; color: #ff9900; font-size: 12px; font-weight: 600;
            cursor: pointer; transition: all .2s; font-family: 'Aptos','Calibri',sans-serif;
            display: flex; align-items: center; justify-content: center; gap: 6px;
        }
        .btn-outline-gold:hover { background: #fff8ee; }
        /* Trust strip */
        .sb-trust { display: flex; justify-content: space-around; padding: 10px 18px; border-top: 1px solid #e2d9cc; background: #faf7f2; }
        .trust-it { font-size: 10px; color: #6b6b6b; text-align: center; }
        .trust-it span { font-size: 15px; display: block; margin-bottom: 2px; }
        /* ── SEND MAIL PANEL ── */
        .mail-wrap { padding: 14px 18px; }
        .mail-title { font-size: 13px; font-weight: 700; color: #0d1b2a; margin-bottom: 3px; display: flex; align-items: center; gap: 7px; }
        .mail-title::before { content:''; display:inline-block; width:3px; height:14px; background:#ff9900; border-radius:2px; }
        .mail-sub { font-size: 11px; color: #6b6b6b; margin-bottom: 12px; }
        .mail-fld { margin-bottom: 9px; }
        .mail-fld label { display: block; font-size: 10px; font-weight: 700; color: #6b6b6b; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
        .mail-fld input, .mail-fld textarea, .mail-fld select {
            width: 100%; padding: 7px 10px; border: 1.5px solid #e2d9cc;
            border-radius: 7px; font-size: 12px; color: #2c2c2c; resize: none;
            font-family: 'Aptos','Calibri',sans-serif; background: #faf7f2; transition: border-color .2s;
        }
        .mail-fld input:focus, .mail-fld textarea:focus, .mail-fld select:focus { outline: none; border-color: #ff9900; background: #fff; }
        .int-chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
        .int-chip {
            padding: 3px 8px; font-size: 10px; font-weight: 600; border-radius: 4px;
            border: 1px solid #e2d9cc; background: #faf7f2; color: #6b6b6b;
            cursor: pointer; transition: all .2s; font-family: 'Aptos','Calibri',sans-serif;
        }
        .int-chip:hover { border-color: #ff9900; color: #ff9900; }
        .int-chip.sel { background: #0d1b2a; color: #fff; border-color: #0d1b2a; }
        .btn-send {
            width: 100%; padding: 10px; border-radius: 7px; border: none; margin-top: 6px;
            background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
            color: #fff; font-size: 12px; font-weight: 700;
            cursor: pointer; transition: all .2s; font-family: 'Aptos','Calibri',sans-serif;
            display: flex; align-items: center; justify-content: center; gap: 6px;
        }
        .btn-send:hover { background: linear-gradient(135deg, #ff9900 0%, #e8a020 100%); transform: translateY(-1px); }
        .mail-consent { font-size: 10px; color: #6b6b6b; text-align: center; margin-top: 7px; line-height: 1.5; }
        /* Success state */
        .mail-success { display: none; text-align: center; padding: 18px 12px; background: #f0faf4; border-radius: 9px; border: 1px solid #b2dfcb; }
        .mail-success.show { display: block; }
        .mail-success .s-ico { font-size: 28px; margin-bottom: 7px; }
        .mail-success h5 { font-size: 12px; font-weight: 700; color: #1e6b45; margin-bottom: 4px; }
        .mail-success p { font-size: 10px; color: #4a9b6f; }
        .btn-reset { margin-top: 9px; padding: 6px 14px; border-radius: 6px; border: 1px solid #27ae60; background: #fff; color: #27ae60; font-size: 11px; font-weight: 600; cursor: pointer; font-family: 'Aptos','Calibri',sans-serif; }
        /* Responsive */
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
            .right-sidebar { order: -1; }
            .sticky-sidebar { position: static; }
        }
/**end**/
/* Responsive */
    @media (max-width: 900px) {
        .page-wrap { grid-template-columns: 1fr; }
        .meta-grid { grid-template-columns: repeat(2, 1fr); }
        .attractions-grid { grid-template-columns: repeat(3, 1fr); }
        .footer-inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
        .tour-header h1 { font-size: 24px; }
        .gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
        .gallery .main { grid-row: span 1; }
        .gallery img { height: 180px; }
        .inc-exc-grid { grid-template-columns: 1fr; }
        .attractions-grid { grid-template-columns: repeat(2, 1fr); }
        .footer-inner { grid-template-columns: 1fr; }
        .nav-links { display: none; }
    }
    