/* ============================================================
   EDB GLOBAL — Interactive Corporate Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-dark: #001224; /* Richer dark */
  
  --brand-primary: #003057; 
  --brand-accent: #00C9A7; /* Vibrant teal accent */
  --cta-color: #0066CC;
  --cta-hover: #004C99;
  
  --text-main: #1A1A1A; 
  --text-muted: #666666;
  --text-light: #FFFFFF;
  
  --border-color: #E5E5E5;
  --border-dark: #1A3042;

  /* Typography */
  --font-serif: 'Outfit', sans-serif; /* Modernized to Outfit */
  --font-sans: 'Inter', -apple-system, sans-serif;
  
  /* Spacing */
  --spacing-section: 100px;
  --spacing-section-mobile: 70px;
  
  /* Utilities */
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.3s ease;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
html {
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(3rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand-accent); }

p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 65ch;
}

a {
  color: var(--cta-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-primary);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ---------- UTILITIES ---------- */
.hide-mobile { display: inline-block; }
.show-mobile { display: none; }
.section { padding: var(--spacing-section) 0; position: relative; }
.section--dark {
  background: radial-gradient(circle at top right, #002244, var(--bg-dark));
  color: var(--text-light);
}
.section--dark h2, .section--dark h3 { color: var(--text-light); }
.section--dark p { color: rgba(255, 255, 255, 0.8); }
.section--gray { background-color: var(--bg-secondary); }

/* Glassmorphism & Effects */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.section--dark .glass {
  background: rgba(0, 25, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.text-gradient {
  background: linear-gradient(135deg, var(--cta-color), var(--brand-accent), #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientText 5s linear infinite;
}
@keyframes gradientText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

/* ---------- INTERACTIVE BUTTONS (CTAs) ---------- */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn-icon {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(5px);
}

.btn--primary {
  background: linear-gradient(135deg, #003057, #0066CC);
  color: var(--text-light) !important;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
  border: none;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #001F3A, #004C99);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
  transform: translateY(-2px);
}

.btn--travel-primary {
  background: linear-gradient(135deg, #E63946, #FF6B35);
  color: var(--text-light) !important;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  border: none;
}

.btn--travel-primary:hover {
  background: linear-gradient(135deg, #C92A36, #E65A2A);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: var(--text-main);
  color: var(--text-main) !important;
}

.btn--outline:hover {
  background: var(--text-main);
  color: var(--text-light) !important;
}

.section--dark .btn--outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--text-light) !important;
}
.section--dark .btn--outline:hover {
  background: white;
  border-color: white;
  color: var(--bg-dark) !important;
}

.btn-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cta-color);
  position: relative;
}
.btn-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--cta-color);
  transition: width var(--transition-fast);
}
.btn-link:hover::after {
  width: 100%;
}
.btn-link:hover .btn-icon {
  transform: translateX(5px);
}

/* ---------- NAVIGATION ---------- */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  transition: all var(--transition-fast);
}
.header--scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  height: 70px;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: height var(--transition-fast);
}
.header--scrolled .nav {
  height: 70px;
}
.mobile-menu-btn {
  display: none;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--brand-primary);
}
.nav__logo img { height: 60px; }
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--cta-color);
  transition: width var(--transition-fast);
}
.nav__link:hover::after, .nav__link--active::after {
  width: 100%;
}

/* ---------- HERO (VISUAL + TEXT) ---------- */
.hero {
  padding-top: 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
}
.hero__bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s infinite alternate linear;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 18, 36, 0.95) 0%, rgba(0, 18, 36, 0.6) 50%, rgba(0, 18, 36, 0.2) 100%);
  z-index: 1;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 4rem 0;
}
.hero__title {
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
}
.hero__title .text-gradient {
  display: inline-block;
}
.hero__rotating-text-wrapper {
  display: inline-block;
  min-width: 250px;
  border-bottom: 3px solid var(--brand-accent);
}
.hero__sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ---------- INTERACTIVE TABS (EXPERTISE) ---------- */
.tabs-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-top: 3rem;
}
.tabs-nav {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--border-color);
}
.tab-btn {
  text-align: left;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}
