/* ========================================
   TRAVIXA — Master Stylesheet
   All pages share this single CSS file.
   ======================================== */

/* ----------------------------------------
   1. DESIGN TOKENS (Custom Properties)
   ---------------------------------------- */
:root {
  /* Brand Colors */
  --navy:            #1a2850;
  --navy-dark:       #111b38;
  --navy-deeper:     #0c1328;
  --navy-light:      #2a3d6e;
  --teal:            #00b4c5;
  --teal-light:      #33d4e0;
  --teal-dark:       #009aa8;
  --teal-glow:       rgba(0, 180, 197, 0.25);
  --purple:          #7b4fa0;
  --purple-light:    #a87cc7;
  --purple-dark:     #5e3a7e;
  --purple-glow:     rgba(123, 79, 160, 0.2);

  /* Backgrounds */
  --bg-primary:      #ffffff;
  --bg-warm:         #f8f4ef;
  --bg-cream:        #f0ebe3;
  --bg-navy:         #1a2850;
  --bg-navy-dark:    #111b38;

  /* Text */
  --text-primary:    #1a2850;
  --text-secondary:  #5a6278;
  --text-muted:      #8a90a0;
  --text-light:      #ffffff;
  --text-light-secondary: rgba(255,255,255,0.7);

  /* Destination Accent Colors */
  --africa:          #e07a3a;
  --africa-glow:     rgba(224, 122, 58, 0.25);
  --vietnam:         #2dd4a8;
  --vietnam-glow:    rgba(45, 212, 168, 0.25);
  --europe:          #6366f1;
  --europe-glow:     rgba(99, 102, 241, 0.25);
  --south-africa:    #f472b6;
  --south-africa-glow: rgba(244, 114, 182, 0.25);

  /* Glassmorphism */
  --glass-bg:        rgba(255, 255, 255, 0.08);
  --glass-bg-light:  rgba(255, 255, 255, 0.85);
  --glass-border:    rgba(255, 255, 255, 0.12);
  --glass-border-light: rgba(26, 40, 80, 0.08);

  /* Shadows */
  --shadow-sm:       0 2px 8px rgba(26, 40, 80, 0.06);
  --shadow-md:       0 4px 20px rgba(26, 40, 80, 0.08);
  --shadow-lg:       0 8px 40px rgba(26, 40, 80, 0.12);
  --shadow-xl:       0 16px 60px rgba(26, 40, 80, 0.16);
  --shadow-glow-teal: 0 0 30px rgba(0, 180, 197, 0.3);
  --shadow-glow-purple: 0 0 30px rgba(123, 79, 160, 0.25);

  /* Spacing Scale */
  --space-xs:   0.5rem;
  --space-sm:   0.75rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Border Radius */
  --radius-sm:  0.5rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:  200ms;
  --duration-base:  350ms;
  --duration-slow:  600ms;
  --duration-slower: 900ms;

  /* Layout */
  --max-width:   1280px;
  --nav-height:  80px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--teal);
  color: var(--text-light);
}


/* ----------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  border-radius: 2px;
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: var(--space-3xl);
}

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

.section-header--center .section-label {
  justify-content: center;
}

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}


/* ----------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section--warm {
  background-color: var(--bg-warm);
}

.section--cream {
  background-color: var(--bg-cream);
}

.section--navy {
  background-color: var(--bg-navy);
}

.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy h5 {
  color: var(--text-light);
}

.section--navy p {
  color: var(--text-light-secondary);
}

.section--navy .section-label {
  color: var(--teal-light);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

.flex {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}


/* ----------------------------------------
   5. ANIMATIONS & KEYFRAMES
   ---------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(0, 180, 197, 0.2); }
  50%      { border-color: rgba(0, 180, 197, 0.5); }
}

@keyframes compassSpin {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(90deg); }
  50%  { transform: rotate(180deg); }
  75%  { transform: rotate(270deg); }
  100% { transform: rotate(360deg); }
}


/* ----------------------------------------
   6. SCROLL REVEAL
   ---------------------------------------- */
[data-reveal] {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

[data-reveal="up"] {
  transform: translateY(50px);
}

[data-reveal="down"] {
  transform: translateY(-50px);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="scale"] {
  transform: scale(0.9);
}

[data-reveal="fade"] {
  /* just opacity, no transform */
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered children */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 100ms; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 200ms; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 300ms; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 400ms; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 500ms; }

[data-reveal-stagger].revealed > * {
  opacity: 1;
  transform: translateY(0);
}


/* ----------------------------------------
   7. BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.btn:hover::before {
  opacity: 1;
}

/* Primary — Teal */
.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 180, 197, 0.3);
}

.btn--primary::before {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 180, 197, 0.4);
  color: var(--navy-deeper)
}

.btn--primary:active {
  transform: translateY(0);
}

/* Secondary — Outline */
.btn--secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--secondary::before {
  background: rgba(255,255,255,0.1);
}

.btn--secondary:hover {
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* Navy */
.btn--navy {
  background: var(--navy);
  color: var(--text-light);
}

.btn--navy::before {
  background: var(--navy-light);
}

.btn--navy:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--teal);
  padding: 0.875rem 1.5rem;
}

.btn--ghost:hover {
  color: var(--teal-dark);
  background: rgba(0, 180, 197, 0.08);
}

/* Button icon arrow */
.btn__arrow {
  transition: transform var(--duration-base) var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}


