/* ═══════════════════════════════════════════════
   MY LABOURMATE — Royal Blue + Cloud Sand Redesign
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--neutral);
  background-color: var(--cloud);
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--primary); text-decoration: none; transition: color .25s; }
a:hover { color: var(--primary-light); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); font-weight: 700; line-height: 1.15; color: var(--neutral); letter-spacing: -0.01em; }

:root {
  --primary: #2563EB;
  --primary-light: #1D4ED8;
  --primary-dark: #1E40AF;
  --on-primary: #FFFFFF;
  --cloud: #F8FAFC;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --neutral: #0F172A;
  --neutral-700: #1E293B;
  --neutral-500: #475569;
  --neutral-400: #64748B;
  --neutral-200: #CBD5E1;
  --neutral-100: #F1F5F9;
  --surface: #FFFFFF;
  --surface-alt: #F4F1EC;
  --surface-blue: #EBF5FF;
  --on-surface: #0F172A;
  --on-surface-variant: #475569;
  --muted: #94A3B8;
  --outline: #E2E8F0;
  --outline-variant: #CBD5E1;
  --success: #22C55E;
  --error: #EF4444;
  --secondary: #0A1A44;
  --secondary-hover: #0F2667;
  --on-secondary: #FFFFFF;
  --background: #F8FAFC;
  --on-background: #0F172A;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --space-xs: 4px; --space-sm: 8px; --space-md: 16px; --space-lg: 24px;
  --space-xl: 40px; --space-2xl: 64px; --space-3xl: 80px;
  --container-max: 1200px; --gutter: 24px;
  --rounded-sm: 8px; --rounded-md: 12px; --rounded-lg: 16px; --rounded-xl: 24px; --rounded-full: 9999px;
  --shadow-card: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
  --shadow-card-hover: 0 8px 24px rgba(0,0,0,.1), 0 16px 40px rgba(0,0,0,.06);
  --shadow-btn: 0 2px 8px rgba(37,99,235,.15);
  --shadow-btn-hover: 0 4px 16px rgba(37,99,235,.25);
  --shadow-nav: 0 2px 20px rgba(0,0,0,.06);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .15s ease;
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-in-out: cubic-bezier(.4,0,.2,1);
  --nav-height: 68px;
}

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Keyframes ── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes spin { to{transform:rotate(360deg)} }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); display: flex; align-items: center;
  background: transparent; transition: all .4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow-nav);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo {
  display: flex; align-items: center; line-height: 1;
}
.nav-logo img {
  height: 70px; width: auto; display: block;
  transition: filter .3s ease, opacity .3s ease;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--neutral-500); padding: 4px 0; position: relative; }
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 600; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%;
  height: 2px; background: var(--primary); border-radius: 1px;
}
.nav-signin { font-size: 15px; font-weight: 500; color: var(--neutral-500); }
.nav-signin:hover { color: var(--primary); }
.nav-cta-btn {
  display: inline-flex; padding: 10px 24px; background: var(--primary);
  color: #fff !important; border-radius: var(--rounded-full); font-size: 14px;
  font-weight: 600; transition: var(--transition); box-shadow: 0 2px 8px rgba(37,99,235,.2);
}
.nav-cta-btn:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,.3); }
.nav-auth { display: flex; align-items: center; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--neutral); border-radius: 2px; transition: var(--transition); }

/* ═══ HERO ═══ */
.hero {
  padding: calc(var(--nav-height) + 60px) 0 48px; position: relative;
  background: linear-gradient(180deg, #F5F0EB 0%, var(--cloud) 100%);
  overflow: visible;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-text { position: relative; z-index: 2; }

.hero-pill {
  display: inline-block; padding: 7px 18px; border: 1.5px solid var(--primary);
  border-radius: var(--rounded-full); font-size: 13px; font-weight: 600;
  color: var(--primary); letter-spacing: .04em; margin-bottom: 24px;
  background: rgba(37,99,235,.04);
}
.hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--secondary); margin-bottom: 20px; line-height: 1.08; letter-spacing: -0.02em; }
.text-accent { color: var(--primary); }
.hero-subtitle { font-size: 17px; color: var(--neutral-500); line-height: 1.7; max-width: 500px; margin-bottom: 32px; }
.hero-search {
  display: flex; gap: 8px; padding: 7px; background: #fff;
  border-radius: var(--rounded-lg); box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border: 1px solid var(--outline); max-width: 540px;
}
.search-field { display: flex; align-items: center; gap: 8px; flex: 1; padding: 0 14px; }
.search-field i, .search-field svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.search-field input { border: none; outline: none; font-size: 15px; width: 100%; background: transparent; color: var(--neutral); }
.search-field input::placeholder { color: var(--muted); }
.hero-search .btn { padding: 12px 24px; font-size: 14px; white-space: nowrap; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 28px; font-size: 14px; color: var(--neutral-500); }
.hero-proof strong { color: var(--secondary); }
.avatar-stack { display: flex; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; border: 2px solid #fff;
  margin-right: -8px; position: relative;
}
.hero-images { position: relative; z-index: 1; min-height: 500px; }
.hero-img { position: absolute; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--main {
  width: 420px; height: 520px; top: -40px; right: -60px; z-index: 1;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.hero-img--secondary {
  width: 340px; height: 380px; bottom: -20px; left: -20px; z-index: 2;
  border-radius: 20px; border: 5px solid #fff;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.hero-float-badge {
  position: absolute; bottom: 50px; right: 10px; z-index: 3;
  display: flex; align-items: center; gap: 10px; padding: 14px 20px;
  background: #fff; border-radius: var(--rounded-lg); box-shadow: 0 8px 24px rgba(0,0,0,.12);
  animation: float 4s ease-in-out infinite;
}
.hero-float-badge i, .hero-float-badge svg { width: 22px; height: 22px; color: var(--primary); }
.hero-float-badge strong { font-size: 15px; display: block; color: var(--neutral); }
.hero-float-badge span { font-size: 12px; color: var(--muted); }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; }

/* Hero CTA + Trust */
.hero-cta-row { display: flex; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 20px; font-size: 14px; color: var(--neutral-500); flex-wrap: wrap;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 6px;
}

/* ═══ STATS ═══ */
.stats-strip { padding: 48px 0; background: linear-gradient(135deg, #0A1A44, #0F2667); }
.stats-row { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat-card { flex: 1; text-align: center; padding: 16px 24px; }
.stat-number { font-family: var(--font-serif); font-size: clamp(30px, 3.5vw, 42px); font-weight: 700; color: #fff; display: inline; }
.stat-suffix { font-family: var(--font-serif); font-size: clamp(30px, 3.5vw, 42px); font-weight: 700; color: #fff; display: inline; }
.stat-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.stat-card--accent .stat-number, .stat-card--accent .stat-suffix { color: #93C5FD; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ═══ SECTIONS ═══ */
.section { padding: 80px 0; position: relative; overflow: hidden; }
.section--scroll-x { overflow: visible; overflow-x: clip; overflow-y: visible; }
.section--alt { background: var(--surface-alt); }
.section--dark { background: var(--secondary); }
.section--dark-alt { background: #060F2E; }
.section-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 2; }
.section-tag {
  display: inline-block; padding: 6px 16px; background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.15); border-radius: var(--rounded-full);
  font-size: 12px; font-weight: 700; color: var(--primary);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: var(--space-md);
}
.section-tag--light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #93C5FD; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--secondary); margin-bottom: 14px; letter-spacing: -0.01em; }
.section-subtitle { font-size: 16px; color: var(--neutral-500); max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border: 1.5px solid transparent; border-radius: var(--rounded-full);
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn svg, .btn i { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-btn-hover); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline--light { color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline--light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--cloud); transform: translateY(-1px); }
.btn-lg { padding: 14px 36px; font-size: 15px; }

/* ═══ DESTINATION CARDS ═══ */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card {
  position: relative; border-radius: var(--rounded-xl); overflow: hidden;
  height: 380px; cursor: pointer; transition: transform .4s ease;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover img { transform: scale(1.05); }
.dest-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
  background: linear-gradient(to top, rgba(10,26,68,.9) 0%, transparent 100%);
  color: #fff;
}
.dest-tag { display: inline-block; padding: 4px 10px; border-radius: var(--rounded-full); font-size: 11px; font-weight: 600; margin-bottom: 10px; }
.dest-tag--teal { background: var(--primary); }
.dest-tag--orange { background: var(--accent); }
.dest-overlay h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.dest-overlay p { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.5; }

/* ═══ SPLIT LAYOUTS ═══ */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-layout--reverse .split-content { order: 2; }
.split-layout--reverse .split-visual { order: 1; }
.rounded-img { border-radius: var(--rounded-xl); box-shadow: var(--shadow-card); }
.section--dark .section-title { color: #fff; }
.section--dark p { color: rgba(255,255,255,.7); }
.section--dark .section-tag { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: #93C5FD; }

.check-list { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--neutral-500); }
.check-list i, .check-list svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.section--dark .check-list li { color: rgba(255,255,255,.8); }

/* Notification bubbles */
.notif-stack { display: flex; flex-direction: column; gap: 14px; padding: 20px; }
.notif-bubble {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  background: #fff; border-radius: var(--rounded-lg); box-shadow: var(--shadow-card);
  font-size: 14px; font-weight: 500; color: var(--neutral); animation: float 5s ease-in-out infinite;
}
.notif-bubble:nth-child(2) { animation-delay: -1.5s; }
.notif-bubble:nth-child(3) { animation-delay: -3s; }
.notif-bubble i, .notif-bubble svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.notif--success i, .notif--success svg { color: var(--success); }
.notif--gold i, .notif--gold svg { color: var(--accent); }

/* Value cards */
.value-cards { display: flex; flex-direction: column; gap: 14px; }
.value-card {
  display: flex; align-items: center; gap: 16px; padding: 18px 22px;
  background: #fff; border-radius: var(--rounded-lg); box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.value-card:hover { transform: translateX(4px); box-shadow: var(--shadow-card-hover); }
.value-icon {
  width: 44px; height: 44px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; background: var(--surface-blue);
  color: var(--primary); flex-shrink: 0;
}
.value-icon svg, .value-icon i { width: 20px; height: 20px; }
.value-card strong { font-size: 14px; display: block; color: var(--neutral); }
.value-card span { font-size: 12px; color: var(--muted); }

/* ═══ CATEGORIES ═══ */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
  background: #fff; border-radius: var(--rounded-lg); padding: 24px 20px;
  text-align: center; cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-card); border: 1.5px solid transparent;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: var(--primary); }
.category-card .cat-icon {
  width: 48px; height: 48px; margin: 0 auto 12px; display: flex;
  align-items: center; justify-content: center; background: var(--surface-blue);
  border-radius: var(--rounded-md); color: var(--primary); transition: var(--transition);
}
.category-card:hover .cat-icon { background: var(--primary); color: #fff; }
.category-card .cat-icon svg { width: 22px; height: 22px; }
.category-card h4 { font-family: var(--font-sans); font-size: 15px; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.category-card p { font-size: 13px; color: var(--neutral-500); line-height: 1.5; }

/* ═══ WHY CARDS ═══ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: #fff; border-radius: var(--rounded-lg); padding: 28px 22px;
  text-align: center; transition: var(--transition); box-shadow: var(--shadow-card);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.why-icon {
  width: 52px; height: 52px; margin: 0 auto 16px; display: flex;
  align-items: center; justify-content: center; background: var(--surface-blue);
  border-radius: var(--rounded-md); color: var(--primary); transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--primary); color: #fff; }
.why-icon svg, .why-icon i { width: 24px; height: 24px; }
.why-card h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--neutral-500); line-height: 1.55; }

/* === TIMELINE === */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.15); }
.timeline-step { position: relative; margin-bottom: 36px; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-icon {
  position: absolute; left: -40px; top: 0; width: 36px; height: 36px;
  border-radius: 50%; border: 2px solid var(--accent); background: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; color: var(--accent); z-index: 2;
}
.timeline-icon svg, .timeline-icon i { width: 16px; height: 16px; }
.timeline-body h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.timeline-body p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.55; }

/* === FAQ === */
.faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(255,255,255,.1); border-radius: var(--rounded-md); overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--accent); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: transparent; border: none; color: #fff;
  font-size: 14px; font-weight: 500; text-align: left; cursor: pointer;
}
.faq-toggle { font-size: 18px; color: var(--accent); font-weight: 300; flex-shrink: 0; margin-left: 16px; }
.faq-answer { display: none; padding: 0 20px 16px; }
.faq-item.active .faq-answer { display: block; }
.faq-answer p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* === TESTIMONIAL === */
.testimonial-card { max-width: 680px; margin: 0 auto; text-align: center; padding: 32px; position: relative; }
.testimonial-icon { width: 48px; height: 48px; color: var(--surface-blue); margin: 0 auto 20px; display: block; }
.testimonial-card blockquote {
  font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400; color: var(--neutral); line-height: 1.4; margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-author strong { display: block; font-size: 15px; color: var(--neutral); }
.testimonial-author span { font-size: 13px; color: var(--muted); }

/* === VIDEO TESTIMONIALS CAROUSEL === */
.video-testimonials-carousel {
  position: relative;
  overflow: visible;
  border-radius: var(--rounded-xl);
  padding: 0 48px;
}
.vt-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}
.vt-track::-webkit-scrollbar { display: none; }
.vt-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 9 / 16;
  background: #111;
}
.vt-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 140, 66, 0.1);
  z-index: 2;
}
.vt-card video,
.vt-card iframe,
.vt-card .yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}
.vt-card--youtube {
  pointer-events: auto;
}
.vt-card--youtube .vt-info {
  pointer-events: none;
}
/* Play/Pause overlay */
.vt-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 3;
}
.vt-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.vt-play-btn svg {
  width: 24px;
  height: 24px;
  color: #fff;
  fill: #fff;
  margin-left: 3px;
}
.vt-card:hover .vt-play-btn {
  background: rgba(37, 99, 235, 0.85);
  border-color: rgba(37, 99, 235, 0.6);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}
