@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Syne:wght@400;500;700;800&family=DM+Sans:wght@300;400;500;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Primary Colors */
  --deep-blue: #003DA5;
  --deep-blue-dark: #002D7F;
  --deep-blue-light: #1A5FD6;
  
  /* Secondary Colors */
  --orange: #FF9500;
  --orange-dark: #E67E00;
  --orange-light: #FFB133;
  --yellow: #FFD700;
  
  /* Accent Colors */
  --sky-blue: #87CEEB;
  --sky-blue-dark: #4A9FBE;
  --sky-blue-light: #B0E0E6;
  
  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-light-grey: #F5F7FA;
  --bg-light-grey-2: #EFF2F7;
  
  /* Text Colors */
  --text-dark: #1A1A1A;
  --text-grey: #555555;
  --text-light-grey: #888888;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #003DA5 0%, #1A5FD6 100%);
  --grad-orange: linear-gradient(135deg, #FF9500 0%, #FFB133 100%);
  --grad-sky: linear-gradient(135deg, #4A9FBE 0%, #87CEEB 100%);
  --grad-mixed: linear-gradient(135deg, #FF9500 0%, #003DA5 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  background: var(--bg-white);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light-grey); }
::-webkit-scrollbar-thumb { background: var(--deep-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--deep-blue-dark); }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  margin-left: 20px;
  margin-right: 30px;
}

.nav-logo-img {
  height: 65px;
  width: auto;
  background: #000;
  border: none;
  padding: 0;
  display: block;
  border-radius: 6px;
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: 0.6rem; color: var(--orange);
  letter-spacing: 0.1em; display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.nav-links {
  display: flex; gap: 0.2rem; list-style: none; align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85); text-decoration: none;
  font-size: 1.05rem; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: 8px;
  transition: all 0.2s; letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active {
  color: #fff; background: rgba(255, 255, 255, 0.1);
}

.nav-book {
  background: var(--grad-orange); color: #fff !important;
  padding: 0.55rem 1.3rem !important; border-radius: 100px !important;
  font-weight: 600 !important;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3) !important;
}

.nav-book:hover { 
  opacity: 0.9 !important; 
  transform: translateY(-2px) !important; 
  box-shadow: 0 6px 25px rgba(255, 149, 0, 0.4) !important;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}

.hamburger span {
  width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: all 0.3s; display: block;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── MOBILE MENU ─── */
.mobile-nav {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  backdrop-filter: blur(20px);
}

.mobile-nav.open { display: flex; opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; color: var(--text-dark);
  text-decoration: none; transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--deep-blue); }

.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 5%;
  background: none; border: none; color: var(--text-grey);
  font-size: 1.5rem; cursor: pointer;
}

.mobile-wa {
  margin-top: 1rem; font-size: 1rem !important;
  background: var(--grad-orange);
  padding: 0.7rem 2rem; border-radius: 100px;
  color: #fff !important; font-family: 'Cormorant Garamond', serif !important;
  text-decoration: none;
  display: inline-block;
}

/* ─── NAV USER (logged-in state) ─── */
.nav-user-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  cursor: pointer; padding: 0.35rem 0.7rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  user-select: none;
}
.nav-user-wrap:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

.nav-user-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  color: #fff;
}

.nav-user-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--grad-primary);
  color: #fff; font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}