/* ----------------------------------------
   8. NAVBAR
   ---------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-base) var(--ease-out);
  background: rgba(255, 255, 255, 0.92);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(26, 40, 80, 0.08);
  border-bottom: 1px solid rgba(26, 40, 80, 0.05);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.navbar__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.navbar__logo img {
  height: 42px;
  width: auto;
}

.navbar__logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: color var(--duration-base) var(--ease-out);
}

.navbar__logo-text span {
  color: var(--teal);
}

.navbar.scrolled .navbar__logo-text {
  color: var(--navy);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.navbar__link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
  transform: translateX(-50%);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 60%;
}

.navbar__link:hover {
  color: var(--navy);
}

.navbar.scrolled .navbar__link {
  color: var(--text-secondary);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--navy);
}

.navbar.scrolled .navbar__link::after {
  background: var(--teal);
}

/* Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.navbar__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.navbar__dropdown:hover .navbar__dropdown-trigger svg {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(26, 40, 80, 0.06);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--duration-base) var(--ease-out);
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease-out);
}

.navbar__dropdown-item:hover {
  background: var(--bg-warm);
  color: var(--navy);
}

.navbar__dropdown-item svg,
.navbar__dropdown-item .dropdown-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* CTA in nav */
.navbar__cta {
  margin-left: var(--space-sm);
}

.navbar__cta .btn--primary {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}

/* Mobile Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.navbar__hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

.navbar.scrolled .navbar__hamburger span {
  background: var(--navy);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.navbar__mobile-nav {
  display: none;
}
.navbar__mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background: rgba(255, 255, 255, 1)!important;

  display: flex;
  flex-direction: column;
  padding: 100px 24px 32px;

  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.navbar__mobile-link {
  color: #0B2A5B !important; /* Your navy blue */
  font-weight: 600;
}

.navbar__mobile-link:hover {
  color: var(--teal);
}
.navbar__mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------
   9. HERO SECTION
   ---------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--navy-deeper);
  padding-top: 140px;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    height: auto;
    padding: 140px 0 60px;
  }
}
.hero__bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 19, 40, 0.85) 0%,
    rgba(26, 40, 80, 0.7) 40%,
    rgba(17, 27, 56, 0.6) 70%,
    rgba(12, 19, 40, 0.8) 100%
  );
  z-index: 1;
}

.hero__overlay-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 20px;
}

.hero__tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeInDown var(--duration-slow) var(--ease-out) 0.2s both;
}

.hero__tagline::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 3.5rem);
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  animation: fadeInUp var(--duration-slow) var(--ease-out) 0.4s both;
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.15rem;
  color: var(--text-light-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
  animation: fadeInUp var(--duration-slow) var(--ease-out) 0.6s both;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp var(--duration-slow) var(--ease-out) 0.8s both;
}

/* Floating decorative elements */
.hero__float {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero__float--1 {
  top: 15%;
  right: 8%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  animation: float 8s var(--ease-in-out) infinite;
}

.hero__float--2 {
  bottom: 20%;
  right: 15%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  animation: float 6s var(--ease-in-out) infinite 2s;
}

.hero__float--3 {
  top: 30%;
  right: 25%;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transform: rotate(45deg);
  animation: float 10s var(--ease-in-out) infinite 1s;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  animation: fadeIn var(--duration-slow) var(--ease-out) 1.5s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: pulse 2s var(--ease-in-out) infinite;
}


/* ----------------------------------------
   10. TRUST BAR / STATS
   ---------------------------------------- */
.trust-bar {
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.trust-bar__inner {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2xl) var(--space-3xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  border: 1px solid rgba(26, 40, 80, 0.05);
}

.trust-bar__stat {
  text-align: center;
  position: relative;
}

.trust-bar__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(26,40,80,0.1), transparent);
}

.trust-bar__number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-bar__number .counter-suffix {
  color: var(--teal);
}

.trust-bar__label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}


/* ----------------------------------------
   11. DESTINATIONS SHOWCASE
   ---------------------------------------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.destination-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: destination;
}

.destination-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 19, 40, 0.9) 0%,
    rgba(12, 19, 40, 0.3) 40%,
    transparent 70%
  );
  z-index: 1;
  transition: background var(--duration-base) var(--ease-out);
}

.destination-card:hover .destination-card__overlay {
  background: linear-gradient(
    to top,
    rgba(12, 19, 40, 0.95) 0%,
    rgba(12, 19, 40, 0.5) 50%,
    rgba(12, 19, 40, 0.2) 70%
  );
}

.destination-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 2;
  transform: translateY(20px);
  transition: transform var(--duration-base) var(--ease-out);
}

.destination-card:hover .destination-card__content {
  transform: translateY(0);
}

.destination-card__region {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.5rem;
}

.destination-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.destination-card__cities {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-base) var(--ease-out) 0.1s;
}

.destination-card:hover .destination-card__cities {
  opacity: 1;
  transform: translateY(0);
}

.destination-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-light);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-base) var(--ease-out) 0.15s;
}

.destination-card:hover .destination-card__link {
  opacity: 1;
  transform: translateY(0);
}

.destination-card__link svg {
  transition: transform var(--duration-fast) var(--ease-out);
}

.destination-card__link:hover svg {
  transform: translateX(4px);
}

/* Accent strip at top of card */
.destination-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.destination-card:hover .destination-card__accent {
  opacity: 1;
}

.destination-card--africa .destination-card__accent { background: var(--africa); }
.destination-card--south-africa .destination-card__accent { background: var(--south-africa); }
.destination-card--vietnam .destination-card__accent { background: var(--vietnam); }
.destination-card--europe .destination-card__accent { background: var(--europe); }

.destination-card--africa .destination-card__region { color: var(--africa); }
.destination-card--south-africa .destination-card__region { color: var(--south-africa); }
.destination-card--vietnam .destination-card__region { color: var(--vietnam); }
.destination-card--europe .destination-card__region { color: var(--europe); }


/* ----------------------------------------
   12. SERVICE CARDS
   ---------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  /* Center last two cards in a 3-col grid */
}

.service-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid rgba(26, 40, 80, 0.06);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,180,197,0.1) 0%, rgba(123,79,160,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--duration-base) var(--ease-out);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
  transition: color var(--duration-base) var(--ease-out);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--teal), var(--purple));
  box-shadow: var(--shadow-glow-teal);
}

.service-card:hover .service-card__icon svg {
  color: white;
}

.service-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.service-card__description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--duration-fast) var(--ease-out);
}

.service-card__link:hover {
  gap: 0.65rem;
}