.vt-card.playing .vt-play-overlay {
  opacity: 0;
  pointer-events: none;
}
.vt-card.playing:hover .vt-play-overlay {
  opacity: 1;
  pointer-events: auto;
}
.vt-card.playing .vt-play-btn svg {
  margin-left: 0;
}
/* Name/role gradient overlay */
.vt-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 18px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  z-index: 4;
  pointer-events: none;
}
.vt-info-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.vt-info-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.vt-info-role::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
/* Shimmer loading */
.vt-card.loading {
  background: linear-gradient(110deg, #1a1a1a 30%, #2a2a2a 50%, #1a1a1a 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
/* Navigation arrows */
.vt-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
}
.video-testimonials-carousel:hover .vt-nav {
  opacity: 1;
}
.vt-nav:hover {
  background: rgba(37, 99, 235, 0.8);
  border-color: rgba(37, 99, 235, 0.6);
  transform: translateY(-50%) scale(1.1);
}
.vt-nav--prev { left: 4px; }
.vt-nav--next { right: 4px; }
.vt-nav:disabled {
  opacity: 0.2 !important;
  cursor: default;
  pointer-events: none;
}
/* Scrollbar for mobile horizontal scroll */
.vt-track::-webkit-scrollbar { display: none; }
/* Fallback */
.vt-fallback .testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
}
.vt-fallback .testimonial-icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.15);
  margin: 0 auto 20px;
  display: block;
}
.vt-fallback blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 24px;
  font-style: italic;
}
.vt-fallback .testimonial-author strong { color: #fff; }
.vt-fallback .testimonial-author span { color: rgba(255, 255, 255, 0.5); }

@media (max-width: 1024px) {
  .video-testimonials-carousel { padding: 0 40px; }
  .vt-card { flex: 0 0 calc((100% - 32px) / 3); }
}
@media (max-width: 768px) {
  .video-testimonials-carousel { padding: 0; overflow: visible; }
  .vt-track {
    gap: 12px;
    padding-bottom: 8px;
  }
  .vt-card {
    flex: 0 0 60%;
    min-width: 200px;
    scroll-snap-align: start;
  }
  .vt-nav { display: none; }
}
@media (max-width: 480px) {
  .vt-card {
    flex: 0 0 72%;
    min-width: 180px;
  }
}

/* === CTA === */
.cta-section { padding: 80px 0; }
.cta-card {
  background: linear-gradient(135deg, #0A1A44 0%, #1E40AF 100%);
  border-radius: var(--rounded-xl); padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-card p { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
  background: #060F2E; padding: 56px 0 32px; color: rgba(255,255,255,.5);
  font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-logo { font-family: var(--font-serif); font-size: 22px; font-style: italic; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.4); }
.footer h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,.5); font-size: 14px; transition: color .25s; }
.footer ul a:hover { color: var(--primary); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.3); }

