 *,
 *::before,
 *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --forest: #1B4332;
     --forest-deep: #132D22;
     --forest-dark: #0E2119;
     --forest-mid: #163728;
     --gold: #C9A84C;
     --gold-light: #E2C47A;
     --gold-pale: #F5E6C0;
     --white: #F8F8F4;
     --muted: rgba(248, 248, 244, 0.5);
     --border: rgba(201, 168, 76, 0.18);
     --border-soft: rgba(201, 168, 76, 0.08);
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Barlow', sans-serif;
     background: linear-gradient(106deg, #93ebb0, #65e2c5);
     color: var(--white);
     overflow-x: hidden;
 }


 /* ══════════════════════════════════════
           HERO BANNER
        ══════════════════════════════════════ */
 .hero {
     min-height: 72vh;
     position: relative;
     display: flex;
     align-items: center;
     overflow: hidden;
     background: linear-gradient(135deg, #0A1A10 0%, #132D22 45%, #0E2119 100%);
 }

 /* Islamic geometric pattern */
 .hero-pattern {
     position: absolute;
     inset: 0;
     background-image:
         repeating-linear-gradient(45deg, rgba(201, 168, 76, 0.04) 0, rgba(201, 168, 76, 0.04) 1px, transparent 0, transparent 50%),
         repeating-linear-gradient(-45deg, rgba(201, 168, 76, 0.04) 0, rgba(201, 168, 76, 0.04) 1px, transparent 0, transparent 50%);
     background-size: 28px 28px;
     pointer-events: none;
 }

 /* Gold radial glow */
 .hero-glow {
     position: absolute;
     width: 700px;
     height: 700px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(201, 168, 76, 0.09) 0%, transparent 65%);
     top: 50%;
     right: -5%;
     transform: translateY(-50%);
     pointer-events: none;
     animation: glowPulse 7s ease-in-out infinite alternate;
 }

 @keyframes glowPulse {
     from {
         opacity: 0.6;
         transform: translateY(-50%) scale(1);
     }

     to {
         opacity: 1;
         transform: translateY(-50%) scale(1.08);
     }
 }

 /* Kaaba silhouette */
 .hero-kaaba {
     position: absolute;
     right: 6%;
     bottom: 0;
     height: 85%;
     opacity: 0.055;
     pointer-events: none;
 }

 /* Crescent top-right */
 .hero-crescent {
     position: absolute;
     top: 8%;
     right: 4%;
     width: 70px;
     height: 70px;
     opacity: 0.28;
 }

 .hero-inner {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 5rem 2rem;
     animation: fadeUp 1s ease both;
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(24px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .back-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     text-decoration: none;
     font-size: 0.75rem;
     font-weight: 500;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 2.5rem;
     transition: gap 0.3s, color 0.3s;
 }

 .back-btn:hover {
     gap: 0.8rem;
     color: var(--gold-light);
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     font-size: 0.7rem;
     font-weight: 600;
     letter-spacing: 0.26em;
     text-transform: uppercase;
     color: var(--forest-dark);
     background: var(--gold);
     padding: 0.35rem 1rem;
     margin-bottom: 1.8rem;
 }

 .hero-arabic {
     font-family: 'Tajawal', sans-serif;
     font-size: 1.3rem;
     font-weight: 300;
     color: rgba(201, 168, 76, 0.6);
     letter-spacing: 0.1em;
     margin-bottom: 1rem;
 }

 .hero h1 {
     font-family: 'Cormorant Garamond', serif;
     font-size: clamp(3rem, 6vw, 5.5rem);
     font-weight: 300;
     line-height: 1.02;
     letter-spacing: -0.01em;
     color: var(--white);
     margin-bottom: 1.5rem;
     max-width: 700px;
 }

 .hero h1 em {
     font-style: italic;
     color: var(--gold);
 }

 .hero-desc {
     font-size: 1.05rem;
     font-weight: 300;
     line-height: 1.8;
     color: var(--muted);
     max-width: 520px;
     margin-bottom: 3rem;
 }

 .hero-meta {
     display: flex;
     gap: 2.5rem;
     flex-wrap: wrap;
 }

 .meta-item {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     font-size: 0.82rem;
     font-weight: 400;
     color: rgba(248, 248, 244, 0.65);
     letter-spacing: 0.04em;
 }

 .meta-item i {
     color: var(--gold);
     font-size: 0.85rem;
 }

 /* ══════════════════════════════════════
           STICKY PRICE BAR
        ══════════════════════════════════════ */
 .price-bar {
     position: sticky;
     top: 0px;
     z-index: 100;
     background: var(--forest-deep);
     border-bottom: 1px solid var(--border);
     padding: 0.9rem 2rem;
 }

 .price-bar-inner {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .price-bar-left {
     display: flex;
     align-items: baseline;
     gap: 0.5rem;
 }

 .price-bar-label {
     font-size: 0.7rem;
     font-weight: 500;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--muted);
 }

 .price-bar-amount {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2rem;
     font-weight: 300;
     color: var(--gold);
     line-height: 1;
 }

 .price-bar-per {
     font-size: 0.75rem;
     color: var(--muted);
     letter-spacing: 0.1em;
 }

 .price-bar-actions {
     display: flex;
     gap: 0.75rem;
     align-items: center;
 }

 .btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     text-decoration: none;
     padding: 0.75rem 2rem;
     background: var(--gold);
     color: var(--forest-dark);
     font-family: 'Barlow', sans-serif;
     font-size: 0.78rem;
     font-weight: 700;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
 }

 .btn-primary:hover {
     background: var(--gold-light);
     transform: translateY(-2px);
     box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
 }

 .btn-outline {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     text-decoration: none;
     padding: 0.75rem 1.5rem;
     border: 1px solid var(--border);
     color: var(--gold-light);
     font-family: 'Barlow', sans-serif;
     font-size: 0.78rem;
     font-weight: 500;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     transition: border-color 0.3s, background 0.3s;
 }

 .btn-outline:hover {
     border-color: var(--gold);
     background: rgba(201, 168, 76, 0.07);
 }

 /* ══════════════════════════════════════
           MAIN LAYOUT
        ══════════════════════════════════════ */
 .main-wrap {
     max-width: 1200px;
     margin: 0 auto;
     padding: 5rem 2rem;
     display: grid;
     grid-template-columns: 1fr 360px;
     gap: 4rem;
     align-items: start;
 }

 /* ── SECTION TITLES ── */
 .s-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2rem;
     font-weight: 300;
     color: var(--white);
     margin-bottom: 0.4rem;
 }

 .s-title em {
     font-style: italic;
     color: var(--gold);
 }

 .s-eyebrow {
     font-size: 0.68rem;
     font-weight: 600;
     letter-spacing: 0.28em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
     gap: 0.6rem;
 }

 .s-eyebrow::after {
     content: '';
     flex: 1;
     max-width: 40px;
     height: 1px;
     background: var(--gold);
     opacity: 0.4;
 }

 .s-rule {
     width: 40px;
     height: 1px;
     background: var(--border);
     margin: 1.2rem 0 2rem;
 }

 /* ── DEPARTURE CARD ── */
 .departure-card {
     background: var(--forest-dark);
     border: 1px solid var(--border);
     border-left: 3px solid var(--gold);
     padding: 2rem 2.2rem;
     margin-bottom: 3rem;
     
 }

 .dep-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem 2rem;
     margin-top: 1.5rem;
 }


 .dep-label {
     font-size: 0.65rem;
     font-weight: 600;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 0.3rem;
 }

 .dep-value {
     font-size: 0.95rem;
     font-weight: 400;
     color: rgba(248, 248, 244, 0.85);
     line-height: 1.5;
 }

 /* ── INSTRUCTIONS ── */
 .instructions-block {
     margin-bottom: 3rem;
     background: var(--forest-dark);
     border-radius: 12px;
    padding: 20px;
 }

 .instr-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
 }

 .instr-list li {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
     padding: 1rem 1.2rem;
     background: rgba(255, 255, 255, 0.02);
     border: 1px solid var(--border-soft);
     font-size: 0.92rem;
     font-weight: 300;
     color: rgba(248, 248, 244, 0.75);
     line-height: 1.6;
     transition: background 0.25s, border-color 0.25s;
 }

 .instr-list li:hover {
     background: rgba(27, 67, 50, 0.25);
     border-color: rgba(201, 168, 76, 0.2);
 }

 .instr-list li i {
     color: var(--gold);
     font-size: 0.8rem;
     margin-top: 3px;
     flex-shrink: 0;
 }

 /* ── CHECKLIST ── */
 .checklist-block {
     margin-bottom: 3rem;
     padding: 20px;
     border-radius: 12px;
     background: var(--forest-dark);
 }

 .checklist-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0.75rem;
     margin-top: 1.5rem;
 }

 .check-item {
     display: flex;
     align-items: center;
     gap: 0.85rem;
     padding: 1rem 1.2rem;
     background: rgba(27, 67, 50, 0.18);
     border: 1px solid var(--border-soft);
     transition: background 0.25s, border-color 0.25s, transform 0.25s;
 }

 .check-item:hover {
     background: rgba(27, 67, 50, 0.38);
     border-color: var(--border);
     transform: translateX(3px);
 }

 .check-icon {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: rgba(201, 168, 76, 0.12);
     border: 1px solid rgba(201, 168, 76, 0.25);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .check-icon i {
     color: var(--gold);
     font-size: 0.7rem;
 }

 .check-text {
     font-size: 0.88rem;
     font-weight: 400;
     color: rgba(248, 248, 244, 0.8);
 }

 /* ── ITINERARY ── */
 .itinerary-block {
     margin-bottom: 1rem;
     background: var(--forest-dark);
     padding: 20px; 
     border-radius: 12px;
 }

 .day-item {
     border-top: 1px solid rgba(201, 168, 76, 0.12);
 }

 .day-item:last-child {
     border-bottom: 1px solid rgba(201, 168, 76, 0.12);
 }

 .day-trigger {
     width: 100%;
     background: none;
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 1.5rem;
     padding: 1.6rem 0;
     text-align: left;
     color: var(--white);
     transition: color 0.25s;
 }

 .day-trigger:hover {
     color: var(--gold-light);
 }

 .day-num {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2.8rem;
     font-weight: 300;
     color: rgba(201, 168, 76, 0.2);
     line-height: 1;
     width: 48px;
     flex-shrink: 0;
     transition: color 0.3s;
 }

 .day-trigger.open .day-num {
     color: var(--gold);
 }

 .day-meta {
     flex: 1;
 }

 .day-label {
     font-size: 0.65rem;
     font-weight: 500;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 0.2rem;
 }

 .day-title-text {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.5rem;
     font-weight: 400;
     color: inherit;
     transition: color 0.25s;
 }

 .day-trigger:hover .day-title-text,
 .day-trigger.open .day-title-text {
     color: var(--gold-light);
 }

 .day-toggle-icon {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border: 1px solid rgba(201, 168, 76, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     color: var(--gold);
     font-size: 0.75rem;
     transition: border-color 0.3s, background 0.3s, transform 0.4s;
 }

 .day-trigger.open .day-toggle-icon {
     border-color: var(--gold);
     background: rgba(201, 168, 76, 0.1);
     transform: rotate(45deg);
 }

 .day-body {
     display: grid;
     grid-template-rows: 0fr;
     transition: grid-template-rows 0.4s ease;
 }

 .day-body.open {
     grid-template-rows: 1fr;
 }

 .day-body-inner {
     overflow: hidden;
 }

 .day-content {
     padding: 0 0 2.2rem 5.8rem;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
 }

 .day-detail {
     padding: 1.2rem 1.4rem;
     background: rgba(255, 255, 255, 0.02);
     border: 1px solid var(--border-soft);
     border-left: 2px solid var(--gold);
 }

 .day-detail h4 {
     font-size: 0.65rem;
     font-weight: 600;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .day-detail p {
     font-size: 0.88rem;
     font-weight: 300;
     color: rgba(248, 248, 244, 0.65);
     line-height: 1.7;
 }

 .day-highlight {
     grid-column: 1 / -1;
     display: flex;
     gap: 1rem;
     padding: 1.2rem 1.4rem;
     background: linear-gradient(135deg, rgba(27, 67, 50, 0.35), rgba(201, 168, 76, 0.04));
     border: 1px solid rgba(201, 168, 76, 0.15);
 }

 .day-highlight i {
     color: var(--gold);
     font-size: 1.1rem;
     flex-shrink: 0;
     margin-top: 2px;
 }

 .day-highlight p {
     font-size: 0.9rem;
     font-weight: 300;
     color: rgba(248, 248, 244, 0.72);
     line-height: 1.7;
 }

 .day-highlight strong {
     color: var(--gold-light);
     font-weight: 500;
 }

 /* ══════════════════════════════════════
           SIDEBAR CARD
        ══════════════════════════════════════ */
 .sidebar {
     position: sticky;
     top: 128px;
 }

 .price-card {
     background: var(--forest-mid);
     border: 1px solid var(--border);
     overflow: hidden;
     margin-bottom: 1.5rem;
 }

 .price-card-top {
     background: linear-gradient(135deg, var(--forest), var(--forest-deep));
     padding: 2rem;
     border-bottom: 1px solid var(--border);
     text-align: center;
 }

 .price-tag {
     font-family: 'Cormorant Garamond', serif;
     font-size: 3.5rem;
     font-weight: 300;
     color: var(--gold);
     line-height: 1;
 }

 .price-currency {
     font-size: 1.4rem;
     vertical-align: super;
     color: var(--gold);
 }

 .price-unit {
     font-size: 0.72rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--muted);
     margin-top: 0.4rem;
 }

 .price-card-body {
     padding: 1.8rem 2rem;
 }

 .price-includes {
     list-style: none;
     margin-bottom: 1.8rem;
 }

 .price-includes li {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     padding: 0.65rem 0;
     font-size: 0.88rem;
     font-weight: 300;
     color: rgba(248, 248, 244, 0.75);
     border-bottom: 1px solid var(--border-soft);
 }

 .price-includes li:last-child {
     border-bottom: none;
 }

 .price-includes li i {
     color: var(--gold);
     font-size: 0.75rem;
     width: 14px;
 }

 .sidebar-cta {
     display: flex;
     flex-direction: column;
     gap: 0.6rem;
 }

 .cta-primary {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.6rem;
     text-decoration: none;
     padding: 1rem 2rem;
     background: var(--gold);
     color: var(--forest-dark);
     font-family: 'Barlow', sans-serif;
     font-size: 0.82rem;
     font-weight: 700;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
 }

 .cta-primary:hover {
     background: var(--gold-light);
     transform: translateY(-2px);
     box-shadow: 0 8px 28px rgba(201, 168, 76, 0.3);
 }

 .cta-secondary {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.6rem;
     text-decoration: none;
     padding: 0.85rem 2rem;
     border: 1px solid var(--border);
     color: var(--gold-light);
     font-family: 'Barlow', sans-serif;
     font-size: 0.78rem;
     font-weight: 500;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     transition: border-color 0.3s, background 0.3s;
 }

 .cta-secondary:hover {
     border-color: var(--gold);
     background: rgba(201, 168, 76, 0.06);
 }

 /* Trust badges */
 .trust-card {
     background: rgba(27, 67, 50, 0.2);
     border: 1px solid var(--border-soft);
     padding: 1.5rem;
 }

 .trust-title {
     font-size: 0.65rem;
     font-weight: 600;
     letter-spacing: 0.24em;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 1rem;
     text-align: center;
 }

 .trust-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.7rem;
 }

 .trust-list li {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     font-size: 0.82rem;
     font-weight: 300;
     color: rgba(248, 248, 244, 0.65);
 }

 .trust-list li i {
     color: var(--gold);
     font-size: 0.75rem;
     width: 14px;
 }

 /* ══════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════ */
 @media (max-width: 900px) {
     .main-wrap {
         grid-template-columns: 1fr;
         gap: 3rem;
     }

     .sidebar {
         position: static;
     }

     .dep-grid {
         grid-template-columns: 1fr;
     }

     .checklist-grid {
         grid-template-columns: 1fr;
     }

     .day-content {
         grid-template-columns: 1fr;
         padding-left: 3.5rem;
     }

     .day-highlight {
         grid-column: unset;
     }
 }

 @media (max-width: 600px) {
     .nav-links {
         display: none;
     }

     .price-bar-inner {
         flex-direction: column;
         align-items: flex-start;
         gap: 0.75rem;
     }

     .hero h1 {
         font-size: 2.6rem;
     }
 }