/* ----------------------------------------
   13. WHY TRAVIXA
   ---------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.why-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: all var(--duration-base) var(--ease-out);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 180, 197, 0.2);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,180,197,0.15), rgba(123,79,160,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal-light);
}

.why-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.why-card__text {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  line-height: 1.7;
}


/* ----------------------------------------
   14. TESTIMONIALS
   ---------------------------------------- */
.testimonials {
  overflow: hidden;
}

.testimonials__carousel {
  display: flex;
  transition: transform var(--duration-slow) var(--ease-out);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 var(--space-xl);
}

.testimonial-card__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card__quote-icon {
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-md);
  font-family: Georgia, serif;
}

.testimonial-card__text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: var(--space-2xl);
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-card__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-2xl);
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 40, 80, 0.15);
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
}

.testimonials__dot.active {
  background: var(--teal);
  width: 30px;
  border-radius: 5px;
}


/* ----------------------------------------
   15. CTA BANNER
   ---------------------------------------- */
.cta-banner {
  position: relative;
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, #1e2a5a 100%);
  z-index: 0;
}

.cta-banner__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 30px 30px;
}

.cta-banner__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.cta-banner__glow--1 {
  top: -200px;
  right: -100px;
  background: var(--teal-glow);
}

.cta-banner__glow--2 {
  bottom: -200px;
  left: -100px;
  background: var(--purple-glow);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.cta-banner__text {
  font-size: 1.15rem;
  color: var(--text-light-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* ----------------------------------------
   16. FOOTER
   ---------------------------------------- */
.footer {
  background: var(--navy-deeper);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,180,197,0.3), rgba(123,79,160,0.3), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}

.footer__logo-text span {
  color: var(--teal);
}

.footer__brand-text {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer__socials {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-out);
  color: var(--text-light-secondary);
}

.footer__social-link:hover {
  background: var(--teal);
  color: var(--text-light);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__column-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  transition: all var(--duration-fast) var(--ease-out);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer__link:hover {
  color: var(--teal-light);
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
}

.footer__copyright a {
  color: var(--teal-light);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-link {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__bottom-link:hover {
  color: var(--teal-light);
}


/* ----------------------------------------
   17. PAGE HERO (for sub-pages)
   ---------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  min-height: 400px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,19,40,0.9) 0%, rgba(26,40,80,0.75) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  margin-bottom: var(--space-lg);
}

.page-hero__breadcrumb a {
  color: var(--teal-light);
}

.page-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero__breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.page-hero__title {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  color: var(--text-light-secondary);
  font-size: 1.15rem;
  max-width: 600px;
}


/* ----------------------------------------
   18. CONTACT FORM
   ---------------------------------------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(26, 40, 80, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: all var(--duration-fast) var(--ease-out);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-glow);
}

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


/* ----------------------------------------
   19. RESPONSIVE MEDIA QUERIES
   ---------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --nav-height: 70px;
  }

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

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

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl);
  }

  .trust-bar__stat:nth-child(2)::after {
    display: none;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Mobile nav overlay */
  .navbar__mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy-deeper);
    z-index: 1000;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--duration-base) var(--ease-out);
    overflow-y: auto;
  }

  .navbar__mobile-nav.open {
    transform: translateX(0);
  }

  .navbar__mobile-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color var(--duration-fast) var(--ease-out);
  }

  .navbar__mobile-link:hover {
    color: var(--teal-light);
  }

  .navbar__mobile-cta {
    margin-top: var(--space-xl);
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

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

  .destination-card {
    aspect-ratio: 16/10;
  }

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

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

  .trust-bar {
    margin-top: -40px;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    gap: var(--space-md);
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__float--1,
  .hero__float--2,
  .hero__float--3 {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .trust-bar__inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar__stat::after {
    display: none;
  }

  .trust-bar__number {
    font-size: 1.75rem;
  }

  .destination-card {
    aspect-ratio: 4/3;
  }
}


/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* ----------------------------------------
   20. STORY / SPLIT SECTION
   ---------------------------------------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-story--reverse {
  direction: rtl;
}

.about-story--reverse > * {
  direction: ltr;
}

.about-story__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.about-story__image:hover img {
  transform: scale(1.04);
}

/* Decorative accent behind image */
.about-story__image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  z-index: -1;
  opacity: 0.15;
  transition: opacity var(--duration-base) var(--ease-out);
}

.about-story__image:hover::before {
  opacity: 0.25;
}

/* Floating badge on image */
.about-story__badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--navy);
  color: var(--text-light);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-story__badge svg {
  width: 18px;
  height: 18px;
  color: var(--teal-light);
}

.about-story__content h2 {
  margin-bottom: var(--space-lg);
}

.about-story__content p {
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-story__content p:last-of-type {
  margin-bottom: var(--space-xl);
}

.about-story__highlight {
  color: var(--navy);
  font-weight: 600;
}


/* ----------------------------------------
   21. VALUES / MISSION & VISION
   ---------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.value-card {
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--bg-primary);
  border: 1px solid rgba(26, 40, 80, 0.06);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 0 4px 4px 0;
}

.value-card--mission .value-card__accent {
  background: linear-gradient(to bottom, var(--teal), var(--teal-dark));
}

.value-card--vision .value-card__accent {
  background: linear-gradient(to bottom, var(--purple), var(--purple-dark));
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.value-card--mission .value-card__icon {
  background: rgba(0, 180, 197, 0.1);
  color: var(--teal);
}

.value-card--vision .value-card__icon {
  background: rgba(123, 79, 160, 0.1);
  color: var(--purple);
}

.value-card__icon svg {
  width: 26px;
  height: 26px;
}

.value-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.value-card__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
}


/* ----------------------------------------
   22. TIMELINE
   ---------------------------------------- */
.timeline {
  position: relative;
  padding: var(--space-xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--purple), var(--teal));
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__item:nth-child(odd) {
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline__item:nth-child(even) {
  padding-left: calc(50% + 40px);
}

.timeline__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--bg-warm);
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(0, 180, 197, 0.15);
}

.timeline__content {
  background: var(--bg-primary);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 40, 80, 0.05);
  transition: all var(--duration-base) var(--ease-out);
}