.tab-btn::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--cta-color);
  transform: scaleY(0);
  transition: transform var(--transition-fast);
  transform-origin: top;
}
.tab-btn:hover {
  color: var(--text-main);
  background-color: var(--bg-secondary);
}
.tab-btn.active {
  color: var(--brand-primary);
  background-color: var(--bg-secondary);
}
.tab-btn.active::before {
  transform: scaleY(1);
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.tab-content.active {
  display: block;
}
.tab-visual {
  width: 100%;
  height: 300px;
  background-color: var(--border-color);
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #e0e0e0, #f5f5f5);
}

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

/* ---------- STATS STRIP ---------- */
.stats-grid {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stats-item {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background-color var(--transition-fast);
}
.stats-item:hover {
  background-color: rgba(255,255,255,0.05);
}
.stats-item:last-child { border-right: none; }
.stats-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 6rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  display: block;
  margin-bottom: 1rem;
}
.footer__title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: #B0BCC4;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.75rem; }
.footer__links a { color: var(--text-light); font-size: 0.9375rem; }
.footer__links a:hover { color: var(--cta-color); }
.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #B0BCC4;
}

/* ---------- PAGE HEADER (About & Contact) ---------- */
.page-header {
  padding: 180px 0 80px; /* Increased padding-top to clear the 90px fixed header completely */
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.page-header--image {
  background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  color: var(--text-light);
}
.page-header--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 46, 0.7); /* Dark overlay */
}
.page-header--image h1, .page-header--image h4 {
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

.page-header h1 {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.page-header h4 {
  position: relative;
  z-index: 2;
}

/* ---------- ABOUT PAGE SPECIFICS ---------- */
.value-card {
  background: var(--bg-primary);
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}
.value-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}
.about-mission-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ---------- CONTACT PAGE SPECIFICS ---------- */
.contact-info-block {
  padding: 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
  height: 100%;
}
.contact-info-block:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateX(5px);
}

/* ---------- FORMS ---------- */
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}
.form-input, .form-textarea {
  display: block;
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-main);
  transition: border-color var(--transition-fast);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero::before { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { order: -1; }
  .hero__image-wrapper { height: 400px; }
  
  .tabs-container { grid-template-columns: 1fr; gap: 2rem; }
  .tabs-nav { flex-direction: row; border-left: none; border-bottom: 2px solid var(--border-color); overflow-x: auto; }
  .tab-btn::before { top: auto; bottom: -2px; left: 0; right: 0; width: 100%; height: 2px; transform: scaleX(0); transform-origin: left; }
  .tab-btn.active::before { transform: scaleX(1); }
}

@media (max-width: 768px) {
  /* Typography & Spacing */
  .display-1 { font-size: 2.5rem; }
  .display-2 { font-size: 2rem; }
  .travel-hero__title { font-size: 2.5rem !important; }
  .section { padding: 4rem 0; }
  
  /* Mobile Menu */
  .nav { position: relative; }
  .nav__links { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(10px); 
    flex-direction: column; 
    padding: 2rem; 
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .nav__links.is-open { display: flex; }
  .mobile-menu-btn { display: block; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--text-main); }
  
  .hide-mobile { display: none !important; }
  .show-mobile { display: inline-block !important; }
  
  /* Tabs */
  .tabs-nav { flex-direction: column; align-items: stretch; border-left: none; border-bottom: none; padding-bottom: 0; }
  .tab-btn { padding: 1rem 1.5rem; font-size: 1rem; text-align: left; border-bottom: 1px solid var(--border-color); white-space: normal; }
  .tab-btn::before { top: auto; bottom: -1px; left: 0; right: 0; width: 100%; height: 2px; transform: scaleX(0); transform-origin: left; }
  .tab-btn.active::before { transform: scaleX(1); }

  /* Dual CTA */
  .dual-cta { grid-template-columns: 1fr !important; gap: 3rem !important; text-align: center !important; }
  .dual-cta__left { border-right: none !important; padding-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 3rem; }
  
  /* Grids & Stacking */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-item { border-right: 1px solid rgba(255,255,255,0.1) !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 1rem; }
  .stats-item:nth-child(even) { border-right: none !important; }
  .stats-number { font-size: 2.5rem; }
  
  .order-1-mobile { order: -1; }
  .order-2-mobile { order: 2; }
  
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 1rem; }
  
  /* Specific UI components */
  .hero { padding-top: 70px; }
  .hero__content { margin-top: 2rem; }
  .trip-planner__tab { padding: 1rem 0.5rem; font-size: 0.875rem; }
  .travel-hero { height: auto; min-height: 100vh; align-items: flex-start; padding-top: 120px; padding-bottom: 40px; }
}


