/* ============================================================
   style.css — Master Stylesheet
   Thish Visa World Route

   Sections:
   1.  Reset & Variables
   2.  Typography
   3.  Layout & Utility
   4.  Navigation (menu.php)
   5.  WhatsApp & Scroll-to-Top Buttons
   6.  Hero Slider (slider.php)
   7.  Buttons
   8.  Stats Bar
   9.  Section Shared
   10. Destination Cards
   11. Service Cards
   12. Why Choose Us
   13. Testimonials
   14. Partners Logos
   15. CTA / Lead Capture Form
   16. Footer (footer.php)
   17. Page Hero (inner pages)
   18. About Page
   19. Services Page
   20. Destinations Page
   21. Stories Page
   22. Blog Page
   23. Gallery Page
   24. Contact Page
   25. Scroll Reveal & Animations
   26. Responsive — Tablet
   27. Responsive — Mobile
   28. Responsive — Small Mobile
   ============================================================ */


/* ============================================================
   1. RESET & VARIABLES
   ============================================================ */

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

:root {
  /* Brand Colors */
  --primary-blue: #1A3C6E;
  --accent-red: #D62839;
  --dark-navy: #0E1F3D;
  --mid-blue: #2E5FA1;
  --light-blue: #E8EEF6;
  --off-white: #F4F6FA;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-muted: #5A6577;
  --wa-green: #25D366;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(14, 31, 61, 0.06);
  --shadow-md: 0 4px 24px rgba(14, 31, 61, 0.08);
  --shadow-lg: 0 8px 40px rgba(14, 31, 61, 0.12);

  /* Radius */
  --radius: 8px;
  --radius-lg: 14px;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 10000;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }


/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--primary-blue);
}

p {
  margin-bottom: 12px;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}


/* ============================================================
   3. LAYOUT & UTILITY
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }


/* ============================================================
   4. NAVIGATION (menu.php)
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(14, 31, 61, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-main {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-accent {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-red);
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-red);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--accent-red);
  color: var(--white);
  border-radius: 4px;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: #b81f2e;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 31, 61, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--white);
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--accent-red);
}

.mobile-menu-cta {
  font-family: 'DM Mono', monospace !important;
  font-size: 14px !important;
  background: var(--accent-red);
  padding: 12px 28px;
  border-radius: 4px;
  margin-top: 12px;
}


/* ============================================================
   5. WHATSAPP & SCROLL-TO-TOP BUTTONS
   ============================================================ */

.wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
  animation: waFloat 3s ease-in-out infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  animation: none;
}

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

.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent-red);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}


/* ============================================================
   6. HERO SLIDER (slider.php)
   ============================================================ */

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.slider-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 31, 61, 0.85) 0%, rgba(14, 31, 61, 0.5) 50%, transparent 100%);
}

.slide-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative circles */
.slide-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.slide-circle-1 {
  width: 500px;
  height: 500px;
  right: -100px;
  top: -100px;
  animation: rotateSlow 60s linear infinite;
}

.slide-circle-2 {
  width: 300px;
  height: 300px;
  right: 10%;
  bottom: -50px;
  animation: rotateSlow 45s linear infinite reverse;
}

.slide-circle-3 {
  width: 200px;
  height: 200px;
  left: 60%;
  top: 20%;
  border-color: rgba(214, 40, 57, 0.1);
  animation: pulse 4s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
  width: 100%;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}

.slide-badge-line {
  width: 32px;
  height: 1.5px;
  background: var(--accent-red);
}

.slide-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  max-width: 660px;
  margin-bottom: 20px;
}

.slide-title em {
  font-style: normal;
  color: var(--accent-red);
}

.slide-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.05);
}

.slider-btn:hover {
  border-color: var(--accent-red);
  background: var(--accent-red);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
  transition: stroke 0.25s ease;
}

.slider-btn:hover svg {
  stroke: var(--white);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--accent-red);
  width: 28px;
  border-radius: 5px;
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  background: var(--accent-red);
  width: 0;
  transition: width 0.1s linear;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.open .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-close svg {
  width: 24px;
  height: 24px;
}

.video-modal-embed {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-modal-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


/* ============================================================
   7. BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--accent-red);
  color: var(--white);
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #b81f2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 40, 57, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1.5px solid var(--light-blue);
  color: var(--primary-blue);
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-outline-dark:hover {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}


/* ============================================================
   8. STATS BAR
   ============================================================ */

.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -56px;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.stats-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.stat-item {
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--light-blue);
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  color: var(--accent-red);
}

