/* =========================================
   1. ROOT VARIABLES & RESETS
   ========================================= */
:root {
  --ink: #12213b;
  --night: #152a4d;
  --midnight: #0d1c33;
  --deep-space: #070f1c;
  --paper: #fdfaf3;
  --paper-dim: #f4efe1;
  --gold: #e2a63b;
  --coral: #ee6f56;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ea952;
  
  --shadow-soft: 0 16px 40px -12px rgba(13,28,51,0.15);
  --shadow-hover: 0 24px 50px -12px rgba(13,28,51,0.25);

  /* Gradients for Cards */
  --grad-bali: linear-gradient(145deg, #4caf50, #1b5e20);
  --grad-santorini: linear-gradient(145deg, #2196f3, #0d47a1);
  --grad-kyoto: linear-gradient(145deg, #ff7043, #bf360c);
  --grad-peru: linear-gradient(145deg, #8d6e63, #3e2723);
  --grad-morocco: linear-gradient(145deg, #ffca28, #f57f17);
  --grad-norway: linear-gradient(145deg, #26c6da, #006064);
  
  --grad-asia: linear-gradient(160deg, #4caf50, #1b5e20); 
  --grad-europe: linear-gradient(160deg, #42a5f5, #1565c0);
  --grad-africa: linear-gradient(160deg, #ffca28, #ef6c00);
  --grad-americas: linear-gradient(160deg, #8d6e63, #3e2723);
  --grad-nordic: linear-gradient(160deg, #26c6da, #00838f);
  --grad-islands: linear-gradient(160deg, #29b6f6, #0277bd);
  --grad-culture: linear-gradient(160deg, #ff7043, #bf360c);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { 
  scroll-behavior: smooth; 
  overflow-x: hidden; 
  width: 100%;
  background-color: var(--midnight); 
}

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =========================================
   2. TYPOGRAPHY & GLOBAL COMPONENTS
   ========================================= */
h1, h2, h3, .display { font-family: 'Fraunces', serif; font-weight: 600; letter-spacing: -0.015em; }
h2 { font-variation-settings: "opsz" 60; }
.mono { font-family: 'Space Mono', monospace; letter-spacing: 0.02em; }
.eyebrow-label { font-family: 'Space Mono', monospace; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
img { max-width: 100%; display: block; height: auto; }
section { position: relative; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%; }
.wrap.footer-wrap { max-width: none; padding: 0 clamp(20px, 4vw, 56px); }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 24px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); margin-bottom: 12px;}
.section-head p { max-width: 420px; color: #5c5645; font-size: 1.05rem; }
.tag { display: inline-block; background: rgba(238,111,86,0.1); color: var(--coral); padding: 6px 14px; border-radius: 999px; font-family: 'Space Mono', monospace; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }

.eyebrow { font-family: 'Space Mono', monospace; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; animation: fadeInUp 0.8s ease backwards; text-shadow: 0 2px 8px rgba(0,0,0,0.9); }
.eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--gold); box-shadow: 0 2px 5px rgba(0,0,0,0.5); }

/* Buttons */
.btn-primary { background: var(--coral); color: #fff; padding: 16px 36px; border-radius: 999px; font-weight: 600; font-size: 1.05rem; box-shadow: 0 14px 30px -10px rgba(238,111,86,0.6); transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: inline-block; text-shadow: none; border: 1px solid transparent; text-decoration: none; }
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 40px -10px rgba(238,111,86,0.8); }

.wa-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--midnight); color: #fff; font-weight: 600; font-size: 1.05rem; padding: 18px 36px; border-radius: 999px; box-shadow: 0 14px 30px -12px rgba(13,28,51,0.6); transition: all .2s ease; text-decoration: none; }
.wa-btn:hover { background: #fff; color: var(--midnight); transform: translateY(-3px); }
.wa-btn svg { width: 22px; height: 22px; fill: currentColor;}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
header { position: sticky; top: 0; z-index: 50; color: var(--paper); border-bottom: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5); }
header::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(13, 28, 51, 0.65); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); transition: background 0.3s ease; }

.runway-stripe { height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--coral) 35%, var(--gold) 65%, var(--coral) 100%); background-size: 200% 100%; animation: runway-shift 8s linear infinite; }
@keyframes runway-shift { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }

.top-bar-wrapper { background: var(--deep-space); border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Changed to Work Sans per request */
.top-bar { display: flex; justify-content: space-between; align-items: center; padding: 8px clamp(20px, 4vw, 56px); width: 100%; font-family: 'Work Sans', sans-serif; font-size: 0.85rem; font-weight: 500; color: rgba(253,250,243,0.7); }

.contact-info-top, .social-links-top { display: flex; align-items: center; gap: 24px; }
.contact-info-top a { display: flex; align-items: center; gap: 8px; transition: color 0.3s ease; }
.contact-info-top a:hover { color: var(--gold); }
.top-bar svg { width: 14px; height: 14px; fill: currentColor; }

.social-links-top a { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(253,250,243,0.85); transition: all 0.25s ease; }
.social-links-top a:hover, .social-links-top a:focus-visible { transform: translateY(-2px); border-color: transparent; color: #fff; box-shadow: 0 8px 16px -6px rgba(0,0,0,0.4); }

.nav { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 14px clamp(20px, 4vw, 56px); width: 100%; }
.logo { display: flex; align-items: center; gap: 14px; font-size: 1.4rem; font-family: 'Fraunces', serif; letter-spacing: 0.02em; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.02); }
.logo-text { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.logo-tagline { font-family: 'Space Mono', monospace; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); opacity: 0.85; }
.logo-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.logo:hover .logo-img { transform: rotate(-4deg); }

nav ul { list-style: none; display: flex; align-items: stretch; gap: 6px; font-weight: 600; }
nav ul li { position: relative; display: flex; }
nav ul a { position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 18px; opacity: 0.75; transition: opacity .3s ease, color .3s ease, transform .3s ease; color: #fff; }
nav ul a .nav-link-row { display: flex; align-items: center; gap: 8px; }
nav ul a .nav-icon { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.85; transition: opacity .25s ease; }
nav ul a .label { font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.05em; }
nav ul a:hover { opacity: 1; transform: translateY(-2px); }
nav ul a:hover .nav-icon { opacity: 1; color: var(--coral); }
nav ul a.current { opacity: 1; }
nav ul a.current .nav-icon { opacity: 1; color: var(--gold); }
nav ul a.current .label::before { content: '●'; font-size: 0.5rem; margin-right: 7px; color: var(--gold); display: inline-block; }
nav ul a::after { content: ''; position: absolute; left: 18px; right: 18px; bottom: 2px; height: 2px; background: var(--coral); border-radius: 2px; transform: scaleX(0); transform-origin: center; transition: transform .25s ease; }
nav ul a:hover::after { transform: scaleX(1); }
nav ul a.current::after { background: var(--gold); transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); color: #fff; padding: 12px 26px 12px 28px; border-radius: 999px; font-size: 0.92rem; font-weight: 700; white-space: nowrap; transition: all .3s ease; border: 1px solid rgba(255,255,255,0.14); }
.nav-cta:hover { background: linear-gradient(135deg, var(--whatsapp-dark), #148240); transform: translateY(-2px); box-shadow: 0 14px 30px -6px rgba(37,211,102,0.75); }

.header-perf { height: 12px; margin: 0 clamp(20px, 4vw, 56px); background-image: radial-gradient(circle, rgba(226,166,59,0.55) 1.5px, transparent 1.6px); background-size: 14px 100%; background-repeat: repeat-x; background-position: center; opacity: 0.8; }

.nav-toggle-checkbox { display: none; }
.nav-toggle-label { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 30px; cursor: pointer; }
.nav-toggle-label span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: all .3s ease; }
.nav-toggle-checkbox:checked ~ .nav-right .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-checkbox:checked ~ .nav-right .nav-toggle-label span:nth-child(2) { opacity: 0; }
.nav-toggle-checkbox:checked ~ .nav-right .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   4. INDEX PAGE HERO (Avatar + Glass)
   ========================================= */
.alt-hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--midnight);
  overflow: hidden;
  z-index: 1; 
}

.alt-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--midnight);
  background-image: url('https://images.unsplash.com/photo-1542224566-6e85f2e6772f?auto=format&fit=crop&w=2000&q=80');
  background-position: center center;
  background-size: cover; 
  background-repeat: no-repeat;
  z-index: -2; 
}

.alt-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 28, 51, 0.90) 0%, rgba(13, 28, 51, 0.55) 50%, rgba(13, 28, 51, 0.05) 100%);
  z-index: -1; 
}

.alt-hero { position: relative; z-index: 10; width: 100%; padding: 100px 0; }
.alt-hero .wrap { max-width: 1500px; padding: 0 5vw; }
.alt-hero-grid { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 40px; align-items: center; position: relative; }

/* Content Left */
.alt-hero-content { color: #fff; padding-right: 20px; animation: fadeInUp 1s ease 0.2s backwards; }
.alt-hero-content .eyebrow { font-family: 'Space Mono', monospace; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; padding: 0; background: transparent; border: none;}
.alt-hero-content h1 { font-size: clamp(3.2rem, 5vw, 4.8rem); line-height: 1.15; margin-bottom: 24px; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.alt-hero-content h1 em { font-style: normal; color: var(--gold); }
.alt-hero-content p { font-size: clamp(1.05rem, 2vw, 1.15rem); color: rgba(253,250,243,0.85); max-width: 580px; margin-bottom: 40px; line-height: 1.6; }

.alt-hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.btn-explore { display: inline-flex; align-items: center; gap: 12px; background: var(--gold); color: var(--midnight); padding: 8px 8px 8px 32px; border-radius: 999px; font-weight: 700; font-size: 1.05rem; transition: all 0.3s ease; box-shadow: 0 14px 30px -10px rgba(226,166,59,0.5); }
.btn-explore .icon-circle { background: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.btn-explore .icon-circle svg { width: 20px; height: 20px; color: var(--gold); }
.btn-explore:hover { transform: translateY(-3px); background: #fff; box-shadow: 0 20px 40px -10px rgba(255,255,255,0.4); }
.btn-explore:hover .icon-circle { transform: rotate(45deg); background: var(--gold); }
.btn-explore:hover .icon-circle svg { color: #fff; }

.interactive-call { display: flex; align-items: center; gap: 16px; text-decoration: none; transition: transform 0.3s ease; }
.interactive-call:hover { transform: translateY(-4px); }
.interactive-call:hover .call-icon { background: var(--gold); color: var(--midnight); box-shadow: 0 8px 16px -4px rgba(226,166,59,0.5); transform: scale(1.05); }
.call-icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(226,166,59,0.15); color: var(--gold); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(226,166,59,0.3); transition: all 0.3s ease; }
.call-icon svg { width: 24px; height: 24px; }
.call-info span { display: block; font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.call-info strong { display: block; font-size: 1.15rem; font-weight: 600; color: #fff; letter-spacing: 0.02em; }

/* Visuals Right */
.alt-hero-visuals { position: relative; height: 520px; animation: fadeInUp 1s ease 0.4s backwards; }

.model-glass-frame { position: absolute; top: 50%; right: 5%; transform: translateY(-50%); width: 60%; height: 75%; border-radius: 24px; background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05); z-index: 1; }
.hero-avatar { position: absolute; bottom: 10px; right: 0%; height: 110%; width: auto; z-index: 3; object-fit: contain; filter: drop-shadow(-10px 15px 25px rgba(0,0,0,0.5)); pointer-events: none; }

.visual-glass-card { position: absolute; top: 12%; left: 0%; background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 24px 32px 24px 24px; color: #fff; z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.3); display: flex; flex-direction: column; }
.glass-percent { font-family: 'Fraunces', serif; font-size: 3rem; line-height: 1; margin-bottom: 8px; }
.glass-text { font-family: 'Space Mono', monospace; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); }

.visual-pill { position: absolute; top: 46%; left: -8%; background: #fff; color: var(--midnight); font-family: 'Space Mono', monospace; font-size: 0.8rem; font-weight: 700; padding: 12px 22px; border-radius: 999px; display: flex; align-items: center; gap: 10px; z-index: 4; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.visual-pill svg { width: 18px; height: 18px; }

.visual-orange-card { position: absolute; bottom: 0; left: 5%; background: var(--gold); color: var(--midnight); padding: 24px 20px; border-radius: 20px; width: 220px; z-index: 4; box-shadow: 0 20px 40px rgba(226,166,59,0.3); }
.vo-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.vo-icon svg { width: 22px; height: 22px; color: var(--midnight); }
.visual-orange-card h4 { font-family: 'Fraunces', serif; font-size: 1.15rem; margin-bottom: 6px; line-height: 1.2; }
.visual-orange-card p { font-size: 0.8rem; opacity: 0.8; line-height: 1.5; }

/* Desktop Sidebar */
.alt-sidebar { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 60px; z-index: 5; animation: fadeInUp 1s ease 0.6s backwards; }
.social-col { display: flex; flex-direction: column; gap: 16px; }
.social-col a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.social-col a:hover { background: var(--gold); color: var(--midnight); border-color: var(--gold); transform: scale(1.1); }
.social-col svg { width: 16px; height: 16px; fill: currentColor; }
.theme-toggle { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.theme-toggle:hover { background: rgba(255,255,255,0.2); transform: rotate(45deg); }
.theme-toggle svg { width: 22px; height: 22px; }

/* Floating Animations */
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes floatDiagonal { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-6px, -8px); } }
@media (prefers-reduced-motion: no-preference) {
  .float-anim-1 { animation: floatUp 6s ease-in-out infinite; }
  .float-anim-2 { animation: floatDown 5s ease-in-out infinite; }
  .float-anim-3 { animation: floatDiagonal 7s ease-in-out infinite; }
  .visual-glass-card:hover, .visual-pill:hover, .visual-orange-card:hover { animation-play-state: paused; }
}

/* =========================================
   5. DESTINATIONS PAGE HERO
   ========================================= */
.page-hero { 
  position: relative; width: 100%; min-height: 70vh; 
  background: url('../images/about-background.png') center/cover no-repeat;
  color: var(--paper); padding: 140px 0; overflow: hidden; 
  display: flex; align-items: center; justify-content: center; text-align: center; 
}
.page-hero::after { content:''; position: absolute; inset: 0; background: rgba(13,28,51,0.6); z-index: 1;}
.page-hero .wrap { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 900px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

.page-hero .eyebrow { background: rgba(13,28,51,0.6); padding: 8px 24px; border-radius: 999px; backdrop-filter: blur(10px); border: 1px solid rgba(226,166,59,0.3); text-shadow: none; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 24px; text-shadow: 0 4px 20px rgba(0,0,0,0.9); }
.page-hero p.lead { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(253,250,243,0.95); margin-bottom: 40px; }

.chat-strip { display: inline-flex; align-items: center; gap: 24px; background: rgba(13, 28, 51, 0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.2); padding: 18px 30px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); text-shadow: none; }
.chat-strip .txt { font-size: 0.95rem; color: #fff; line-height: 1.4; text-align: left; }
.chat-strip .txt b { color: var(--gold); display: block; font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; }
.wa-btn-hero { display: inline-flex; align-items: center; gap: 10px; background: var(--whatsapp); color: #fff; font-weight: 600; font-size: 1rem; padding: 14px 32px; border-radius: 999px; white-space: nowrap; box-shadow: 0 12px 24px -10px rgba(37,211,102,0.6); transition: transform .2s ease, background .2s ease; text-decoration: none;}
.wa-btn-hero:hover { transform: translateY(-3px); background: var(--whatsapp-dark); }
.wa-btn-hero svg { width: 22px; height: 22px; flex-shrink: 0; fill: currentColor;}

/* Filter Bar (Destinations) */
.filter-bar { padding: 40px 0 20px; background: var(--paper); border-bottom: 1px solid rgba(0,0,0,0.04); position: sticky; top: 0; z-index: 10; }
.filter-bar .wrap { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.filter-bar .flabel { font-family: 'Space Mono', monospace; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8a8367; margin-right: 12px; font-weight: 700; }
.chip { font-size: 0.9rem; font-weight: 600; padding: 10px 22px; border-radius: 999px; border: 1px solid #d8cfb4; background: #fff; color: #5c5645; transition: all .2s ease; }
.chip.active, .chip:hover { background: var(--midnight); color: #fff; border-color: var(--midnight); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,28,51,0.1); }

/* =========================================
   6. ABOUT US SECTION (Index)
   ========================================= */
.about-us { padding: 120px 0; background: var(--paper); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visuals { position: relative; padding-left: 40px; margin-bottom: 40px; }
.experience-badge { position: absolute; left: -20px; top: 40%; transform: translateY(-50%) rotate(-90deg); display: flex; align-items: center; gap: 12px; transform-origin: left center; }
.experience-badge .years { font-family: 'Fraunces', serif; font-size: clamp(3rem, 4vw, 4.5rem); color: var(--gold); line-height: 0.8; text-shadow: 2px 2px 0px rgba(226,166,59,0.2); }
.experience-badge .exp-text { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); line-height: 1.4; }

.image-main { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); z-index: 1; aspect-ratio: 4/5; max-height: 550px; }
.image-main img { width: 100%; height: 100%; object-fit: cover; }
.image-texture { position: absolute; inset: 0; background-image: linear-gradient(rgba(18,33,59,0.05) 1px, transparent 1px); background-size: 100% 4px; pointer-events: none; }

.image-circle { position: absolute; bottom: -40px; left: -10px; width: 240px; height: 240px; border-radius: 50%; border: 12px solid var(--paper); overflow: hidden; box-shadow: 0 20px 40px -10px rgba(13,28,51,0.25); z-index: 2; }
.image-circle img { width: 100%; height: 100%; object-fit: cover; }

.about-stamp-circle { position: absolute; bottom: -30px; right: 20px; width: 80px; height: 80px; border-radius: 50%; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; z-index: 3; box-shadow: 0 10px 20px -5px rgba(238,111,86,0.5); animation: rotateStamp 15s linear infinite; }
@keyframes rotateStamp { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.about-content h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); margin-bottom: 20px; line-height: 1.15; }
.about-content h2 em { color: var(--gold); font-style: italic; font-weight: 500; }
.about-content p { font-size: 1.05rem; color: #5c5645; margin-bottom: 32px; }

.features-card { display: flex; align-items: center; gap: 24px; background: #fff; padding: 20px; border-radius: 16px; box-shadow: var(--shadow-soft); border: 1px dashed #e4ddc9; margin-bottom: 40px; position: relative; }
.features-card::before, .features-card::after { content: ''; position: absolute; top: 50%; width: 20px; height: 20px; background: var(--paper); border-radius: 50%; transform: translateY(-50%); border: 1px dashed #e4ddc9; }
.features-card::before { left: -10px; border-left-color: transparent; border-top-color: transparent; border-bottom-color: transparent;}
.features-card::after { right: -10px; border-right-color: transparent; border-top-color: transparent; border-bottom-color: transparent;}

.features-img { width: 160px; height: 120px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.features-img img { width: 100%; height: 100%; object-fit: cover; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.features-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.features-list svg { width: 16px; height: 16px; color: var(--coral); flex-shrink: 0; }

.about-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.about-actions .btn-primary { background: var(--gold); color: var(--midnight); box-shadow: 0 14px 30px -10px rgba(226,166,59,0.6); }
.about-actions .btn-primary:hover { background: var(--midnight); color: #fff; box-shadow: 0 14px 30px -10px rgba(13,28,51,0.6); }

.about-contact { display: flex; align-items: center; gap: 14px; }
.contact-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(238,111,86,0.1); color: var(--coral); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; }
.contact-text span { display: block; font-family: 'Space Mono', monospace; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: #8a8367; margin-bottom: 2px; }
.contact-text strong { display: block; font-size: 1.15rem; font-weight: 700; color: var(--ink); }

/* =========================================
   7. STATS CAROUSEL SECTION (Index)
   ========================================= */
.stats-carousel-section { padding: 0 0 120px; background: var(--paper); }
.stats-carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 20px 0 40px; }
.stats-carousel::-webkit-scrollbar { display: none; }

.stat-card { flex: 1 0 22%; min-width: 240px; background: #fff; border-radius: 20px; padding: 44px 24px; text-align: center; box-shadow: var(--shadow-soft); border: 1px solid #e4ddc9; scroll-snap-align: center; transition: transform 0.4s ease, box-shadow 0.3s ease; position: relative; }
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.stat-number { display: block; font-family: 'Fraunces', serif; font-size: 3.5rem; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.stat-card.highlight .stat-number { color: var(--gold); }
.stat-label { display: block; font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700; color: #5c5645; text-transform: uppercase; letter-spacing: 0.1em; }
.stat-card::after { content: ''; position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 40px; height: 2px; background: rgba(18,33,59,0.1); border-radius: 2px; }
.stat-card.highlight::after { background: rgba(226,166,59,0.3); }

/* =========================================
   8. PROMOTIONS SECTION (Index)
   ========================================= */
.promotions-section { 
  position: relative; padding: 100px 0; 
  background-color: var(--midnight);
  background-image: url('https://images.unsplash.com/photo-1454496522488-7a8e488e8606?auto=format&fit=crop&w=2000&q=80');
  background-position: center; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; overflow: hidden; 
}
.promo-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,28,51,0.85) 0%, rgba(7,15,28,0.95) 100%); z-index: 1; }
.promotions-section .wrap { position: relative; z-index: 2; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.promo-card { display: flex; justify-content: space-between; background: rgba(21, 42, 77, 0.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 20px; padding: 24px; position: relative; overflow: hidden; box-shadow: 0 24px 50px -12px rgba(0,0,0,0.5); transition: transform 0.4s ease, border-color 0.3s ease; }
.promo-card:hover { transform: translateY(-8px); border-color: rgba(226,166,59,0.4); }
.promo-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 110px; height: 110px; background: rgba(255,255,255,0.04); border-top-right-radius: 110px; pointer-events: none; }

.promo-content { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; padding-right: 16px; }
.promo-content h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); color: #fff; line-height: 1.3; margin-bottom: 8px; }
.promo-content h3 span { color: var(--gold); }
.promo-content p { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: rgba(253,250,243,0.7); text-transform: uppercase; }
.promo-icon { margin-top: auto; color: var(--gold); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.promo-icon svg { width: 24px; height: 24px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5)); }

.promo-image-box { position: relative; width: 42%; flex-shrink: 0; border-radius: 12px; overflow: hidden; z-index: 1; aspect-ratio: 4/5; box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
.promo-image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.promo-card:hover .promo-image-box img { transform: scale(1.1); }

.promo-btn { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--midnight); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.4); transition: all 0.3s ease; z-index: 2; }
.promo-btn:hover { background: #fff; transform: scale(1.1); }

/* =========================================
   9. HOW IT WORKS SECTION (Index)
   ========================================= */
.how-it-works { padding: 120px 0; background: var(--paper); }
.hiw-header { text-align: center; margin-bottom: 70px; }
.hiw-header .eyebrow { justify-content: center; }
.hiw-header h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); color: var(--ink); margin-bottom: 16px; }
.hiw-header h2 em { color: var(--gold); font-style: normal; }
.hiw-header p { max-width: 650px; margin: 0 auto; color: #5c5645; font-size: 1.05rem; }

.hiw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hiw-visual { position: relative; padding-bottom: 30px; padding-right: 30px; }
.hiw-img-wrap { border-radius: 24px; overflow: hidden; height: 480px; box-shadow: var(--shadow-soft); }
.hiw-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.hiw-visual:hover .hiw-img-wrap img { transform: scale(1.05); }

.hiw-overlay-card { position: absolute; bottom: 0; right: 0; background: var(--paper); padding: 32px; border-radius: 24px; width: 85%; max-width: 320px; box-shadow: -10px -10px 30px rgba(13,28,51,0.04), 10px 10px 30px rgba(13,28,51,0.1); border: 1px solid rgba(226,166,59,0.15); z-index: 2; }
.hiw-overlay-card h4 { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--ink); margin-bottom: 12px; }
.hiw-overlay-card p { font-size: 0.9rem; color: #5c5645; margin-bottom: 24px; }
.hiw-btn { background: var(--gold); color: var(--midnight); padding: 12px 24px; width: 100%; display: flex; justify-content: center; align-items: center; gap: 8px; box-shadow: 0 10px 20px -8px rgba(226,166,59,0.5); border-radius: 999px; font-weight: 700; text-decoration: none;}
.hiw-btn:hover { background: var(--coral); color: #fff; box-shadow: 0 14px 24px -8px rgba(238,111,86,0.6); }
.hiw-btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.hiw-btn:hover svg { transform: translate(3px, -3px); }

.hiw-steps { display: flex; flex-direction: column; gap: 20px; }
.step-item { display: flex; align-items: center; gap: 24px; background: rgba(226,166,59,0.06); padding: 24px 32px 24px 24px; border-radius: 100px; border: 1px solid rgba(226,166,59,0.15); transition: all 0.3s ease; }
.step-item:hover { transform: translateX(12px); background: rgba(226,166,59,0.12); box-shadow: 0 12px 24px -10px rgba(226,166,59,0.25); }
.step-num { width: 64px; height: 64px; flex-shrink: 0; background: var(--ink); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-size: 1.5rem; font-weight: 700; border-radius: 50%; }
.step-text h4 { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--ink); margin-bottom: 6px; }
.step-text p { font-size: 0.92rem; color: #5c5645; }
.step-icon { width: 56px; height: 56px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 2px dashed var(--gold); border-radius: 50%; color: var(--gold); background: #fff; }
.step-icon svg { width: 24px; height: 24px; }

/* =========================================
   10. PACKAGES & DESTINATIONS GRIDS
   ========================================= */
.packages { padding: 120px 0; background: var(--paper); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* Styles from index.html (Ticket Style) */
.ticket-wrapper { position: relative; border-radius: 18px; padding: 3px; background: #e4ddc9; box-shadow: var(--shadow-soft); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ticket-wrapper:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.wrap-bali { background: var(--grad-bali); }
.wrap-santorini { background: var(--grad-santorini); }
.wrap-kyoto { background: var(--grad-kyoto); }
.wrap-peru { background: var(--grad-peru); }
.wrap-morocco { background: var(--grad-morocco); }
.wrap-norway { background: var(--grad-norway); }

.ticket { background: #fff; border-radius: 15px; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.ticket-head { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; background: var(--midnight); color: rgba(253,250,243,0.85); font-family: 'Space Mono', monospace; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; }
.ticket-head .stub-no { color: var(--gold); font-weight: 700; }

.ticket-photo { height: 190px; position: relative; overflow: hidden; }
.ticket-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ticket-wrapper:hover .ticket-photo img { transform: scale(1.08); }

.photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,28,51,0.85) 0%, rgba(13,28,51,0.2) 60%, transparent 100%); }
.ticket-photo .badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); color: #fff; font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.3); }
.ticket-photo .code { position: absolute; bottom: 12px; right: 20px; z-index: 2; font-family: 'Fraunces', serif; font-size: 2.6rem; color: rgba(255,255,255,0.95); text-shadow: 0 4px 15px rgba(0,0,0,0.5); }

.ticket-body { padding: 24px 24px 14px; flex: 1; }
.ticket-body h3 { font-size: 1.35rem; margin-bottom: 6px; color: var(--ink); }
.ticket-body .place { font-size: 0.9rem; font-weight: 500; color: #8a8367; margin-bottom: 14px; }
.ticket-body p { font-size: 0.95rem; color: #5c5645; line-height: 1.5; }

.ticket-perf { border-top: 2px dashed #e4ddc9; margin: 10px 24px 0; position: relative; }
.ticket-perf::before, .ticket-perf::after { content: ''; position: absolute; top: -10px; width: 20px; height: 20px; border-radius: 50%; background: var(--paper); box-shadow: inset 0 0 0 4px var(--paper); z-index: 10; }
.ticket-perf::before { left: -36px; }
.ticket-perf::after { right: -36px; }

.ticket-foot { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px 4px; }
.ticket-foot .price { font-family: 'Fraunces', serif; font-size: 1.45rem; color: var(--ink); }
.ticket-foot .price span { font-family: 'Work Sans', sans-serif; font-size: 0.75rem; color: #8a8367; display: block; font-weight: 500; text-transform: uppercase; margin-top: 2px;}
.ticket-barcode { height: 22px; margin: 16px 24px 0; background: repeating-linear-gradient(to right, #d9d2ba 0 2px, transparent 2px 4px, #d9d2ba 4px 5px, transparent 5px 9px, #d9d2ba 9px 11px, transparent 11px 15px); opacity: 0.9; }

.ticket-wa { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 16px 24px 24px; background: rgba(37,211,102,0.1); color: var(--whatsapp-dark); font-weight: 700; font-size: 0.95rem; padding: 14px 0; border-radius: 12px; transition: all .2s ease; border: 1px solid rgba(37,211,102,0.3); text-decoration: none; }
.ticket-wrapper:hover .ticket-wa { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }
.ticket-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(37,211,102,0.5); }
.ticket-wa svg { width: 20px; height: 20px; flex-shrink: 0; fill: currentColor; }

/* Styles from Destinations.html */
.destinations { padding: 30px 0 60px; background: var(--paper); }
.destinations.last { padding-bottom: 40px; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.dest-wrapper { position: relative; border-radius: 24px; padding: 4px; box-shadow: var(--shadow-soft); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.dest-wrapper:hover { transform: translateY(-12px); box-shadow: var(--shadow-hover); }

.wrap-asia { background: var(--grad-asia); } .wrap-europe { background: var(--grad-europe); } .wrap-africa { background: var(--grad-africa); } .wrap-americas { background: var(--grad-americas); } .wrap-nordic { background: var(--grad-nordic); } .wrap-islands { background: var(--grad-islands); } .wrap-culture { background: var(--grad-culture); }

.dest-card { background: #fff; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; height: 100%; color: #fff; }
.dest-photo { height: 260px; position: relative; overflow: hidden; }
.dest-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-wrapper:hover .dest-photo img { transform: scale(1.08); }
.dest-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.8) 100%); pointer-events: none; }
.dest-photo .badge { position: absolute; top: 20px; left: 20px; z-index: 2; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); color: #fff; font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; letter-spacing: 0.05em; border: 1px solid rgba(255,255,255,0.4); }

.c-asia .dest-body { background: var(--grad-asia); } .c-europe .dest-body { background: var(--grad-europe); } .c-africa .dest-body { background: var(--grad-africa); } .c-americas .dest-body { background: var(--grad-americas); } .c-nordic .dest-body { background: var(--grad-nordic); } .c-islands .dest-body { background: var(--grad-islands); } .c-culture .dest-body { background: var(--grad-culture); }

.dest-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.dest-body h3 { font-family: 'Fraunces', serif; font-size: 1.8rem; margin-bottom: 8px; line-height: 1.1; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.dest-body .country { font-family: 'Space Mono', monospace; font-size: 0.8rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.dest-body p { font-size: 0.95rem; opacity: 0.9; line-height: 1.6; margin-bottom: 24px; flex: 1; }

.btn-wa-card { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: var(--whatsapp-dark); padding: 12px 20px; border-radius: 12px; font-weight: 700; font-size: 0.95rem; transition: all .2s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.1); width: 100%; text-decoration: none; }
.btn-wa-card:hover { background: var(--whatsapp); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn-wa-card svg { width: 18px; height: 18px; fill: currentColor; }

/* =========================================
   11. HOLIDAY TYPES (Destinations)
   ========================================= */
.holiday-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.holiday-card { background: #fff; border-radius: 20px; padding: 32px 24px; text-align: center; box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; border-top: 4px solid var(--gold); }
.holiday-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.holiday-icon { font-size: 2.2rem; margin-bottom: 16px; }
.holiday-card h4 { font-family: 'Fraunces', serif; font-size: 1.25rem; margin-bottom: 10px; }
.holiday-card p { font-size: 0.9rem; color: #6b6455; margin-bottom: 18px; line-height: 1.5; }
.holiday-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.9rem; color: var(--coral); transition: gap .2s ease; }
.holiday-link:hover { gap: 10px; }
.holiday-asia { border-top-color: #4caf50; } .holiday-europe { border-top-color: #42a5f5; } .holiday-africa { border-top-color: #ffca28; } .holiday-americas { border-top-color: #8d6e63; } .holiday-nordic { border-top-color: #26c6da; } .holiday-islands { border-top-color: #29b6f6; } .holiday-culture { border-top-color: #ff7043; }

/* =========================================
   12. WHY US / FINE PRINT (Index)
   ========================================= */
.why { background: var(--paper-dim); padding: 120px 0; position: relative; }
.why .wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: center; }
.why p.sub { font-size: 1.1rem; color: #5c5645; margin-bottom: 30px; }

.passport-page { background: #fbf7ea; border-radius: 12px; border: 1px solid #e4ddc9; box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255,255,255,0.5); padding: 44px; position: relative; background-image: linear-gradient(rgba(18,33,59,0.035) 1px, transparent 1px); background-size: 100% 32px; }
.passport-page::before { content: 'PAGE 07 · TERMS OF TRAVEL'; position: absolute; top: 18px; right: 24px; font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.14em; color: #b6ac8c; text-transform: uppercase; }

.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; }
.why-item { position: relative; padding-left: 2px; }
.why-item .stamp { width: 64px; height: 64px; border-radius: 50%; border: 2px dashed currentColor; display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-size: 0.62rem; font-weight: 700; text-align: center; margin-bottom: 16px; transform: rotate(-8deg); }
.why-item:nth-child(1) .stamp { color: #4caf50; }
.why-item:nth-child(2) .stamp { color: #2196f3; transform: rotate(6deg); }
.why-item:nth-child(3) .stamp { color: var(--coral); transform: rotate(-5deg); }
.why-item:nth-child(4) .stamp { color: var(--gold); transform: rotate(7deg); }
.why-item h4 { font-family: 'Fraunces', serif; font-size: 1.25rem; margin-bottom: 8px; color: var(--ink); }
.why-item p { font-size: 0.93rem; color: #5c5645; }
.why-item:not(:nth-child(2)):not(:nth-child(4)) { border-right: 1px dashed #d9d2ba; padding-right: 24px; }

/* =========================================
   13. TESTIMONIALS (Index)
   ========================================= */
.testimonial { padding: 100px 0; background: var(--paper); }
.t-inner { max-width: 820px; margin: 0 auto; background: linear-gradient(135deg, #152a4d, #0d1c33); border-radius: 18px; padding: 52px 48px 44px; box-shadow: var(--shadow-soft); position: relative; color: #fff; border: 1px solid rgba(226,166,59,0.25); }
.t-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px dashed rgba(255,255,255,0.2); }
.t-head .t-title { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.t-head .t-title span { display: block; font-family: 'Work Sans', sans-serif; font-size: 0.78rem; text-transform: none; color: rgba(253,250,243,0.55); margin-top: 6px; }
.t-stamp { width: 70px; height: 70px; border-radius: 50%; border: 2px solid var(--coral); color: var(--coral); display: flex; align-items: center; justify-content: center; text-align: center; font-family: 'Space Mono', monospace; font-size: 0.62rem; font-weight: 700; transform: rotate(10deg); flex-shrink: 0; }
.t-inner .quote { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; font-size: clamp(1.35rem, 2.2vw, 1.7rem); line-height: 1.5; position: relative; z-index: 2; }
.t-inner .who { margin-top: 32px; padding-top: 20px; border-top: 1px dashed rgba(255,255,255,0.2); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-family: 'Space Mono', monospace; font-size: 0.85rem; color: var(--gold); text-transform: uppercase; }
.t-inner .who .route { color: rgba(253,250,243,0.55); font-size: 0.75rem; }

/* =========================================
   14. BLOG (Index)
   ========================================= */
.blog { padding: 120px 0; background: var(--paper-dim); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.postcard { background: #fff; border-radius: 12px; box-shadow: var(--shadow-soft); transition: transform .3s ease; position: relative; border: 6px solid transparent; background-clip: padding-box; }
.postcard::before { content: ''; position: absolute; top: -6px; right: -6px; bottom: -6px; left: -6px; z-index: -1; border-radius: 16px; background: repeating-linear-gradient(-45deg, #d32f2f, #d32f2f 15px, #fff 15px, #fff 30px, #1976d2 30px, #1976d2 45px, #fff 45px, #fff 60px); }
.postcard:hover { transform: translateY(-8px) rotate(1deg); box-shadow: var(--shadow-hover); }

.postcard-img { height: 180px; position: relative; border-radius: 8px 8px 0 0; overflow: hidden; }
.postcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.postcard:hover .postcard-img img { transform: scale(1.05); }
.postmark { position: absolute; top: 16px; right: 16px; width: 60px; height: 60px; border-radius: 50%; border: 2px dashed rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; text-align: center; font-family: 'Space Mono', monospace; font-size: 0.6rem; font-weight: 700; color: #fff; transform: rotate(12deg); background: rgba(0,0,0,0.15); backdrop-filter: blur(4px); }

.postcard-body { padding: 28px 24px; }
.postcard-body .meta { font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700; color: var(--coral); display: flex; gap: 12px; align-items: center; margin-bottom: 12px;}
.postcard-body .meta::after { content: ''; flex: 1; height: 1px; background: #e4ddc9; }
.postcard-body h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--ink); }
.postcard-body p { font-size: 0.95rem; color: #5c5645; margin-bottom: 20px; }
.postcard-body .read { font-size: 0.9rem; font-weight: 600; color: var(--night); display: inline-flex; align-items: center; gap: 8px; background: var(--paper-dim); padding: 8px 16px; border-radius: 6px; transition: background .2s; }
.postcard-body .read:hover { background: #e4ddc9; }
.postcard-body .read::after { content: '\2192'; transition: transform .2s ease; }
.postcard:hover .read::after { transform: translateX(4px); }

/* =========================================
   15. FAQ & CTA (Shared)
   ========================================= */
.faq { background: var(--paper); padding: 120px 0; }
.faq-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.faq-list { display: flex; flex-direction: column; background: #fff; border-radius: 16px; box-shadow: var(--shadow-soft); border: 1px solid #e4ddc9; overflow: hidden; }
.faq-item { padding: 22px 26px; border-bottom: 1px dashed #e4ddc9; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: flex-start; gap: 16px; font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .field-no { flex-shrink: 0; font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700; color: var(--coral); padding-top: 4px; }
.faq-item summary .q-text { flex: 1; }
.faq-item summary .icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid #d9d2ba; display: flex; align-items: center; justify-content: center; transition: transform .3s ease; }
.faq-item[open] summary .icon { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.faq-item p { margin-top: 14px; padding-left: 36px; font-size: 0.98rem; color: #5c5645; }

/* The CTA base uses the dark style from Index.html */
.cta { padding: 40px 32px 120px; background: var(--paper); }
.cta-card { max-width: 1000px; margin: 0 auto; background: var(--deep-space); border-radius: 20px; padding: 64px 48px; text-align: center; color: #fff; box-shadow: 0 24px 50px -12px rgba(7,15,28,0.5); border: 1px solid rgba(226,166,59,0.2); position: relative; overflow: hidden; }
.cta-card::before { content: 'NEXT DEPARTURE · NEXT DEPARTURE · NEXT DEPARTURE · '; position: absolute; top: 0; left: 0; right: 0; font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.2em; color: var(--midnight); background: var(--gold); padding: 8px 0; white-space: nowrap; }
.cta-card .board-label { font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 28px; margin-bottom: 18px; display: block; }
.cta-card h2 { font-size: clamp(2.1rem, 3.8vw, 3rem); margin-bottom: 18px; }
.cta-card p { max-width: 500px; margin: 0 auto 36px; font-size: 1.08rem; color: rgba(253,250,243,0.75); }

/* =========================================
   16. FOOTER & FLOATING WA BUTTON
   ========================================= */
footer { position: relative; background: linear-gradient(to bottom, var(--deep-space), #040912); color: rgba(253,250,243,0.7); padding: 80px 0 40px; margin-top: 40px; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 26px; transform: translateY(-13px); background-image: radial-gradient(circle at center, var(--paper) 12px, transparent 12.5px); background-size: 28px 26px; background-repeat: repeat-x; z-index: 2; }
.foot-watermark { position: absolute; left: 50%; bottom: -6.5vw; transform: translateX(-50%); font-family: 'Fraunces', serif; font-weight: 700; font-style: italic; font-size: 15vw; line-height: 1; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(226,166,59,0.09); pointer-events: none; z-index: 0; user-select: none; }

.foot-newsletter { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; background: linear-gradient(120deg, rgba(226,166,59,0.12), rgba(238,111,86,0.06)); border: 1px solid rgba(226,166,59,0.25); box-shadow: 0 12px 40px -10px rgba(226,166,59,0.15); border-radius: 20px; padding: 32px 40px; margin-bottom: 56px; flex-wrap: wrap; }
.foot-newsletter-copy .eyebrow-label { color: var(--gold); margin-bottom: 8px; display: block; }
.foot-newsletter-copy h4 { font-family: 'Fraunces', serif; font-size: 1.4rem; color: #fff; font-weight: 600; }
.foot-newsletter-copy p { font-size: 0.92rem; color: rgba(253,250,243,0.6); margin-top: 6px; max-width: 360px; }
.foot-newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; max-width: 420px; }
.foot-newsletter-form input { flex: 1; min-width: 200px; background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 14px 20px; color: #fff; font-family: 'Work Sans', sans-serif; transition: all 0.3s ease; }
.foot-newsletter-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(226,166,59,0.2); }
.foot-newsletter-form button { background: var(--gold); color: var(--midnight); border: none; border-radius: 12px; padding: 14px 28px; font-weight: 700; font-family: 'Work Sans', sans-serif; cursor: pointer; transition: all .3s ease; }
.foot-newsletter-form button:hover { background: #fff; transform: translateY(-3px) scale(1.02); }

.foot-trust { position: relative; z-index: 1; display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.foot-trust-item { display: flex; align-items: center; gap: 12px; }
.foot-trust-item .icon-badge { width: 38px; height: 38px; border-radius: 50%; background: rgba(226,166,59,0.12); border: 1px solid rgba(226,166,59,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.foot-trust-item strong { display: block; font-size: 0.88rem; color: #fff; }
.foot-trust-item span { font-size: 0.78rem; color: rgba(253,250,243,0.5); }

.foot-stamp-row { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; margin-bottom: 32px; font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(253,250,243,0.4); }
.foot-stamp-row .line { flex: 1; height: 1px; background: repeating-linear-gradient(to right, rgba(226,166,59,0.5) 0 6px, transparent 6px 12px); }
.foot-stamp-row .badge { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; border: 2px dashed var(--gold); color: var(--gold); font-weight: 700; transform: rotate(-8deg); }

.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.foot-brand p { max-width: 320px; font-size: 1rem; line-height: 1.6; margin-bottom: 32px; color: rgba(253,250,243,0.8); }

.foot-social { display: flex; gap: 12px; }
.foot-social a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.1); transition: all .25s ease; }
.foot-social a:hover { transform: translateY(-3px) scale(1.05); border-color: transparent; }
.foot-social a.instagram:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.foot-social a.facebook:hover { background: #1877F2; }
.foot-social a.x:hover { background: #000; }
.foot-social a.youtube:hover { background: #FF0000; }
/* SVG FIX */
.foot-social svg { width: 16px; height: 16px; fill: currentColor; }

.foot-col { background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px 24px 24px; position: relative; transition: transform 0.4s ease; }
.foot-col:nth-of-type(1) { border-top: 3px solid #4caf50; }
.foot-col:nth-of-type(2) { border-top: 3px solid #2196f3; }
.foot-col:nth-of-type(3) { border-top: 3px solid var(--coral); }
.foot-col:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.15); }
.foot-col h5 { font-family: 'Space Mono', monospace; font-size: 0.78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.foot-col a { font-size: 0.95rem; opacity: 0.72; transition: all .2s ease; }
.foot-col a:hover { opacity: 1; color: #fff; transform: translateX(2px); }

.foot-bottom { margin-top: 12px; padding-top: 24px; position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; font-family: 'Space Mono', monospace; border-top: 2px dashed rgba(255,255,255,0.15); }

.wa-float { position: fixed; bottom: 30px; right: 30px; z-index: 60; width: 64px; height: 64px; border-radius: 50%; background: var(--whatsapp); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -10px rgba(37,211,102,0.65); transition: transform .2s ease; }
.wa-float:hover { transform: scale(1.08); background: var(--whatsapp-dark); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; position: relative; z-index: 2;}
.wa-float .ping { position: absolute; inset: 0; border-radius: 50%; background: var(--whatsapp); opacity: 0.6; animation: ping 2.2s cubic-bezier(0,0,0.2,1) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(1.9); opacity: 0; } }

/* =========================================
   17. CONSOLIDATED MEDIA QUERIES
   ========================================= */

@media (max-width: 1180px) {
  nav ul a { padding: 10px 13px; }
  .alt-sidebar { display: none; }
  .hero-avatar { right: -5%; }
  .model-glass-frame { right: 0; width: 65%; }
}

@media (max-width: 1024px) {
  /* Grids */
  .pkg-grid, .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .holiday-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: span 2; padding-right: 0; }
  
  /* About Us */
  .about-grid { gap: 40px; }
  .image-circle { width: 180px; height: 180px; left: -20px; bottom: -20px; border-width: 8px; }
  .features-card { flex-direction: column; align-items: flex-start; }
  .features-img { width: 100%; height: 160px; }

  /* Stats & Promos */
  .stat-card { flex: 0 0 40%; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-card:last-child { grid-column: span 2; width: 50%; margin: 0 auto; }
  
  /* How It Works */
  .step-item { padding: 20px; border-radius: 32px; gap: 16px; }
  .hiw-visual { padding-bottom: 40px; padding-right: 0; }
  .hiw-overlay-card { right: 50%; transform: translateX(50%); width: 90%; bottom: -20px; }
}

@media (max-width: 940px) {
  .nav-cta { padding: 12px; border-radius: 50%; }
  .nav-cta .cta-text { display: none; }
  .nav-cta svg { width: 20px; height: 20px; }

  /* Index Hero */
  .alt-hero-bg::after { background: linear-gradient(to bottom, rgba(7, 15, 28, 0.95) 0%, rgba(13, 28, 51, 0.8) 50%, rgba(13, 28, 51, 0.4) 100%); }
  .alt-hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .alt-hero-content { text-align: left; padding-right: 0; }
  .alt-hero-visuals { height: 500px; max-width: 600px; margin: 0 auto; width: 100%; }
  .hero-avatar { right: 5%; height: 100%; bottom: 0; }
  .model-glass-frame { right: 10%; width: 60%; height: 80%; }
  
  /* About Us & HIW */
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-visuals { max-width: 600px; margin: 0 auto; padding-left: 0; }
  .experience-badge { top: -20px; left: 20px; transform: none; background: var(--paper); padding: 10px 20px; border-radius: 12px; z-index: 4; }
  .features-card { flex-direction: row; align-items: center; }
  .features-img { width: 160px; height: 120px; }

  .hiw-grid { grid-template-columns: 1fr; gap: 60px; }
  .hiw-img-wrap { height: 400px; }
  .hiw-overlay-card { right: 20px; transform: none; width: auto; bottom: -30px; }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .top-bar-wrapper { display: none; }
  .nav-toggle-label { display: flex; }
  
  nav {
    position: fixed; top: auto; bottom: 0; left: 0; right: 0;
    background: rgba(13, 28, 51, 0.98); backdrop-filter: blur(24px); border-radius: 24px 24px 0 0;
    transform: translateY(100%); opacity: 0; visibility: hidden;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -15px 40px rgba(0,0,0,0.7); overflow-y: auto; z-index: 55;
  }
  .nav-toggle-checkbox:checked ~ nav { transform: translateY(0); opacity: 1; visibility: visible; max-height: 85vh; padding: 24px 16px 40px; }
  .nav-toggle-checkbox:checked ~ .nav-backdrop { opacity: 1; pointer-events: auto; }
  .nav-backdrop { position: fixed; inset: 0; top: 0; background: rgba(7,15,28,0.55); opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 40; }
  nav ul { flex-direction: column; gap: 0; padding: 8px; }
  nav ul li { width: 100%; }
  nav ul li:not(:first-child) { border-top: 1px solid rgba(255,255,255,0.06); }
  nav ul a { flex-direction: row; justify-content: space-between; padding: 14px 16px; }
  nav ul a::after { display: none; }

  /* Mobile Carousels */
  .pkg-grid, .dest-grid, .holiday-grid, .blog-grid, .promo-grid, .stats-carousel { 
    display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; 
    gap: 16px; padding-bottom: 20px; scrollbar-width: none; max-width: 100%; margin: 0;
  }
  .pkg-grid::-webkit-scrollbar, .dest-grid::-webkit-scrollbar, .holiday-grid::-webkit-scrollbar, .blog-grid::-webkit-scrollbar, .promo-grid::-webkit-scrollbar, .stats-carousel::-webkit-scrollbar { display: none; }
  
  .ticket-wrapper, .dest-wrapper, .postcard, .promo-card, .promo-card:last-child { flex: 0 0 85%; max-width: 340px; scroll-snap-align: center; margin: 0; }
  .holiday-card { flex: 0 0 80%; max-width: 300px; scroll-snap-align: center; }
  
  /* Destinations specific Hero & Layouts */
  .page-hero { padding: 80px 0 60px; min-height: 40vh; } 
  .chat-strip { flex-direction: column; align-items: center; text-align: center; } 
  .chat-strip .txt { text-align: center; } 
  .dest-photo { height: 200px; }
  .dest-body { padding: 20px 16px; }
  .dest-body h3 { font-size: 1.5rem; }
  
  /* General mobile adjustments */
  .about-us { padding: 80px 0; }
  .image-circle { width: 140px; height: 140px; left: -10px; }
  .about-stamp-circle { width: 60px; height: 60px; font-size: 0.6rem; bottom: -15px; }

  .stats-carousel-section { padding: 0 0 80px; }
  .stat-card { flex: 0 0 70%; padding: 36px 20px; }
  .stat-number { font-size: 3rem; }

  .why .wrap { grid-template-columns: 1fr; }
  .passport-page { padding: 56px 16px 24px; }
  .passport-page::before { top: 20px; right: 16px; font-size: 0.5rem; }
  .why-list { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .why-item { border-right: none !important; padding-right: 0 !important; }
  
  .faq-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-brand { grid-column: span 1; }
  .foot-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .foot-newsletter { flex-direction: column; align-items: stretch; text-align: center; padding: 24px; }
  .logo-tagline { display: block; font-size: 0.55rem; letter-spacing: 0.15em; white-space: nowrap; }
}

@media (max-width: 600px) {
  /* Index Hero Adjustments */
  .alt-hero-visuals { height: 450px; }
  .hero-avatar { right: -10%; height: 100%; }
  .model-glass-frame { right: 0; width: 70%; height: 85%; top: 45%; }
  .visual-glass-card { left: -5%; top: 5%; padding: 20px; }
  .glass-percent { font-size: 2.5rem; }
  .visual-pill { left: -10%; top: 38%; padding: 10px 16px; font-size: 0.75rem; }
  .visual-orange-card { left: 0; bottom: -5%; width: 220px; padding: 20px; }
  
  .alt-hero-actions { flex-direction: column; align-items: flex-start; gap: 24px; }
  .btn-explore { width: 100%; justify-content: space-between; }
  
  .step-item { flex-direction: column; align-items: flex-start; border-radius: 24px; padding-top: 40px; }
  .step-num { position: absolute; top: -20px; left: 20px; width: 50px; height: 50px; font-size: 1.2rem; }
  .step-icon { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  
  /* Index Small Mobile */
  .experience-badge .years { font-size: 2.5rem; }
  .experience-badge .exp-text { font-size: 0.65rem; }
  .image-main { max-height: 400px; }
  .features-card { flex-direction: column; padding: 20px 16px; }
  .features-img { width: 100%; height: 140px; }
  .about-actions { flex-direction: column; align-items: flex-start; gap: 24px; }

  .stat-card { flex: 0 0 85%; }
  .promo-card { padding: 16px; border-radius: 16px; }
  .promo-image-box { width: 48%; }
  .promo-btn { width: 34px; height: 34px; top: 8px; right: 8px; }

  .how-it-works { padding: 80px 0; }
  .hiw-img-wrap { height: 320px; }
  .hiw-overlay-card { right: 10px; left: 10px; width: auto; max-width: none; padding: 24px; }

  /* Destinations Small Mobile */
  .page-hero { min-height: 30svh; padding: 50px 0 20px; background-size: 100% 100%; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); margin-bottom: 6px; line-height: 1.1; }
  .page-hero p.lead { font-size: 0.8rem; margin-bottom: 15px; line-height: 1.3; }
  .eyebrow { font-size: 0.55rem; padding: 4px 12px; margin-bottom: 12px; }
  .chat-strip { padding: 10px 14px; border-radius: 10px; gap: 10px; width: 100%; }
  .chat-strip .txt { font-size: 0.7rem; text-align: center; }
  .chat-strip .txt b { font-size: 0.85rem; margin-bottom: 2px; }
  .wa-btn-hero { width: 50%; justify-content: center; padding: 8px 12px; font-size: 0.8rem; }

  /* Shared Small Mobile */
  .section-head { margin-bottom: 36px; }
  .packages, .why, .blog, .faq { padding: 72px 0; }
  .cta { padding: 24px 20px 72px; }
  .cta-card { padding: 44px 20px; }
  .logo { font-size: 1.1rem; gap: 8px; }
  .logo-img { width: 34px; height: 34px; }
  .logo-tagline { display: block; font-size: 0.45rem; letter-spacing: 0.05em; white-space: nowrap; } 
  .foot-newsletter-form { flex-direction: column; } 
  .foot-newsletter-form button { width: 100%; } 
}
