/* ==========================================================================
   GRADITUDE - DESIGN SYSTEM & STYLESHEET
   Brand Colors: #de2e03, #fc4b08, #ff7c39, #ffa460
   "For the leap. For the journey. For what comes next."
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap");

:root {
  /* Brand Palette (Exact Match from User Palette) */
  --flame-crimson: #de2e03;
  --flame-orange: #fc4b08;
  --warm-coral: #ff7c39;
  --peach-glow: #ffa460;
  --flame-peach: #ffa460;
  
  /* Rich Gradient Combinations */
  --grad-primary: linear-gradient(135deg, #de2e03 0%, #fc4b08 50%, #ff7c39 100%);
  --grad-warm: linear-gradient(135deg, #fc4b08 0%, #ff7c39 50%, #ffa460 100%);
  --grad-subtle: linear-gradient(135deg, rgba(222, 46, 3, 0.08) 0%, rgba(252, 75, 8, 0.04) 100%);
  --grad-hero: linear-gradient(180deg, #faf6f0 0%, #ffffff 100%);
  --grad-dark: linear-gradient(135deg, #18120f 0%, #241a15 100%);
  --grad-card-dark: linear-gradient(145deg, #221a15 0%, #17110e 100%);
  
  /* Dark & Espresso Shades */
  --espresso-darkest: #0e0a08;
  --espresso-dark: #16100d;
  --espresso-card: #201713;
  --espresso-border: #32251e;
  --espresso-muted: #8d7b72;
  
  /* Light & Cream Shades */
  --cream-bg: #fbf8f3;
  --cream-card: #ffffff;
  --cream-card-alt: #f6efe6;
  --cream-border: #ebdcd0;
  --cream-border-subtle: #f0e6dc;
  
  /* Neutral Text Shades */
  --text-dark: #19120e;
  --text-body: #4c3e37;
  --text-muted: #7d6e66;
  --text-light: #ffffff;
  --text-light-muted: #c8b9b0;
  
  /* Functional Colors */
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.12);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.12);
  --info: #0284c7;
  
  /* Typography */
  --font-heading: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Elevation / Shadows */
  --shadow-sm: 0 2px 8px rgba(32, 23, 19, 0.05);
  --shadow-md: 0 8px 24px rgba(32, 23, 19, 0.08);
  --shadow-lg: 0 16px 40px rgba(32, 23, 19, 0.12);
  --shadow-glow: 0 10px 30px rgba(252, 75, 8, 0.25);
  --shadow-glow-crimson: 0 10px 30px rgba(222, 46, 3, 0.28);
  
  /* Border Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream-bg);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.display-title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
}

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

.tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(222, 46, 3, 0.08);
  border: 1px solid rgba(222, 46, 3, 0.18);
  border-radius: var(--radius-full);
  color: var(--flame-crimson);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* Layout & Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1360px;
}

.container-narrow {
  max-width: 860px;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background: var(--espresso-darkest);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

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

.section-dark .section-subtitle {
  color: var(--text-light-muted);
}

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

/* Navbar & Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-border-subtle);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(32, 23, 19, 0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.brand-logo .brand-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition-bounce);
  font-size: 1.25rem;
}

.brand-logo:hover .brand-icon {
  transform: rotate(-6deg) scale(1.08);
}

.brand-logo span.highlight {
  color: var(--flame-crimson);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-body);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--grad-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--flame-crimson);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-dark);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(222, 46, 3, 0.4);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 1.5px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--warm-coral);
  color: var(--flame-crimson);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--espresso-card);
  color: white;
  border: 1px solid var(--espresso-border);
}

.btn-dark:hover {
  background: var(--espresso-border);
  border-color: var(--peach-glow);
  transform: translateY(-2px);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.6s ease;
}

.btn-glow:hover::before {
  transform: rotate(45deg) translateY(100%);
}

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

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.1rem;
}

/* Hero Section with Luxury Cafe Background */
.hero-section {
  padding: 5.5rem 0 6rem;
  position: relative;
  background: linear-gradient(135deg, rgba(16, 11, 8, 0.86) 0%, rgba(26, 17, 13, 0.78) 50%, rgba(14, 9, 7, 0.92) 100%),
              url("../assets/hero-bg.jpg") center center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 25%, rgba(252, 75, 8, 0.16) 0%, transparent 60%),
              radial-gradient(circle at 15% 75%, rgba(222, 46, 3, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(222, 46, 3, 0.2);
  border: 1px solid rgba(252, 75, 8, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffa460;
  margin-bottom: 1.25rem;
}

.hero-section .hero-title {
  color: #ffffff;
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-section .hero-subtitle {
  color: #e5d8cf;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 580px;
}

.hero-section .question-chip {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.hero-section .question-chip:hover {
  border-color: var(--flame-orange);
  background: rgba(222, 46, 3, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(222, 46, 3, 0.4);
}

.hero-section .hero-promise {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #d6c8be;
  margin-top: 1.25rem;
}

.hero-section .hero-promise strong {
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-greeting {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--flame-crimson);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-questions-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0 2rem;
}

.question-chip {
  background: white;
  border: 1px solid var(--cream-border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  transition: all var(--transition-fast);
}

.question-chip:hover {
  border-color: var(--warm-coral);
  background: rgba(255, 124, 57, 0.08);
  transform: translateY(-2px);
}

.hero-promise {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(22, 16, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 164, 96, 0.25);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-badge-overlay .badge-text h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.hero-badge-overlay .badge-text p {
  color: var(--peach-glow);
  font-size: 0.85rem;
}

/* Interactive Story Booking Form */
.booking-section {
  position: relative;
}

.booking-container {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-lg);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.booking-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--grad-primary);
}

.form-group-block {
  margin-bottom: 2.25rem;
}

.form-label-styled {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.form-label-styled span.hint {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.interactive-pills-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill-choice {
  position: relative;
  cursor: pointer;
}

.pill-choice input[type="radio"],
.pill-choice input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  background: var(--cream-bg);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  user-select: none;
}

.pill-choice:hover .pill-badge {
  border-color: var(--warm-coral);
  background: rgba(255, 124, 57, 0.08);
}

.pill-choice input:checked + .pill-badge {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(222, 46, 3, 0.3);
  transform: translateY(-2px);
}

.form-input-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.input-field-group {
  position: relative;
}

.input-field-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.custom-input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: var(--cream-bg);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.custom-input:focus {
  background: white;
  border-color: var(--flame-orange);
  box-shadow: 0 0 0 3px rgba(252, 75, 8, 0.15);
}

.vibe-toggle-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--cream-card-alt);
  border-radius: var(--radius-md);
  border: 1px dashed var(--warm-coral);
  margin-bottom: 2rem;
}

.vibe-toggle-box .vibe-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* "That's Me" Empathy Insight Cards */
.thats-me-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.empathy-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.empathy-card:hover {
  transform: translateY(-6px);
  border-color: var(--flame-orange);
  box-shadow: var(--shadow-lg);
}

.empathy-card .quote-icon {
  font-size: 1.75rem;
  color: var(--warm-coral);
  margin-bottom: 0.75rem;
}

.empathy-card .anxiety-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.empathy-card .graditude-response {
  font-size: 1rem;
  color: var(--text-body);
  background: var(--cream-bg);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border-left: 3.5px solid var(--flame-crimson);
}

.empathy-card .card-action {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--flame-crimson);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Pathways Section */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pathway-card {
  background: var(--espresso-card);
  border: 1px solid var(--espresso-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pathway-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.pathway-card:hover {
  transform: translateY(-8px);
  border-color: var(--warm-coral);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

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

.pathway-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(252, 75, 8, 0.15);
  border: 1px solid rgba(252, 75, 8, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.pathway-card h3 {
  color: white;
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.pathway-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pathway-features {
  border-top: 1px solid var(--espresso-border);
  padding-top: 1.25rem;
  margin-bottom: 1.75rem;
}

.pathway-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--peach-glow);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Mentors Section */
.mentors-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.mentor-cards-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.mentor-card {
  background: white;
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

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

.mentor-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.mentor-flag {
  font-size: 1.5rem;
}

.mentor-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.mentor-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(222, 46, 3, 0.08);
  color: var(--flame-crimson);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.mentor-quote {
  font-size: 0.875rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.mentor-destination {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Country Destination Hub & Filter Matrix */
.country-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-tab-btn {
  padding: 0.65rem 1.4rem;
  background: white;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab-btn:hover {
  border-color: var(--warm-coral);
  background: rgba(255, 124, 57, 0.08);
}

.filter-tab-btn.active {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(222, 46, 3, 0.3);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.destination-card {
  background: white;
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.destination-card:hover {
  transform: translateY(-6px);
  border-color: var(--warm-coral);
  box-shadow: var(--shadow-lg);
}

.destination-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.country-flag-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.flag-emoji {
  font-size: 2.2rem;
  line-height: 1;
}

.destination-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.country-tagline {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--flame-crimson);
  margin-bottom: 1rem;
}

.destination-perks {
  margin: 1.25rem 0 1.5rem;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: var(--text-body);
}

.perk-item svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge-stat {
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.badge-stat.wage {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-stat.visa {
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-stat.language {
  background: rgba(222, 46, 3, 0.08);
  color: var(--flame-crimson);
  border: 1px solid rgba(222, 46, 3, 0.2);
}

/* Career Opportunities Radar & Framework */
.career-radar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.radar-card {
  background: var(--espresso-card);
  border: 1px solid var(--espresso-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  color: white;
  transition: all var(--transition-smooth);
}

.radar-card:hover {
  border-color: var(--flame-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.radar-card .country-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.radar-card .route-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--peach-glow);
  margin-bottom: 0.5rem;
}

.radar-card h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.radar-card p {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.hot-for-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.hot-for-box strong {
  color: var(--warm-coral);
  display: block;
  margin-bottom: 0.25rem;
}

.move-stepper {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--peach-glow);
  padding-top: 0.75rem;
  border-top: 1px solid var(--espresso-border);
}

/* The 4-step framework */
.framework-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.framework-step {
  background: white;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-smooth);
}

.framework-step:hover {
  border-color: var(--flame-crimson);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  color: white;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.framework-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.framework-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* "The Graditude Moment" Inspiring Banner */
.moment-banner {
  background: linear-gradient(135deg, rgba(222, 46, 3, 0.88) 0%, rgba(32, 20, 15, 0.84) 50%, rgba(14, 10, 8, 0.94) 100%),
              url('../assets/graditude-moment-bg.jpg') center center / cover no-repeat;
  border-radius: 28px;
  padding: 4.5rem 2.5rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(222, 46, 3, 0.25), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.moment-sparkle-icon {
  font-size: 2.8rem;
  display: inline-block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(255,164,96,0.6));
  animation: floatEmoji 2.5s ease-in-out infinite alternate;
}

.moment-title {
  color: #ffffff !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.moment-desc {
  font-size: clamp(1rem, 1.8vw, 1.25rem) !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  max-width: 680px !important;
  margin: 0 auto 2rem !important;
  color: #f7ede5 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.moment-highlight {
  display: block;
  color: #ffa460 !important;
  font-weight: 800 !important;
  margin-top: 0.5rem;
  font-size: 1.05em;
}

.moment-cta-btn {
  background: #ffffff !important;
  color: var(--flame-crimson) !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  padding: 14px 28px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.moment-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 35px rgba(255, 124, 57, 0.4) !important;
}

.moment-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.moment-banner h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.moment-banner p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.moment-banner .btn-white {
  background: white;
  color: var(--flame-crimson);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.moment-banner .btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--cream-bg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Footer */
.site-footer {
  background: var(--espresso-darkest);
  color: var(--text-light-muted);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--espresso-border);
}

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

.footer-brand h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--peach-glow);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--espresso-border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ==========================================================================
   MODAL / POPUP DIALOG SYSTEM (COMPLETE & ROBUST)
   ========================================================================== */
.modal-overlay,
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 10, 8, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active,
.booking-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content,
.modal-dialog,
.booking-modal .modal-card {
  background: #ffffff;
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255, 164, 96, 0.25);
  border: 2px solid var(--flame-peach);
  color: #140f0c;
  box-sizing: border-box;
}

.modal-overlay.active .modal-content,
.modal-overlay.active .modal-dialog,
.booking-modal.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn,
.modal-close,
.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f4ece2;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  color: #5c4a40;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover,
.modal-close:hover,
.close-modal:hover {
  background: var(--flame-crimson);
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-celebrate-badge,
.modal-cup-animation {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  animation: floatEmoji 2s ease-in-out infinite alternate;
}

@keyframes floatEmoji {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(4deg); }
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(222, 46, 3, 0.1);
  color: var(--flame-crimson);
  border: 1px solid rgba(222, 46, 3, 0.25);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.modal-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #140f0c;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: #61534b;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.modal-vibe-summary {
  background: #fbf6ef;
  border: 1px solid #ebd9c8;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  color: #de2e03;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  text-align: center;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image-card img {
    height: 380px;
  }
  .form-input-grid {
    grid-template-columns: 1fr;
  }
  .pathways-grid {
    grid-template-columns: 1fr;
  }
  .mentors-wrapper {
    grid-template-columns: 1fr;
  }
  .framework-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--cream-border);
    transform: translateY(-120%);
    transition: transform var(--transition-smooth);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .booking-container {
    padding: 2rem 1.5rem;
  }
  .mentor-cards-stack {
    grid-template-columns: 1fr;
  }
  .framework-timeline {
    grid-template-columns: 1fr;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   2-STEP COFFEE BOOKING FORM IN HERO
   ========================================================================== */
.hero-booking-card {
  background: #ffffff;
  color: #140f0c;
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--flame-orange);
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.hero-booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--flame-crimson), var(--flame-orange), var(--flame-peach));
}

/* Stepper Progress Bar */
.stepper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0eae1;
}

.stepper-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--flame-crimson);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stepper-dots {
  display: flex;
  gap: 6px;
}

.stepper-dot {
  width: 24px;
  height: 6px;
  border-radius: 4px;
  background: #e2d9cf;
  transition: all 0.3s ease;
}

.stepper-dot.active {
  background: var(--flame-orange);
  width: 36px;
}

/* Step containers */
.form-step {
  display: none;
  animation: fadeInSlide 0.35s ease forwards;
}

.form-step.active {
  display: block;
}

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

/* Hero card labels & typography */
.hero-booking-card .form-label-styled {
  font-size: 1rem;
  font-weight: 700;
  color: #140f0c;
  margin-bottom: 10px;
  display: block;
}

.hero-booking-card .form-label-styled .hint {
  font-size: 0.82rem;
  font-weight: 400;
  color: #7a6e65;
  margin-left: 4px;
}

.hero-booking-card .interactive-pills-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-booking-card .pill-choice input {
  display: none;
}

.hero-booking-card .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1.5px solid #ded5c9;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2b221b;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.hero-booking-card .pill-badge:hover {
  border-color: var(--flame-orange);
  background: #fff8f4;
  transform: translateY(-1px);
}

.hero-booking-card .pill-choice input:checked + .pill-badge {
  background: linear-gradient(135deg, var(--flame-crimson), var(--flame-orange));
  border-color: var(--flame-orange);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(222, 46, 3, 0.35);
  transform: scale(1.02);
}

/* Vibe toggle box in hero card */
.hero-booking-card .vibe-toggle-box {
  background: #fff7f2;
  border: 1.5px dashed #f8c29f;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-booking-card .vibe-toggle-box .vibe-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #140f0c;
}

.hero-booking-card .vibe-options-row {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.hero-booking-card .vibe-options-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #3d3027;
  cursor: pointer;
}

/* Light theme input fields for card */
.hero-booking-card .light-input {
  width: 100%;
  padding: 12px 14px;
  background: #fbf9f6;
  border: 1.5px solid #ded5c9;
  border-radius: 12px;
  color: #140f0c;
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.hero-booking-card .light-input:focus {
  outline: none;
  border-color: var(--flame-orange);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(252, 75, 8, 0.15);
}

.hero-booking-card .input-field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a3d34;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-booking-card .step-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.hero-booking-card .btn-next-step {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--flame-crimson), var(--flame-orange));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(222, 46, 3, 0.35);
  transition: all 0.2s ease;
}

.hero-booking-card .btn-next-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(222, 46, 3, 0.45);
}

.hero-booking-card .btn-back-step {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5c4f46;
  background: #f0eae1;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.hero-booking-card .btn-back-step:hover {
  background: #e2d9cf;
  color: #140f0c;
}

.hero-booking-card .privacy-note {
  font-size: 0.8rem;
  color: #7a6e65;
  text-align: center;
  margin-top: 14px;
}

/* ==========================================================================
   UPGRADED "THAT'S ME" EMPATHY SECTION STYLES
   ========================================================================== */
.thats-me-section-wrapper {
  background: linear-gradient(180deg, #fbf8f3 0%, #f7f1e7 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.thats-me-section-wrapper::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 75, 8, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.thats-me-section-wrapper::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(222, 46, 3, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.thats-me-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 44px;
  flex-wrap: wrap;
}

.empathy-filter-btn {
  background: #ffffff;
  border: 1.5px solid #ded5c9;
  color: #5c4f46;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.empathy-filter-btn:hover {
  border-color: var(--flame-orange);
  color: var(--flame-crimson);
  background: #fff8f4;
  transform: translateY(-2px);
}

.empathy-filter-btn.active {
  background: linear-gradient(135deg, var(--flame-crimson), var(--flame-orange));
  color: #ffffff !important;
  border-color: var(--flame-orange);
  box-shadow: 0 4px 16px rgba(222, 46, 3, 0.35);
  transform: translateY(-2px);
}

/* Empathy Grid */
.thats-me-grid-elevated {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Individual Empathy Card */
.empathy-card-v2 {
  background: #ffffff;
  border: 1.5px solid #eae2d8;
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(20, 15, 12, 0.04);
  position: relative;
  overflow: hidden;
}

.empathy-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--flame-crimson), var(--flame-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.empathy-card-v2:hover {
  transform: translateY(-7px);
  border-color: var(--flame-orange);
  box-shadow: 0 20px 45px rgba(222, 46, 3, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.empathy-card-v2:hover::before {
  opacity: 1;
}

/* Card Header */
.empathy-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.empathy-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.empathy-tag.tag-academics {
  background: rgba(222, 46, 3, 0.08);
  color: var(--flame-crimson);
  border: 1px solid rgba(222, 46, 3, 0.2);
}

.empathy-tag.tag-money {
  background: rgba(252, 75, 8, 0.08);
  color: var(--flame-orange);
  border: 1px solid rgba(252, 75, 8, 0.2);
}

.empathy-tag.tag-career {
  background: rgba(255, 124, 57, 0.08);
  color: #c9571f;
  border: 1px solid rgba(255, 124, 57, 0.2);
}

.empathy-tag.tag-life {
  background: rgba(32, 115, 71, 0.08);
  color: #197042;
  border: 1px solid rgba(32, 115, 71, 0.2);
}

.empathy-quote-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fdf6f0;
  color: var(--flame-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
}

/* Doubt Question Heading */
.anxiety-quote-v2 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #140f0c;
  line-height: 1.35;
  margin: 0 0 16px 0;
  font-family: var(--font-heading);
}

/* Solution Speech Bubble */
.empathy-response-bubble {
  background: #faf6f0;
  border-left: 3.5px solid var(--flame-orange);
  border-radius: 0 16px 16px 0;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a3d34;
}

.empathy-response-bubble .mentor-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--flame-crimson);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.empathy-response-bubble strong {
  color: #140f0c;
}

.empathy-response-bubble .highlight-text {
  color: var(--flame-orange);
  font-weight: 700;
}

/* Card Action Button */
.empathy-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #ded5c9;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--flame-crimson);
  text-decoration: none;
  transition: all 0.2s ease;
}

.empathy-action-link span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.empathy-action-link:hover {
  background: linear-gradient(135deg, var(--flame-crimson), var(--flame-orange));
  color: #ffffff !important;
  border-color: var(--flame-orange);
  box-shadow: 0 4px 14px rgba(222, 46, 3, 0.25);
  transform: translateY(-1px);
}

/* ==========================================================================
   INTERACTIVE CAROUSEL STYLES FOR "THAT'S ME" SECTION
   ========================================================================== */
.empathy-carousel-wrapper {
  position: relative;
  margin-top: 10px;
}

.empathy-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 10px 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.empathy-carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Individual Carousel Card */
.empathy-carousel-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  max-width: 400px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1.5px solid #eae2d8;
  border-radius: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(20, 15, 12, 0.05);
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .empathy-carousel-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .empathy-carousel-card {
    flex: 0 0 88%;
    min-width: 280px;
  }
}

.empathy-carousel-card:hover {
  transform: translateY(-8px);
  border-color: var(--flame-orange);
  box-shadow: 0 24px 50px rgba(222, 46, 3, 0.14), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Card Image Header with Zoom */
.empathy-img-box {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #140f0c;
}

.empathy-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.empathy-carousel-card:hover .empathy-img-box img {
  transform: scale(1.08);
}

.empathy-img-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(20, 15, 12, 0.7) 0%, transparent 100%);
}

.empathy-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(20, 15, 12, 0.75);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Card Body */
.empathy-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.empathy-card-body .anxiety-quote-v2 {
  font-size: 1.22rem;
  font-weight: 800;
  color: #140f0c;
  line-height: 1.35;
  margin: 0 0 14px 0;
  font-family: var(--font-heading);
}

/* Navigation Arrows */
.carousel-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 0 10px;
}

.carousel-nav-buttons {
  display: flex;
  gap: 12px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #ded5c9;
  color: var(--flame-crimson);
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.carousel-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--flame-crimson), var(--flame-orange));
  color: #ffffff;
  border-color: var(--flame-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(222, 46, 3, 0.35);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

/* Dots Indicator */
.carousel-dots-indicator {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ded5c9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--flame-orange);
}

/* ==========================================================================
   UNIFIED HEADER & NAVIGATION (ALL PAGES)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(251, 248, 243, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid rgba(222, 46, 3, 0.12);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 25px rgba(20, 15, 12, 0.08);
  border-bottom-color: rgba(222, 46, 3, 0.18);
}

.header-inner,
.nav-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 76px;
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Brand Logo Container */
.logo,
.brand-logo {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  cursor: pointer;
}

.logo-mark,
.brand-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--flame-crimson), var(--flame-orange));
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(222, 46, 3, 0.35);
  transition: transform 0.25s ease;
}

.logo:hover .logo-mark,
.brand-logo:hover .brand-icon {
  transform: rotate(-5deg) scale(1.06);
}

.logo-text,
.brand-logo-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #140f0c !important;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-name span.dot {
  color: var(--flame-orange) !important;
}

.tagline,
.logo-tagline {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #7a6e65 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin-top: 2px !important;
  line-height: 1 !important;
}

/* Navigation Links */
.nav-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.94rem !important;
  font-weight: 700 !important;
  color: #3d3027 !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  position: relative;
  display: inline-block;
}

.nav-link:hover {
  color: var(--flame-crimson) !important;
  background: rgba(222, 46, 3, 0.08) !important;
}

.nav-link.active {
  color: var(--flame-crimson) !important;
  background: rgba(222, 46, 3, 0.1) !important;
  font-weight: 800 !important;
}

.nav-cta-btn {
  margin-left: 8px;
  padding: 10px 22px !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--flame-crimson), var(--flame-orange)) !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(222, 46, 3, 0.35) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.25s ease !important;
  border: none !important;
}