.timeline__content:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.timeline__year {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.timeline__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.timeline__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ----------------------------------------
   23. GLOBAL PRESENCE / MAP
   ---------------------------------------- */
.presence-section {
  position: relative;
}

.presence-map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-3xl);
  aspect-ratio: 21/9;
}

.presence-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.office-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--duration-base) var(--ease-out);
  text-align: center;
}

.office-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 180, 197, 0.2);
  transform: translateY(-4px);
}

.office-card__flag {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.office-card__city {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.office-card__type {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: var(--space-sm);
}

.office-card__detail {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
}


/* ----------------------------------------
   24. TEAM GRID
   ---------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.team-card {
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, rgba(0,180,197,0.15), rgba(123,79,160,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  transition: border-color var(--duration-base) var(--ease-out);
}

.team-card:hover .team-card__avatar {
  border-color: var(--teal);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__avatar-placeholder {
  font-size: 2.5rem;
  color: var(--teal);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.team-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.team-card__socials {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
}

.team-card__social {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(26, 40, 80, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--duration-fast) var(--ease-out);
}

.team-card__social:hover {
  background: var(--teal);
  color: white;
}

.team-card__social svg {
  width: 14px;
  height: 14px;
}


/* ----------------------------------------
   25. CORE VALUES STRIP
   ---------------------------------------- */
.core-values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.core-value {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-xl);
  background: var(--bg-primary);
  border: 1px solid rgba(26, 40, 80, 0.06);
  transition: all var(--duration-base) var(--ease-out);
}

.core-value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.core-value__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,180,197,0.1), rgba(123,79,160,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: all var(--duration-base) var(--ease-out);
}

.core-value:hover .core-value__icon {
  background: linear-gradient(135deg, var(--teal), var(--purple));
  box-shadow: var(--shadow-glow-teal);
}

.core-value__icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
  transition: color var(--duration-base) var(--ease-out);
}

.core-value:hover .core-value__icon svg {
  color: white;
}

.core-value__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.core-value__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ----------------------------------------
   ABOUT PAGE — RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .about-story {
    gap: var(--space-2xl);
  }

  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-values-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline__item:nth-child(odd),
  .timeline__item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }

  .timeline__dot {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-story--reverse {
    direction: ltr;
  }

  .about-story__image {
    aspect-ratio: 16/10;
  }

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

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .core-values-strip {
    grid-template-columns: 1fr 1fr;
  }

  .presence-map {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }

  .core-values-strip {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* ----------------------------------------
   26. CONTACT LAYOUT
   ---------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* ----------------------------------------
   27. CONTACT FORM (Enhanced)
   ---------------------------------------- */
.contact-form-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 40, 80, 0.05);
}

.contact-form-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form-card__subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--teal);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(26, 40, 80, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: all var(--duration-fast) var(--ease-out);
  font-family: 'Inter', sans-serif;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-glow);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a6278' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.7;
}

.form-submit {
  margin-top: var(--space-md);
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  text-align: center;
  line-height: 1.6;
}

/* ----------------------------------------
   28. CONTACT INFO SIDEBAR
   ---------------------------------------- */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 40, 80, 0.05);
  transition: all var(--duration-base) var(--ease-out);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-info-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,180,197,0.1), rgba(123,79,160,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.contact-info-card__label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-info-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-info-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-card__item svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-info-card__item a {
  color: var(--teal);
  font-weight: 500;
  transition: color var(--duration-fast) var(--ease-out);
}

.contact-info-card__item a:hover {
  color: var(--teal-dark);
}

/* Quick Contact Strip */
.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.quick-contact-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--duration-base) var(--ease-out);
}

.quick-contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 180, 197, 0.2);
  transform: translateY(-4px);
}

.quick-contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,180,197,0.15), rgba(123,79,160,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.quick-contact-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal-light);
}

.quick-contact-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.quick-contact-card__detail {
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
}

.quick-contact-card__detail a {
  color: var(--teal-light);
  font-weight: 500;
}

.quick-contact-card__detail a:hover {
  text-decoration: underline;
}

/* ----------------------------------------
   CONTACT PAGE — RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .quick-contact {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-card {
    padding: var(--space-xl);
  }

  .quick-contact {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   DESTINATIONS HUB PAGE STYLES
   ======================================== */

/* ----------------------------------------
   29. FEATURED DESTINATION CARDS
   ---------------------------------------- */
.dest-featured {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.dest-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 40, 80, 0.05);
  transition: all var(--duration-base) var(--ease-out);
  min-height: 420px;
}

.dest-featured-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.dest-featured-card:nth-child(even) {
  direction: rtl;
}

.dest-featured-card:nth-child(even) > * {
  direction: ltr;
}

.dest-featured-card__image {
  position: relative;
  overflow: hidden;
}

.dest-featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.dest-featured-card:hover .dest-featured-card__image img {
  transform: scale(1.06);
}

.dest-featured-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,19,40,0.15) 0%, transparent 100%);
  z-index: 1;
}

/* Region accent strip */
.dest-featured-card__accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
}

.dest-featured-card--africa .dest-featured-card__accent-bar { background: var(--africa); }
.dest-featured-card--south-africa .dest-featured-card__accent-bar { background: var(--south-africa); }
.dest-featured-card--vietnam .dest-featured-card__accent-bar { background: var(--vietnam); }
.dest-featured-card--europe .dest-featured-card__accent-bar { background: var(--europe); }

.dest-featured-card__content {
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dest-featured-card__region {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.dest-featured-card--africa .dest-featured-card__region { color: var(--africa); }
.dest-featured-card--south-africa .dest-featured-card__region { color: var(--south-africa); }
.dest-featured-card--vietnam .dest-featured-card__region { color: var(--vietnam); }
.dest-featured-card--europe .dest-featured-card__region { color: var(--europe); }

.dest-featured-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.dest-featured-card__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* Location tags */
.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.dest-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--bg-warm);
  color: var(--text-secondary);
  border: 1px solid rgba(26, 40, 80, 0.06);
  transition: all var(--duration-fast) var(--ease-out);
}

