/* ====================================================
   CRZ TRAVEL AGENCY — ULTRA PREMIUM THEME
   ==================================================== */
:root {
  --c-dark: #1C2434;
  --c-darker: #101624;
  --c-light: #F5F7FA;
  --c-white: #FFFFFF;
  --c-accent: #0F52BA;
  /* Sapphire Blue - Premium Corporate */
  --c-accent-hover: #0B3C8A;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  background: var(--c-light);
  color: #334155;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.bg-light {
  background: var(--c-white);
}

.hidden {
  display: none !important;
}

/* ===== TYPOGRAPHY & COMPONENTS ===== */
.sub-heading {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-accent);
  padding: 8px 0;
  border-bottom: 2px solid var(--c-accent);
  margin-bottom: 20px;
}

.main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}

.main-heading i {
  color: var(--c-accent);
  font-style: normal;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.main-heading i::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--c-accent);
  z-index: -1;
  border-radius: 2px;
  opacity: 0.3;
}

.text-white {
  color: var(--c-white);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.btn-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.5vw, 16px) clamp(24px, 4vw, 56px) clamp(10px, 1.5vw, 16px) clamp(16px, 3vw, 36px);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.6rem, 1vw, 0.95rem);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--c-dark);
  color: var(--c-white);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  right: clamp(6px, 1vw, 12px);
  transform: translateY(-50%);
  width: clamp(20px, 2.5vw, 32px);
  height: clamp(20px, 2.5vw, 32px);
  background: var(--c-accent);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary i {
  position: absolute;
  right: clamp(10px, 1.5vw, 20px);
  z-index: 2;
  transition: transform 0.4s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover::before {
  transform: translateY(-50%) scale(15);
}

.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border: 2px solid #e2e8f0;
}

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

.btn-white {
  background: var(--c-white);
  color: var(--c-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--c-accent);
}

.w-full {
  width: 100%;
}



/* ===== NAVBAR PRO ===== */
.navbar-pro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 10000;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar-pro.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-pro {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--c-accent);
  border-radius: 8px;
  /* Sharper */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(15, 82, 186, 0.2);
}

.logo-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--c-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: #64748b;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-accent);
  background: transparent;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25d366;
  color: white;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

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

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--c-dark);
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

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

/* ===== HERO PRO ===== */
.hero-pro {
  min-height: clamp(60vh, 100vh, 100vh);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(100px, 15vw, 140px) 0 clamp(40px, 8vw, 80px);
}

/* Subtle grid dot background */
.hero-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

/* Accent color blob top-right */
.hero-pro::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 82, 186, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(12px, 3vw, 60px);
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 20;
}

/* Left accent bar + tag */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--c-accent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

.hero-badge i {
  color: var(--c-accent);
  font-size: 0.7rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1.0;
  margin-bottom: clamp(12px, 2.5vw, 28px);
  letter-spacing: clamp(-1px, -0.2vw, -3px);
}

.hero-title em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--c-accent);
}

/* Underline drawn line on italic word */
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-accent);
  opacity: 0.25;
  border-radius: 4px;
  transform: scaleX(1);
  transform-origin: left;
  animation: lineGrow 1.2s 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-size: clamp(0.7rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 440px;
  margin-bottom: clamp(20px, 4vw, 44px);
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: clamp(8px, 1.5vw, 16px);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: clamp(24px, 4vw, 52px);
}

/* Trust badges row below buttons */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

.hero-trust-item i {
  color: var(--c-accent);
  font-size: 1rem;
}

.hero-trust-divider {
  width: 1px;
  height: 24px;
  background: #e2e8f0;
}