.nav-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(222, 46, 3, 0.45) !important;
  color: #ffffff !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid #ded5c9;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #140f0c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex !important;
  }

  .nav-menu {
    display: none !important;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 20px 24px 28px !important;
    border-bottom: 2px solid var(--flame-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    gap: 12px !important;
  }

  .nav-menu.open {
    display: flex !important;
  }

  .nav-link {
    padding: 12px 18px !important;
    font-size: 1.05rem !important;
    border-radius: 12px !important;
  }

  .nav-cta-btn {
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
    padding: 14px 20px !important;
  }
}

/* ==========================================================================
   UPGRADED STUDY ABROAD PAGE STYLES
   ========================================================================== */
.study-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0 60px;
}

@media (max-width: 960px) {
  .study-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.study-hero-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.study-hero-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.study-hero-visual:hover img {
  transform: scale(1.04);
}

.study-hero-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(20, 15, 12, 0.88);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Elevated Destination Country Card */
.destination-card-v2 {
  background: #ffffff;
  border: 1.5px solid #eae2d8;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(20, 15, 12, 0.05);
}

.destination-card-v2:hover {
  transform: translateY(-8px);
  border-color: var(--flame-orange);
  box-shadow: 0 24px 50px rgba(222, 46, 3, 0.14), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.destination-card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #140f0c;
}

.destination-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card-v2:hover .destination-card-img-wrap img {
  transform: scale(1.08);
}

.destination-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to top, rgba(20, 15, 12, 0.8) 0%, transparent 100%);
}