.dest-tag:hover {
  background: var(--navy);
  color: var(--text-light);
  border-color: var(--navy);
}

/* Highlights row */
.dest-highlights {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.dest-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dest-highlight__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0,180,197,0.1), rgba(123,79,160,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dest-highlight__icon svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.dest-highlight__text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
}

.dest-highlight__text strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
}

.dest-featured-card__cta {
  display: inline-flex;
}

/* ----------------------------------------
   30. DESTINATION INTRO STRIP
   ---------------------------------------- */
.dest-intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.dest-intro-item {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer;
}

.dest-intro-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.dest-intro-item__emoji {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.dest-intro-item__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.dest-intro-item__count {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
}

/* Region colored borders on hover */
.dest-intro-item--africa:hover { border-color: var(--africa); }
.dest-intro-item--south-africa:hover { border-color: var(--south-africa); }
.dest-intro-item--vietnam:hover { border-color: var(--vietnam); }
.dest-intro-item--europe:hover { border-color: var(--europe); }

/* ----------------------------------------
   31. WHY CHOOSE US FOR DESTINATIONS
   ---------------------------------------- */
.dest-why-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.dest-why-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  border: 1px solid rgba(26, 40, 80, 0.06);
  transition: all var(--duration-base) var(--ease-out);
}

.dest-why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.dest-why-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,180,197,0.1), rgba(123,79,160,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dest-why-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.dest-why-item__text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.dest-why-item__text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ----------------------------------------
   DESTINATIONS HUB — RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .dest-featured-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dest-featured-card:nth-child(even) {
    direction: ltr;
  }

  .dest-featured-card__image {
    aspect-ratio: 16/9;
  }

  .dest-intro-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-why-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-highlights {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .dest-featured-card__content {
    padding: var(--space-xl);
  }

  .dest-intro-strip {
    grid-template-columns: 1fr 1fr;
  }

  .dest-why-strip {
    grid-template-columns: 1fr;
  }

  .dest-highlights {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .dest-intro-strip {
    grid-template-columns: 1fr 1fr;
  }
}


/* ========================================
   DESTINATION DETAIL PAGE STYLES
   (Reusable across all destination sub-pages)
   ======================================== */

/* ----------------------------------------
   32. DESTINATION KEY FACTS STRIP
   ---------------------------------------- */
.dest-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.dest-fact {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 40, 80, 0.05);
  transition: all var(--duration-base) var(--ease-out);
}

.dest-fact:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.dest-fact__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,180,197,0.1), rgba(123,79,160,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.dest-fact__icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.dest-fact__value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.dest-fact__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ----------------------------------------
   33. LOCATION CARDS GRID
   ---------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.location-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 40, 80, 0.05);
  transition: all var(--duration-base) var(--ease-out);
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.location-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.location-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.location-card:hover .location-card__image img {
  transform: scale(1.08);
}

.location-card__image-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(12, 19, 40, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}

.location-card__content {
  padding: var(--space-xl);
}

.location-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.location-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.location-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.location-card__highlight {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(0, 180, 197, 0.08);
  color: var(--teal-dark);
  font-family: 'Outfit', sans-serif;
}

/* ----------------------------------------
   34. SAMPLE ITINERARIES
   ---------------------------------------- */
.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.itinerary-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 40, 80, 0.05);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.itinerary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(to bottom, var(--teal), var(--purple));
}

.itinerary-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.itinerary-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 180, 197, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.itinerary-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.itinerary-card__route {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.itinerary-day {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  position: relative;
}

.itinerary-day__marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,180,197,0.12), rgba(123,79,160,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
}

.itinerary-day__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-top: 0.2rem;
}

.itinerary-day__text strong {
  color: var(--navy);
}

.itinerary-card__cta {
  display: inline-flex;
}

/* ----------------------------------------
   35. SERVICES WE HANDLE
   ---------------------------------------- */
.services-handled {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-handled {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--duration-base) var(--ease-out);
}

.service-handled:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 180, 197, 0.2);
  transform: translateY(-2px);
}

.service-handled__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-handled__check svg {
  width: 14px;
  height: 14px;
  color: white;
}

.service-handled__text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.service-handled__text p {
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
}

/* ----------------------------------------
   DESTINATION DETAIL — RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .dest-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-handled {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dest-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: -30px;
  }

  .dest-fact {
    padding: var(--space-lg);
  }

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

  .services-handled {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .dest-facts {
    grid-template-columns: 1fr 1fr;
  }

  .dest-fact__value {
    font-size: 1.25rem;
  }
}


/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* ----------------------------------------
   36. SERVICE SHOWCASE CARDS
   ---------------------------------------- */
.service-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.service-card-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 40, 80, 0.05);
  transition: all var(--duration-base) var(--ease-out);
  min-height: 400px;
}

.service-card-full:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.service-card-full:nth-child(even) {
  direction: rtl;
}

.service-card-full:nth-child(even) > * {
  direction: ltr;
}

.service-card-full__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-full__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.service-card-full:hover .service-card-full__visual img {
  transform: scale(1.05);
}

/* Gradient visual for icon-based cards */
.service-card-full__visual--gradient {
  background: linear-gradient(135deg, var(--navy) 0%, rgba(12, 19, 40, 0.95) 100%);
  padding: var(--space-3xl);
  flex-direction: column;
  gap: var(--space-xl);
}

.service-card-full__visual-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0,180,197,0.15), rgba(123,79,160,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 180, 197, 0.2);
}

.service-card-full__visual-icon svg {
  width: 36px;
  height: 36px;
  color: var(--teal);
}

.service-card-full__visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  width: 100%;
}

.service-card-full__visual-stat {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card-full__visual-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.15rem;
}