.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ============================================================
   9. SECTION SHARED
   ============================================================ */

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 16px;
}

.section-tag-line {
  width: 24px;
  height: 1.5px;
  background: var(--accent-red);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--primary-blue);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header.center .section-desc {
  margin: 0 auto;
}


/* ============================================================
   10. DESTINATION CARDS
   ============================================================ */

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dest-card-top {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.dest-card-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dest-card-bg.nz { background: linear-gradient(135deg, #0b3d6b, #1a6fb5); }
.dest-card-bg.au { background: linear-gradient(135deg, #1a5c2a, #2d9f4e); }
.dest-card-bg.uk { background: linear-gradient(135deg, #8b1a2b, #c9354a); }
.dest-card-bg.eu { background: linear-gradient(135deg, #1a3c6e, #2e5fa1); }

.dest-card-flag {
  font-size: 56px;
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  right: -8px;
  bottom: -8px;
}

.dest-card-country {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.dest-card-body {
  padding: 20px;
}

.dest-card-uni-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.dest-card-unis {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.dest-card-link {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}

.dest-card:hover .dest-card-link { gap: 12px; }

.dest-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.dest-card:hover .dest-card-link svg { transform: translateX(2px); }

.dest-cta {
  text-align: center;
  margin-top: 40px;
}


/* ============================================================
   11. SERVICE CARDS
   ============================================================ */

.serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.serv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--light-blue);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.serv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

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

.serv-card:hover::before { transform: scaleX(1); }

.serv-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.serv-card:hover .serv-icon { background: var(--primary-blue); }

.serv-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.serv-card:hover .serv-icon svg { stroke: var(--white); }

.serv-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.serv-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   12. WHY CHOOSE US
   ============================================================ */

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

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border-left: 3px solid transparent;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent-red);
  transform: translateY(-3px);
}

.why-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--light-blue);
  line-height: 1;
  min-width: 40px;
  transition: color 0.3s ease;
}

.why-card:hover .why-num { color: var(--accent-red); }

.why-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   13. TESTIMONIALS
   ============================================================ */

.testi-slider {
  position: relative;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-slide {
  min-width: 100%;
  padding: 0 60px;
}

.testi-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testi-quote-icon {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  color: var(--light-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.testi-text {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}

.testi-avatar.a1 { background: var(--primary-blue); }
.testi-avatar.a2 { background: var(--mid-blue); }
.testi-avatar.a3 { background: var(--accent-red); }

.testi-name {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--dark-navy);
}

.testi-meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.testi-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.testi-btn:hover {
  border-color: var(--accent-red);
  background: var(--accent-red);
}

.testi-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.25s ease;
}

.testi-btn:hover svg { stroke: var(--white); }

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-blue);
  transition: all 0.3s ease;
  cursor: pointer;
}

.testi-dot.active {
  background: var(--accent-red);
  width: 24px;
  border-radius: 4px;
}


/* ============================================================
   14. PARTNER LOGOS
   ============================================================ */

.partners-track {
  display: flex;
  gap: 48px;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partner-logo {
  flex-shrink: 0;
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--text-muted);
  opacity: 0.5;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  padding: 12px 0;
}

.partner-logo:hover { opacity: 1; }


/* ============================================================
   15. CTA / LEAD CAPTURE FORM
   ============================================================ */

.cta-section {
  background: linear-gradient(155deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  right: -100px;
  top: -100px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-red);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.cta-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.cta-form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.cta-form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--light-blue);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.08);
}

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

/* Honeypot — hidden from users, visible to bots */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent-red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 4px;
}

.form-submit:hover {
  background: #b81f2e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(214, 40, 57, 0.3);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form success/error messages */
.form-message {
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 12px;
  display: none;
  animation: fadeUp 0.4s ease;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  display: block;
  background: #fce4ec;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}


/* ============================================================
   16. FOOTER (footer.php)
   ============================================================ */

.footer {
  background: var(--dark-navy);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.footer-social a:hover { background: var(--accent-red); }

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.6);
  transition: fill 0.25s ease;
}

.footer-social a:hover svg { fill: var(--white); }

.footer-heading {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-red);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.7); }


/* ============================================================
   17. PAGE HERO (inner pages — about, services, etc.)
   ============================================================ */

.page-hero {
  background: linear-gradient(155deg, var(--dark-navy) 0%, var(--primary-blue) 55%, var(--mid-blue) 100%);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  right: -120px;
  top: -120px;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 40, 57, 0.06) 0%, transparent 70%);
  left: -80px;
  bottom: -80px;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.ph-badge-line {
  width: 32px;
  height: 1.5px;
  background: var(--accent-red);
}