.country-flag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(20, 15, 12, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
}

.country-tuition-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--flame-crimson), var(--flame-orange));
  padding: 5px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(222, 46, 3, 0.35);
}

.destination-card-content {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.matrix-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #ede5db;
  font-size: 0.88rem;
  color: #5c4f46;
}

.matrix-spec-row:last-child {
  border-bottom: none;
}

.matrix-spec-row strong {
  color: #140f0c;
  text-align: right;
}

.gradi-talk-box {
  background: #faf6f0;
  border-left: 3.5px solid var(--flame-orange);
  border-radius: 0 14px 14px 0;
  padding: 12px 14px;
  margin: 16px 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #4a3d34;
}



/* ==========================================================================
   LUXURY REDESIGNED COUNTRY MATRIX & FILTER SECTION
   ========================================================================== */
.matrix-section-wrapper {
  background: linear-gradient(180deg, #fdfaf6 0%, #f6efe6 100%);
  padding: 80px 0 100px;
  position: relative;
}

.matrix-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(222, 46, 3, 0.08);
  border: 1px solid rgba(222, 46, 3, 0.22);
  border-radius: 9999px;
  color: var(--flame-crimson);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Modern Filter Tabs Container */
.filter-tabs-glass {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(222, 195, 175, 0.7);
  border-radius: 9999px;
  max-width: 920px;
  margin: 0 auto 48px;
  box-shadow: 0 8px 30px rgba(24, 18, 15, 0.04);
}

.filter-tab-pill {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #5a4b42;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-tab-pill:hover {
  color: var(--flame-crimson);
  background: rgba(222, 46, 3, 0.06);
}

.filter-tab-pill.active {
  background: linear-gradient(135deg, #de2e03 0%, #fc4b08 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(222, 46, 3, 0.32);
}

/* Card Grid Layout */
.luxury-destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 32px;
}

@media (max-width: 768px) {
  .luxury-destination-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .filter-tabs-glass {
    border-radius: 20px;
  }
}

/* Redesigned Country Card */
.country-card-luxury {
  background: #ffffff;
  border-radius: 26px;
  border: 1.5px solid #eae2d8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(24, 18, 15, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.country-card-luxury:hover {
  transform: translateY(-8px);
  border-color: var(--flame-orange);
  box-shadow: 0 24px 60px rgba(222, 46, 3, 0.15), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Card Media Header */
.card-media-header {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #140f0c;
}

.card-media-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-card-luxury:hover .card-media-header img {
  transform: scale(1.08);
}

.card-media-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,10,8,0.2) 0%, rgba(14,10,8,0.05) 40%, rgba(14,10,8,0.85) 100%);
  pointer-events: none;
}