.service-card-full__visual-stat span {
  font-size: 0.78rem;
  color: var(--text-light-secondary);
}

.service-card-full__content {
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-full__number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 180, 197, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: var(--space-md);
}

.service-card-full__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.service-card-full__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* Feature checklist */
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: var(--space-xl);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.service-feature__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,180,197,0.12), rgba(123,79,160,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-feature__check svg {
  width: 11px;
  height: 11px;
  color: var(--teal);
}

.service-card-full__cta {
  display: inline-flex;
}

/* ----------------------------------------
   37. PROCESS TIMELINE
   ---------------------------------------- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple), var(--teal));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 180, 197, 0.3);
  position: relative;
  z-index: 2;
}

.process-step__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.process-step__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ----------------------------------------
   SERVICES PAGE — RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .service-card-full {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-card-full:nth-child(even) {
    direction: ltr;
  }

  .service-card-full__visual {
    aspect-ratio: 16/9;
    min-height: 280px;
  }

  .service-card-full__visual--gradient {
    aspect-ratio: auto;
    min-height: auto;
    padding: var(--space-2xl);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-card-full__content {
    padding: var(--space-xl);
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}


/* ========================================
   WHY TRAVIXA PAGE STYLES
   ======================================== */

/* ----------------------------------------
   38. COMPARISON TABLE
   ---------------------------------------- */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 40, 80, 0.06);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-primary);
  min-width: 640px;
}

.comparison-table thead th {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  border-bottom: 2px solid rgba(26, 40, 80, 0.08);
  color: var(--text-secondary);
}

.comparison-table thead th:first-child {
  text-align: left;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table thead th.comparison-table__highlight {
  background: linear-gradient(135deg, var(--navy), rgba(12, 19, 40, 0.95));
  color: white;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.comparison-table thead th.comparison-table__highlight::after {
  content: '★ RECOMMENDED';
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-top: 0.25rem;
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(26, 40, 80, 0.05);
  transition: background var(--duration-fast) var(--ease-out);
}

.comparison-table tbody tr:hover {
  background: rgba(0, 180, 197, 0.02);
}

.comparison-table tbody td {
  padding: var(--space-md) var(--space-xl);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--navy);
}

.comparison-table tbody td.comparison-table__highlight {
  background: rgba(12, 19, 40, 0.02);
  font-weight: 600;
  color: var(--navy);
}

.comparison-table .check-yes {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table .check-no {
  color: #ccc;
  font-size: 1.1rem;
}

.comparison-table .check-partial {
  color: #e0a030;
  font-size: 0.85rem;
}

/* ----------------------------------------
   39. BIG DIFFERENTIATOR CARDS
   ---------------------------------------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.diff-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 40, 80, 0.05);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-card__number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 180, 197, 0.1);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.diff-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.diff-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ----------------------------------------
   40. TRUST STATS STRIP
   ---------------------------------------- */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.trust-stat {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--duration-base) var(--ease-out);
}

.trust-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.trust-stat__value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.trust-stat__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.trust-stat__sub {
  font-size: 0.78rem;
  color: var(--text-light-secondary);
}

/* ----------------------------------------
   WHY TRAVIXA — RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.82rem;
  }
}


/* ========================================
   AUTH (LOGIN / SIGNUP) PAGE STYLES
   ======================================== */

/* ----------------------------------------
   41. AUTH SPLIT LAYOUT
   ---------------------------------------- */
.auth-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* LEFT — Visual Panel */
.auth-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: var(--space-3xl);
  overflow: hidden;
}

.auth-visual__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.auth-visual__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 19, 40, 0.92) 0%,
    rgba(12, 19, 40, 0.5) 40%,
    rgba(12, 19, 40, 0.25) 100%
  );
}

.auth-visual__content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.auth-visual__logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.auth-visual__logo span {
  color: var(--teal);
}

.auth-visual__tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: white;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.auth-visual__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.auth-visual__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.auth-visual__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.auth-visual__feature svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

/* RIGHT — Form Panel */
.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-2xl);
  background: var(--bg-primary);
  overflow-y: auto;
}

.auth-form-container {
  width: 100%;
  max-width: 440px;
}

.auth-form-container__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: var(--space-xl);
  transition: color var(--duration-fast) var(--ease-out);
}

.auth-form-container__back:hover {
  color: var(--teal);
}

.auth-form-container__back svg {
  width: 16px;
  height: 16px;
}

/* ----------------------------------------
   42. AUTH TABS
   ---------------------------------------- */
.auth-tabs {
  display: flex;
  background: rgba(26, 40, 80, 0.04);
  border-radius: var(--radius-lg);
  padding: 4px;
  margin-bottom: var(--space-2xl);
}

.auth-tab {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  background: transparent;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.auth-tab.active {
  background: var(--bg-primary);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auth-tab:hover:not(.active) {
  color: var(--navy);
}

/* ----------------------------------------
   43. AUTH FORM
   ---------------------------------------- */
.auth-form__header {
  margin-bottom: var(--space-xl);
}

.auth-form__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.auth-form__subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.auth-form[data-form="signup"] {
  display: none;
}

.auth-form.active {
  display: flex;
}

/* Input Groups */
.auth-input-group {
  position: relative;
}

.auth-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.auth-input {
  width: 100%;
  padding: 0.85rem 1rem;
  padding-left: 2.8rem;
  border: 1.5px solid rgba(26, 40, 80, 0.12);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--bg-primary);
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

.auth-input::placeholder {
  color: rgba(26, 40, 80, 0.35);
}

.auth-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 180, 197, 0.1);
}

.auth-input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(26, 40, 80, 0.3);
  pointer-events: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.auth-input:focus ~ .auth-input-icon,
.auth-input-group:focus-within .auth-input-icon {
  color: var(--teal);
}

.auth-input-toggle {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
  color: rgba(26, 40, 80, 0.3);
  transition: color var(--duration-fast) var(--ease-out);
}

.auth-input-toggle:hover {
  color: var(--navy);
}

