/* =============================================
   0. DESIGN TOKENS
   ============================================= */
:root {
    --navy:     #081826;
    --gold:     #D4A64A;
    --sand:     #EED9B7;
    --white:    #F8F4EE;
    --blue:     #0D8BAA;
    --charcoal: #1C2430;
    --ff: 'Tajawal', sans-serif;
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================
   1. RESET
   ============================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: var(--ff);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.is-home { overflow: hidden; }
body.is-home.can-scroll { overflow-y: auto; }
body.inner-page { overflow-y: auto; background: var(--white); color: var(--charcoal); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border:none; background:none; cursor:pointer; color:inherit; }

/* =============================================
   2. HEADER
   ============================================= */
.site-header {
    position: fixed; top:0; left:0; width:100%;
    z-index: 200; padding: 1.25rem 0;
    transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}
.site-header.glass {
    background: rgba(8,24,38,0.65);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(212,166,74,0.08);
}
.header-inner {
    max-width:1400px; margin:0 auto; padding:0 2.5rem;
    display:flex; align-items:center; justify-content:space-between;
}
.logo { font-size:1.75rem; font-weight:900; white-space:nowrap; }
.logo span { color: var(--gold); }
.main-nav { display:flex; gap:2.2rem; }
.nav-link { font-size:1rem; font-weight:500; position:relative; padding-bottom:4px; transition:color 0.3s; }
.nav-link::after { content:''; position:absolute; bottom:0; right:0; height:2px; width:0; background:var(--gold); transition:width 0.4s var(--ease-expo); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.nav-link:hover { color: var(--gold); }
.header-cta { display:flex; align-items:center; gap:1rem; }
.whatsapp-btn { width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; color:#25D366; transition:all 0.3s; }
.whatsapp-btn:hover { background:#25D366; color:#fff; transform:scale(1.1); }
.book-btn { display:inline-flex; align-items:center; padding:0.65rem 1.8rem; border-radius:50px; background:var(--gold); color:var(--navy); font-weight:700; font-size:0.95rem; transition:all 0.3s; white-space:nowrap; }
.book-btn:hover { background:var(--sand); box-shadow:0 8px 24px rgba(212,166,74,0.3); transform:translateY(-2px); }
.book-btn--dark { background:var(--navy); color:var(--gold); border:2px solid var(--gold); }
.book-btn--dark:hover { background:var(--gold); color:var(--navy); }
.burger { display:none; flex-direction:column; justify-content:center; gap:5px; width:28px; height:28px; z-index:210; }
.burger span { display:block; width:100%; height:2px; background:var(--white); border-radius:2px; transition:all 0.35s var(--ease-expo); transform-origin:center; }
.burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* =============================================
   3. MOBILE MENU
   ============================================= */
.mobile-menu { position:fixed; inset:0; z-index:199; background:rgba(8,24,38,0.96); backdrop-filter:blur(24px); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.45s; }
.mobile-menu.open { opacity:1; pointer-events:auto; }
.mobile-menu-nav { display:flex; flex-direction:column; align-items:center; gap:1.5rem; }
.mobile-link { font-size:1.6rem; font-weight:700; opacity:0; transform:translateY(25px); transition:color 0.3s; }
.mobile-link:hover { color:var(--gold); }
.mobile-book-btn { margin-top:1rem; padding:0.7rem 2rem; border-radius:50px; background:var(--gold); color:var(--navy); font-size:1.2rem; }

/* =============================================
   4. SCENE DOTS
   ============================================= */
.scene-dots { position:fixed; left:2.5rem; top:50%; transform:translateY(-50%); display:flex; flex-direction:column; gap:2rem; z-index:150; transition:opacity 0.4s, transform 0.4s; }
.scene-dots.hidden { opacity:0; pointer-events:none; transform:translateY(-50%) translateX(-20px); }
.dot { width:12px; height:12px; border-radius:50%; background:rgba(255,255,255,0.25); position:relative; transition:all 0.4s var(--ease-expo); }
.dot::after { content:''; position:absolute; inset:-5px; border-radius:50%; border:1.5px solid var(--gold); opacity:0; transform:scale(0.4); transition:all 0.4s var(--ease-expo); }
.dot.active { background:var(--gold); transform:scale(1.35); }
.dot.active::after { opacity:1; transform:scale(1); }
.dot-label { position:absolute; right:calc(100% + 14px); top:50%; transform:translateY(-50%); font-size:0.8rem; font-weight:600; white-space:nowrap; color:var(--gold); opacity:0; pointer-events:none; transition:opacity 0.3s; }
.dot:hover .dot-label, .dot.active .dot-label { opacity:1; }

/* =============================================
   5. SCENE COUNTER
   ============================================= */
.scene-counter { position:fixed; left:2.5rem; bottom:2.5rem; display:flex; align-items:center; gap:0.6rem; z-index:150; font-weight:300; font-size:0.95rem; letter-spacing:2px; transition:opacity 0.4s; }
.scene-counter.hidden { opacity:0; }
.counter-current { font-size:1.6rem; font-weight:800; color:var(--gold); }
.counter-sep { width:28px; height:1px; background:rgba(255,255,255,0.3); }
.counter-total { opacity:0.5; }

/* =============================================
   6. SPLIT TRANSITION LAYER
   ============================================= */
.split-layer {
    position: fixed; inset: 0;
    z-index: 20;
    pointer-events: none;
    visibility: hidden;
}
.split-panel {
    position: absolute; inset: 0;
    overflow: hidden;
    will-change: transform;
}
.split-bg {
    position: absolute;
    top: -40px; left: -40px; right: -40px; bottom: -40px;
    background-size: cover;
    background-position: center;
}
.split-ov {
    position: absolute; inset: 0;
}
.split-edge {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

/* =============================================
   7. SCENES VIEWPORT
   ============================================= */
.scenes-viewport { position:fixed; inset:0; z-index:10; overflow:hidden; }
.scene { position:absolute; inset:0; display:flex; align-items:center; visibility:hidden; will-change:transform,opacity; }
.scene.is-active { visibility:visible; }
.scene-bg-wrap { position:absolute; top:-40px; left:-40px; right:-40px; bottom:-40px; overflow:hidden; }
.scene-bg { width:100%; height:100%; background-size:cover; background-position:center; will-change:transform; }

/* Overlays */
.scene-overlay { position:absolute; inset:0; }
.scene-ov--gold { background: linear-gradient(135deg, rgba(8,24,38,0.82) 0%, rgba(8,24,38,0.35) 55%, rgba(212,166,74,0.08) 100%), linear-gradient(to top, rgba(8,24,38,0.7) 0%, transparent 40%); }
.scene-ov--warm { background: linear-gradient(135deg, rgba(8,24,38,0.8) 0%, rgba(28,36,48,0.3) 60%, rgba(212,166,74,0.05) 100%), linear-gradient(to top, rgba(8,24,38,0.75) 0%, transparent 45%); }
.scene-ov--coastal { background: linear-gradient(135deg, rgba(8,24,38,0.75) 0%, rgba(13,139,170,0.2) 60%, rgba(13,139,170,0.05) 100%), linear-gradient(to top, rgba(8,24,38,0.7) 0%, transparent 45%); }
.scene-ov--vibrant { background: linear-gradient(135deg, rgba(28,36,48,0.75) 0%, rgba(13,139,170,0.15) 60%, rgba(212,166,74,0.05) 100%), linear-gradient(to top, rgba(8,24,38,0.65) 0%, transparent 40%); }

/* Scene Body */
.scene-body { position:relative; z-index:10; max-width:780px; padding:0 8%; }
.scene-tag { display:inline-block; padding:0.45rem 1.2rem; border-radius:30px; font-size:0.85rem; font-weight:700; background:rgba(212,166,74,0.15); border:1px solid rgba(212,166,74,0.45); color:var(--gold); margin-bottom:1.5rem; letter-spacing:0.5px; }
.scene-title { font-size:clamp(2.4rem,5.5vw,4.8rem); font-weight:900; line-height:1.15; margin-bottom:1.2rem; text-shadow:0 4px 30px rgba(0,0,0,0.35); }
.scene-sub { font-size:clamp(1rem,1.3vw,1.25rem); font-weight:400; line-height:1.7; max-width:550px; opacity:0.88; margin-bottom:2rem; }
.scene-cta { display:inline-flex; align-items:center; padding:0.75rem 2.2rem; border-radius:50px; font-size:1.05rem; font-weight:700; background:rgba(255,255,255,0.1); backdrop-filter:blur(6px); border:1px solid rgba(255,255,255,0.25); transition:all 0.35s; }
.scene-cta:hover { background:var(--white); color:var(--navy); border-color:var(--white); transform:translateY(-2px); box-shadow:0 12px 30px rgba(0,0,0,0.2); }
.scene-cta--gold:hover { background:var(--gold); border-color:var(--gold); color:var(--navy); }
.scene-cta--blue:hover { background:var(--blue); border-color:var(--blue); }

/* =============================================
   8. SCROLL PROMPT
   ============================================= */
.scroll-prompt { position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:0.6rem; z-index:20; opacity:0.65; }
.scroll-prompt span { font-size:0.8rem; letter-spacing:1.5px; }
.prompt-mouse { width:22px; height:36px; border:2px solid rgba(255,255,255,0.6); border-radius:11px; position:relative; }
.prompt-wheel { width:2px; height:5px; background:var(--white); border-radius:2px; position:absolute; top:7px; left:50%; transform:translateX(-50%); animation:wheelBounce 1.8s ease-in-out infinite; }
@keyframes wheelBounce { 0%,100%{ top:7px; opacity:1; } 50%{ top:16px; opacity:0; } }

/* =============================================
   9. GLOBAL UTILITIES (After-Scenes)
   ============================================= */
.after-scenes { position:relative; z-index:5; display:none; background:var(--white); }
.section-padding { padding: 6rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-charcoal { color: var(--charcoal); }
.bg-sand { background: var(--sand); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-white { background: var(--white); color: var(--charcoal); }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-tag { display: inline-block; padding: 0.4rem 1.2rem; border-radius: 30px; font-size: 0.85rem; font-weight: 700; background: rgba(212,166,74,0.15); border: 1px solid rgba(212,166,74,0.45); color: var(--gold); margin-bottom: 1rem; }
.section-tag--navy { border-color: rgba(8,24,38,0.2); color: var(--navy); background: rgba(8,24,38,0.05); }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.2; margin-bottom: 1.2rem; }
.section-desc { font-size: 1.1rem; line-height: 1.8; opacity: 0.85; max-width: 600px; margin-bottom: 3rem; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; padding: 0.8rem 2.2rem; border-radius: 50px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 1.05rem; transition: all 0.3s; }
.btn-primary:hover { background: var(--sand); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(212,166,74,0.3); }
.btn-outline { display: inline-flex; align-items: center; padding: 0.8rem 2.2rem; border-radius: 50px; border: 2px solid var(--gold); color: var(--gold); font-weight: 700; font-size: 1.05rem; transition: all 0.3s; }
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* Floating WhatsApp */
.floating-whatsapp { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; z-index: 100; box-shadow: 0 10px 30px rgba(37,211,102,0.4); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.floating-whatsapp:hover { transform: scale(1.1) translateY(-5px); }

/* =============================================
   10. INTRO SECTION
   ============================================= */
.intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.intro-text .section-desc { margin-bottom: 2.5rem; max-width: none; }
.stats-row { display: flex; gap: 3rem; }
.stat-item { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.95rem; font-weight: 700; color: var(--charcoal); opacity: 0.7; }
.intro-image .img-wrapper { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   11. DESTINATIONS BENTO GRID
   ============================================= */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 1.5rem; }
.bento-item { position: relative; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; text-decoration: none; color: white; group; isolation: isolate; }
.bento-item::after { content: ''; position: absolute; inset: 0; border: 2px solid transparent; border-radius: 20px; transition: border-color 0.4s; z-index: 5; pointer-events: none; }
.bento-item:hover::after { border-color: rgba(212,166,74,0.5); }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-bg { position: absolute; inset: -5%; background-size: cover; background-position: center; z-index: 1; transition: transform 0.7s var(--ease-expo); }
.bento-item:hover .bento-bg { transform: scale(1.08); }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,24,38,0.9) 0%, rgba(8,24,38,0.2) 60%, transparent 100%); z-index: 2; transition: opacity 0.4s; }
.bento-item:hover .bento-overlay { opacity: 0.8; }
.bento-content { position: relative; z-index: 3; transition: transform 0.4s var(--ease-expo); transform: translateY(20px); }
.bento-item:hover .bento-content { transform: translateY(0); }
.bento-badge { display: inline-block; padding: 0.3rem 0.8rem; background: rgba(212,166,74,0.9); color: var(--navy); font-size: 0.75rem; font-weight: 800; border-radius: 4px; margin-bottom: 0.5rem; }
.bento-duration { display: inline-block; padding: 0.25rem 0.6rem; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); font-size: 0.7rem; font-weight: 700; border-radius: 4px; margin-bottom: 0.8rem; margin-right: 0.5rem; }
.bento-content h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.bento-large .bento-content h3 { font-size: 2.2rem; }
.bento-content p { font-size: 0.95rem; opacity: 0; transform: translateY(10px); transition: all 0.4s 0.1s var(--ease-expo); line-height: 1.5; text-shadow: 0 2px 5px rgba(0,0,0,0.5); max-height: 0; }
.bento-item:hover .bento-content p { opacity: 0.9; transform: translateY(0); max-height: 100px; margin-bottom: 1.2rem; }
.bento-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--gold); font-size: 0.9rem; opacity: 0; transform: translateY(10px); transition: all 0.4s 0.15s var(--ease-expo); }
.bento-item:hover .bento-btn { opacity: 1; transform: translateY(0); }
.bento-btn::after { content: '←'; transition: transform 0.3s; }
.bento-item:hover .bento-btn::after { transform: translateX(-5px); }

/* =============================================
   12. PROGRAMS SECTION
   ============================================= */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.prog-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(8,24,38,0.05); transition: transform 0.4s var(--ease-expo), box-shadow 0.4s; border: 1px solid rgba(8,24,38,0.05); display: flex; flex-direction: column; }