.card-country-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(14, 10, 8, 0.85);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.card-highlight-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: linear-gradient(135deg, #de2e03 0%, #fc4b08 100%);
  padding: 6px 13px;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(222, 46, 3, 0.45);
}

.card-hero-tagline {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-hero-tagline span.dot-indicator {
  width: 7px;
  height: 7px;
  background: var(--flame-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--flame-orange);
}

/* Card Body Content */
.card-luxury-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* 2x2 Decision Metrics Grid */
.decision-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.decision-tile {
  background: #fcf9f5;
  border: 1px solid #ebdcd0;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.2s ease;
}

.country-card-luxury:hover .decision-tile {
  background: #ffffff;
  border-color: #dfcfc1;
}

.tile-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #8c796e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.tile-value-primary {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a120e;
  line-height: 1.25;
  font-family: var(--font-heading);
}

.tile-value-primary.highlight {
  color: var(--flame-crimson);
}

.tile-subtext {
  font-size: 0.72rem;
  color: #7d6e66;
  margin-top: 2px;
  line-height: 1.2;
}

/* Language & Environment Row */
.language-feature-row {
  background: rgba(222, 46, 3, 0.04);
  border: 1px dashed rgba(222, 46, 3, 0.25);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #4a3c35;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
}

.language-feature-row strong {
  color: #1a120e;
}