.nav-dropdown {
  display: none; position: absolute;
  top: calc(100% + 0.6rem); right: 0;
  background: #fff;
  border: 1px solid rgba(0,61,165,0.1);
  border-radius: 14px;
  padding: 0.5rem;
  min-width: 180px;
  box-shadow: 0 12px 40px rgba(0,61,165,0.12);
  z-index: 999;
}
.nav-dropdown.open { display: block; animation: dropIn 0.2s ease; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.nav-dropdown a, .logout-btn {
  display: block; width: 100%;
  padding: 0.6rem 0.9rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--text-grey); text-decoration: none;
  transition: background 0.15s, color 0.15s;
  background: none; border: none; cursor: pointer;
  text-align: left;
}
.nav-dropdown a:hover { background: var(--bg-light-grey); color: var(--deep-blue); }
.logout-btn:hover { background: rgba(220,53,69,0.07); color: #c0392b; }

/* ─── FOOTER ─── */
footer {
  background: var(--bg-light-grey-2);
  border-top: 1px solid rgba(0, 61, 165, 0.1);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.5rem;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem; color: var(--text-light-grey);
  font-style: italic; margin-bottom: 1rem;
}

.footer-desc { font-size: 0.88rem; color: var(--text-grey); line-height: 1.7; }

.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.18em;
  color: var(--deep-blue); text-transform: uppercase;
  margin-bottom: 1.2rem; font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: var(--text-grey); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--deep-blue); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.7rem; font-size: 0.88rem; color: var(--text-grey);
}

.footer-contact-item a { color: var(--text-grey); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--deep-blue); }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }

.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.social-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 3px 12px rgba(214, 36, 159, 0.3);
}

.social-instagram:hover {
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.5) !important;
}

.social-whatsapp {
  background: #25d366;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
}

.social-whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
}

.social-email {
  background: #EA4335;
  box-shadow: 0 3px 12px rgba(234, 67, 53, 0.3);
}

.social-email:hover {
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.5) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 61, 165, 0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-light-grey); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 998;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s ease-in-out infinite;
}

.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.6); }
}

/* ─── SECTION COMMONS ─── */
.section-label {
  font-size: 0.72rem; letter-spacing: 0.22em;
  color: var(--deep-blue); text-transform: uppercase;
  margin-bottom: 0.7rem; font-weight: 600;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.section-title .g {
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc { 
  color: var(--text-grey); 
  font-size: 0.95rem; 
  line-height: 1.75; 
  max-width: 520px; 
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.up { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad-orange); color: #fff;
  padding: 0.85rem 2rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: none; cursor: pointer; letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.btn-primary:hover { 
  opacity: 0.9; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 25px rgba(255, 149, 0, 0.4);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad-primary); color: #fff;
  padding: 0.85rem 2rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: none; cursor: pointer; letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 61, 165, 0.3);
}

.btn-secondary:hover { 
  opacity: 0.9; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 25px rgba(0, 61, 165, 0.4);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--deep-blue); color: var(--deep-blue);
  padding: 0.75rem 1.8rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  background: transparent; cursor: pointer;
  transition: all 0.2s;
}

.btn-ghost:hover { 
  background: var(--deep-blue); 
  color: #fff;
}

/* ─── RESPONSIVE NAV ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .navbar { padding: 0.8rem 4%; }
  .nav-logo-text { font-size: 1.1rem; }
}

/* ─── WELCOME MODAL ─── */
#welcomeModal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
}

#welcomeModal.active { opacity: 1; pointer-events: all; }
#welcomeModal.closing { opacity: 0; pointer-events: none; }

.welcome-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.welcome-modal-card {
  position: relative; z-index: 2;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 61, 165, 0.1);
  border-radius: 32px; padding: 3rem;
  max-width: 520px; width: 92%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.1), 0 0 80px rgba(0, 61, 165, 0.08);
  transform: translateY(40px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}

#welcomeModal.active .welcome-modal-card {
  transform: translateY(0) scale(1);
}

#welcomeModal.closing .welcome-modal-card {
  transform: translateY(40px) scale(0.95);
}

.welcome-modal-glow {
  position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.welcome-modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; color: var(--text-grey);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
  transition: color 0.2s; z-index: 3;
}

.welcome-modal-close:hover { color: var(--deep-blue); }

.welcome-modal-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem;
  background: var(--grad-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.2rem;
}

.welcome-modal-tagline {
  font-size: 0.72rem; color: var(--text-light-grey);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem;
}

.welcome-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 1rem;
  color: var(--text-dark);
}