/* 3D Coverflow Cards Deck */
.hero-cards-wrapper {
  position: relative;
  height: clamp(250px, 45vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
  z-index: 2;
}

.hero-cards-wrapper::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.flip-deck {
  position: relative;
  width: min(280px, 45vw);
  aspect-ratio: 28 / 40;
  height: auto;
  transform-style: preserve-3d;
}

.flip-card-pro {
  position: absolute;
  inset: 0;
  perspective: 1500px;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  transform-style: preserve-3d;
  opacity: 1;
}

.card-active {
  transform: translateX(0) translateZ(0) scale(1) rotateY(0deg);
  z-index: 10;
  opacity: 1;
}

.card-next1 {
  transform: translateX(100px) translateZ(-150px) scale(0.85) rotateY(-15deg);
  z-index: 8;
  opacity: 1;
}

.card-prev1 {
  transform: translateX(-100px) translateZ(-150px) scale(0.85) rotateY(15deg);
  z-index: 8;
  opacity: 1;
}

.card-next2 {
  transform: translateX(180px) translateZ(-300px) scale(0.7) rotateY(-25deg);
  z-index: 5;
  opacity: 1;
  pointer-events: none;
}

.card-prev2 {
  transform: translateX(-180px) translateZ(-300px) scale(0.7) rotateY(25deg);
  z-index: 5;
  opacity: 1;
  pointer-events: none;
}

.fcp-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.9s cubic-bezier(0.2, 0.9, 0.3, 1.3);
  transform-style: preserve-3d;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.fcp-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.2) 25%, transparent 30%);
  transform: translateX(-100%);
  z-index: 20;
  border-radius: 8px;
  pointer-events: none;
  transition: transform 0.8s;
}

/* Only Active Card Flips on Hover */
.card-active:hover .fcp-inner {
  transform: rotateY(180deg);
  box-shadow: 0 15px 40px rgba(15, 82, 186, 0.15);
}

.card-active:hover .fcp-inner::after {
  transform: translateX(100%);
}

.fcp-front,
.fcp-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  border: none;
}

.fcp-front {
  background-size: cover;
  background-position: center;
  background-color: var(--c-darker);
}

.fcp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 22, 36, 0.95) 0%, rgba(28, 36, 52, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 32px;
  z-index: 1;
  transition: all 0.5s ease;
}

.card-active:hover .fcp-overlay {
  background: linear-gradient(to top, rgba(16, 22, 36, 0.98) 0%, rgba(28, 36, 52, 0.6) 60%, transparent 100%);
}

.fcp-tag {
  display: inline-block;
  background: var(--c-accent);
  padding: clamp(4px, 1vw, 6px) clamp(8px, 1.5vw, 14px);
  border-radius: 4px;
  color: white;
  font-family: var(--font-sans);
  font-size: clamp(0.5rem, 1vw, 0.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.2vw, 2px);
  margin-bottom: clamp(8px, 2vw, 16px);
  align-self: flex-start;
  box-shadow: none;
  border: none;
}

.fcp-overlay h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: white;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.fcp-back {
  background: var(--c-dark);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.6);
  border: none;
}

.fcp-back i {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--c-accent);
  margin-bottom: clamp(12px, 2vw, 24px);
  filter: drop-shadow(0 10px 20px rgba(37, 99, 235, 0.3));
}

.fcp-back h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: clamp(6px, 1.5vw, 12px);
}

.fcp-back p {
  color: #94a3b8;
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  line-height: 1.4;
  margin-bottom: clamp(16px, 3vw, 32px);
}

.fcp-btn {
  padding: 12px 30px;
  background: white;
  color: var(--c-dark);
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
}

.fcp-btn:hover {
  background: var(--c-accent);
  color: white;
  transform: translateY(-2px);
}

.deck-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.deck-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s;
}

.deck-dot.active {
  background: var(--c-accent);
  transform: scale(1.3);
}

/* ===== PARALLAX BANNER (Using hero_bg.png) ===== */
.parallax-banner {
  position: relative;
  padding: 140px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 36, 52, 0.9), rgba(16, 22, 36, 0.95));
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 40px;
}

/* ===== GLOBAL CAPABILITIES GRID ===== */
.section-pro {
  padding: 120px 0;
}

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

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 30vw, 300px), 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
}