.prog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(8,24,38,0.1); border-color: rgba(212,166,74,0.3); }
.prog-img { height: 240px; position: relative; overflow: hidden; }
.prog-img .img-inner { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s var(--ease-expo); }
.prog-card:hover .img-inner { transform: scale(1.08); }
.prog-duration { position: absolute; bottom: 1rem; right: 1rem; background: rgba(8,24,38,0.85); color: white; padding: 0.4rem 1rem; border-radius: 30px; font-size: 0.85rem; font-weight: 700; backdrop-filter: blur(4px); }
.prog-info { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.prog-meta { font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-bottom: 0.8rem; }
.prog-title { font-size: 1.4rem; color: var(--navy); font-weight: 800; margin-bottom: 1rem; }
.prog-features { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.prog-features li { position: relative; padding-right: 1.5rem; margin-bottom: 0.6rem; font-size: 0.95rem; color: #555; }
.prog-features li::before { content: '•'; color: var(--gold); position: absolute; right: 0; font-size: 1.2rem; top: -2px; }
.prog-footer { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.prog-price { font-size: 0.9rem; color: #666; }
.prog-price strong { font-size: 1.4rem; color: var(--navy); font-weight: 900; }
.prog-footer .btn-outline { justify-content: center; width: 100%; padding: 0.7rem; font-size: 0.95rem; }

/* =============================================
   13. CUSTOM TRIP FORM
   ============================================= */
.custom-trip-section { position: relative; color: white; }
.custom-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.custom-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,24,38,0.95) 0%, rgba(8,24,38,0.8) 100%); }
.custom-trip-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.custom-header { text-align: center; margin-bottom: 3rem; }
.custom-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.3; margin-bottom: 1rem; }
.custom-header h2 span { color: var(--gold); }
.custom-header p { font-size: 1.1rem; opacity: 0.85; }
.glass-form { background: rgba(255,255,255,0.05); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); padding: 3rem; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { grid-column: span 2; }
.form-group label { font-size: 0.9rem; font-weight: 700; color: var(--sand); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1rem 1.2rem; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: white; font-family: inherit; font-size: 1rem; transition: all 0.3s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: left 1rem center; background-size: 1em; }
.form-group select option { background: var(--navy); color: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(0,0,0,0.4); }
.form-actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.btn-submit { width: 100%; padding: 1rem; background: var(--gold); color: var(--navy); border-radius: 12px; font-size: 1.1rem; font-weight: 800; transition: all 0.3s; }
.btn-submit:hover { background: white; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.or-divider { font-size: 0.9rem; opacity: 0.6; position: relative; width: 100%; text-align: center; }
.or-divider::before, .or-divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: rgba(255,255,255,0.2); }
.or-divider::before { right: 0; }
.or-divider::after { left: 0; }
.btn-whatsapp-outline { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 1rem; background: transparent; border: 1px solid #25D366; color: #25D366; border-radius: 12px; font-size: 1.05rem; font-weight: 700; transition: all 0.3s; }
.btn-whatsapp-outline:hover { background: #25D366; color: white; }

/* =============================================
   14. WHY US SECTION
   ============================================= */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.why-card { background: white; padding: 2.5rem 2rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.4s, box-shadow 0.4s; text-align: center; border-bottom: 3px solid transparent; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: var(--gold); }
.why-icon { width: 60px; height: 60px; margin: 0 auto 1.5rem; background: rgba(212,166,74,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.why-icon svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1rem; font-weight: 800; }
.why-card p { font-size: 0.95rem; color: #666; line-height: 1.6; }

/* =============================================
   15. BOOKING STEPS TIMELINE
   ============================================= */
.timeline-wrap { max-width: 800px; margin: 0 auto; position: relative; padding: 2rem 0; }
.timeline-line { position: absolute; right: 24px; top: 0; bottom: 0; width: 2px; background: rgba(8,24,38,0.1); }
.timeline-step { display: flex; gap: 2rem; margin-bottom: 3rem; position: relative; z-index: 2; }
.timeline-step:last-child { margin-bottom: 0; }
.step-num { width: 50px; height: 50px; flex-shrink: 0; background: white; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; color: var(--navy); box-shadow: 0 5px 15px rgba(212,166,74,0.2); }
.step-content { background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); flex-grow: 1; border-right: 4px solid transparent; transition: border-color 0.3s; }
.timeline-step:hover .step-content { border-color: var(--gold); }
.step-content h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 800; }
.step-content p { color: #666; line-height: 1.6; }

/* =============================================
   16. REVIEWS SECTION
   ============================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.review-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 2.5rem; border-radius: 20px; transition: transform 0.3s; }
.review-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); }
.review-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1.5rem; letter-spacing: 2px; }
.review-text { font-size: 1.1rem; line-height: 1.8; font-style: italic; margin-bottom: 2rem; opacity: 0.9; }
.review-meta { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
.review-meta h4 { font-size: 1.1rem; font-weight: 800; color: var(--gold); margin-bottom: 0.2rem; }
.review-meta span { font-size: 0.85rem; opacity: 0.6; }

/* =============================================
   17. FAQ SECTION
   ============================================= */
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05); }
.faq-question { width: 100%; text-align: right; padding: 1.5rem 2rem; font-size: 1.1rem; font-weight: 800; color: var(--navy); display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.faq-question:hover { background: rgba(212,166,74,0.05); }
.faq-icon { color: var(--gold); font-size: 1.5rem; font-weight: 300; transition: transform 0.4s var(--ease-expo); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-expo); }
.faq-answer p { padding: 0 2rem 1.5rem; color: #555; line-height: 1.7; }

/* =============================================
   18. FINAL CTA
   ============================================= */
.final-cta { position: relative; padding: 8rem 0; color: white; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,24,38,0.95) 0%, rgba(8,24,38,0.7) 100%); }
.final-cta h2 { position: relative; z-index: 2; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 1.5rem; }
.final-cta p { position: relative; z-index: 2; font-size: 1.2rem; max-width: 600px; margin: 0 auto 3rem; opacity: 0.9; }
.cta-buttons { position: relative; z-index: 2; display: flex; gap: 1.5rem; justify-content: center; }

/* =============================================
   19. FOOTER
   ============================================= */
.site-footer { background: var(--navy); color: white; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { font-size: 1.8rem; font-weight: 900; display: inline-block; margin-bottom: 1.5rem; }
.footer-logo span { color: var(--gold); }
.brand-col p { opacity: 0.7; line-height: 1.7; margin-bottom: 2rem; max-width: 300px; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; transition: all 0.3s; color: white; }
.social-links a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-col h3 { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 1.5rem; position: relative; padding-bottom: 0.8rem; }
.footer-col h3::after { content: ''; position: absolute; right: 0; bottom: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { opacity: 0.7; transition: all 0.3s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold); padding-right: 5px; }
.contact-col p { opacity: 0.7; margin-bottom: 1rem; display: flex; gap: 0.5rem; }
.contact-col span { direction: ltr; display: inline-block; }
.footer-copy { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.5; font-size: 0.9rem; }

/* =============================================
   20. GSAP UTILITIES
   ============================================= */
.st-fade-up { opacity: 0; transform: translateY(40px); }

/* =============================================
   21. RESPONSIVE
   ============================================= */
@media(max-width:1024px){
    .main-nav{display:none} .header-cta .book-btn{display:none} .burger{display:flex} .header-inner{padding:0 1.5rem}
    .scene-dots{left:1.5rem;gap:1.5rem} .dot-label{display:none} .scene-counter{left:1.5rem;bottom:1.5rem}
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px){
    .section-padding { padding: 4rem 0; }
    .scene-body{padding:0 6%} .scene-title{font-size:clamp(2rem,7vw,3rem)} .scene-sub{font-size:0.95rem}
    .scene-tag{font-size:0.75rem;padding:0.35rem 0.9rem} .scene-cta{font-size:0.95rem;padding:0.65rem 1.6rem}
    .scroll-prompt span{font-size:0.7rem} .scene-dots{left:1rem;gap:1.2rem} .dot{width:9px;height:9px}
    .scene-counter{left:1rem;bottom:1rem;font-size:0.8rem} .counter-current{font-size:1.2rem}
    
    .intro-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .stats-row { justify-content: center; flex-wrap: wrap; }
    .intro-image .img-wrapper { max-width: 500px; margin: 0 auto; aspect-ratio: 16/9; }
    
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: auto; }
    .glass-form { padding: 2rem 1.5rem; }
    
    .timeline-line { right: 20px; }
    .step-num { width: 40px; height: 40px; font-size: 1.2rem; }
    .timeline-step { gap: 1rem; }
    .step-content { padding: 1.5rem; }
    
    .cta-buttons { flex-direction: column; }
    .floating-whatsapp { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; }
}
@media(max-width:480px){ 
    .scene-body{padding:0 5%} 
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .bento-large, .bento-wide { grid-column: span 1; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); right: auto; }
    .social-links { justify-content: center; }
    .contact-col p { justify-content: center; }
}