.welcome-highlight {
  background: var(--grad-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.welcome-modal-desc {
  color: var(--text-grey); 
  font-size: 0.92rem; 
  line-height: 1.7;
  max-width: 400px; 
  margin: 0 auto 2rem;
}

.welcome-modal-stats {
  display: flex; justify-content: center; gap: 2.5rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}

.welcome-stat { text-align: center; }

.welcome-stat-num {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 1.5rem; display: block; line-height: 1;
  background: var(--grad-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.welcome-stat-label { 
  font-size: 0.7rem; 
  color: var(--text-light-grey); 
  margin-top: 4px; 
  display: block; 
}

.welcome-modal-btns {
  display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.welcome-btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--grad-orange); color: #fff;
  padding: 0.8rem 1.8rem; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s;
}

.welcome-btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.welcome-btn-ghost {
  border: 2px solid var(--deep-blue); color: var(--deep-blue);
  padding: 0.6rem 1.6rem; border-radius: 100px;
  font-size: 0.9rem; cursor: pointer; background: transparent;
  font-family: 'Cormorant Garamond', serif; font-weight: 600; transition: all 0.2s;
}

.welcome-btn-ghost:hover { 
  background: var(--deep-blue); 
  color: #fff;
}

.welcome-modal-progress {
  height: 3px; background: rgba(0, 61, 165, 0.1); border-radius: 3px; overflow: hidden;
}

.welcome-modal-progress-bar {
  height: 100%; width: 0; background: var(--grad-orange); border-radius: 3px;
  animation: welcomeProgress 10s linear forwards;
}

@keyframes welcomeProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* ─── HERO SECTION ─── */
.hero-section {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: linear-gradient(135deg, #f5f7fa 0%, #eff2f7 100%);
  padding-top: 80px;
}

.hero-background {
  position: absolute; inset: 0; z-index: 1;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(26, 95, 214, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 90%, rgba(135, 206, 235, 0.06) 0%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%;
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(0, 61, 165, 0.3);
  background: rgba(0, 61, 165, 0.06);
  padding: 0.6rem 1.2rem; border-radius: 100px;
  font-size: 0.78rem; color: var(--deep-blue);
  letter-spacing: 0.1em; margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-badge::before { content: '✦'; font-size: 0.6rem; margin-right: 0.3rem; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.01em;
  margin-bottom: 1rem;
  animation: fadeUp 0.7s 0.1s ease both;
  color: var(--text-dark);
}

.hero-title .word-highlight {
  display: block; font-style: italic;
  background: var(--grad-mixed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Syne', sans-serif; 
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700; 
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem; 
  min-height: 2rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-description {
  color: var(--text-grey); 
  font-size: 1.05rem; 
  line-height: 1.8;
  max-width: 580px; 
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex; justify-content: center;
  gap: 4rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.5s ease both;
  margin-top: 3rem;
}

.stat { text-align: center; }

.stat-number {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 1.8rem; line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label { 
  font-size: 0.75rem; 
  color: var(--text-light-grey); 
  letter-spacing: 0.06em; 
  margin-top: 0.5rem;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── CARD SECTIONS ─── */
.section {
  padding: 5rem 5%;
}

.section.alt-bg {
  background: var(--bg-light-grey);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 380px;
  cursor: pointer;
  border: 1px solid rgba(0, 61, 165, 0.1);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), 
              box-shadow 0.35s cubic-bezier(0.16,1,0.3,1),
              border-color 0.35s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 149, 0, 0.3);
}

.card-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-light-grey) 0%, var(--bg-light-grey-2) 100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.card:hover .card-image {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.4) 55%, transparent 100%);
  transition: background 0.3s;
}

.card:hover .card-overlay {
  background: linear-gradient(to top, rgba(0, 61, 165, 0.98) 0%, rgba(0, 61, 165, 0.5) 60%, rgba(255, 149, 0, 0.1) 100%);
}

.card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
}

.card-tag {
  display: inline-block; font-size: 0.68rem;
  background: rgba(255, 149, 0, 0.2); border: 1px solid rgba(255, 149, 0, 0.4);
  color: var(--orange); padding: 4px 12px; border-radius: 100px;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem;
  font-weight: 600;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem;
  line-height: 1.2; color: #fff;
}

.card-description { 
  font-size: 0.85rem; 
  color: rgba(255, 255, 255, 0.9); 
  line-height: 1.6; 
}

.card-arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 149, 0, 0.1); border: 1px solid rgba(255, 149, 0, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.2rem;
  transform: rotate(-45deg);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}

.card:hover .card-arrow {
  background: var(--orange); 
  color: #fff; 
  transform: rotate(0deg);
  border-color: var(--orange);
}

/* ─── TESTIMONIALS SECTION ─── */
.testimonials-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--bg-light-grey) 0%, #ffffff 100%);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 61, 165, 0.1);
  border-radius: 20px; 
  padding: 2.5rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 149, 0, 0.3);
}