.ph-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.ph-title em {
  font-style: normal;
  color: var(--accent-red);
}

.ph-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 560px;
}

.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb a { transition: color 0.2s ease; }
.breadcrumb a:hover { color: rgba(255, 255, 255, 0.7); }
.breadcrumb .sep { margin: 0 2px; }
.breadcrumb .current { color: rgba(255, 255, 255, 0.6); }


/* ============================================================
   18. ABOUT PAGE
   ============================================================ */

/* Story Grid */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.story-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.story-content .story-lead {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 24px;
}

.story-content p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
}

.story-pullquote {
  margin: 32px 0;
  padding: 28px 0 28px 28px;
  border-left: 3px solid var(--accent-red);
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--primary-blue);
  line-height: 1.5;
  font-style: italic;
}

.story-pullquote cite {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.06em;
}

/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--light-blue);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

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

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.mv-card:hover::before { transform: scaleX(1); }

.mv-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}

.mv-card:hover .mv-card-icon { background: var(--primary-blue); }

.mv-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.mv-card:hover .mv-card-icon svg { stroke: var(--white); }

.mv-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 10px;
}

.mv-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--dark-navy);
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Values */
.vals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.val-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--light-blue);
  transition: all 0.35s ease;
}

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

.val-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.val-card:hover .val-icon {
  background: var(--accent-red);
  transform: scale(1.08);
}

.val-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.val-card:hover .val-icon svg { stroke: var(--white); }

.val-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.val-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
}

.team-photo-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-bg.c1 { background: linear-gradient(135deg, var(--primary-blue), var(--mid-blue)); }
.team-photo-bg.c2 { background: linear-gradient(135deg, var(--mid-blue), #4a7ec2); }
.team-photo-bg.c3 { background: linear-gradient(135deg, #2a4f7e, var(--primary-blue)); }
.team-photo-bg.c4 { background: linear-gradient(135deg, var(--dark-navy), var(--primary-blue)); }

.team-photo-initials {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.15);
}

.team-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(14, 31, 61, 0.8), transparent);
}

.team-photo-overlay span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.team-info { padding: 20px; }

.team-name {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--dark-navy);
  margin-bottom: 2px;
}

.team-role {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.team-quote {
  font-size: 13px;
  font-style: italic;
  color: var(--primary-blue);
  padding-left: 12px;
  border-left: 2px solid var(--light-blue);
  line-height: 1.5;
}

/* Timeline */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-blue);
  transform: translateX(-50%);
}

.tl-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 48px;
}

.tl-item:last-child { margin-bottom: 0; }
.tl-left { width: 50%; padding-right: 40px; text-align: right; }
.tl-right { width: 50%; padding-left: 40px; }

.tl-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--light-blue);
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}

.tl-item:hover .tl-dot {
  border-color: var(--accent-red);
  background: var(--accent-red);
  transform: translateX(-50%) scale(1.3);
}

.tl-year {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.tl-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================================
   19. SERVICES PAGE (accordion, process flow)
   ============================================================ */

.serv-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.serv-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--light-blue);
  transition: all 0.35s ease;
}

.serv-detail-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.serv-detail-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--light-blue);
  line-height: 1;
  margin-bottom: 12px;
}

.serv-detail-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.serv-detail-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Process Flow */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 40px 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 28px;
  width: 40px;
  height: 2px;
  background: var(--light-blue);
}

.process-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-icon {
  background: var(--primary-blue);
  transform: scale(1.1);
}

.process-step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-blue);
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.3s ease;
}

.process-step:hover .process-step-icon svg { stroke: var(--white); }

.process-step-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-blue);
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-navy);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--accent-red); }

.faq-question svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ============================================================
   20. DESTINATIONS PAGE (comparison table)
   ============================================================ */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.comparison-table thead th {
  background: var(--primary-blue);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
}

.comparison-table thead th:first-child { border-radius: 8px 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 8px 0 0; }

.comparison-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--light-blue);
  vertical-align: top;
}