/* === FLOATING BUTTONS === */
.floating-btns { position: fixed; bottom: 108px; right: 24px; z-index: 9998; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.float-btn {
  width: 48px; height: 48px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: var(--transition); color: #fff;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn svg, .float-btn i { width: 22px; height: 22px; }
.float-btn--phone { background: var(--primary); }

/* === WHATSAPP CHAT WIDGET === */
#waChatWidget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; font-family: var(--font-sans); }

/* FAB Button */
.wa-fab {
  width: 60px; height: 60px; border-radius: 50%; border: none;
  background: #25D366; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .3s cubic-bezier(.4,0,.2,1); position: relative; z-index: 2;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-fab-icon--close { display: none; }
.wa-fab.open .wa-fab-icon--wa { display: none; }
.wa-fab.open .wa-fab-icon--close { display: block; }

/* Pulse ring */
.wa-fab-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: waPulse 2s ease-in-out infinite;
}
.wa-fab.open .wa-fab-pulse { display: none; }
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0; }
}

/* Panel */
.wa-panel {
  position: absolute; bottom: 76px; right: 0;
  width: 370px; max-height: 540px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12), 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden; display: flex; flex-direction: column;
  transform: scale(0.8) translateY(20px); opacity: 0;
  pointer-events: none; transform-origin: bottom right;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.wa-panel.open {
  transform: scale(1) translateY(0); opacity: 1; pointer-events: auto;
}