.testimonial-stars { 
  color: var(--orange); 
  font-size: 0.95rem; 
  margin-bottom: 1rem; 
  letter-spacing: 2px; 
}

.testimonial-text {
  font-size: 0.95rem; 
  color: var(--text-grey); 
  line-height: 1.8;
  font-style: italic; 
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex; 
  align-items: center; 
  gap: 1rem;
}

.author-avatar {
  width: 45px; 
  height: 45px; 
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}

.author-info h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 2px;
  font-weight: 600;
}

.author-info p {
  font-size: 0.75rem;
  color: var(--text-light-grey);
}

/* ─── MEDIA QUERIES ─── */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 2rem;
  }

  .section {
    padding: 3rem 5%;
  }

  .card {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card {
    height: 280px;
  }

  .card-content {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* ─── AUTH NAVBAR STATE ─── */
.nav-user-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.3rem 0.3rem 0.3rem 0.8rem;
  border: 1px solid rgba(0, 61, 165, 0.2);
  border-radius: 100px; cursor: pointer;
  transition: all 0.25s;
  background: rgba(0, 61, 165, 0.04);
}

.nav-user-wrap:hover { 
  border-color: rgba(0, 61, 165, 0.35); 
  background: rgba(0, 61, 165, 0.08); 
}

.nav-user-name { 
  font-size: 0.82rem; 
  color: var(--text-grey); 
  font-weight: 500; 
}

.nav-user-avatar {
  width: 32px; 
  height: 32px; 
  border-radius: 50%;
  background: var(--grad-primary); 
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: 'Syne', sans-serif; 
  font-weight: 800; 
  font-size: 0.75rem; 
  color: #fff;
}

.nav-dropdown {
  position: absolute; 
  top: calc(100% + 8px); 
  right: 0;
  background: var(--bg-white); 
  border: 1px solid rgba(0, 61, 165, 0.15);
  border-radius: 16px; 
  padding: 0.5rem; 
  min-width: 180px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  opacity: 0; 
  pointer-events: none; 
  transform: translateY(-8px);
  transition: all 0.25s; 
  z-index: 1001;
}

.nav-dropdown.open { 
  opacity: 1; 
  pointer-events: all; 
  transform: translateY(0); 
}

.nav-dropdown a, .nav-dropdown button {
  display: block; 
  width: 100%; 
  text-align: left;
  padding: 0.6rem 1rem; 
  border-radius: 10px;
  font-size: 0.85rem; 
  color: var(--text-grey); 
  text-decoration: none;
  background: none; 
  border: none; 
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif; 
  transition: all 0.15s;
}

.nav-dropdown a:hover, .nav-dropdown button:hover {
  background: rgba(0, 61, 165, 0.08); 
  color: var(--deep-blue);
}

.nav-dropdown .logout-btn { color: #e8516f; }
.nav-dropdown .logout-btn:hover { background: rgba(232, 81, 111, 0.08); }

@media (max-width: 600px) {
  .welcome-modal-card { padding: 2rem 1.5rem; }
  .welcome-modal-stats { gap: 1.5rem; }
}

/* ─── DYNAMIC TRIP MODAL ─── */
.trip-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
  padding: 1rem;
}

.trip-modal-overlay.active { opacity: 1; pointer-events: all; }

.trip-modal-content {
  background: white; border-radius: 24px;
  width: 100%; max-width: 650px; max-height: 90vh;
  overflow-y: auto; position: relative;
  transform: translateY(40px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.trip-modal-overlay.active .trip-modal-content { transform: translateY(0) scale(1); }

.trip-modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: rgba(255,255,255,0.8); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; color: var(--text-dark); transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.trip-modal-close:hover { background: white; color: var(--orange); }

.trip-modal-hero {
  height: 250px; background-size: cover; background-position: center;
  position: relative; border-radius: 24px 24px 0 0;
}
.trip-modal-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.trip-modal-badges {
  position: absolute; bottom: 1.2rem; left: 1.5rem; z-index: 2;
  display: flex; gap: 0.8rem;
}
.modal-badge-type {
  background: var(--orange); color: white;
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
}
.modal-badge-dur {
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4);
  color: white; padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; backdrop-filter: blur(4px);
}

.trip-modal-body { padding: 2rem 2.5rem; }
.trip-modal-body h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 0.4rem;
}
.trip-modal-tagline { font-size: 1rem; color: var(--deep-blue); font-weight: 600; margin-bottom: 2rem; letter-spacing: 0.05em; text-transform: uppercase; }

.trip-modal-section { margin-bottom: 2rem; }
.trip-modal-section h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-dark); border-bottom: 2px solid rgba(0, 61, 165, 0.1); padding-bottom: 0.5rem; }