/* Gradi Insider Scoop Box */
.gradi-insider-box {
  background: linear-gradient(145deg, #fff8f4 0%, #fff2ea 100%);
  border-left: 3.5px solid var(--flame-orange);
  border-radius: 0 14px 14px 0;
  padding: 12px 14px;
  box-shadow: 0 2px 10px rgba(222, 46, 3, 0.04);
}

.insider-header {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--flame-crimson);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.insider-body {
  font-size: 0.82rem;
  color: #55443b;
  line-height: 1.45;
  margin: 0;
}

/* Card Action Button */
.card-cta-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid var(--flame-orange);
  color: var(--flame-crimson);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
}

.card-cta-btn:hover {
  background: linear-gradient(135deg, #de2e03 0%, #fc4b08 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(222, 46, 3, 0.28);
  transform: translateY(-2px);
}


/* ==========================================================================
   DESTINATION CAROUSEL SYSTEM (STUDY ABROAD)
   ========================================================================== */
.destination-carousel-section {
  background: linear-gradient(180deg, #fdfaf6 0%, #f4ede4 100%);
  padding: 80px 0 95px;
  position: relative;
  overflow: hidden;
}

.destination-carousel-wrapper {
  position: relative;
  margin-top: 10px;
}

.destination-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 15px 10px 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.destination-carousel-track::-webkit-scrollbar {
  display: none;
}

.destination-carousel-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  max-width: 420px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1.5px solid #eae2d8;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(24, 18, 15, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

@media (max-width: 1024px) {
  .destination-carousel-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 680px) {
  .destination-carousel-card {
    flex: 0 0 88%;
    min-width: 280px;
  }
}

.destination-carousel-card:hover {
  transform: translateY(-8px);
  border-color: var(--flame-orange);
  box-shadow: 0 24px 50px rgba(222, 46, 3, 0.15), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.dest-card-image {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #140f0c;
}

.dest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-carousel-card:hover .dest-card-image img {
  transform: scale(1.08);
}

.dest-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,10,8,0.2) 0%, rgba(14,10,8,0.05) 40%, rgba(14,10,8,0.85) 100%);
  pointer-events: none;
}