.capabilities-grid .cap-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.capabilities-grid .cap-card:nth-child(2) {
  grid-column: span 2;
  grid-row: span 1;
}

.capabilities-grid .cap-card:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}

.capabilities-grid .cap-card:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}

.capabilities-grid .cap-card:nth-child(5) {
  /* Removed display: none to show the custom tour card */
}

.cap-card {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid #e2e8f0;
  transition: all 0.5s ease;
  box-shadow: none;
}

.cap-card:hover {
  transform: scale(0.98);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border-color: var(--c-accent);
}

.cap-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.cap-card:hover .cap-overlay {
  height: 100%;
  background: rgba(16, 22, 36, 0.85);
  justify-content: flex-end;
}

.cap-overlay h3 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  transition: color 0.4s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cap-card:hover .cap-overlay h3 {
  color: var(--c-accent);
  text-shadow: none;
}

.cap-overlay p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s 0.1s;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cap-card:hover .cap-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.cap-overlay h3 i {
  color: var(--c-accent);
  font-size: 1.5rem;
}

.cap-overlay strong {
  color: white;
  font-weight: 700;
}

.tourist-card {
  background: var(--c-dark);
  border-color: var(--c-accent);
}

.tourist-card .cap-overlay {
  background: transparent;
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  padding: 6px 16px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.tourist-card:hover .cap-overlay {
  background: transparent;
}

/* ===== ABOUT & 3D AVATARS ===== */
.grid-about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(16px, 4vw, 60px);
  align-items: center;
  position: relative;
}

.grid-about::before {
  content: 'WHY US';
  position: absolute;
  top: -50px;
  left: -50px;
  font-family: var(--font-serif);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(15, 82, 186, 0.03);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

.about-visual {
  position: relative;
  height: clamp(250px, 45vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transform: skewY(-2deg);
  z-index: 1;
}

.about-visual>* {
  transform: skewY(2deg);
}

.avatar-3d {
  position: absolute;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
  animation: floatAvatar 6s ease-in-out infinite;
}

.plane-avatar {
  width: clamp(120px, 25vw, 350px);
  top: 10%;
  right: 10%;
  z-index: 3;
}

.passport-avatar {
  width: clamp(90px, 20vw, 220px);
  bottom: 10%;
  left: 10%;
  animation-delay: 2s;
  z-index: 2;
}

@keyframes floatAvatar {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

.suitcase-wrapper {
  position: absolute;
  right: 8%;
  top: clamp(-50px, -8vw, -110px);
  z-index: 10;
  width: clamp(120px, 20vw, 260px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.suitcase-avatar {
  position: relative;
  width: 100%;
  animation: floatAvatar 5s ease-in-out infinite;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.suitcase-floor-shadow {
  width: 160px;
  height: 16px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  margin-top: 10px;
  animation: shadowPulse 5s ease-in-out infinite;
}

@keyframes shadowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(0.6);
    opacity: 0.3;
  }
}

.floating-stat-card {
  position: absolute;
  bottom: 5%;
  right: -5%;
  background: white;
  padding: clamp(10px, 2vw, 24px) clamp(16px, 3vw, 36px);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  z-index: 4;
  border: 1px solid #e2e8f0;
  animation: floatAvatar 5s ease-in-out infinite reverse;
}

.floating-stat-card h4 {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--c-accent);
}

.floating-stat-card p {
  font-size: clamp(0.6rem, 1vw, 0.95rem);
  font-weight: 700;
  color: var(--c-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-desc {
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(16px, 3vw, 32px);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.about-list {
  position: relative;
  z-index: 2;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
  margin-bottom: clamp(6px, 1vw, 12px);
  font-size: clamp(0.75rem, 1.2vw, 1.05rem);
  color: var(--c-dark);
  font-weight: 600;
  background: var(--c-light);
  padding: clamp(8px, 1.5vw, 16px) clamp(12px, 2vw, 24px);
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  cursor: default;
}

.about-list li:hover {
  background: white;
  box-shadow: 0 10px 20px rgba(15, 82, 186, 0.08);
  border-color: var(--c-accent);
  transform: translateX(10px);
}

.about-list li i {
  color: var(--c-accent);
  font-size: 1.2rem;
  transition: transform 0.4s;
}

.about-list li:hover i {
  transform: scale(1.2);
}

/* ===== PACKAGES GRID PRO ===== */
.pkg-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 40vw, 400px), 1fr));
  gap: clamp(16px, 3vw, 32px);
}

.pkg-card-pro {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid #f1f5f9;
}

.pkg-card-pro:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pkg-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.pkg-card-pro:hover .pkg-img {
  transform: scale(1.08);
}

.pkg-info {
  padding: 32px;
  position: relative;
  background: white;
}

.pkg-info h4 {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 12px;
}

.pkg-info p {
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-text {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-text:hover {
  color: var(--c-accent-hover);
  gap: 12px;
}

/* ===== CONTACT SECTION PRO ===== */
.section-contact {
  background: var(--c-dark);
  position: relative;
}

.contact-box-pro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--c-darker);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cb-left {
  padding: clamp(30px, 6vw, 80px) clamp(20px, 4vw, 60px);
  background: url('images/hero_bg.png') center/cover;
  position: relative;
}

.cb-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 22, 36, 0.95), rgba(28, 36, 52, 0.85));
}