.trip-modal-list { list-style: none; }
.trip-modal-list li {
  position: relative; padding-left: 1.5rem;
  margin-bottom: 0.8rem; font-size: 1.05rem; color: var(--text-grey); line-height: 1.6;
}
.trip-modal-list li::before {
  content: '✓'; color: #25d366; font-weight: bold;
  position: absolute; left: 0; top: 0px;
}

.trip-modal-note {
  background: rgba(255, 149, 0, 0.1); border-left: 4px solid var(--orange);
  padding: 1rem 1.2rem; border-radius: 0 8px 8px 0; font-size: 0.95rem; color: var(--text-dark);
  margin-bottom: 2rem; line-height: 1.5;
}

.trip-modal-footer {
  border-top: 1px solid rgba(0, 61, 165, 0.1); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.trip-modal-price-label { display: block; font-size: 0.85rem; color: var(--text-light-grey); text-transform: uppercase; letter-spacing: 0.1em; }
.trip-modal-price-val { font-family: 'DM Sans', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--text-dark); }

.modal-wa-btn {
  background: #25d366 !important; border: none; border-radius: 100px;
  color: white !important; padding: 0.8rem 2rem; font-weight: 700; font-size: 1.05rem; text-decoration: none; transition: transform 0.2s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3); display: flex; align-items: center; gap: 0.5rem;
}
.modal-wa-btn::before { content: '💬'; }
.modal-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

@media (max-width: 600px) {
  .trip-modal-body { padding: 1.5rem; }
  .trip-modal-hero { height: 200px; }
  .trip-modal-body h2 { font-size: 2rem; }
}

/* ─── CAROUSEL / SLIDER ─── */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.carousel-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  width: 32px;
  border-radius: 100px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 5;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: white;
}

.carousel-arrow.prev { left: 1.5rem; }
.carousel-arrow.next { right: 1.5rem; }

/* ─── TRUST & PROOF SECTION ─── */
.trust-section {
  padding: 4rem 5%;
  background: linear-gradient(135deg, var(--bg-light-grey) 0%, var(--bg-light-grey-2) 100%);
  text-align: center;
}

.trust-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.trust-subheading {
  color: var(--text-grey);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.trust-stat {
  padding: 2.2rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.trust-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 61, 165, 0.12);
}

.trust-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 61, 165, 0.1), rgba(0, 61, 165, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue);
  margin-bottom: 0.75rem;
}

