/* --- RESET & GLOBALS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.6; }
.trip-container { max-width: 1200px; margin: 0 auto; padding: 0 4%; }
.navy-brand { color: #0B2F56; font-weight: 800; }

/* THEME COLOR: DEEP SACRED ORANGE */
.mahakaal-brand { 
    color: #E65100; 
    font-weight: 800; 
    text-transform: uppercase; 
}

/* --- 5-IMAGE GALLERY --- */
.trip-hero { padding: 40px 0; }
.trip-intro h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; }
.trip-quick-info { display: flex; gap: 25px; color: #666; margin-bottom: 30px; }
.trip-quick-info i { color: #E65100; margin-right: 5px; } /* Updated Icon Color */

.trip-gallery-5 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 15px; }
.gallery-main img { width: 100%; height: 515px; object-fit: cover; border-radius: 20px; }
.gallery-side-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 15px; }
.gallery-side-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 20px; }

/* --- STICKY NAV --- */
.trip-sub-nav { position: sticky; top: 0; background: white; border-bottom: 1px solid #eee; z-index: 1000; }
.sub-nav-list { display: flex; gap: 30px; list-style: none; padding: 15px 0; }
.sub-nav-list a { text-decoration: none; color: #666; font-weight: 600; transition: 0.3s; }
.sub-nav-list a.active, .sub-nav-list a:hover { color: #E65100; border-bottom: 3px solid #E65100; padding-bottom: 12px; } /* Updated Active Color */

/* --- MAIN LAYOUT --- */
.trip-grid { display: grid; grid-template-columns: 1fr 380px; gap: 50px; padding: 50px 0; align-items: start; overflow: visible; }

/* --- LEFT CONTENT --- */
.trip-block { margin-bottom: 60px; scroll-margin-top: 100px; }
.trip-block h2 { font-size: 2rem; margin-bottom: 25px; color: #0B2F56; position: relative; }
.trip-block h2::after { content: ''; display: block; width: 45px; height: 4px; background: #E65100; margin-top: 8px; border-radius: 2px; }

.highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.h-item { background: #fff8f5; padding: 15px; border-radius: 12px; font-weight: 600; display: flex; align-items: center; gap: 10px; color: #0B2F56; border: 1px solid #ffebe0; }
.h-item i { color: #E65100; }

/* --- TIMELINE --- */
.timeline { border-left: 2px solid #fcebe3; margin-left: 20px; padding-left: 40px; }
.timeline-day { position: relative; margin-bottom: 40px; }
.day-badge { 
    position: absolute; 
    left: -72px; 
    background: #E65100; 
    color: white; 
    padding: 6px 14px; 
    border-radius: 8px; 
    font-size: 0.8rem; 
    font-weight: 700; 
    box-shadow: 0 4px 10px rgba(230, 81, 0, 0.3);
}
.point-list { list-style: none; }
.point-list li { margin-bottom: 10px; }
.point-list li span { font-weight: 800; color: #E65100; min-width: 80px; display: inline-block; } /* Updated Time Color */

/* --- INC & EXC --- */
.inc-exc-flex { background: #fcfdfe; border: 1px solid #eee; border-radius: 20px; padding: 30px; }
.inc ul, .exc ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.inc i { color: #2ecc71; margin-right: 8px; }
.exc i { color: #e74c3c; margin-right: 8px; }
.exc { margin-top: 25px; border-top: 1px dashed #ddd; padding-top: 20px; }

/* --- REVIEWS --- */
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 25px; }
.review-card { border: 1px solid #eee; padding: 20px; border-radius: 20px; transition: 0.3s; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.review-user-info { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.user-img img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #E65100; } /* Updated Border */
.trip-tag { font-size: 0.7rem; font-weight: 700; color: #E65100; text-transform: uppercase; }

/* --- SIDEBAR --- */
.trip-right-col { position: sticky; top: 100px; }
.sticky-card { background: #fff; border: 1px solid #eee; border-radius: 25px; padding: 35px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.price-header p { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; color: #E65100; margin-bottom: 5px; font-weight: 700; }
.price-val { display: flex; align-items: center; gap: 15px; margin-bottom: 5px; }
.old { text-decoration: line-through; color: #aaa; font-size: 1.3rem; }
.new { font-size: 2.8rem; font-weight: 900; color: #0B2F56; }

.sharing-details { margin: 25px 0; background: #fff8f5; border: 1px solid #ffebe0; border-radius: 15px; padding: 20px; }
.s-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: 500; }
.s-row strong { color: #0B2F56; }

.btn-book {
    width: 100%; padding: 18px; background: #0B2F56; color: #fff; border: none;
    border-radius: 15px; font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: 0.3s;
}
.btn-book:hover { background: #E65100; transform: scale(1.02); }

.btn-pdf {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; margin-top: 15px; padding: 14px; border: 2px solid #0B2F56;
    color: #0B2F56; text-decoration: none; border-radius: 15px; font-weight: 700; transition: 0.3s;
}
.btn-pdf:hover { background: #0B2F56; color: #fff; }

.wa-box { text-align: center; margin-top: 30px; border-top: 1px dashed #eee; padding-top: 25px; }
.wa-link { display: flex; align-items: center; justify-content: center; gap: 10px; color: #25D366; text-decoration: none; font-weight: 700; font-size: 1.1rem; }
.wa-link img { width: 25px; }

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 992px) {
    .trip-grid { grid-template-columns: 1fr; }
    .trip-gallery-5 { display: flex; flex-direction: column; gap: 10px; }
    .gallery-main img { height: 300px; }
    .gallery-side-grid img { height: 150px; }
    .review-grid, .inc ul, .exc ul { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden; width: 100%; }
    .trip-container { width: 100%; padding: 0 15px; overflow: hidden; }
    .sub-nav-list { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 5px !important; padding: 12px 0 !important; text-align: center; }
    .sub-nav-list a { font-size: 0.75rem !important; font-weight: 700; white-space: nowrap; }
    .trip-intro h1 { font-size: clamp(1.2rem, 5vw, 1.8rem) !important; line-height: 1.2; }
    .timeline { border-left: 2px solid #fcebe3; margin-left: 10px; padding-left: 25px; }
    .day-badge { position: relative; left: -37px; margin-bottom: 8px; font-size: 0.7rem; }
    .trip-right-col { width: 100%; margin-top: 40px; position: static !important; }
    .inc ul, .exc ul, .highlight-grid, .review-grid { grid-template-columns: 1fr !important; gap: 15px; }
}