.cb-left>* {
  position: relative;
  z-index: 2;
}

.contact-methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cm-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s;
}

.cm-item i {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.cm-item:hover {
  color: var(--c-accent);
  transform: translateX(5px);
}

.cm-item:hover i {
  background: var(--c-accent);
  color: white;
  transform: rotate(-10deg);
}

.cb-right {
  padding: clamp(30px, 6vw, 80px) clamp(20px, 4vw, 60px);
  background: var(--c-white);
}

.pro-form .input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.pro-form input,
.pro-form select {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e2e8f0;
  border-radius: 0;
  font-size: 1.1rem;
  color: var(--c-dark);
  outline: none;
  transition: border-color 0.4s;
  margin-bottom: 24px;
}

.pro-form input:focus,
.pro-form select:focus {
  border-color: var(--c-accent);
  background: transparent;
  box-shadow: none;
}

.form-success {
  text-align: center;
  padding: 40px 0;
}

.form-success i {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-dark);
}

/* ===== FOOTER PRO ===== */
.footer-pro {
  background: var(--c-darker);
  color: #cbd5e1;
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr minmax(120px, 1fr) minmax(120px, 1fr);
  gap: clamp(20px, 4vw, 60px);
  margin-bottom: 60px;
}

.ft-brand p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 400px;
}

.ft-socials {
  display: flex;
  gap: 12px;
}

.ft-socials a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-socials a:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.ft-links h4 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
}