.auth-input-toggle svg {
  width: 18px;
  height: 18px;
}

/* Select Dropdown */
.auth-select {
  width: 100%;
  padding: 0.85rem 1rem;
  padding-left: 2.8rem;
  border: 1.5px solid rgba(26, 40, 80, 0.12);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--bg-primary);
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a2850' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}

.auth-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 180, 197, 0.1);
}

/* Checkbox */
.auth-checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.auth-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
  cursor: pointer;
}

.auth-forgot {
  font-size: 0.85rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--duration-fast) var(--ease-out);
}

.auth-forgot:hover {
  color: var(--navy);
}

/* Submit Button */
.auth-submit {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal), #00a8b5);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  box-shadow: 0 4px 15px rgba(0, 180, 197, 0.3);
}

.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 197, 0.4);
}

.auth-submit:active {
  transform: translateY(0);
}

.auth-submit svg {
  width: 18px;
  height: 18px;
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-sm) 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 40, 80, 0.08);
}

.auth-divider span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Social Login */
.auth-social {
  display: flex;
  gap: var(--space-sm);
}

.auth-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1.5px solid rgba(26, 40, 80, 0.1);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  text-decoration: none;
}

.auth-social-btn:hover {
  border-color: rgba(26, 40, 80, 0.2);
  background: rgba(26, 40, 80, 0.02);
}

.auth-social-btn svg {
  width: 18px;
  height: 18px;
}

/* Footer text */
.auth-footer-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: var(--space-lg);
}

.auth-footer-text a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.auth-footer-text a:hover {
  color: var(--navy);
}

/* Terms text */
.auth-terms {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  margin-top: var(--space-sm);
}

.auth-terms a {
  color: var(--teal);
  text-decoration: none;
}

/* ----------------------------------------
   AUTH PAGE — RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    min-height: 280px;
    padding: var(--space-2xl);
  }

  .auth-visual__tagline {
    font-size: 1.3rem;
  }

  .auth-visual__features {
    display: none;
  }
}

@media (max-width: 768px) {
  .auth-visual {
    min-height: 220px;
    padding: var(--space-xl);
  }

  .auth-visual__logo {
    font-size: 1.5rem;
  }

  .auth-visual__tagline {
    font-size: 1.1rem;
  }

  .auth-visual__desc {
    display: none;
  }

  .auth-form-panel {
    padding: var(--space-xl);
  }

  .auth-input-row {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   DASHBOARD PAGE STYLES
   ======================================== */

/* ----------------------------------------
   44. DASHBOARD LAYOUT
   ---------------------------------------- */
.dash {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #f4f6fa;
}

/* SIDEBAR */
.dash-sidebar {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.dash-sidebar__logo {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-sidebar__logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.dash-sidebar__logo-text span { color: var(--teal); }

.dash-sidebar__nav {
  padding: 1rem 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dash-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dash-nav-link svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.dash-nav-link:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}

.dash-nav-link.active {
  background: rgba(0,180,197,0.12);
  color: var(--teal);
}

.dash-nav-section {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 1.2rem 0.85rem 0.4rem;
}

.dash-sidebar__bottom {
  padding: 1rem 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* MAIN AREA */
.dash-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* TOP BAR */
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: white;
  border-bottom: 1px solid rgba(26,40,80,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.dash-topbar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-topbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  color: var(--navy);
}

.dash-topbar__hamburger svg { width: 24px; height: 24px; }

.dash-topbar__greeting h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.1rem;
}

.dash-topbar__greeting p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.dash-topbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-topbar__notif {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.dash-topbar__notif:hover { background: rgba(26,40,80,0.04); }
.dash-topbar__notif svg { width: 20px; height: 20px; }

.dash-topbar__notif-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid white;
}

.dash-topbar__user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.8rem 0.35rem 0.35rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(26,40,80,0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dash-topbar__user:hover { border-color: rgba(26,40,80,0.15); }

.dash-topbar__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}

.dash-topbar__user-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

/* CONTENT */
.dash-content {
  padding: 1.75rem 2rem;
  flex: 1;
}

/* ----------------------------------------
   45. STATS CARDS
   ---------------------------------------- */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.dash-stat-card {
  background: white;
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(26,40,80,0.04);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.25s ease;
}

.dash-stat-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.dash-stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-stat-card__icon svg { width: 22px; height: 22px; }

.dash-stat-card__icon--teal {
  background: rgba(0,180,197,0.1);
  color: var(--teal);
}

.dash-stat-card__icon--purple {
  background: rgba(123,79,160,0.1);
  color: var(--purple);
}

.dash-stat-card__icon--amber {
  background: rgba(234,179,8,0.1);
  color: #d97706;
}

.dash-stat-card__value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.dash-stat-card__label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ----------------------------------------
   46. QUICK ACTIONS + RM CARD GRID
   ---------------------------------------- */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
}

.dash-panel {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(26,40,80,0.04);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
}

.dash-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(26,40,80,0.05);
}

.dash-panel__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.dash-panel__action {
  font-size: 0.8rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}

.dash-panel__action:hover { text-decoration: underline; }

/* ----------------------------------------
   47. BOOKINGS TABLE
   ---------------------------------------- */
.dash-table-wrap {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
}

.dash-table th {
  text-align: left;
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: rgba(26,40,80,0.015);
  border-bottom: 1px solid rgba(26,40,80,0.05);
}

.dash-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: var(--navy);
  border-bottom: 1px solid rgba(26,40,80,0.04);
  white-space: nowrap;
}

.dash-table tbody tr {
  transition: background 0.15s ease;
}

.dash-table tbody tr:hover {
  background: rgba(0,180,197,0.02);
}

.dash-table__destination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dash-table__flag {
  font-size: 1.1rem;
}

.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.dash-status--quoted {
  background: rgba(0,180,197,0.1);
  color: #0891b2;
}