/* Panel Header */
.wa-panel-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  padding: 18px 18px 16px; display: flex; align-items: center; justify-content: space-between;
  color: #fff;
}
.wa-panel-header-info { display: flex; align-items: center; gap: 12px; }
.wa-panel-header-info strong { font-size: 14px; display: block; }
.wa-status { font-size: 11px; opacity: 0.8; display: block; margin-top: 1px; }
.wa-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; position: relative; flex-shrink: 0;
}
.wa-online-dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #25D366; border: 2px solid #075E54;
}
.wa-panel-close {
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.wa-panel-close:hover { background: rgba(255,255,255,.2); }

/* Panel Body */
.wa-panel-body {
  flex: 1; overflow-y: auto; padding: 18px;
  background: #E5DDD5 url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8c3bc' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Chat Bubble */
.wa-bubble-wrap { margin-bottom: 18px; }
.wa-bubble {
  background: #fff; padding: 12px 16px; border-radius: 0 12px 12px 12px;
  font-size: 13px; line-height: 1.55; color: #303030;
  box-shadow: 0 1px 2px rgba(0,0,0,.06); max-width: 90%;
  animation: bubbleIn .3s ease-out both;
}
.wa-bubble strong { display: block; margin-bottom: 4px; }
.wa-bubble-time { font-size: 11px; color: rgba(0,0,0,.35); margin-top: 4px; display: block; }
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Type Selection Cards */
.wa-form-label { font-size: 12px; font-weight: 600; color: #666; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.wa-type-grid { display: flex; gap: 10px; }
.wa-type-card {
  flex: 1; background: #fff; border: 2px solid #E8E8E8;
  border-radius: 12px; padding: 16px 12px; text-align: center;
  cursor: pointer; transition: all .25s ease; display: flex;
  flex-direction: column; align-items: center; gap: 6px;
}
.wa-type-card:hover { border-color: #25D366; background: rgba(37,211,102,.03); }
.wa-type-card svg { color: #25D366; }
.wa-type-card strong { font-size: 13px; color: #303030; }
.wa-type-card span { font-size: 11px; color: #888; }

/* Form Fields */
.wa-form-step { animation: bubbleIn .3s ease-out both; }
.wa-slide-in { animation: waSlideIn .3s ease-out both; }
@keyframes waSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.wa-back-link {
  display: flex; align-items: center; gap: 4px; font-size: 12px;
  color: #128C7E; cursor: pointer; margin-bottom: 14px; font-weight: 500;
}
.wa-back-link:hover { text-decoration: underline; }
.wa-field { margin-bottom: 12px; }
.wa-field label {
  display: block; font-size: 12px; font-weight: 600; color: #555;
  margin-bottom: 5px;
}
.wa-req { color: #E53E3E; }
.wa-field input, .wa-field textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid #DDD;
  border-radius: 10px; font-size: 13px; font-family: var(--font-sans);
  transition: border-color .2s, box-shadow .2s;
  background: #fff; color: #303030; outline: none; box-sizing: border-box;
}
.wa-field input:focus, .wa-field textarea:focus {
  border-color: #25D366; box-shadow: 0 0 0 3px rgba(37,211,102,.1);
}
.wa-field textarea { resize: vertical; min-height: 60px; }

/* Shake animation for validation */
.wa-shake { animation: waShake .4s ease-in-out; border-color: #E53E3E !important; }
@keyframes waShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Send Button */
.wa-send-btn {
  width: 100%; padding: 12px; border: none; border-radius: 12px;
  background: #25D366; color: #fff; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; transition: all .25s ease; font-family: var(--font-sans);
  margin-top: 4px;
}
.wa-send-btn:hover { background: #1EBE5C; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.3); }

/* Panel Footer */
.wa-panel-footer {
  padding: 8px 18px; background: #F5F5F5; border-top: 1px solid #E8E8E8;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11px; color: #999;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .wa-panel { width: calc(100vw - 24px); right: -12px; bottom: 70px; max-height: 70vh; border-radius: 14px; }
  #waChatWidget { bottom: 16px; right: 16px; }
  .wa-fab { width: 54px; height: 54px; }
}

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === HIGHLIGHT === */
.highlight { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* === TOAST === */
.toast-container { position: fixed; top: calc(var(--nav-height) + 16px); right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }

/* === PARTICLES (hidden) === */
.particles-bg { display: none; }


/* ──────────────────────────────────────────────
   § PREMIUM REGISTRATION FORM
   ────────────────────────────────────────────── */
.form-page {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 40px) var(--gutter) 80px;
  background: linear-gradient(180deg, var(--surface-alt) 0%, #EEF1F8 100%);
  position: relative;
  z-index: 1;
}
.form-container { max-width: 760px; margin: 0 auto; }

/* ── Premium Stepper ── */
.premium-stepper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  padding: 0 10px;
}
.stepper-track {
  position: absolute;
  top: 20px; left: 44px; right: 44px;
  height: 3px;
  background-color: var(--outline);
  border-radius: 2px;
}
.stepper-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--secondary), #7C8FFF);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(.4,0,.2,1);
}
.stepper-step {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  z-index: 2; position: relative;
}
.stepper-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--surface);
  border: 2.5px solid var(--outline);
  color: var(--muted);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.stepper-icon svg { width: 18px; height: 18px; }
.stepper-check {
  display: none; position: absolute; inset: 0;
  align-items: center; justify-content: center;
  background-color: var(--success);
  border-radius: 50%; color: #fff;
}
.stepper-check svg { width: 18px; height: 18px; stroke-width: 3; }
.stepper-step.active .stepper-icon {
  background: linear-gradient(135deg, var(--secondary), #7C8FFF);
  border-color: var(--secondary); color: #fff;
  box-shadow: 0 4px 16px rgba(74,108,247,0.3);
  transform: scale(1.1);
}
.stepper-step.completed .stepper-icon {
  background-color: var(--success); border-color: var(--success); color: #fff;
}
.stepper-step.completed .stepper-check { display: flex; }
.stepper-step.completed .stepper-icon > svg:first-child { display: none; }
.stepper-label {
  font-size: 11px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.02em; white-space: nowrap;
}
.stepper-step.active .stepper-label { color: var(--secondary); font-weight: 700; }
.stepper-step.completed .stepper-label { color: var(--success); }

/* ── Form Steps ── */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInUp 0.45s var(--ease-out) both; }

/* ── Form Card ── */
.form-card {
  background-color: var(--surface);
  border-radius: var(--rounded-xl);
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
}
.form-card-header {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px; padding-bottom: 18px;
  border-bottom: 1px solid var(--outline);
}
.form-card-icon {
  width: 44px; height: 44px; border-radius: var(--rounded-md);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface-blue), rgba(74,108,247,0.08));
  color: var(--secondary); flex-shrink: 0;
}
.form-card-icon svg { width: 21px; height: 21px; }
.form-card-icon--success { background: linear-gradient(135deg, #ECFDF5, rgba(34,197,94,0.08)); color: var(--success); }
.form-card h2 { font-size: 20px; font-weight: 700; color: var(--on-surface); margin-bottom: 3px; }
.form-desc { font-size: 13px; color: var(--on-surface-variant); margin-bottom: 0; line-height: 1.45; }

/* ── Form Groups ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--on-surface); margin-bottom: 6px; }
.form-group .required { color: var(--error); }
.form-field-hint { font-size: 12px; color: var(--muted); margin-bottom: 8px; margin-top: -2px; }

/* ── Input Wrapper with Icon ── */
.input-wrapper {
  position: relative; display: flex; align-items: center;
}
.input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--muted);
  pointer-events: none; z-index: 2;
  transition: color 0.25s ease;
}
.textarea-icon { top: 18px; transform: none; }
.form-input.has-icon { padding-left: 42px; }
.input-wrapper:focus-within .input-icon { color: var(--secondary); }

.form-input {
  width: 100%; padding: 11px 14px; height: 42px;
  background-color: var(--surface);
  border: 1.5px solid var(--outline);
  border-radius: var(--rounded-md);
  font-size: 14px; color: var(--on-surface);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.form-input::placeholder { color: var(--muted); }
.form-input:hover { border-color: var(--outline-variant); background-color: #FAFBFD; }
.form-input:focus {
  outline: none; border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(74,108,247,0.1);
  background-color: var(--surface);
}
.form-input.error { border-color: var(--error); box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.form-input.success { border-color: var(--success); }
textarea.form-input { height: auto; resize: vertical; min-height: 88px; }
select.form-input {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238E8EA0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-char-count { font-size: 12px; color: var(--muted); text-align: right; margin-top: 6px; }

.form-card .categories-grid { gap: 10px !important; }
.form-card .category-card { padding: 14px 12px !important; }
.form-card .category-card .cat-icon { width: 38px; height: 38px; margin-bottom: 8px; }
.form-card .category-card .cat-icon svg { width: 19px; height: 19px; }
.form-card .category-card h4 { font-size: 13px !important; margin-bottom: 2px; }
.form-card .category-card p { font-size: 11px; line-height: 1.35; }

.error-msg { display: none; font-size: 13px; color: var(--error); margin-top: 6px; font-weight: 500; }
.form-group.has-error .error-msg, .error-msg.visible { display: block; }

/* ── Photo Upload ── */
.photo-upload {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  background-color: var(--surface-alt);
  border: 2px dashed var(--outline);
  border-radius: var(--rounded-lg);
  cursor: pointer; transition: var(--transition);
}
.photo-upload:hover { border-color: var(--secondary); background-color: var(--surface-blue); }
.photo-upload input[type="file"] { display: none; }
.photo-preview {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--outline), var(--surface-alt));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--surface);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview svg { color: var(--muted); width: 24px; height: 24px; }
.photo-upload-text strong { color: var(--on-surface); font-size: 14px; display: block; }
.photo-upload-text p { color: var(--muted); font-size: 12px; margin-top: 2px; }
.photo-upload-badge {
  margin-left: auto; padding: 6px 16px;
  background-color: var(--surface-blue); color: var(--secondary);
  border-radius: var(--rounded-full); font-size: 13px; font-weight: 600;
  flex-shrink: 0; transition: var(--transition);
}
.photo-upload:hover .photo-upload-badge {
  background-color: var(--secondary); color: #fff;
}

/* ── Certification Chips ── */
.cert-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.cert-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
  background-color: var(--surface);
  border: 1.5px solid var(--outline);
  border-radius: var(--rounded-md);
  cursor: pointer; transition: var(--transition);
}
.cert-chip:hover { border-color: var(--secondary); background-color: rgba(74,108,247,0.02); }
.cert-chip-icon {
  width: 32px; height: 32px; border-radius: var(--rounded-sm);
  display: flex; align-items: center; justify-content: center;
  background-color: var(--surface-alt); color: var(--muted);
  flex-shrink: 0; transition: var(--transition);
}
.cert-chip-icon svg { width: 17px; height: 17px; }
.cert-chip-text { flex: 1; }
.cert-chip-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--on-surface); }
.cert-chip-text span { display: none; }
.cert-chip-check {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--outline); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.cert-chip-check svg { width: 14px; height: 14px; display: none; }
.cert-chip.active {
  border-color: var(--secondary); background-color: var(--surface-blue);
}
.cert-chip.active .cert-chip-icon { background-color: var(--secondary); color: #fff; }
.cert-chip.active .cert-chip-check {
  background-color: var(--secondary); border-color: var(--secondary);
}
.cert-chip.active .cert-chip-check svg { display: block; color: #fff; }

/* ── Availability Cards ── */
.avail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.avail-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 10px; text-align: center;
  background-color: var(--surface);
  border: 1.5px solid var(--outline);
  border-radius: var(--rounded-md);
  cursor: pointer; transition: var(--transition);
}
.avail-card:hover { border-color: var(--secondary); }
.avail-card-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--surface-alt); color: var(--muted);
  transition: var(--transition);
}
.avail-card-icon svg { width: 17px; height: 17px; }
.avail-card strong { font-size: 13px; color: var(--on-surface); }
.avail-card span { font-size: 12px; color: var(--muted); }
.avail-card.active {
  border-color: var(--secondary); background-color: var(--surface-blue);
  box-shadow: 0 2px 12px rgba(74,108,247,0.1);
}
.avail-card.active .avail-card-icon { background-color: var(--secondary); color: #fff; }

/* ── Form Navigation ── */
.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px;
}
.form-nav-hint {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted); font-weight: 500;
}

/* ── Terms Check ── */
.terms-check {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background-color: var(--surface-alt);
  border-radius: var(--rounded-md); margin-top: 18px;
  border: 1px solid var(--outline);
}
.terms-check input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--secondary); flex-shrink: 0; }
.terms-check label { font-size: 13px; line-height: 1.6; color: var(--on-surface-variant); }
.terms-check a { color: var(--secondary) !important; font-weight: 600; }