.ft-links a {
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.ft-links a:hover {
  color: var(--c-accent);
  padding-left: 8px;
}

.footer-bottom {
  padding: 32px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-bottom strong {
  color: var(--c-accent);
}

.evorise-credit {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.3s;
}

.evorise-credit:hover {
  opacity: 0.75;
}

.evorise-credit .evo {
  color: #ff7b1c;
}

/* Light orange */
.evorise-credit .rise {
  color: #067bb0;
}

/* Ocean blue  */

.footer-watermark {
  font-family: var(--font-serif);
  font-size: 16vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  text-align: center;
  line-height: 0.8;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
}

/* ===== WA FLOAT ===== */
.wa-float-pro {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-float-pro:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

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

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    border-top: 1px solid #f1f5f9;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 12px;
  }

  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 10001;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-cards-wrapper {
    height: 350px;
  }

  .flip-deck {
    width: 220px;
  }

  .card-next1 { transform: translateX(60px) translateZ(-100px) scale(0.85) rotateY(-15deg); }
  .card-prev1 { transform: translateX(-60px) translateZ(-100px) scale(0.85) rotateY(15deg); }
  .card-next2 { transform: translateX(100px) translateZ(-200px) scale(0.7) rotateY(-25deg); }
  .card-prev2 { transform: translateX(-100px) translateZ(-200px) scale(0.7) rotateY(25deg); }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .wa-float-pro {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }

  /* Contact section fixes */
  .contact-box-pro {
    grid-template-columns: 1fr;
  }

  .pro-form .input-group {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Visas/Capabilities grid fixes */
  .capabilities-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .capabilities-grid .cap-card:nth-child(1),
  .capabilities-grid .cap-card:nth-child(2),
  .capabilities-grid .cap-card:nth-child(3),
  .capabilities-grid .cap-card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ====================================================
   CREATIVE REDESIGN ADDITIONS
   ==================================================== */

/* Gov't Badge - Facebook Verified Style */
.govt-badge,
.govt-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #475569;
  border: none;
  border-radius: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  text-shadow: none;
  padding: 0;
}

.govt-badge i,
.govt-badge-inline i {
  color: #1877F2;
  /* Facebook verified blue */
  font-size: 1.15rem;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #ffffff;
  line-height: 1;
}

.govt-badge-inline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: 0 6px;
  vertical-align: middle;
  color: inherit;
}

.govt-badge-inline i {
  font-size: 1.35rem;
}

.logo-text .govt-badge {
  color: #64748b;
  font-size: 0.8rem;
  margin-top: 2px;
}

.logo-text.text-white .govt-badge {
  color: #cbd5e1;
}

.text-success {
  color: #10b981 !important;
}

/* Travel Marquee */
.travel-marquee-wrapper {
  background: var(--c-light);
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  position: relative;
  z-index: 5;
}

.travel-marquee {
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  animation: scrollMarquee 40s linear infinite;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 3.5rem;
  margin: 0 40px;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-content span:nth-child(even) {
  color: var(--c-dark);
  -webkit-text-stroke: 0;
}

.marquee-content span i {
  color: var(--c-accent);
  font-size: 2.5rem;
  -webkit-text-stroke: 0;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Stats Section */
.stats-pro {
  background: var(--c-darker);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero_bg.png') center/cover;
  opacity: 0.15;
}

.stats-pro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.4) 0%, transparent 50%, rgba(16, 185, 129, 0.2) 100%);
  pointer-events: none;
}

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

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(15, 82, 186, 0.2);
  color: var(--c-accent);
  font-size: 1.8rem;
  margin-bottom: 24px;
  border: 1px solid rgba(15, 82, 186, 0.3);
  transition: transform 0.4s;
}

.stat-item:hover i {
  transform: scale(1.1) rotate(5deg);
}

.stat-item h3 {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-item p {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

@media(max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Boarding Pass Cards */
.boarding-pass {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 8px;
  position: relative;
  border: 1px solid #e2e8f0;
}

.bp-left {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 8px 8px 0 0;
}

.bp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}

.bp-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--c-accent);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  z-index: 2;
}

.bp-divider {
  height: 0;
  border-top: 2px dashed #cbd5e1;
  position: relative;
  margin: 0 10px;
}

.bp-divider::before,
.bp-divider::after {
  content: '';
  position: absolute;
  top: -10px;
  width: 20px;
  height: 20px;
  background: var(--c-light);
  border-radius: 50%;
  border: 1px solid #e2e8f0;
}

.bp-divider::before {
  left: -21px;
  border-left: none;
  border-top: none;
  border-bottom: none;
}

.bp-divider::after {
  right: -21px;
  border-right: none;
  border-top: none;
  border-bottom: none;
}

.bp-right {
  padding: 24px;
}

.bp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.bp-airline {
  font-family: var(--font-sans);
  font-weight: 800;
  color: #475569;
  font-size: 0.9rem;
}

.bp-airline i {
  color: var(--c-accent);
  margin-right: 6px;
}

.bp-class {
  font-size: 0.85rem;
  font-weight: 700;
}