.dash-status--confirmed {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

.dash-status--completed {
  background: rgba(26,40,80,0.06);
  color: var(--text-secondary);
}

.dash-status--pending {
  background: rgba(234,179,8,0.1);
  color: #d97706;
}

.dash-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.dash-table__action {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
}

.dash-table__action:hover { text-decoration: underline; }

/* ----------------------------------------
   48. RM CARD
   ---------------------------------------- */
.dash-rm {
  padding: 1.5rem;
}

.dash-rm__profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.dash-rm__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.dash-rm__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.dash-rm__role {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.dash-rm__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.dash-rm__contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.dash-rm__contact:hover { color: var(--teal); }

.dash-rm__contact svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

.dash-rm__cta {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #00a8b5);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,180,197,0.25);
}

.dash-rm__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,180,197,0.35);
}

.dash-rm__cta svg { width: 16px; height: 16px; }

/* Quick Enquiry Section */
.dash-enquiry {
  padding: 1.5rem;
  border-top: 1px solid rgba(26,40,80,0.05);
}

.dash-enquiry__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.dash-enquiry__btn {
  width: 100%;
  padding: 0.85rem;
  border: 2px dashed rgba(0,180,197,0.3);
  border-radius: 12px;
  background: rgba(0,180,197,0.03);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.dash-enquiry__btn:hover {
  background: rgba(0,180,197,0.08);
  border-color: var(--teal);
}

.dash-enquiry__btn svg { width: 20px; height: 20px; }

/* ----------------------------------------
   49. MOBILE SIDEBAR OVERLAY
   ---------------------------------------- */
.dash-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dash-sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* ----------------------------------------
   DASHBOARD — RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1200px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .dash {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    position: fixed;
    left: -280px;
    width: 260px;
    transition: left 0.3s ease;
  }

  .dash-sidebar.open {
    left: 0;
  }

  .dash-topbar__hamburger {
    display: flex;
  }

  .dash-content {
    padding: 1.25rem;
  }

  .dash-topbar {
    padding: 0.85rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .dash-stats {
    grid-template-columns: 1fr;
  }

  .dash-table th:nth-child(4),
  .dash-table td:nth-child(4) {
    display: none;
  }
}


/* ========================================
   DASHBOARD SUB-PAGE STYLES
   ======================================== */

/* ----------------------------------------
   50. PAGE HEADER WITH ACTION
   ---------------------------------------- */
.dash-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dash-page-header__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.dash-page-header__sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

/* ----------------------------------------
   51. FILTER TABS
   ---------------------------------------- */
.dash-filters {
  display: flex;
  gap: 0.4rem;
  background: white;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(26,40,80,0.06);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.dash-filter-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dash-filter-btn:hover { color: var(--navy); }

.dash-filter-btn.active {
  background: var(--navy);
  color: white;
}

.dash-filter-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  font-size: 0.68rem;
  font-weight: 700;
  margin-left: 0.35rem;
  padding: 0 4px;
}

.dash-filter-btn.active .dash-filter-btn__count {
  background: rgba(255,255,255,0.2);
  color: white;
}

.dash-filter-btn:not(.active) .dash-filter-btn__count {
  background: rgba(26,40,80,0.06);
  color: var(--text-secondary);
}

/* ----------------------------------------
   52. ENQUIRY FORM
   ---------------------------------------- */
.dash-form {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(26,40,80,0.04);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  padding: 2rem;
  max-width: 720px;
}

.dash-form__section {
  margin-bottom: 1.75rem;
}

.dash-form__section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(26,40,80,0.06);
}

.dash-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dash-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.dash-form__group:last-child { margin-bottom: 0; }

.dash-form__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
}

.dash-form__input,
.dash-form__select,
.dash-form__textarea {
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(26,40,80,0.12);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: white;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

.dash-form__input:focus,
.dash-form__select:focus,
.dash-form__textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,197,0.08);
}

.dash-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a2850' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.5rem;
}

.dash-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.dash-form__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.dash-form__submit {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #00a8b5);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,180,197,0.25);
}

.dash-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,180,197,0.35);
}

.dash-form__submit svg { width: 17px; height: 17px; }

.dash-form__cancel {
  padding: 0.75rem 1.5rem;
  border: 1.5px solid rgba(26,40,80,0.12);
  border-radius: 10px;
  background: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dash-form__cancel:hover {
  border-color: rgba(26,40,80,0.25);
  color: var(--navy);
}

/* ----------------------------------------
   53. PROFILE LAYOUT
   ---------------------------------------- */
.dash-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.dash-profile-card {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(26,40,80,0.04);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  padding: 1.75rem;
}

.dash-profile-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(26,40,80,0.06);
}

.dash-profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.dash-profile-info__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-profile-info__label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.dash-profile-info__value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

/* ----------------------------------------
   54. QUOTE DETAIL CARDS
   ---------------------------------------- */
.dash-quote-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-quote-card {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(26,40,80,0.04);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.2s ease;
}

.dash-quote-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}

.dash-quote-card__main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dash-quote-card__flag { font-size: 1.5rem; }

.dash-quote-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.dash-quote-card__meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

.dash-quote-card__meta span { margin-right: 1rem; }

.dash-quote-card__actions {
  display: flex;
  gap: 0.5rem;
}

.dash-quote-card__btn {
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.dash-quote-card__btn--primary {
  background: rgba(0,180,197,0.1);
  color: var(--teal);
}

.dash-quote-card__btn--primary:hover {
  background: rgba(0,180,197,0.2);
}

.dash-quote-card__btn--outline {
  background: transparent;
  border: 1.5px solid rgba(26,40,80,0.1);
  color: var(--text-secondary);
}

.dash-quote-card__btn--outline:hover {
  border-color: rgba(26,40,80,0.2);
  color: var(--navy);
}

/* ----------------------------------------
   DASHBOARD SUB-PAGES — RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .dash-profile-grid {
    grid-template-columns: 1fr;
  }

  .dash-quote-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .dash-form__row {
    grid-template-columns: 1fr;
  }

  .dash-form {
    padding: 1.25rem;
  }

  .dash-form__actions {
    flex-direction: column;
  }
}