/* =============================================
   22. ACCESSIBILITY (Prefers Reduced Motion)
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =============================================
   23. INNER PAGES & UI COMPONENTS
   ============================================= */

.inner-page {
    background: var(--white);
}

.inner-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px; /* Offset for fixed header */
}
@media(max-width:768px) {
    .inner-hero { height: 50vh; min-height: 350px; padding-top: 70px; }
}
.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,24,38,0.85) 0%, rgba(8,24,38,0.4) 100%);
    z-index: 1;
}
.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}
.inner-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.inner-hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
}
.breadcrumb a {
    color: var(--white);
    transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* --- Main Layout --- */
.page-section {
    padding: 5rem 0;
    background: var(--white);
    color: var(--charcoal);
}
.page-section.bg-light {
    background: #fdfbf7;
}

.section-header {
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 1rem;
}
.section-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
}

/* --- UI Components --- */

/* Filters */
.filters-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(8,24,38,0.15);
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* Chips */
.chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.chip {
    padding: 0.4rem 1rem;
    background: rgba(212,166,74,0.15);
    color: var(--gold);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(212,166,74,0.3);
}

/* Top Sights Grid */
.sights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.sight-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}
.sight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: var(--gold);
}
.sight-icon {
    width: 50px; height: 50px;
    background: rgba(212,166,74,0.1);
    color: var(--gold);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.sight-card h3 { font-size: 1.1rem; color: var(--navy); margin: 0; }

/* Itinerary Timeline (Fancier) */
.itinerary-timeline {
    position: relative;
    padding-right: 30px;
}
.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 14px;
    width: 2px;
    background: rgba(8,24,38,0.1);
}
.day-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}
.day-card::before {
    content: '';
    position: absolute;
    top: 2rem; right: -36px;
    width: 14px; height: 14px;
    background: white;
    border: 3px solid var(--gold);
    border-radius: 50%;
    z-index: 2;
}
.day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.day-badge {
    background: var(--navy);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
}
.day-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--charcoal);
    margin: 0;
}
.day-card p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Includes/Excludes */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media(max-width:768px) { .inc-exc-grid { grid-template-columns: 1fr; } }
.inc-card, .exc-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}
.inc-card h3 { color: #2E7D32; font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.exc-card h3 { color: #D32F2F; font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.inc-card ul, .exc-card ul { list-style: none; padding: 0; margin: 0; }
.inc-card ul li, .exc-card ul li { margin-bottom: 1rem; position: relative; padding-right: 25px; color: #555; }
.inc-card ul li::before { content: '✓'; color: #2E7D32; position: absolute; right: 0; font-weight: bold; }
.exc-card ul li::before { content: '✕'; color: #D32F2F; position: absolute; right: 0; font-weight: bold; }

/* Price Card */
.price-card {
    background: var(--navy);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: sticky;
    top: 100px;
}
.price-card h3 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.2rem; }
.price-amount { font-size: 2.5rem; font-weight: 900; margin-bottom: 1.5rem; }
.price-amount span { font-size: 1rem; font-weight: 500; opacity: 0.8; }

/* Privacy Policy Layout */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}
.article-content h2 { margin-top: 2.5rem; font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; font-weight: 800; }
.article-content h2:first-child { margin-top: 0; }
.article-content p { color: #555; line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.05rem; }

/* 404 Page */
.page-404 {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--navy);
    color: var(--white);
    position: relative;
    padding: 20px;
}
.page-404::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/siwa-oasis.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}
.page-404-content { position: relative; z-index: 2; }
.page-404 h1 { font-size: clamp(6rem, 15vw, 12rem); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 1rem; }
.page-404 h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.page-404 p { font-size: 1.1rem; margin-bottom: 2.5rem; opacity: 0.8; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.page-404-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Grid Layouts for inner pages */
.inner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Page Two-Column Layout (Content + Sidebar) */
.page-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}
@media(max-width:992px) {
    .page-layout { grid-template-columns: 1fr; }
}