.bp-right h4 {
  font-size: 1.4rem;
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 16px;
}

.bp-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
  background: #f8fafc;
  padding: 12px;
  border-radius: 12px;
}

.bp-detail {
  display: flex;
  flex-direction: column;
}

.bp-detail span {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.bp-detail strong {
  font-size: 0.9rem;
  color: var(--c-dark);
}

.bp-right p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 20px;
}

.bp-barcode {
  height: 40px;
  background-image: repeating-linear-gradient(to right, #0f172a, #0f172a 2px, transparent 2px, transparent 4px, #0f172a 4px, #0f172a 5px, transparent 5px, transparent 8px, #0f172a 8px, #0f172a 12px, transparent 12px, transparent 14px);
  opacity: 0.3;
  margin-bottom: 24px;
}

/* Testimonials */
.testimonial-slider {
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 25s linear infinite;
  width: max-content;
  align-items: center;
}

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

.testimonial-card {
  width: 450px;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid #f1f5f9;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
  transform: scale(0.85);
  filter: blur(2px);
}

.testimonial-card:hover {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  z-index: 10;
}

.test-rating {
  color: var(--c-accent);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.test-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #475569;
  margin-bottom: 24px;
  line-height: 1.7;
}

.test-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.test-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.test-user-info h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--c-dark);
  font-size: 1.1rem;
}

.test-user-info span {
  font-size: 0.85rem;
  color: var(--c-accent);
  font-weight: 700;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

@media(max-width: 768px) {
  .testimonial-card {
    width: 300px;
  }
}

/* ====================================================
   ★★★ TICKET HIGHLIGHT SECTION — MAIN FEATURE ★★★
   ==================================================== */
.ticket-highlight-section {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  overflow: hidden;
  background: var(--c-darker);
}

.thl-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.thl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15, 82, 186, 0.5) 0%,
    rgba(16, 22, 36, 0.98) 55%,
    rgba(10, 16, 28, 1) 100%);
}

.thl-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Big glowing blue orb top-left */
.thl-orb {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 82, 186, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.thl-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 70px);
}

/* ── TOP ANNOUNCEMENT ── */
.thl-announcement {
  text-align: center;
}

.thl-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 82, 186, 0.2);
  border: 1px solid rgba(15, 82, 186, 0.5);
  color: #60a5fa;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.thl-badge i {
  color: #60a5fa;
  font-size: 0.65rem;
  animation: starPulse 1.8s ease-in-out infinite;
}

.thl-badge i:last-child {
  animation-delay: 0.9s;
}

@keyframes starPulse {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.5; transform: scale(0.7) rotate(20deg); }
}

.thl-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.thl-headline-accent {
  color: var(--c-accent);
  position: relative;
  display: inline-block;
}

.thl-headline-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 5px;
  background: var(--c-accent);
  opacity: 0.25;
  border-radius: 4px;
  animation: lineGrow 1.2s 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.thl-tagline {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.5;
}

.thl-tagline strong {
  color: white;
  font-weight: 800;
}

/* ── TWO TICKET CARDS ── */
.thl-ticket-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 900px;
}

.thl-ticket-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Top border glow that appears on hover */
.thl-ticket-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.thl-ticket-card:hover {
  background: rgba(15, 82, 186, 0.12);
  border-color: rgba(15, 82, 186, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(15, 82, 186, 0.15);
}

.thl-ticket-card:hover::before {
  opacity: 1;
}

/* Inner glow overlay */
.thl-ticket-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 82, 186, 0.2), transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0.5;
}

.thl-ticket-card:hover .thl-ticket-glow {
  opacity: 1;
}

/* System ticket variant — slightly different accent */
.thl-ticket-card--system {
  border-color: rgba(15, 82, 186, 0.2);
  background: rgba(15, 82, 186, 0.07);
}

.thl-ticket-card--system::before {
  opacity: 0.5;
}

.thl-ticket-card--system:hover {
  background: rgba(15, 82, 186, 0.18);
}