.trust-stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.1rem;
}

.trust-stat-unit {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--deep-blue);
  opacity: 0.7;
}

.trust-stat-label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.trust-stat-sub {
  color: var(--text-light-grey);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ─── SHARED SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; color: var(--text-dark); margin-bottom: 0.8rem;
}
.section-sub { color: var(--text-grey); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── HOW IT WORKS ─── */
.hiw-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--bg-light-grey) 0%, var(--bg-light-grey-2) 100%);
}
.hiw-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.hiw-step {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
}
.hiw-step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; margin: 0.8rem 0 0.5rem; color: var(--text-dark); }
.hiw-step p { color: var(--text-grey); font-size: 0.9rem; line-height: 1.6; }
.hiw-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  color: var(--deep-blue); letter-spacing: 0.1em;
  margin-bottom: 0.8rem; opacity: 0.5;
}
.hiw-icon { font-size: 2.2rem; margin-bottom: 0.2rem; }
.hiw-divider {
  font-size: 1.8rem; color: var(--orange);
  padding: 0 1rem; font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 700px) { .hiw-divider { display: none; } .hiw-step { min-width: 100%; } }

/* ─── TRIP CARDS ─── */
.trips-section { padding: 5rem 5%; background: white; }
.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}
.trip-card {
  text-decoration: none;
  display: flex; flex-direction: column;
  border-radius: 20px; overflow: hidden;
  background: white;
  border: 1.5px solid rgba(0,61,165,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.13);
  border-color: rgba(255,149,0,0.35);
}
.trip-img {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 0.9rem;
}
.trip-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.trip-urgency, .trip-season {
  position: relative; z-index: 1;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.7rem; border-radius: 100px;
  display: inline-block; width: fit-content;
}
.trip-urgency { background: rgba(255,60,0,0.85); color: white; align-self: flex-start; }
.trip-season { background: rgba(0,0,0,0.45); color: white; align-self: flex-end; backdrop-filter: blur(4px); }
.trip-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.trip-cat {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em;
  padding: 0.3rem 0.8rem; border-radius: 100px; width: fit-content;
}
.trip-cat-blue  { background: rgba(0,61,165,0.1); color: var(--deep-blue); }
.trip-cat-green { background: rgba(34,139,34,0.1); color: #228B22; }
.trip-cat-orange{ background: rgba(255,149,0,0.12); color: #c97500; }
.trip-cat-purple{ background: rgba(128,0,128,0.1); color: #800080; }
.trip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--text-dark); margin: 0;
}
.trip-meta {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--text-grey);
}
.trip-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0,61,165,0.08);
}
.trip-price { font-size: 0.88rem; color: var(--text-grey); }
.trip-price strong { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--deep-blue); }
.trip-cta {
  font-size: 0.82rem; font-weight: 700;
  color: var(--orange); white-space: nowrap;
}