.comparison-table tbody tr:nth-child(even) { background: var(--off-white); }
.comparison-table tbody tr:hover { background: var(--light-blue); }


/* ============================================================
   21. STORIES PAGE
   ============================================================ */

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.story-card-photo {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.story-card-body {
  padding: 24px;
}

.story-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.story-card-dest {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 14px;
}

.story-card-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   22. BLOG PAGE
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--light-blue);
  color: var(--mid-blue);
  display: inline-block;
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--dark-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-card-date {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
}

.blog-card-link {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}

.blog-card:hover .blog-card-link { gap: 12px; }

/* Blog categories filter */
.blog-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

.blog-cat-btn {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  border: 1.5px solid var(--light-blue);
  color: var(--text-muted);
  background: var(--white);
  transition: all 0.25s ease;
  cursor: pointer;
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: rgba(214, 40, 57, 0.04);
}

/* Newsletter */
.newsletter-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.newsletter-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.newsletter-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--light-blue);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease;
}

.newsletter-form input:focus {
  border-color: var(--primary-blue);
}


/* ============================================================
   23. GALLERY PAGE
   ============================================================ */

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.gallery-filter-btn {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 4px;
  border: 1.5px solid var(--light-blue);
  color: var(--text-muted);
  background: var(--white);
  transition: all 0.25s ease;
  cursor: pointer;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--primary-blue);
  color: var(--white);
  background: var(--primary-blue);
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 31, 61, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close svg { width: 28px; height: 28px; }

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
}


/* ============================================================
   24. CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-blue);
  fill: none;
  stroke-width: 1.8;
}

.contact-info-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--text-dark);
}

.contact-info-value a { color: var(--primary-blue); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--accent-red); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid var(--light-blue);
}

.contact-map iframe {
  width: 100%;
  height: 240px;
  border: none;
}

/* Social icons (contact page — larger) */
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.contact-social a {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.contact-social a:hover {
  background: var(--accent-red);
}

.contact-social a svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-blue);
  transition: fill 0.25s ease;
}

.contact-social a:hover svg { fill: var(--white); }


/* ============================================================
   25. SCROLL REVEAL & ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.10s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.20s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.30s; }

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

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

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


/* ============================================================
   26. RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .serv-grid { grid-template-columns: repeat(2, 1fr); }
  .serv-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { gap: 40px; }
  .story-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .vals-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .process-flow { flex-wrap: wrap; gap: 24px; }
  .process-step:not(:last-child)::after { display: none; }
}


/* ============================================================
   27. RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Slider */
  .slide-title { font-size: 30px; }
  .slide-desc { font-size: 15px; }
  .slide-actions { flex-direction: column; }
  .slide-actions .btn-primary,
  .slide-actions .btn-outline {
    text-align: center;
    justify-content: center;
  }
  .slider-controls { bottom: 100px; }
  .hero-scroll { display: none; }

  /* Stats */
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item { padding: 24px 20px; }

  /* Grids */
  .dest-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .serv-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .vals-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery-grid { columns: 2; }

  /* Form & CTA */
  .cta-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testi-slide { padding: 0 16px; }
  .testi-text { font-size: 16px; }

  /* Timeline */
  .timeline::before { left: 0; }
  .tl-item { flex-direction: column; padding-left: 32px; }
  .tl-left { width: 100%; padding-right: 0; text-align: left; }
  .tl-right { display: none; }
  .tl-dot { left: 0; transform: none; top: 4px; }
  .tl-item:hover .tl-dot { transform: scale(1.3); }

  /* Page Hero */
  .ph-title { font-size: 30px; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}


/* ============================================================
   28. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }
  .cta-section { padding: 72px 0; }
  .cta-form-card { padding: 28px 24px; }
  .slider-controls { bottom: 90px; }
  .gallery-grid { columns: 1; }
  .ph-title { font-size: 26px; }
  .slide-title { font-size: 26px; }
  .blog-categories { justify-content: flex-start; }
  .gallery-filters { justify-content: flex-start; }
}


/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
  body::after { display: none; }
  .nav, .wa-btn, .scroll-top, .slider-controls, .hero-scroll { display: none !important; }
  .hero-slider { min-height: auto; height: auto; }
  .slider-track { height: auto; position: static; }
  .slide { position: static; opacity: 1; }
  .section { padding: 40px 0; }
  .footer { padding: 24px 0; }
  a { color: var(--primary-blue) !important; }
}