/* Card top row */
.thl-ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.thl-ticket-icon {
  width: 56px;
  height: 56px;
  background: rgba(15, 82, 186, 0.2);
  border: 1px solid rgba(15, 82, 186, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.5rem;
  transition: all 0.4s;
}

.thl-ticket-card:hover .thl-ticket-icon {
  background: var(--c-accent);
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(15, 82, 186, 0.4);
}

.thl-ticket-icon--system {
  background: rgba(15, 82, 186, 0.25);
  border-color: rgba(15, 82, 186, 0.5);
}

.thl-ticket-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.08);
}

.thl-ticket-label--system {
  color: #60a5fa;
  background: rgba(15, 82, 186, 0.15);
  border-color: rgba(15, 82, 186, 0.3);
}

.thl-ticket-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.0;
  letter-spacing: -1.5px;
}

.thl-ticket-desc {
  font-size: clamp(0.85rem, 1.2vw, 0.98rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex-grow: 1;
}

.thl-ticket-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.thl-ticket-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.thl-ticket-features li i {
  color: var(--c-accent);
  font-size: 0.8rem;
  width: 20px;
  height: 20px;
  background: rgba(15, 82, 186, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thl-ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px, 1.8vw, 16px) clamp(20px, 3vw, 32px);
  background: rgba(15, 82, 186, 0.2);
  border: 1px solid var(--c-accent);
  color: white;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.35s ease;
  margin-top: auto;
  align-self: flex-start;
}

.thl-ticket-btn:hover {
  background: var(--c-accent);
  color: white;
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(15, 82, 186, 0.45);
}

.thl-ticket-btn i {
  transition: transform 0.3s;
}

.thl-ticket-btn:hover i {
  transform: translateX(4px);
}

.thl-ticket-btn--system {
  background: var(--c-accent);
  border-color: var(--c-accent);
  box-shadow: 0 8px 24px rgba(15, 82, 186, 0.35);
}

.thl-ticket-btn--system:hover {
  background: var(--c-accent-hover);
  box-shadow: 0 12px 32px rgba(15, 82, 186, 0.55);
}

/* ── CENTRE DIVIDER ── */
.thl-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 clamp(16px, 3vw, 40px);
  flex-shrink: 0;
}

.thl-divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15, 82, 186, 0.5), transparent);
  min-height: 60px;
}

.thl-divider-circle {
  width: 52px;
  height: 52px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 0 0 8px rgba(15, 82, 186, 0.12), 0 0 0 16px rgba(15, 82, 186, 0.06);
  animation: orbPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(15, 82, 186, 0.12), 0 0 0 16px rgba(15, 82, 186, 0.06); }
  50%       { box-shadow: 0 0 0 12px rgba(15, 82, 186, 0.18), 0 0 0 24px rgba(15, 82, 186, 0.08); }
}

/* ── BOTTOM CUSTOM TOUR STRIP ── */
.thl-tour-strip {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: clamp(24px, 3.5vw, 36px) clamp(24px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.thl-tour-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
}

.thl-tour-strip-left {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  flex: 1;
}

.thl-tour-strip-icon {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--c-accent);
  filter: drop-shadow(0 0 16px rgba(15, 82, 186, 0.5));
  flex-shrink: 0;
}

.thl-tour-strip-left h4 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.thl-tour-strip-left p {
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  color: rgba(255,255,255,0.55);
}

.thl-tour-cta {
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--c-accent) !important;
  box-shadow: 0 8px 24px rgba(15, 82, 186, 0.4) !important;
}