/* ─── WHY CHOOSE US ─── */
.why-section { padding: 5rem 5%; background: var(--bg-light-grey); }
.why-table-wrap { overflow-x: auto; }
.why-table {
  width: 100%; border-collapse: collapse;
  background: white; border-radius: 16px;
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.why-table th, .why-table td {
  padding: 1rem 1.5rem; text-align: left;
  font-size: 0.92rem; border-bottom: 1px solid rgba(0,61,165,0.07);
}
.why-table th { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; background: var(--bg-light-grey); }
.why-table tr:last-child td { border-bottom: none; }
.why-table tr:hover td { background: rgba(0,61,165,0.02); }
th.why-us, td.why-us { color: #1a7a3c; background: rgba(34,197,94,0.06); }
th.why-them, td.why-them { color: #b91c1c; background: rgba(239,68,68,0.04); }

/* ─── FAQ ─── */
.faq-section { padding: 5rem 5%; background: white; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  border: 1.5px solid rgba(0,61,165,0.1);
  border-radius: 14px; overflow: hidden;
  background: white;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-a.open) { border-color: rgba(0,61,165,0.25); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.2rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--text-dark);
  text-align: left; gap: 1rem;
}
.faq-q:hover { color: var(--deep-blue); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 0.93rem; color: var(--text-grey); line-height: 1.7;
  padding: 0 1.5rem;
}
.faq-a.open { max-height: 300px; padding: 0 1.5rem 1.2rem; }
.faq-arrow.open { transform: rotate(180deg); }

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 4rem 5%;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--bg-light-grey);
  border-radius: 16px;
  border: 1px solid rgba(0, 61, 165, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 61, 165, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonial-author-meta {
  color: var(--text-light-grey);
  font-size: 0.85rem;
}

/* ─── FOUNDER STORY ─── */
.founder-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light-grey) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.founder-content p {
  color: var(--text-grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.founder-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .founder-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .carousel-slide { height: 300px; }
  .carousel-arrow { width: 40px; height: 40px; font-size: 1.1rem; }
  .carousel-arrow.prev { left: 0.8rem; }
  .carousel-arrow.next { right: 0.8rem; }
}

/* ─── CATEGORY SECTION ─── */
.category-section {
  padding: 4rem 5%;
  background: white;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.category-card {
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-light-grey) 0%, var(--bg-light-grey-2) 100%);
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  color: inherit;
  display: block;
}

.category-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 149, 0, 0.2);
}

.category-link {
  margin-top: 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
}

.category-card:hover .category-link { opacity: 1; }

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.category-desc {
  color: var(--text-light-grey);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 3rem 5%;
  background: var(--grad-primary);
  border-radius: 16px;
  text-align: center;
  margin: 3rem 5%;
  color: white;
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── ITINERARY SECTION ─── */
.itinerary-section {
  padding: 2rem;
  background: var(--bg-light-grey);
  border-radius: 12px;
  margin: 2rem 0;
}

.itinerary-day {
  padding: 1.5rem;
  background: white;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.itinerary-day-header {
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.itinerary-day-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.itinerary-day-content {
  color: var(--text-grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ─── INCLUSIONS/EXCLUSIONS ─── */
.inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.inclusion-col h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.inclusion-col.included h3 { color: var(--deep-blue); }
.inclusion-col.excluded h3 { color: #999; }

.inclusion-list {
  list-style: none;
}

.inclusion-list li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  color: var(--text-grey);
  font-size: 0.95rem;
  position: relative;
}

.inclusion-col.included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--deep-blue);
  font-weight: bold;
}

.inclusion-col.excluded li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ccc;
  font-weight: bold;
}

/* ─── PRICING SECTION ─── */
.pricing-card {
  padding: 2rem;
  background: white;
  border: 2px solid rgba(0, 61, 165, 0.1);
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.pricing-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin: 1rem 0;
}

.pricing-per {
  color: var(--text-light-grey);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── COLLABORATION SECTION ─── */
.collab-section {
  padding: 4rem 5%;
  background: linear-gradient(135deg, var(--bg-light-grey) 0%, var(--bg-light-grey-2) 100%);
}

.collab-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.collab-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.collab-heading p {
  color: var(--text-grey);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.collab-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(0, 61, 165, 0.1);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--deep-blue);
  box-shadow: 0 0 0 3px rgba(0, 61, 165, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group small {
  color: var(--text-light-grey);
  font-size: 0.8rem;
}

/* ─── TRIP PAGE HERO ─── */
.trip-hero {
  min-height: 50vh;
  padding: 6rem 5% 3rem;
  background: linear-gradient(135deg, var(--bg-light-grey) 0%, var(--bg-light-grey-2) 100%);
  display: flex;
  align-items: center;
}

.trip-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.trip-hero-content p {
  font-size: 1.05rem;
  color: var(--text-grey);
  max-width: 600px;
  line-height: 1.7;
}

.trip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 3rem 5%;
}

@media (max-width: 768px) {
  .trip-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .inclusions {
    grid-template-columns: 1fr;
  }

  .founder-section { padding: 3rem 5%; }
}