.dest-flag-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(14, 10, 8, 0.85);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.dest-highlight-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: linear-gradient(135deg, #de2e03 0%, #fc4b08 100%);
  padding: 6px 13px;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(222, 46, 3, 0.45);
}

.dest-card-scrim-text {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  z-index: 2;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dest-card-scrim-text span.dot {
  width: 7px;
  height: 7px;
  background: var(--flame-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--flame-orange);
}

.dest-card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.dest-metric-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dest-metric-chip {
  background: #fdfaf7;
  border: 1px solid #ebdcd0;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.dest-metric-chip .chip-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #8c796e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.dest-metric-chip .chip-val {
  font-size: 0.92rem;
  font-weight: 800;
  color: #1a120e;
  font-family: var(--font-heading);
}

.dest-metric-chip .chip-val.crimson {
  color: var(--flame-crimson);
}

.dest-metric-chip .chip-sub {
  font-size: 0.7rem;
  color: #7d6e66;
  margin-top: 1px;
}

.dest-pr-row {
  background: rgba(222, 46, 3, 0.04);
  border: 1px dashed rgba(222, 46, 3, 0.22);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: #4a3c35;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dest-insider-box {
  background: linear-gradient(145deg, #fff8f4 0%, #fff2ea 100%);
  border-left: 3.5px solid var(--flame-orange);
  border-radius: 0 12px 12px 0;
  padding: 10px 12px;
}

.dest-insider-header {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--flame-crimson);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}

.dest-insider-desc {
  font-size: 0.8rem;
  color: #55443b;
  line-height: 1.4;
  margin: 0;
}

.dest-card-cta {
  width: 100%;
  padding: 11px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid var(--flame-orange);
  color: var(--flame-crimson);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
}

.dest-card-cta:hover {
  background: linear-gradient(135deg, #de2e03 0%, #fc4b08 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(222, 46, 3, 0.28);
  transform: translateY(-2px);
}

/* Carousel Nav Controls */
.dest-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.dest-carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #eae2d8;
  color: #1a120e;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(24, 18, 15, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-carousel-arrow:hover {
  background: linear-gradient(135deg, #de2e03 0%, #fc4b08 100%);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(222, 46, 3, 0.3);
}

.dest-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dest-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dfd5cb;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dest-dot.active {
  width: 28px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #de2e03 0%, #fc4b08 100%);
}


/* ==========================================================================
   MODERN SEGMENTED FILTER PILLS (WORLD-CLASS AESTHETICS)
   ========================================================================== */
.modern-filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto 38px;
  padding: 0 10px;
}

.modern-filter-btn {
  border: 1.5px solid #eae2d8;
  background: #ffffff;
  padding: 11px 22px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4a3c35;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 12px rgba(24, 18, 15, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.modern-filter-btn:hover {
  background: #fffaf6;
  border-color: var(--flame-orange);
  color: var(--flame-crimson);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(222, 46, 3, 0.12);
}

.modern-filter-btn.active {
  background: linear-gradient(135deg, #de2e03 0%, #fc4b08 100%);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(222, 46, 3, 0.35);
}

.modern-filter-btn .filter-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.06);
  color: inherit;
  margin-left: 2px;
  transition: all 0.2s ease;
}

.modern-filter-btn.active .filter-count-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

@media (max-width: 600px) {
  .modern-filter-container {
    gap: 8px;
  }
  .modern-filter-btn {
    padding: 9px 16px;
    font-size: 0.82rem;
  }
}


/* ==========================================================================
   COMMON TRAPS SECTION WITH CINEMATIC BACKGROUND
   ========================================================================== */
.traps-section-with-bg {
  position: relative;
  background-image: linear-gradient(180deg, rgba(14, 10, 8, 0.88) 0%, rgba(20, 15, 12, 0.82) 50%, rgba(14, 10, 8, 0.92) 100%), url('../assets/traps-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 95px 0 105px;
  color: #ffffff;
  overflow: hidden;
}

.traps-glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.traps-glass-card {
  background: rgba(22, 16, 13, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 32px 26px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
}

.traps-glass-card:hover {
  transform: translateY(-8px);
  background: rgba(30, 22, 18, 0.85);
  border-color: var(--flame-orange);
  box-shadow: 0 24px 60px rgba(222, 46, 3, 0.25), 0 0 25px rgba(252, 75, 8, 0.15);
}

.traps-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.traps-glass-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.traps-glass-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #d6c8be;
  margin: 0;
}


/* ==========================================================================
   UPGRADED CAREERS ABROAD PAGE STYLES
   ========================================================================== */
.careers-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0 60px;
}

@media (max-width: 960px) {
  .careers-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.careers-hero-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.careers-hero-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.careers-hero-visual:hover img {
  transform: scale(1.04);
}

.careers-hero-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(20, 15, 12, 0.88);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Strategy Sky Section */
.careers-strategy-section {
  position: relative;
  background-image: linear-gradient(180deg, rgba(14, 10, 8, 0.88) 0%, rgba(20, 15, 12, 0.82) 50%, rgba(14, 10, 8, 0.92) 100%), url('../assets/careers-skyline.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 95px 0 105px;
  color: #ffffff;
  overflow: hidden;
}

.careers-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.careers-strategy-card {
  background: rgba(22, 16, 13, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 32px 26px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
}

.careers-strategy-card:hover {
  transform: translateY(-8px);
  background: rgba(30, 22, 18, 0.85);
  border-color: var(--flame-orange);
  box-shadow: 0 24px 60px rgba(222, 46, 3, 0.25), 0 0 25px rgba(252, 75, 8, 0.15);
}

.careers-strategy-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.careers-strategy-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #d6c8be;
  margin: 0;
}


/* ==========================================================================
   MASTER MOBILE RESPONSIVE ENGINE (ALL SCREENS & COMPONENTS)
   ========================================================================== */

/* 1. Global Safety & Overflow Protection */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

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

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* 2. Responsive Header & Navigation */
@media (max-width: 900px) {
  .site-header {
    padding: 12px 0 !important;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo {
    gap: 8px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .logo-name {
    font-size: 1.25rem;
  }

  .tagline {
    font-size: 0.68rem;
  }

  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: #fbf6ef;
    border: 1.5px solid #ebd9c8;
    border-radius: 10px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.25s ease;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #140f0c;
    border-radius: 2px;
    transition: all 0.25s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .nav-menu {
    display: none !important;
    position: fixed !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 20px 20px 24px !important;
    border-bottom: 3px solid var(--flame-orange) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    gap: 8px !important;
    z-index: 9999 !important;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.open {
    display: flex !important;
    animation: slideNavMobile 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

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

  .nav-link {
    display: block !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #140f0c !important;
    border-radius: 10px !important;
    background: #fbf8f5 !important;
    border: 1px solid #f0e6dc !important;
    text-align: left !important;
    width: 100% !important;
  }

  .nav-link:hover,
  .nav-link.active {
    background: #fff2ea !important;
    border-color: var(--flame-orange) !important;
    color: var(--flame-crimson) !important;
  }

  .nav-cta-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    margin-top: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
  }
}

/* 3. Hero Grids & Two-Column Layouts Collapse */
@media (max-width: 960px) {
  .hero-grid,
  .study-hero-grid,
  .careers-hero-grid,
  .section-grid,
  .consult-form-grid,
  .booking-section-wrapper,
  .mentors-wrapper {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .hero-section,
  .page-hero {
    padding: 40px 0 50px !important;
  }

  .hero-section .hero-title,
  .page-hero h1 {
    font-size: clamp(1.9rem, 6.5vw, 2.8rem) !important;
    line-height: 1.18 !important;
  }

  .hero-booking-card {
    max-width: 100% !important;
    padding: 24px 18px !important;
    border-radius: 22px !important;
  }

  .study-hero-visual img,
  .careers-hero-visual img {
    height: 300px !important;
  }
}

/* 4. Filter Buttons & Tabs on Mobile */
@media (max-width: 768px) {
  .filter-tabs-glass,
  .modern-filter-container,
  .thats-me-filter-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 20px 0 28px !important;
    padding: 8px !important;
  }

  .modern-filter-btn,
  .luxury-filter-btn,
  .empathy-filter-btn {
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
    flex: 0 1 auto;
  }

  .luxury-destination-grid,
  .destinations-grid,
  .pathways-grid,
  .mentor-cards-stack,
  .framework-timeline,
  .career-radar-grid,
  .traps-grid,
  .careers-strategy-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

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

/* 5. Mobile Form Rows & 2-Column Inputs */
@media (max-width: 540px) {
  .hero-booking-card,
  .booking-form-card,
  .coffee-form-container {
    padding: 20px 14px !important;
  }

  /* Make two-column input rows collapse gracefully */
  .hero-booking-card div[style*="grid-template-columns: 1fr 1fr"],
  .consult-form-grid div[style*="grid-template-columns: 1fr 1fr"],
  .booking-section-wrapper div[style*="grid-template-columns: 1fr 1fr"],
  .interactive-pills-group {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .interactive-pills-group .pill-badge {
    padding: 7px 12px !important;
    font-size: 0.82rem !important;
  }

  .vibe-toggle-box {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 12px 14px !important;
  }

  .hero-questions-taglist {
    gap: 6px !important;
  }

  .question-chip {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.8rem !important;
  }

  .modal-content,
  .modal-dialog {
    max-width: calc(100vw - 28px) !important;
    padding: 22px 16px !important;
    border-radius: 18px !important;
  }

  .modal-title {
    font-size: 1.35rem !important;
  }
}

/* 6. Touch Target & Accessibility Improvements */
@media (hover: none) and (pointer: coarse) {
  button, .btn, .nav-link, .pill-badge {
    min-height: 42px;
    touch-action: manipulation;
  }
}


/* ==========================================================================
   FINE-TUNED MOBILE RESPONSIVE TYPOGRAPHY (SLEEK & BALANCED)
   ========================================================================== */
@media (max-width: 960px) {
  h1, .hero-section .hero-title, .page-hero h1, .display-title {
    font-size: clamp(1.75rem, 4.5vw, 2.35rem) !important;
    line-height: 1.22 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1rem !important;
  }

  h2, .section-title, .moment-banner h2 {
    font-size: clamp(1.45rem, 3.8vw, 1.95rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.015em !important;
    margin-bottom: 0.75rem !important;
  }

  .hero-subtitle, .page-hero p, .section-subtitle {
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  h1, .hero-section .hero-title, .page-hero h1, .display-title {
    font-size: clamp(1.55rem, 5.2vw, 1.95rem) !important;
    line-height: 1.24 !important;
    letter-spacing: -0.015em !important;
    margin-bottom: 0.85rem !important;
  }

  h2, .section-title, .moment-banner h2 {
    font-size: clamp(1.3rem, 4.2vw, 1.65rem) !important;
    line-height: 1.28 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0.65rem !important;
  }

  h3, .pathway-card h3, .destination-card h3, .radar-card h3, .country-card-luxury h3, .traps-glass-card h3, .careers-strategy-card h3 {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }

  h4 {
    font-size: 1rem !important;
  }

  .hero-subtitle, .page-hero p, .section-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.25rem !important;
  }

  .hero-badge, .badge-pill, .tagline-badge {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
  }
}

@media (max-width: 480px) {
  h1, .hero-section .hero-title, .page-hero h1, .display-title {
    font-size: clamp(1.38rem, 6vw, 1.65rem) !important;
    line-height: 1.22 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0.75rem !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  h2, .section-title, .moment-banner h2 {
    font-size: clamp(1.2rem, 4.8vw, 1.42rem) !important;
    line-height: 1.28 !important;
    margin-bottom: 0.5rem !important;
    overflow-wrap: break-word !important;
  }

  h3, .pathway-card h3, .destination-card h3, .radar-card h3, .country-card-luxury h3, .traps-glass-card h3, .careers-strategy-card h3 {
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
  }

  .hero-subtitle, .page-hero p, .section-subtitle {
    font-size: 0.86rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
  }

  .section {
    padding: 45px 0 !important;
  }

  .hero-section, .page-hero {
    padding: 28px 0 38px !important;
  }

  .stepper-step-indicator {
    font-size: 0.82rem !important;
  }

  .hero-booking-card .form-label-styled {
    font-size: 0.88rem !important;
  }

  .hero-badge {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
  }
}


/* ==========================================================================
   COMPACT & SLEEK MOBILE BOOKING FORMS TUNING
   ========================================================================== */
@media (max-width: 768px) {
  .hero-booking-card,
  .booking-form-card,
  .coffee-booking-form {
    padding: 18px 14px !important;
    border-radius: 20px !important;
  }

  .stepper-header {
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
  }

  .stepper-step-indicator {
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
  }

  .stepper-dots .stepper-dot {
    height: 4px !important;
    width: 22px !important;
  }

  .hero-booking-card .form-label-styled,
  .booking-form-card label,
  .coffee-booking-form label {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
  }

  .hero-booking-card .form-label-styled .hint {
    font-size: 0.72rem !important;
  }

  .interactive-pills-group {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-bottom: 14px !important;
  }

  .hero-booking-card .pill-badge,
  .booking-form-card .pill-badge,
  .interactive-pills-group .pill-badge,
  .pill-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 6px 11px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    min-height: 0 !important;
    height: auto !important;
    white-space: nowrap !important;
    border-width: 1.2px !important;
  }

  .form-chip-label span {
    padding: 7px 10px !important;
    font-size: 0.76rem !important;
    border-radius: 10px !important;
  }

  .vibe-toggle-box {
    padding: 10px 12px !important;
    margin-bottom: 16px !important;
    border-radius: 12px !important;
    gap: 10px !important;
  }

  .vibe-toggle-box .vibe-text {
    font-size: 0.78rem !important;
  }

  .vibe-options-row {
    gap: 10px !important;
    margin-top: 4px !important;
  }

  .vibe-options-row label,
  .vibe-toggle-box label {
    font-size: 0.76rem !important;
    gap: 5px !important;
  }

  .light-input,
  .coffee-booking-form input,
  .coffee-booking-form textarea {
    padding: 9px 12px !important;
    font-size: 0.84rem !important;
    border-radius: 10px !important;
  }

  .btn-next-step {
    padding: 11px 18px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
  }

  .btn-back-step {
    padding: 10px 16px !important;
    font-size: 0.82rem !important;
    border-radius: 999px !important;
  }

  .privacy-note {
    font-size: 0.72rem !important;
    margin-top: 8px !important;
  }
}