.thl-tour-cta:hover {
  box-shadow: 0 16px 40px rgba(15, 82, 186, 0.55) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .thl-ticket-row {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .thl-divider {
    flex-direction: row;
    padding: clamp(12px, 3vw, 24px) 0;
  }

  .thl-divider-line {
    flex: 1;
    width: auto;
    height: 1px;
    min-height: unset;
    background: linear-gradient(to right, transparent, rgba(15, 82, 186, 0.5), transparent);
  }
}

@media (max-width: 600px) {
  .thl-tour-strip {
    flex-direction: column;
    text-align: center;
  }
  .thl-tour-strip-left {
    flex-direction: column;
    text-align: center;
  }
  .thl-ticket-btn {
    align-self: stretch;
    justify-content: center;
  }
}

/* ====================================================
   TOUR SPOTLIGHT SECTION — PREMIUM DARK DESIGN
   ==================================================== */
.tour-spotlight {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
  background: var(--c-darker);
}

.tour-spotlight-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.tour-spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15, 82, 186, 0.45) 0%,
    rgba(16, 22, 36, 0.97) 50%,
    rgba(10, 16, 28, 0.99) 100%);
}

/* Animated dot-grid on dark bg — same pattern as hero */
.tour-spotlight-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.tour-spotlight-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

/* ── Left: Text Content ── */
.ts-content {
  color: white;
}

.ts-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.ts-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--c-accent);
  flex-shrink: 0;
}

.ts-eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.ts-eyebrow-label i {
  font-size: 0.5rem;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.ts-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: clamp(16px, 3vw, 28px);
}

.ts-title em {
  font-style: normal;
  color: var(--c-accent);
  position: relative;
  display: inline-block;
}

/* Same animated underline as hero title */
.ts-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-accent);
  opacity: 0.3;
  border-radius: 4px;
  animation: lineGrow 1.4s 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ts-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 480px;
}

.ts-desc strong {
  color: white;
  font-weight: 700;
}

/* Feature pills — same style as about-list but dark version */
.ts-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.ts-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2vw, 24px);
  border-radius: 50px;
  transition: all 0.35s ease;
  cursor: default;
  max-width: fit-content;
}

.ts-pill:hover {
  background: rgba(15, 82, 186, 0.25);
  border-color: var(--c-accent);
  color: white;
  transform: translateX(8px);
}

.ts-pill i {
  color: var(--c-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* CTA button override for dark section */
.ts-cta {
  background: var(--c-accent) !important;
  color: white !important;
  padding: clamp(14px, 2vw, 18px) clamp(32px, 5vw, 52px) !important;
  font-size: clamp(0.85rem, 1.2vw, 1rem) !important;
  box-shadow: 0 12px 32px rgba(15, 82, 186, 0.4) !important;
}

.ts-cta:hover {
  box-shadow: 0 20px 48px rgba(15, 82, 186, 0.55) !important;
  transform: translateY(-3px) !important;
}

/* ── Right: Feature Cards ── */
.ts-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ts-stat-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ts-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.ts-stat-card:hover {
  background: rgba(15, 82, 186, 0.12);
  border-color: rgba(15, 82, 186, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ts-stat-card:hover::before {
  opacity: 1;
}

/* Accent-highlighted card */
.ts-stat-card--accent {
  background: rgba(15, 82, 186, 0.15);
  border-color: rgba(15, 82, 186, 0.35);
}

.ts-stat-card--accent::before {
  opacity: 1;
}

.ts-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(15, 82, 186, 0.2);
  border: 1px solid rgba(15, 82, 186, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.3rem;
  transition: transform 0.4s;
}

.ts-stat-card:hover .ts-stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.ts-stat-body h4 {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.ts-stat-body p {
  font-size: clamp(0.75rem, 1vw, 0.88rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* Capabilities grid 5th card — no longer "coming soon" style */
.cap-card--tour {
  border: 1px solid rgba(15, 82, 186, 0.4);
}

.cap-badge--highlight {
  background: var(--c-accent) !important;
  border: none !important;
  color: white !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 16px rgba(15, 82, 186, 0.4) !important;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .tour-spotlight-inner {
    grid-template-columns: 1fr;
  }
  .ts-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }
}

@media (max-width: 576px) {
  .ts-cards {
    grid-template-columns: 1fr;
  }
  .ts-pill {
    max-width: 100%;
  }
}