/* ── Review Content ── */
#reviewContent { margin-bottom: 8px; }
.review-section {
  padding: 20px 0; border-bottom: 1px solid var(--outline);
}
.review-section:last-child { border-bottom: none; }
.review-section h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 12px; font-weight: 700;
}
.review-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
}
.review-label { font-size: 14px; color: var(--on-surface-variant); }
.review-value { font-size: 14px; font-weight: 600; color: var(--on-surface); text-align: right; }

/* ── Trust Badges ── */
.form-trust-strip {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 28px; padding: 16px 0;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--muted);
}
.trust-badge svg { width: 16px; height: 16px; color: var(--success); }

/* ── Spinner ── */
.spinner {
  width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.6s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-images { min-height: 320px; display: flex; justify-content: center; }
  .hero-img--main { position: relative; right: auto; top: auto; width: 240px; height: 300px; }
  .hero-img--secondary { width: 180px; height: 240px; left: auto; bottom: auto; position: relative; margin-left: -40px; }
  .hero-float-badge { display: none; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-layout--reverse .split-content { order: 1; }
  .split-layout--reverse .split-visual { order: 2; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: flex; position: fixed; top: 0; right: -100%; bottom: 0; width: 300px; max-width: 85vw;
    background: #fff; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 32px 40px; gap: 16px; z-index: 998;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 18px; font-weight: 600; width: 100%; border-bottom: 1px solid #f1f5f9; padding-bottom: 12px; }
  .nav-auth { width: 100%; display: flex; justify-content: stretch; }
  .nav-auth .nav-cta-btn { width: 100%; text-align: center; justify-content: center; padding: 14px 24px; font-size: 16px; margin-top: 12px; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(10,26,68,0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 997; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
  .nav-overlay.open { opacity: 1; pointer-events: all; }
  .nav-toggle { display: flex; z-index: 999; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  /* Mobile Hero — Full BG Image + Dark Gradient */
  .hero {
    background: url('../images/hero-mobile-bg.png') center/cover no-repeat;
    position: relative; padding: calc(var(--nav-height) + 40px) 0 48px;
    min-height: 90vh; display: flex; align-items: flex-end;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(37,99,235,.75) 0%, rgba(10,26,68,.92) 60%, rgba(10,26,68,.98) 100%);
    z-index: 1;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; position: relative; z-index: 2; }
  .hero-text, .hero-subtitle, .hero-search { min-width: 0; width: 100%; }
  .hero-images { display: none !important; }
  .hero-float-badge { display: none !important; }
  .hero-wave { display: none; }
  .hero-pill { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
  .hero h1 { color: #fff; font-size: clamp(28px, 7vw, 38px); }
  .hero .text-accent { color: var(--accent); }
  .hero-subtitle { color: rgba(255,255,255,.7); }
  .hero-proof { color: rgba(255,255,255,.6); }
  .hero-proof strong { color: #fff; }
  .hero-proof .avatar { border-color: rgba(255,255,255,.2); }

  /* Search bar card on dark bg */
  .hero-search {
    flex-direction: column; gap: 12px; padding: 24px;
    background: rgba(255,255,255,.05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1); border-radius: var(--rounded-xl);
    box-shadow: 0 16px 40px rgba(0,0,0,.2); max-width: 100%; width: 100%;
  }
  .hero-search .search-field {
    padding: 0; border: none; margin-bottom: 0; position: relative; min-width: 0; width: 100%;
  }
  .hero-search .search-field:last-of-type { margin-bottom: 8px; }
  .hero-search .search-field input {
    background: rgba(0,0,0,.15); border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--rounded-lg); padding: 16px 16px 16px 46px;
    color: #fff; font-size: 16px; width: 100%; min-width: 0; transition: all 0.2s;
  }
  .hero-search .search-field input:focus {
    background: rgba(0,0,0,.25); border-color: var(--accent); outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
  }
  .hero-search .search-field input::placeholder { color: rgba(255,255,255,.6); }
  .hero-search .search-field i, .hero-search .search-field svg { 
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,.7); width: 20px; height: 20px; z-index: 2; pointer-events: none;
  }
  .hero-search .btn { width: 100%; padding: 16px; font-size: 16px; font-weight: 600; border-radius: var(--rounded-lg); display: flex; align-items: center; justify-content: center; gap: 8px; }

  /* Navbar on mobile — transparent on dark hero */
  .navbar:not(.scrolled) { background: transparent; box-shadow: none; }
  .navbar:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }
  .navbar:not(.scrolled) .nav-toggle span { background: #fff; }

  /* Other mobile adjustments */
  .stats-row { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .stats-row::-webkit-scrollbar { display: none; }
  .stat-card { flex: 0 0 auto; min-width: 100px; padding: 12px 16px; }
  .stat-number, .stat-suffix { font-size: clamp(22px, 5vw, 28px) !important; }
  .stat-label { font-size: 9px; }
  .stat-divider { height: 36px; }
  .dest-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .dest-card { height: 300px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 12px !important; }
  .categories-grid .category-card:nth-child(n+7) { display: none; }
  .categories-grid.categories-grid--expanded .category-card:nth-child(n+7) { display: block; }
  .category-card { padding: 16px 10px !important; }
  .category-card .cat-icon { width: 40px; height: 40px; margin-bottom: 8px; }
  .category-card .cat-icon svg { width: 20px; height: 20px; }
  .category-card h4 { font-size: 11px !important; }
  .category-card p { display: none; }
  .categories-more-btn { display: block !important; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-card { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .avail-grid { grid-template-columns: repeat(3, 1fr); }
  .form-trust-strip { flex-direction: column; align-items: center; gap: 12px; }
  .form-card-header { flex-direction: column; gap: 12px; }
  .stepper-label { font-size: 10px; }
  .stepper-icon { width: 40px; height: 40px; }
  .form-reveal-section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .hero { min-height: 85vh; padding-bottom: 32px; }
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 13px; }
  .hero-search { padding: 16px; }
  .hero-search .search-field input { padding: 12px 12px 12px 38px; font-size: 16px; }
  .stats-row { flex-direction: row; flex-wrap: nowrap; }
  .stat-card { flex: 0 0 auto; min-width: 80px; padding: 10px 12px; }
  .stat-number, .stat-suffix { font-size: 20px !important; }
  .stat-label { font-size: 8px; letter-spacing: .04em; }
  .stat-divider { height: 28px; }
  .section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .category-card { padding: 12px 6px !important; }
  .category-card .cat-icon { width: 36px; height: 36px; margin-bottom: 6px; }
  .category-card .cat-icon svg { width: 18px; height: 18px; }
  .category-card h4 { font-size: 10px !important; line-height: 1.2; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-card { padding: 20px 16px; }
  .form-nav { flex-direction: column-reverse; gap: 12px; }
  .form-nav .btn { width: 100%; }
  .premium-stepper { margin-bottom: 18px; padding: 0; }
  .stepper-track { left: 28px; right: 28px; }
  .stepper-icon { width: 36px; height: 36px; }
  .stepper-icon svg { width: 16px; height: 16px; }
  .stepper-label { display: none; }
  .cert-chip { padding: 12px 14px; }
  .avail-grid { grid-template-columns: 1fr; }
  /* Mobile testimonial carousel */
  .video-testimonials-carousel { padding: 0; overflow: visible; }
  .vt-track { padding-left: 20px; padding-right: 20px; gap: 12px; scroll-padding-left: 20px; }
  .vt-card { flex: 0 0 70vw; min-width: 240px; }
  .vt-nav { display: none; }
}

/* === AUTOCOMPLETE DROPDOWN === */
.search-field--loc { position: relative; }
.autocomplete-dropdown {
  display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 100;
  background: #fff; border: 1px solid var(--outline); border-radius: var(--rounded-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.12); max-height: 240px; overflow-y: auto;
  margin-top: 4px;
}
.autocomplete-dropdown.open { display: block; }
.autocomplete-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  cursor: pointer; font-size: 13px; color: var(--neutral); transition: background .15s;
}
.autocomplete-item:hover, .autocomplete-item.active { background: var(--surface-blue); }
.autocomplete-item .ac-suburb { font-weight: 600; }
.autocomplete-item .ac-meta { font-size: 11px; color: var(--muted); margin-left: auto; }
.autocomplete-item .ac-icon { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.autocomplete-no-results { padding: 12px 14px; font-size: 13px; color: var(--muted); text-align: center; }

/* === FORM REVEAL SECTION === */
.form-reveal-section {
  padding: var(--space-3xl) 0; background: linear-gradient(180deg, var(--cloud) 0%, var(--surface-alt) 100%);
  border-top: 3px solid var(--primary);
}
.form-reveal-header { margin-bottom: 32px; }
.form-reveal-header .section-subtitle { max-width: 100%; }

/* Form accent overrides for Cyprus palette */
.form-card-icon { background: linear-gradient(135deg, var(--surface-blue), rgba(37,99,235,.08)); color: var(--primary); }
.stepper-step.active .stepper-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary); box-shadow: 0 4px 16px rgba(37,99,235,.3);
}
.stepper-step.active .stepper-label { color: var(--primary); }
.stepper-fill { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.category-card.selected { border-color: var(--primary); background: var(--surface-blue); box-shadow: 0 2px 12px rgba(37,99,235,.1); }
.category-card.selected .cat-icon { background: var(--primary); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.cert-chip:hover { border-color: var(--primary); background: rgba(37,99,235,.02); }
.cert-chip.active { border-color: var(--primary); background: var(--surface-blue); }
.cert-chip.active .cert-chip-icon { background: var(--primary); color: #fff; }
.cert-chip.active .cert-chip-check { background: var(--primary); border-color: var(--primary); }
.avail-card:hover { border-color: var(--primary); }
.avail-card.active { border-color: var(--primary); background: var(--surface-blue); box-shadow: 0 2px 12px rgba(37,99,235,.1); }
.avail-card.active .avail-card-icon { background: var(--primary); color: #fff; }
.photo-upload:hover { border-color: var(--primary); background: var(--surface-blue); }
.photo-upload-badge { background: var(--surface-blue); color: var(--primary); }
.photo-upload:hover .photo-upload-badge { background: var(--primary); color: #fff; }
.input-wrapper:focus-within .input-icon { color: var(--primary); }
.terms-check a { color: var(--primary) !important; }
.btn-success { background: var(--success); color: #fff; border-color: var(--success); }

/* === LATEST OPPORTUNITIES === */
.jobs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.job-card {
  background: #fff; border-radius: var(--rounded-xl); padding: 24px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.job-card:hover {
  transform: translateY(-8px); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--secondary);
}
.job-card-header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px;
}
.job-logo {
  width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.job-badge {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px;
}
.job-title {
  font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--primary); line-height: 1.3;
}
.job-location {
  display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; margin-bottom: 20px;
}
.job-location i, .job-location svg { width: 16px; height: 16px; }
.job-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.job-tag {
  background: var(--surface-alt); color: var(--neutral); font-size: 13px; font-weight: 500; padding: 6px 12px; border-radius: 6px;
}
.job-card .btn { width: 100%; margin-top: auto; }

@media (max-width: 1400px) {
  .jobs-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1100px) {
  .jobs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .jobs-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .jobs-grid .job-card { padding: 12px; }
  .jobs-grid .job-card .job-title { font-size: 13px; margin-bottom: 4px; }
  .jobs-grid .job-card .job-location { font-size: 10px; margin-bottom: 12px; }
  .jobs-grid .job-card .job-tags { display: none; }
  .jobs-grid .job-card .btn { font-size: 10px; padding: 6px 10px; border-radius: 6px; }
  .jobs-grid .job-card .job-logo { width: 32px; height: 32px; border-radius: 8px; }
  .jobs-grid .job-card .job-logo i, .jobs-grid .job-card .job-logo svg { width: 14px; height: 14px; }
  .jobs-grid .job-card .job-badge { font-size: 7px; padding: 2px 4px; }
}
@media (max-width: 480px) {
  .jobs-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* Static grid for homepage */
.jobs-grid--static {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .jobs-grid--static { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .jobs-grid--static { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* Hide the 5th card on mobile to maintain a 2x2 grid */
  .jobs-grid--static .job-card:nth-child(5) { display: none; }
}

/* Categories Show More button */
.categories-more-btn {
  display: none; text-align: center; margin-top: 16px;
}
.categories-more-btn button {
  background: var(--surface-blue); border: 1.5px solid rgba(37,99,235,.12);
  color: var(--primary); padding: 10px 28px; border-radius: var(--rounded-full);
  font-size: 13px; font-weight: 600; font-family: var(--font-sans);
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.categories-more-btn button:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.categories-more-btn button svg { width: 16px; height: 16px; }

/* === MODAL OVERLAY === */
.form-modal-overlay {
  position: fixed; inset: 0; background: rgba(0, 70, 67, 0.8); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 1050; display: none; overflow-y: scroll; -webkit-overflow-scrolling: touch;
  height: 100vh; height: 100dvh; overscroll-behavior: contain;
  padding: 40px 20px;
  opacity: 0; transition: opacity 0.3s ease;
}
.form-modal-overlay.open {
  display: flex; opacity: 1; justify-content: center; align-items: flex-start;
}
.form-modal-container {
  background: var(--cloud); max-width: 800px; width: 100%; margin: auto;
  border-radius: var(--rounded-2xl); box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  position: relative; padding: 48px;
  transform: translateY(20px); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.form-modal-overlay.open .form-modal-container {
  transform: translateY(0);
}
.form-modal-close {
  position: absolute; top: 24px; right: 24px; background: rgba(0,0,0,0.05); border: none;
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--neutral); cursor: pointer; transition: all 0.2s; z-index: 10;
}
.form-modal-close:hover {
  background: var(--surface-alt); color: var(--primary); transform: rotate(90deg);
}
body.modal-open { overflow: hidden; position: fixed; width: 100%; touch-action: none; }

@media (max-width: 768px) {
  .form-modal-overlay { padding: 0; backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(0,70,67,0.95); }
  .form-modal-overlay.open { align-items: stretch; }
  .form-modal-container {
    border-radius: 0;
    min-height: 100vh; min-height: 100dvh;
    padding: 24px 20px 100px;
    margin: 0; max-width: 100%;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .form-modal-close { top: 12px; right: 12px; background: rgba(0,0,0,0.1); }
  /* YouTube iframes must not steal touch from the carousel track */
  .vt-card--youtube iframe { pointer-events: none; }
  .vt-card--youtube.playing iframe { pointer-events: auto; }
}

/* === DUPLICATE WARNING === */
.dup-warning {
  display: flex; align-items: center; gap: 6px;
  margin-top: 6px; padding: 8px 12px;
  background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.2);
  border-radius: 8px; font-size: 12px; font-weight: 500; color: #dc2626;
  animation: dupShake .4s ease-in-out, fadeInUp .3s ease-out;
}
.dup-warning svg { flex-shrink: 0; color: #dc2626; }
@keyframes dupShake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-4px); }
  40%,80% { transform: translateX(4px); }
}

/* === PREMIUM REVIEW CARDS === */
.review-profile-header {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(37,99,235,.04), rgba(37,99,235,.01));
  border: 1px solid rgba(37,99,235,.08); border-radius: 16px;
}
.review-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: 0 4px 16px rgba(37,99,235,.2);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-avatar span { color: #fff; font-size: 22px; font-weight: 800; font-family: var(--font-display); }
.review-profile-info { flex: 1; }
.review-profile-info h3 { font-size: 18px; font-weight: 700; color: var(--on-surface); margin-bottom: 2px; }
.review-profile-info p { font-size: 13px; color: var(--primary); font-weight: 600; }
.review-score {
  width: 56px; height: 56px; position: relative;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-score svg { width: 56px; height: 56px; }
.review-score span {
  position: absolute; font-size: 13px; font-weight: 800;
  color: var(--on-surface); font-family: var(--font-sans);
}

.review-cards { display: flex; flex-direction: column; gap: 14px; }
.review-card {
  background: var(--surface); border: 1px solid var(--outline);
  border-radius: 14px; overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.review-card:hover { border-color: rgba(37,99,235,.15); box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.review-card-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-bottom: 1px solid var(--outline);
  background: linear-gradient(180deg, rgba(0,0,0,.005), rgba(0,0,0,.015));
}
.review-card-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: rgba(37,99,235,.06); color: var(--primary);
}
.review-card-head h4 { flex: 1; font-size: 14px; font-weight: 700; color: var(--on-surface); }
.review-edit-btn {
  background: none; border: 1px solid var(--outline); padding: 4px 14px;
  border-radius: 100px; font-size: 12px; font-weight: 600;
  color: var(--primary); cursor: pointer; transition: all .2s;
  font-family: var(--font-sans);
}
.review-edit-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.review-card-body { padding: 14px 18px; }
.review-field {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,.03);
}
.review-field:last-child { border-bottom: none; }
.review-field span { font-size: 13px; color: var(--muted); flex-shrink: 0; }
.review-field strong { font-size: 13px; font-weight: 600; color: var(--on-surface); text-align: right; }
.review-field--bio { flex-direction: column; align-items: flex-start; gap: 4px; }
.review-field--bio p { font-size: 13px; color: var(--on-surface); line-height: 1.5; margin: 0; }
.review-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.review-badge {
  padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700;
  background: rgba(37,99,235,.06); color: var(--primary);
  letter-spacing: .02em;
}

/* Review card staggered animation */
.review-anim {
  opacity: 0; transform: translateY(12px);
  animation: reviewCardIn .4s ease-out forwards;
  animation-delay: calc(var(--delay) * .1s);
}
@keyframes reviewCardIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .review-profile-header { flex-direction: column; text-align: center; padding: 16px; }
  .review-card-head { padding: 12px 14px; }
  .review-card-body { padding: 12px 14px; }
  .review-field { flex-direction: column; align-items: flex-start; gap: 2px; }
  .review-field strong { text-align: left; }
}

/* ═══ SHOWCASE SECTION (Job Seekers / Employers) ═══ */
.showcase-section {
  position: relative;
  padding: 80px 0 100px;
  background-color: #fff;
  overflow: hidden;
}
/* Background image – right half only */
.showcase-section::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: url('../images/hero-secondary.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
}
/* White fade from left over the image */
.showcase-section::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 42%,
    rgba(255,255,255,0.92) 52%,
    rgba(255,255,255,0.6) 65%,
    rgba(255,255,255,0.1) 80%,
    rgba(255,255,255,0) 100%
  );
  z-index: 1;
}

.showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content */
.showcase-content { max-width: 520px; }
.showcase-content .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; margin-bottom: 24px;
}
.showcase-content .section-tag i, .showcase-content .section-tag svg {
  width: 14px; height: 14px;
}
.showcase-title {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800; line-height: 1.1;
  color: #0A1A44; margin-bottom: 18px;
  text-align: left;
}
.highlight-blue {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.highlight-blue::after {
  content: ''; position: absolute;
  bottom: 4px; left: 0; width: 100%; height: 5px;
  background: #10B981;
  border-radius: 3px;
  opacity: 0.7;
}
.showcase-desc {
  font-size: 15px; color: #64748B; line-height: 1.7;
  margin-bottom: 28px; max-width: 420px;
}
.showcase-desc .text-blue { color: var(--primary); font-weight: 600; text-decoration: underline; }

/* Notification Stack (left side) */
.notif-stack--left { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.notif-stack--left .notif-bubble {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  font-size: 14px; font-weight: 500; color: #1E293B;
  animation: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.notif-stack--left .notif-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.notif-left { display: flex; align-items: center; gap: 12px; }
.notif-icon-wrap {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,0.08); flex-shrink: 0;
}
.notif-icon-wrap i, .notif-icon-wrap svg { width: 16px; height: 16px; color: var(--primary); }
.notif-icon-wrap--green { background: rgba(16,185,129,0.08); }
.notif-icon-wrap--green i, .notif-icon-wrap--green svg { color: #10B981; }
.notif-icon-wrap--blue { background: rgba(37,99,235,0.08); }
.notif-icon-wrap--blue i, .notif-icon-wrap--blue svg { color: var(--primary); }
.notif-badge {
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; white-space: nowrap;
}
.notif-badge--blue { background: rgba(37,99,235,0.08); color: var(--primary); }
.notif-badge--green { background: rgba(16,185,129,0.08); color: #10B981; }

/* CTA Row */
.showcase-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-note {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: #64748B; font-weight: 500;
}
.cta-note i, .cta-note svg { width: 14px; height: 14px; color: #94A3B8; }

/* ═══ RIGHT SIDE VISUALS ═══ */
.showcase-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

/* Dark Navy Card */
.dark-glass-card {
  background: #0A1A44;
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
  box-shadow: 0 24px 48px rgba(10,26,68,0.35);
  max-width: 380px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.glass-icon {
  width: 42px; height: 42px; background: #fff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.glass-icon i, .glass-icon svg { width: 20px; height: 20px; color: var(--primary); }
.dark-glass-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.text-blue { color: #60A5FA; }
.glass-divider {
  height: 1px; width: 100%;
  background: rgba(255,255,255,0.12);
  margin-bottom: 18px;
}
.check-list--glass { margin-top: 0; gap: 14px; }
.check-list--glass li {
  color: rgba(255,255,255,0.9);
  font-size: 14px; font-weight: 400;
}
.check-list--glass i, .check-list--glass svg { color: #10B981; }

/* Floating Avatar Card */
.floating-avatar-card {
  position: absolute;
  bottom: -30px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 3;
}
.floating-avatar-card .avatar-group { display: flex; }
.floating-avatar-card .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid #fff; margin-right: -10px;
  display: flex; align-items: center; justify-content: center;
}
.avatar-card-text { display: flex; flex-direction: column; line-height: 1.4; }
.avatar-card-text strong { font-size: 14px; color: #0A1A44; font-weight: 700; }
.avatar-card-text span { font-size: 12px; color: #94A3B8; }

/* ═══ SHOWCASE RESPONSIVE ═══ */
@media (max-width: 992px) {
  .showcase-section::after { width: 100%; opacity: 0.15; }
  .showcase-section::before {
    background: rgba(255,255,255,0.92);
  }
  .showcase-container { grid-template-columns: 1fr; gap: 32px; }
  .showcase-visual { align-items: center; min-height: auto; }
  .dark-glass-card { margin: 0 auto; max-width: 100%; }
  .floating-avatar-card {
    position: relative; bottom: 0; right: 0;
    margin-top: -16px; margin-left: auto; margin-right: auto;
  }
}

/* --- EMPLOYER MODAL --- */
.employer-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh;
  background: rgba(10, 26, 68, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  overscroll-behavior: contain;
}
.employer-modal-overlay.open { opacity: 1; pointer-events: all; }
.employer-modal-container {
  position: relative;
  width: 90vw; max-width: 820px;
  height: 85vh; height: 85dvh; max-height: 900px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.2);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.employer-modal-overlay.open .employer-modal-container { transform: translateY(0); }
.employer-modal-container .form-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  background: rgba(0,0,0,0.06); border: none; border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 768px) {
  .employer-modal-container {
    width: 100vw;
    height: 100vh; height: 100dvh;
    max-height: none;
    border-radius: 0;
  }
}