/* ---------- TRAVEL PAGE STYLES ---------- */
.nav-badge {
  background-color: #E63946;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

.travel-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  padding-top: 90px;
}
.travel-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: ken-burns 20s infinite alternate;
}
@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.travel-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,25,46,0.9) 0%, rgba(0,25,46,0.4) 100%);
  z-index: -1;
}
.travel-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.travel-hero__eyebrow {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF6B35;
  margin-bottom: 1.5rem;
  display: block;
}
.travel-hero__title {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
}
.travel-hero__highlight {
  color: transparent;
  -webkit-text-stroke: 2px white;
}
.travel-hero__sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.travel-hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.875rem;
  opacity: 0.7;
}
.scroll-arrow {
  width: 2px;
  height: 40px;
  background: linear-gradient(transparent, white);
  animation: scroll-down 2s infinite;
}
@keyframes scroll-down {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.btn--travel {
  background-color: #E63946;
  color: white !important;
}
.btn--travel:hover {
  background-color: #c92c38;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
.btn--outline-light {
  border: 1px solid white;
  color: white !important;
}
.btn--outline-light:hover {
  background: white;
  color: #00192E !important;
}

/* Stats Strip */
.travel-stats {
  background: linear-gradient(135deg, #FF6B35, #E63946);
  padding: 3rem 0;
  color: white;
}
.travel-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.travel-stats__item {
  border-right: 1px solid rgba(255,255,255,0.2);
}
.travel-stats__item:last-child { border-right: none; }
.travel-stats__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.travel-stats__label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Destinations Grid */
.travel-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.travel-section-eyebrow {
  color: #E63946;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}
.travel-section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.dest-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}
.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.dest-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.dest-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-card__image img {
  transform: scale(1.1);
}
.dest-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #E63946;
  color: white;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dest-card__content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dest-card__location {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.dest-card__title {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}
.dest-card__tagline {
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.dest-card__details {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}
.dest-card__highlights {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.dest-card__highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.dest-card__highlights li::before {
  content: ''';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
}
.dest-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.dest-card__price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.dest-card__price-cta {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
}
.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

/* USPs */
.usp-grid {
  text-align: center;
}
.usp-card {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.usp-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.usp-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* More Destinations */
.more-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.more-dest-card {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: white;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}
.more-dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  transition: opacity 0.3s ease;
}
.more-dest-card:hover .more-dest-card__overlay {
  opacity: 0.6;
}
.more-dest-card__content {
  position: relative;
  z-index: 1;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
.more-dest-card:hover .more-dest-card__content {
  transform: translateY(0);
}
.more-dest-card__region {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FF6B35;
  font-weight: 700;
}
.more-dest-card__name {
  color: white;
  margin-bottom: 0;
  font-size: 1.5rem;
}

/* Travel CTA Banner */
.travel-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #00192E, #003057);
  color: white;
}
.travel-cta__title {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.travel-cta__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn--travel-cta {
  background: white;
  color: #E63946 !important;
}
.btn--travel-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Footer 5 columns */
.footer__grid--5 {
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
}

@media (max-width: 1024px) {
  .travel-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .travel-stats__item:nth-child(even) { border-right: none; }
  .travel-stats__item:nth-child(1), .travel-stats__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2rem; }
  .footer__grid--5 { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .travel-hero__title { font-size: 2.5rem; }
  .btn-group { justify-content: center; }
  .travel-stats__grid { grid-template-columns: 1fr; }
  .travel-stats__item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2rem; }
  .travel-stats__item:last-child { border-bottom: none; padding-bottom: 0; }
}


/* ---------- LAYOUT FIXES ---------- */
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .approach__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}



/* ---------- PAGE TRANSITIONS ---------- */
#page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}
#page-transition-overlay.is-active {
  transform: translateY(0);
  pointer-events: all;
}
#page-transition-overlay.is-hiding {
  transform: translateY(-100%);
}
.transition-content {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  transition-delay: 0.4s;
  width: 120px;
  height: 120px;
  position: relative;
}
#page-transition-overlay.is-active .transition-content {
  opacity: 1;
  transform: scale(1);
}
.transition-icon {
  width: 100%;
  height: 100%;
  fill: white;
  position: absolute;
  inset: 0;
}

/* Specific Theme Colors */
#page-transition-overlay.theme-travel { background: #0066CC; }
#page-transition-overlay.theme-consulting { background: #003057; }
#page-transition-overlay.theme-about { background: #1A1A1A; }
#page-transition-overlay.theme-contact { background: #E63946; }
#page-transition-overlay.theme-home { background: linear-gradient(135deg, #003057, #00C9A7); }

/* Travel: Plane takeoff */
#page-transition-overlay.theme-travel .travel-icon {
  animation: plane-takeoff 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes plane-takeoff {
  0% { transform: translate(-50px, 50px) scale(0.5); opacity: 0; }
  20% { transform: translate(0, 0) scale(1); opacity: 1; }
  60% { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(150vw, -150vh) scale(1.5) rotate(15deg); opacity: 0; }
}

/* Consulting: Briefcase open */
#page-transition-overlay.theme-consulting .consulting-icon {
  animation: briefcase-pulse 1.2s ease-in-out forwards;
}
@keyframes briefcase-pulse {
  0% { transform: scale(0.5); opacity: 0; }
  30% { transform: scale(1.1); opacity: 1; }
  50% { transform: scale(1); opacity: 1; }
  80% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; filter: blur(10px); }
}

/* About: Globe spin */
#page-transition-overlay.theme-about .about-icon {
  animation: globe-spin 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes globe-spin {
  0% { transform: scale(0) rotate(-180deg); opacity: 0; }
  40% { transform: scale(1) rotate(0deg); opacity: 1; }
  70% { transform: scale(1) rotate(180deg); opacity: 1; }
  100% { transform: scale(3) rotate(360deg); opacity: 0; }
}

/* Contact: Envelope flip */
#page-transition-overlay.theme-contact .contact-icon {
  animation: envelope-flip 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes envelope-flip {
  0% { transform: perspective(400px) rotateX(90deg); opacity: 0; }
  40% { transform: perspective(400px) rotateX(0deg); opacity: 1; }
  70% { transform: perspective(400px) rotateX(0deg); opacity: 1; }
  100% { transform: perspective(400px) rotateX(-90deg) scale(1.5); opacity: 0; }
}

/* Home: Logo Glow */
#page-transition-overlay.theme-home .home-icon {
  animation: logo-glow 1.5s ease-in-out forwards;
}
@keyframes logo-glow {
  0% { transform: scale(0.5); opacity: 0; }
  40% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 20px rgba(255,255,255,0.8)); }
  70% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 40px rgba(255,255,255,1)); }
  100% { transform: scale(2); opacity: 0; }
}



/* ---------- CAROUSEL ---------- */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 4rem;
}
.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 2rem;
}
.carousel__slide {
  min-width: calc(33.333% - 1.33rem);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .carousel__slide {
    min-width: calc(50% - 1rem);
  }
}
@media (max-width: 768px) {
  .carousel__slide {
    min-width: 100%;
  }
}
.carousel__controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--brand-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel__btn:hover {
  background: var(--brand-primary);
  color: white;
}
.carousel__dots {
  display: flex;
  gap: 8px;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel__dot.active {
  background: var(--brand-primary);
  transform: scale(1.2);
}



/* ---------- TRIP PLANNER (AMEX STYLE) ---------- */
.trip-planner {
  background: white;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  max-width: 1000px;
  margin: 0 auto;
  color: #1A1A1A;
}
.trip-planner__header {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background: #f8fafc;
  border-radius: 8px 8px 0 0;
}
.trip-planner__tab {
  flex: 1;
  padding: 1.25rem;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}
.trip-planner__tab:first-child {
  border-top-left-radius: 8px;
}
.trip-planner__tab:last-child {
  border-top-right-radius: 8px;
}
.trip-planner__tab.active {
  color: #0066CC;
  border-bottom-color: #0066CC;
  background: white;
}
.trip-planner__form {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr auto;
  gap: 1rem;
  padding: 2rem;
  align-items: end;
}
.tp-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.tp-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.tp-input {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  background: #f8fafc;
  transition: border-color 0.2s;
}
.tp-input:focus {
  outline: none;
  border-color: #0066CC;
  background: white;
}
.tp-btn {
  padding: 1.1rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  height: 52px;
}

/* Trip Planner Dropdowns */
.tp-dropdown-wrapper {
  position: relative;
  width: 100%;
}
.tp-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 100;
  display: none;
  padding: 0.5rem 0;
}
.tp-dropdown.show {
  display: block;
}
.tp-dropdown-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
}
.tp-dropdown-item:hover {
  background: #f8fafc;
  color: #0066CC;
}
.tp-dropdown--travelers {
  padding: 1rem;
  min-width: 300px;
}
.tp-counter-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tp-counter-label {
  display: flex;
  flex-direction: column;
}
.tp-counter-label strong {
  font-size: 1rem;
}
.tp-counter-label span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.tp-counter-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tp-counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: white;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
}
.tp-counter-btn:hover {
  border-color: #0066CC;
  color: #0066CC;
}
.tp-counter-val {
  font-size: 1rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

/* Premium Destination Cards (Amex Style) */
.dest-card--premium {
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.dest-card--premium .dest-card__content {
  padding: 2rem 1.5rem;
  background: white;
}
.dest-card--premium .dest-card__region {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}
.dest-card--premium .dest-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.dest-card--premium .dest-card__excerpt {
  font-size: 1rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.dest-card--premium .dest-card__link {
  color: #0066CC;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dest-card--premium .dest-card__link:hover {
  color: #003057;
}

/* Center travel section headers */
.travel-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.travel-section-title {
  text-align: center;
}
.travel-section-sub {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}

/* Dual CTA Desktop */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}
.dual-cta__left {
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-right: 4rem;
}

@media (max-width: 900px) {
  .trip-planner__form {
    grid-template-columns: 1fr;
  }
  .tp-btn { width: 100%; }
}

/* ---------- TRAVEL MODALS ---------- */
.travel-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.travel-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.travel-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -40%);
  width: 90%; max-width: 600px;
  max-height: 90vh;
  background: white;
  border-radius: 16px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.travel-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.travel-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast);
  z-index: 10;
}
.travel-modal__close:hover {
  background: rgba(255,255,255,0.4);
}

.travel-modal__header {
  padding: 3rem 2rem 2rem;
  background: var(--brand-primary);
  color: white;
  text-align: center;
  position: relative;
}
.travel-modal__header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}
.travel-modal__header p {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin: 0;
}

.travel-modal__body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.itinerary-day {
  display: flex;
  gap: 1.5rem;
}
.itinerary-day__badge {
  background: #E63946;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  height: fit-content;
  white-space: nowrap;
}
.itinerary-day__content h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.itinerary-day__content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
}

/* Flight Cards */
.flight-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.flight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.flight-airline {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.flight-route {
  font-size: 0.85rem;
  color: var(--text-main);
}
.flight-card__price {
  text-align: right;
}
.flight-card__price .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Spinner */
.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 4px solid rgba(0,0,0,0.1);
  border-top-color: #E63946;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
  .travel-modal {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .travel-modal__header {
    padding: 2rem 1.5rem 1.5rem;
  }
  .itinerary-day {
    flex-direction: column;
    gap: 0.5rem;
  }
  .flight-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .flight-card__price {
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .flight-card__price .price {
    margin-bottom: 0;
  }
}
