/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg: #f7faff;
  --bg-alt: #ecf2fb;
  --bg-card: #ffffff;
  --text: #0b1f4f;
  --text-muted: #4a5f86;
  --text-light: #7f93b7;
  --accent: #0b1f4f;
  --accent-dark: #07163a;
  --accent-light: #dde7f8;
  --accent-glow: rgba(212, 166, 42, 0.22);
  --highlight: #d4a62a;
  --border: rgba(11, 31, 79, 0.1);
  --border-light: rgba(11, 31, 79, 0.06);
  --shadow-sm: 0 2px 8px rgba(11, 31, 79, 0.06);
  --shadow-md: 0 12px 32px -4px rgba(11, 31, 79, 0.1), 0 4px 12px -2px rgba(11, 31, 79, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(11, 31, 79, 0.18);
  --shadow-xl: 0 32px 64px -16px rgba(11, 31, 79, 0.24);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  /* Luxurious slow easing */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --navbar-h: 110px;
  --drawer-overlay: rgba(11, 31, 79, 0.45);
}

[data-theme="dark"] {
  --bg: #061434;
  --bg-alt: #0b1f4f;
  --bg-card: #102957;
  --text: #f8fbff;
  --text-muted: #b8c8e6;
  --text-light: #d7e2f3;
  --accent: #f4c34f;
  --accent-dark: #ffe4a0;
  --accent-light: rgba(244, 195, 79, 0.18);
  --accent-glow: rgba(244, 195, 79, 0.28);
  --highlight: #f4c34f;
  --border: rgba(169, 193, 235, 0.26);
  --border-light: rgba(169, 193, 235, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px -4px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 48px -12px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 32px 64px -16px rgba(0, 0, 0, 0.8);
  --drawer-overlay: rgba(4, 16, 44, 0.72);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0
}

html {
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background 0.5s ease, color 0.5s ease;
  overflow-x: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition)
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font)
}

/* ===== NOISE TEXTURE ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6
}

[data-theme="dark"] body::before {
  opacity: 0.3
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--accent);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease
}

.loader.hidden {
  opacity: 0;
  visibility: hidden
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem
}

.loader-logo {
  width: min(160px, 38vw);
  height: auto;
  object-fit: contain;
  padding: 1rem 1.1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(212, 166, 42, 0.28);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(11, 31, 79, 0.04) inset;
  filter: drop-shadow(0 14px 28px rgba(11, 31, 79, 0.1));
}

.loader-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.6, 0.2, 0.4, 0.8) infinite
}

.loader-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #f8fbff;
  opacity: 0.95;
  text-transform: uppercase
}

[data-theme="dark"] .loader-logo {
  background: rgba(248, 251, 255, 0.98);
  border-color: rgba(244, 195, 79, 0.36);
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  z-index: 1400;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
}

.floating-booking {
  background: var(--highlight);
  color: #0b1f4f;
  border-color: rgba(212, 166, 42, 0.55);
}

.floating-booking:hover {
  background: color-mix(in srgb, var(--highlight) 88%, white 12%);
  color: #0b1f4f;
  border-color: rgba(212, 166, 42, 0.55);
  transform: translateY(-3px);
}

.floating-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.32);
}

.floating-action svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.floating-whatsapp:hover {
  background: var(--highlight);
  color: #0b1f4f;
  border-color: rgba(212, 166, 42, 0.55);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.floating-action:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@media (max-width: 900px) {
  .owner-grid { grid-template-columns: 1fr; }

  .floating-actions {
    right: 0.8rem;
    bottom: 0.8rem;
    gap: 0.65rem;
  }

  .floating-action {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
  }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-h);
  z-index: 1000;
  transition: var(--transition);
  background: var(--bg);
  border-bottom: 1px solid var(--border)
}

.navbar.scrolled {
  background: var(--bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border)
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(243, 247, 255, 0.95);
  border-bottom: 1px solid rgba(11, 31, 79, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

[data-theme="dark"] .navbar {
  background: rgba(243, 247, 255, 0.95);
  border-bottom: 1px solid rgba(11, 31, 79, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

[data-theme="dark"] .navbar .logo {
  background: transparent;
  box-shadow: none;
}

[data-theme="dark"] .navbar .nav-links a {
  color: #16326b;
}

[data-theme="dark"] .navbar .nav-links a:hover {
  color: #0b1f4f;
  background: rgba(11, 31, 79, 0.08);
}

[data-theme="dark"] .navbar .nav-cta {
  background: #0b1f4f !important;
  color: #ffffff !important;
}

[data-theme="dark"] .navbar .nav-book {
  background: #0b1f4f;
  color: #ffffff;
}

[data-theme="dark"] .navbar .nav-cta:hover,
[data-theme="dark"] .navbar .nav-book:hover {
  background: var(--highlight) !important;
  color: #0b1f4f !important;
  box-shadow: 0 10px 24px rgba(212, 166, 42, 0.28);
}

[data-theme="dark"] .navbar .theme-toggle {
  color: #16326b;
  border-color: rgba(11, 31, 79, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

[data-theme="dark"] .navbar .theme-toggle:hover {
  background: #ffffff;
  color: #0b1f4f;
}

[data-theme="dark"] .navbar .hamburger {
  border-color: rgba(11, 31, 79, 0.16);
}

[data-theme="dark"] .navbar .hamburger span {
  background: #0b1f4f;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

[data-theme="dark"] .logo {
  background: transparent;
  box-shadow: none;
}

.logo span {
  color: var(--highlight)
}

.nav-logo {
  height: min(85px, calc(var(--navbar-h) - 16px));
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.08));
  transition: opacity 0.3s ease;
}

.footer-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.08));
  margin-bottom: 0.25rem;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative
}

.nav-links a:hover {
  color: var(--text);
  background: var(--accent-light)
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 500 !important
}

.nav-cta:hover {
  background: var(--highlight) !important;
  color: #0b1f4f !important;
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(212, 166, 42, 0.28)
}

.nav-book {
  background: var(--accent);
  color: var(--bg);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-book:hover {
  background: var(--highlight);
  color: #0b1f4f;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(212, 166, 42, 0.28);
}

.nav-book-mobile {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid var(--border)
}

.theme-toggle:hover {
  background: var(--bg-alt);
  color: var(--text);
  transform: scale(1.1)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  z-index: 10000;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: var(--shadow-md)
}

.btn-primary:hover {
  background: var(--highlight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: #0b1f4f
}

[data-theme="dark"] .btn-primary {
  color: var(--bg-card)
}

[data-theme="dark"] .btn-primary:hover {
  color: #0b1f4f
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border)
}

.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--border);
  transform: translateY(-2px)
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border)
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-2px)
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(212, 166, 42, 0.4);
}

.btn-secondary:hover {
  background: rgba(212, 166, 42, 0.12);
  border-color: rgba(212, 166, 42, 0.65);
  color: var(--text);
}

.btn-full {
  width: 100%;
  justify-content: center
}

/* ===== SECTION HELPERS ===== */
.section {
  padding: 8rem 0
}

.bg-alt {
  background: var(--bg-alt)
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card)
}

.gradient-text {
  color: var(--highlight)
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ===== HERO ===== */
.hero {
  min-height: 90svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--navbar-h)
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  animation: float 12s ease-in-out infinite
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--highlight);
  top: -20%;
  right: -10%;
  animation-delay: 0s
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--highlight);
  bottom: -10%;
  left: -10%;
  animation-delay: -4s;
  opacity: 0.15
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: color-mix(in srgb, var(--accent) 78%, white 22%);
  top: 40%;
  left: 30%;
  animation-delay: -8s;
  opacity: 0.15
}

[data-theme="dark"] .shape {
  opacity: 0.07
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-40px) scale(1.05)
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 3rem 0 2.2rem
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.65;
}

.hero-video-bg iframe,
.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(190vh, 130vw);
  height: max(73vw, 115vh);
  min-width: calc(100% + 260px);
  min-height: calc(100% + 220px);
  transform: translate(-50%, -50%) scale(1.08);
  filter: saturate(1.05) contrast(1.02);
}

.hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.56) 8%, rgba(2, 6, 23, 0.24) 52%, rgba(2, 6, 23, 0.46) 100%);
}

.hero-video-bg::before {
  display: none;
}

[data-theme="light"] .hero-video-bg::after {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.6) 8%, rgba(2, 6, 23, 0.26) 52%, rgba(2, 6, 23, 0.5) 100%);
}

[data-theme="light"] .hero-video-bg {
  opacity: 0.92;
}

[data-theme="light"] .hero-video-bg iframe,
[data-theme="light"] .hero-video-bg video {
  filter: saturate(1.18) contrast(1.12) brightness(0.82);
}

[data-theme="light"] .hero-content h1 {
  color: #f8fafc;
  text-shadow: 0 8px 28px rgba(2, 6, 23, 0.35);
}

[data-theme="light"] .hero-sub {
  color: rgba(241, 245, 249, 0.95);
}

[data-theme="light"] .hero-trust {
  color: rgba(241, 245, 249, 0.95);
}

[data-theme="light"] .hero-trust .divider {
  background: rgba(226, 232, 240, 0.55);
}

[data-theme="light"] .badge {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(212, 166, 42, 0.26);
  color: #0b1f4f;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm)
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: #f8fafc
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: rgba(226, 232, 240, 0.92);
  max-width: 650px;
  margin-bottom: 3rem;
  line-height: 1.8
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem
}

.hero .btn-primary {
  background: var(--highlight);
  color: #0b1f4f;
  box-shadow: 0 16px 36px rgba(212, 166, 42, 0.26);
}

.hero .btn-primary:hover {
  background: #f4c34f;
  color: #0b1f4f;
}

.hero .btn-ghost {
  border-color: rgba(244, 195, 79, 0.38);
  color: var(--highlight);
  background: rgba(11, 31, 79, 0.2);
}

.hero .btn-ghost:hover {
  background: rgba(244, 195, 79, 0.18);
  border-color: rgba(244, 195, 79, 0.6);
  color: #fff7df;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.92);
  font-weight: 500
}

.hero-trust .divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border)
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem
}

.stat-value {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.2rem;
  min-height: 3.6rem;
}

.stat-item .stat-num {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
  line-height: 1
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 0.34rem;
}

.stat-plus-placeholder {
  visibility: hidden;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em
}

/* ===== CARDS OVERHAUL (WHO, SERVICES, ETC) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border)
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 1.5rem;
  transition: var(--transition)
}

.card:hover .card-icon {
  background: var(--text);
  color: var(--bg-card);
  transform: scale(1.05)
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: var(--transition)
}

.card-link:hover {
  gap: 0.75rem;
  border-color: var(--text)
}

/* ===== WHO WE HELP FLIP CARDS ===== */
#who .cards-grid {
  align-items: stretch;
}

#who .flip-card {
  perspective: 1200px;
  min-height: 470px;
}

#who .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 470px;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

#who .flip-card:hover .flip-card-inner,
#who .flip-card:focus-within .flip-card-inner,
#who .flip-card:active .flip-card-inner {
  transform: rotateY(180deg);
}

#who .flip-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#who .flip-card-front {
  background: var(--accent);
}

#who .flip-card-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08) 22%, rgba(2, 6, 23, 0.88) 100%);
}

#who .flip-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#who .flip-card-front h3,
#who .flip-card-front .flip-actions {
  position: relative;
  z-index: 1;
}

#who .flip-card-front h3 {
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 1.4rem 1rem;
}

#who .flip-card-back {
  background: var(--bg-card);
  transform: rotateY(180deg);
  padding: 2rem 1.7rem;
  justify-content: space-between;
}

[data-theme="light"] #who .flip-card-back {
  background: #091d49;
  border-color: rgba(169, 193, 235, 0.28);
}

[data-theme="light"] #who .flip-card-back h3 {
  color: #f8fafc;
}

[data-theme="light"] #who .flip-card-back p {
  color: rgba(224, 234, 251, 0.92);
}

#who .flip-card-back h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

#who .flip-card-back p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

#who .flip-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: calc(100% - 2.8rem);
  margin: 0 1.4rem 1.5rem;
}

#who .flip-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  border: 1px solid rgba(37, 211, 102, 0.9);
  transition: var(--transition);
  flex-shrink: 0;
}

#who .flip-action-icon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

#who .flip-action-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-left: auto;
  padding: 0.68rem 1rem;
  border-radius: var(--radius-full);
  background: #f4c34f;
  color: #0b1f4f;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(244, 195, 79, 0.88);
  transition: var(--transition);
  white-space: nowrap;
}

#who .flip-action-book:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

#who .flip-card-back .flip-action-book {
  background: #f4c34f;
  color: #0b1f4f;
  border-color: rgba(244, 195, 79, 0.88);
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--text);
  padding: 4rem 0;
  text-align: center;
  color: var(--bg-card)
}

[data-theme="dark"] .cta-strip {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-strip p {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.02em
}

.cta-strip .btn-primary {
  background: var(--bg-card);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
}

[data-theme="dark"] .cta-strip .btn-primary {
  background: var(--accent);
  color: var(--bg-card);
}

.cta-strip .btn-primary:hover {
  transform: scale(1.02)
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.15
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.05rem
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6
}

.about-list li svg {
  flex-shrink: 0;
  color: var(--text);
  margin-top: 2px;
  width: 24px;
  height: 24px
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1.5rem;
  row-gap: 0.45rem;
  align-items: flex-start;
  transition: var(--transition)
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 166, 42, 0.5)
}

.about-card.accent-card {
  background: var(--text);
  border: none;
  color: var(--bg-card)
}

.about-card.accent-card p {
  color: rgba(255, 255, 255, 0.7)
}

[data-theme="dark"] .about-card.accent-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
}

[data-theme="dark"] .about-card.accent-card p {
  color: var(--text-muted);
}

.about-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-alt);
  color: var(--text)
}

.about-card .about-icon-circle {
  grid-row: 1 / span 2;
}

.accent-card .about-icon-circle {
  background: rgba(255, 255, 255, 0.1);
  color: #fff
}

[data-theme="dark"] .accent-card .about-icon-circle {
  color: var(--text);
}

.about-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
  min-width: 0;
}

.about-card:hover .about-icon-circle {
  background: var(--highlight);
  color: #0b1f4f;
  box-shadow: 0 16px 30px rgba(212, 166, 42, 0.28);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

[data-theme="dark"] .about-card.accent-card {
  background: var(--bg-card);
  border: 1px solid var(--border)
}

.owner-section {
  padding-top: 4.5rem;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.owner-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.owner-copy p {
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  max-width: 68ch;
}

.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.owner-credentials {
  margin-top: 1.5rem;
}

.owner-panel {
  background:
    linear-gradient(160deg, rgba(209, 161, 53, 0.12), transparent 35%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.owner-profile {
  position: relative;
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 28% 18%, rgba(212, 166, 42, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(11, 31, 79, 0.08), rgba(11, 31, 79, 0.02)),
    var(--bg-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.owner-profile img {
  width: min(100%, 420px);
  border-radius: 28px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  object-position: center 18%;
  box-shadow: 0 24px 48px rgba(11, 31, 79, 0.22);
}

.owner-profile figcaption {
  position: static;
  width: 100%;
  margin-top: 0.9rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(7, 22, 58, 0.84);
  color: #f8fafc;
  display: grid;
  gap: 0.3rem;
  backdrop-filter: blur(12px);
}

.owner-profile figcaption strong {
  font-size: 1.25rem;
}

.owner-panel-quals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.owner-panel-quals span {
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 161, 53, 0.42);
  background: rgba(209, 161, 53, 0.1);
  color: #f8fafc;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  transition: var(--transition);
  white-space: nowrap;
}

.owner-panel-quals span:hover {
  background: rgba(209, 161, 53, 0.9);
  color: #0b1f4f;
  transform: translateY(-1px);
}

[data-theme="light"] .owner-profile {
  border-color: rgba(15, 42, 102, 0.2);
  background:
    radial-gradient(circle at 28% 18%, rgba(212, 166, 42, 0.3), transparent 30%),
    linear-gradient(180deg, rgba(15, 42, 102, 0.2), rgba(15, 42, 102, 0.08)),
    #f3f7ff;
}

[data-theme="light"] .owner-profile figcaption {
  background: rgba(7, 22, 58, 0.92);
  border: 1px solid rgba(169, 193, 235, 0.3);
}

[data-theme="light"] .owner-badge {
  background: linear-gradient(90deg, rgba(209, 161, 53, 0.34), rgba(209, 161, 53, 0.18));
  color: #f4c34f;
}

[data-theme="light"] .owner-panel-quals span {
  border-color: rgba(209, 161, 53, 0.5);
  background: rgba(209, 161, 53, 0.14);
}

.owner-header {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.owner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(209, 161, 53, 0.14);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.owner-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.owner-header p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.owner-facts {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.owner-fact {
  display: grid;
  gap: 0.35rem;
}

.owner-fact-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.owner-fact strong {
  font-size: 1rem;
  line-height: 1.5;
}

.owner-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.owner-credentials span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 161, 53, 0.35);
  background: rgba(209, 161, 53, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 166, 42, 0.42)
}

.svc-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 1.5rem;
  transition: var(--transition)
}

.service-card:hover .svc-icon {
  background: var(--highlight);
  color: #0b1f4f;
  border-radius: 50%
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6
}

.services-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem
}

.services-footer a {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px
}

.services-footer a:hover {
  opacity: 0.7
}

/* ===== PACKAGES ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl)
}

.package-card.featured {
  background: var(--text);
  color: var(--bg-card);
  border-color: var(--text)
}

.package-card.featured h3,
.package-card.featured p {
  color: rgba(255, 255, 255, 0.9)
}

[data-theme="dark"] .package-card.featured {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--highlight);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
}

[data-theme="dark"] .package-card.featured h3 {
  color: var(--text);
}

[data-theme="dark"] .package-card.featured p {
  color: var(--text-muted);
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--text)
}

[data-theme="dark"] .pkg-badge {
  border-color: rgba(255, 255, 255, 0.2)
}

[data-theme="dark"] .package-card.featured .pkg-badge {
  background: var(--highlight);
  color: #fff;
  border-color: var(--highlight);
}

.pkg-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.55rem;
  color: var(--text)
}

.package-card.featured .pkg-header {
  color: #fff
}

[data-theme="dark"] .package-card.featured .pkg-header {
  color: var(--text);
}

.pkg-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em
}

.package-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.package-subtitle {
  margin-bottom: 0 !important;
  font-weight: 600;
  color: var(--text) !important;
  line-height: 1.5;
}

.package-services {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.package-services h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.package-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.package-service-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text);
  line-height: 1.45;
  font-size: 0.94rem;
}

.package-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--highlight);
}

.package-service-list-muted li {
  color: var(--text-muted);
}

.package-card.featured .package-subtitle,
.package-card.featured .package-services h4,
.package-card.featured .package-service-list li,
.package-card.featured .package-service-list-muted li {
  color: rgba(255, 255, 255, 0.92) !important;
}

[data-theme="dark"] .package-card.featured .package-subtitle,
[data-theme="dark"] .package-card.featured .package-services h4,
[data-theme="dark"] .package-card.featured .package-service-list li,
[data-theme="dark"] .package-card.featured .package-service-list-muted li {
  color: var(--text) !important;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 4rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
  z-index: 0;
  border-top: 1px dashed var(--text-light)
}

.step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  transition: var(--transition)
}

.step-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm)
}

.step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  background: var(--highlight);
  color: #0b1f4f;
  border-color: rgba(212, 166, 42, 0.5);
}

.step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition)
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border)
}

.why-num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--border-light);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.5
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-alt);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  border: 1px solid var(--border)
}

.why-card:hover .why-icon {
  background: var(--highlight);
  color: #0b1f4f
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7
}

/* ===== ABOUT PAGE PANEL IMAGES ===== */
.about-panels .card,
.about-panels .why-card {
  overflow: hidden;
}

.about-panel-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid var(--highlight);
  margin-bottom: 1.25rem;
}

.portrait-panel-img {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 24%, rgba(212, 166, 42, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(11, 31, 79, 0.1), rgba(11, 31, 79, 0.02));
  padding: 1rem;
}

[data-theme="dark"] .portrait-panel-img {
  background:
    radial-gradient(circle at 50% 22%, rgba(244, 195, 79, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.06), rgba(16, 41, 87, 0.02));
}

.about-panels .card-icon,
.about-panels .why-icon {
  margin-bottom: 1.1rem;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition)
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl)
}

/* ===== COMPANIES THAT TRUST US — MARQUEE ===== */
.trusted-by {
  padding-bottom: 6rem
}

.trusted-by .section-header {
  margin-bottom: 3.5rem
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%)
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 26s linear infinite
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused
}

.marquee-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm)
}

.marquee-logo:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light)
}

.marquee-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  opacity: 0.88;
  transition: all 0.35s ease
}

.marquee-logo:hover img {
  filter: grayscale(0%);
  opacity: 1
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition)
}

.team-avatar span {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: 0.03em
}

.team-card:hover .team-avatar {
  background: var(--text);
  color: var(--bg-card)
}

.team-card:hover .team-avatar span {
  color: var(--bg-card)
}

.team-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem
}

.team-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem
}

.team-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition)
}

.team-socials a:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg-card);
  transform: translateY(-2px)
}

/* ===== TESTIMONIALS ===== */
.testimonials-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.testimonial-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-slide-card {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  min-width: 33.3333%;
  padding: 0.75rem;
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
}

.testimonial-slide-card {
  position: relative;
}

.testimonial-slide-card::after {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  z-index: 0;
}

.testimonial-slide-card .testimonial-author,
.testimonial-slide-card .review-rating,
.testimonial-slide-card .review-body {
  position: relative;
  z-index: 1;
  padding-left: 1.55rem;
  padding-right: 1.55rem;
}

.testimonial-slide-card .testimonial-author {
  padding-top: 1.55rem;
}

.testimonial-slide-card .review-body {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.72;
  margin-top: 0.2rem;
  padding-bottom: 1.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-arrow:hover {
  background: var(--highlight);
  color: #0b1f4f;
  border-color: rgba(212, 166, 42, 0.55);
}

.initials-avatar {
  background: linear-gradient(135deg, #446b91, #0b1f4f);
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
}

.alt-avatar {
  background: linear-gradient(135deg, #d4a62a, #7a5710);
}

.review-rating .stars {
  color: var(--highlight);
  letter-spacing: 0.08em;
}

.carousel-dots {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(127, 147, 183, 0.45);
  border: none;
}

.carousel-dots .dot.active {
  background: var(--highlight);
}

.placeholder-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 300px;
}

.placeholder-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.placeholder-panel p {
  color: var(--text-muted);
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1)
}

.testimonial-slide {
  min-width: 33.3333%;
  padding: 1rem;
}

.review-photo-frame {
  aspect-ratio: 1 / 1;
  width: min(100%, 360px);
  margin: 0 auto;
  border: 14px solid #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.2);
  border-radius: 6px;
  overflow: hidden;
  background: #f8fafc;
}

.review-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-content-card {
  margin: -18px auto 0;
  width: min(100%, 360px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.05rem;
  box-shadow: var(--shadow-sm);
}

.stars {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #fbbf24;
  margin-bottom: 0
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.55rem 0 1.1rem;
}

.review-rating span:last-child {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.review-body {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.58;
  margin-bottom: 0;
}

.profile-photo {
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-mustafa {
  border: 2px solid #ef4444;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.2)
}

.avatar-pearl {
  background: #64748b;
}

.avatar-vaibhav {
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}

.avatar-max {
  background: #059669;
}

.avatar-rao {
  background: #ea580c;
}

.testimonial-author div {
  display: flex;
  flex-direction: column
}

.testimonial-author strong {
  font-weight: 700;
  font-size: 1rem
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-muted)
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition)
}

.dot.active {
  background: var(--text);
  transform: scale(1.2)
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.form-group {
  margin-bottom: 1.5rem
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: var(--transition);
  outline: none
}

.career-subject-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 54px;
  padding-right: 2.75rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23dbe6ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 14px 14px;
}

.career-subject-select option {
  color: #0b1f4f;
  background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 4px var(--border-light);
  background: var(--bg-card)
}

.form-group textarea {
  resize: vertical;
  min-height: 140px
}

.service-multiselect {
  position: relative;
}

.service-select-trigger {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-alt);
  color: var(--text);
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.service-select-trigger:hover,
.service-multiselect.open .service-select-trigger {
  border-color: var(--text);
  box-shadow: 0 0 0 4px var(--border-light);
  background: var(--bg-card);
}

.service-select-trigger svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.service-multiselect.open .service-select-trigger svg {
  transform: rotate(180deg);
}

.service-select-text {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-muted);
  text-align: left;
}

.service-multiselect.has-value .service-select-text {
  color: var(--text);
}

.services-checkboxes {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 20;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.7rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.service-multiselect.open .services-checkboxes {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.35rem 0.4rem;
  border-radius: 8px;
  cursor: pointer;
}

.service-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--highlight);
  cursor: pointer;
}

.service-option:hover {
  background: var(--bg-card);
}

.field-hint {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.field-error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #ef4444;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm)
}

.info-card-content {
  min-width: 0;
}

.info-card-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-card-address .map-link+.address-subtitle {
  margin-top: 1rem;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
  border: 1px solid var(--border)
}

.info-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem
}

.info-card a,
.info-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text)
}

.address-subtitle {
  display: block;
  font-weight: 700 !important;
}

.branch-address {
  display: block;
  margin-top: 0.35rem;
}

.info-card a:hover {
  color: var(--highlight)
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--highlight) !important;
  background: var(--accent-light);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--accent-light);
  transition: all 0.2s ease;
  text-decoration: none
}

.map-link:hover {
  background: var(--highlight);
  color: #fff !important;
  border-color: var(--highlight)
}

.guarantee-badge {
  background: var(--text);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--bg-card);
  margin-top: 0.5rem;
  box-shadow: var(--shadow-lg)
}

.guarantee-badge svg {
  flex-shrink: 0
}

.guarantee-badge strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem
}

.guarantee-badge span {
  font-size: 0.9rem;
  opacity: 0.8
}

[data-theme="dark"] .guarantee-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text)
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem
}

[data-theme="dark"] .footer {
  background: rgba(243, 247, 255, 0.95);
  border-top: 1px solid rgba(11, 31, 79, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
  display: inline-block
}

.footer-brand p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem
}

.footer-socials {
  display: flex;
  gap: 0.75rem
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition)
}

.footer-socials a:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg-card);
  transform: translateY(-2px)
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1.5rem
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem
}

.footer-col ul li a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
  font-weight: 500
}

.footer-col ul li a:hover {
  color: var(--text);
  padding-left: 4px
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.75rem
}

.contact-list li svg {
  color: var(--text);
  flex-shrink: 0
}

.contact-list li a:hover {
  color: var(--text)
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem
}

.footer-bottom-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500
}

.footer-bottom-links a:hover {
  color: var(--text)
}

[data-theme="dark"] .footer .footer-brand p,
[data-theme="dark"] .footer .footer-col ul li a,
[data-theme="dark"] .footer .contact-list li,
[data-theme="dark"] .footer .footer-bottom p,
[data-theme="dark"] .footer .footer-bottom-links a {
  color: #2a4476;
}

[data-theme="dark"] .footer .footer-col h5 {
  color: #0b1f4f;
}

[data-theme="dark"] .footer .contact-list li svg {
  color: #0b1f4f;
}

[data-theme="dark"] .footer .footer-bottom {
  border-top: 1px solid rgba(11, 31, 79, 0.2);
}

[data-theme="dark"] .footer .footer-col ul li a:hover,
[data-theme="dark"] .footer .contact-list li a:hover,
[data-theme="dark"] .footer .footer-bottom-links a:hover {
  color: #0b1f4f;
}

/* ===== PAGE HERO VIDEO LAYER ===== */
.page-hero-with-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero-with-video>.container {
  position: relative;
  z-index: 2;
}

.page-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.9;
}

.page-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.08) brightness(0.62);
}

.page-hero-with-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(125deg, rgba(234, 240, 249, 0.62) 10%, rgba(231, 237, 246, 0.56) 45%, rgba(237, 242, 250, 0.66) 100%);
}

[data-theme="dark"] .page-hero-video {
  opacity: 0.62;
}

[data-theme="dark"] .page-hero-video video {
  filter: saturate(1.08) contrast(1.08) brightness(0.56);
}

[data-theme="dark"] .page-hero-with-video::before {
  background:
    linear-gradient(125deg, rgba(5, 17, 46, 0.72) 10%, rgba(5, 17, 46, 0.58) 45%, rgba(5, 17, 46, 0.76) 100%);
}

/* ===== BLOG SECTION ===== */
.blog-header {
  padding: 10rem 0 6rem;
  background: var(--bg-alt);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.blog-header.page-hero-with-video {
  background: var(--bg-alt);
}

.blog-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.blog-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.blog-search {
  max-width: 650px;
  margin: 0 auto 3rem;
  display: flex;
  gap: 1rem;
}

.blog-search input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-card);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.blog-search input:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 4px var(--border-light);
}

.blog-categories {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.category-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.category-btn.active,
.category-btn:hover {
  background: var(--highlight);
  color: var(--accent-dark);
  border-color: var(--highlight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.featured-cta {
  align-self: flex-start;
  margin-top: 1rem;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
}

.post-tag.compact {
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
}

.post-meta.compact {
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.blog-read-more {
  color: var(--highlight);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
}

.featured-post {
  padding: 6rem 0;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  background: transparent;
  align-items: center;
}

.featured-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  min-height: 400px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.featured-card:hover .featured-img {
  transform: scale(1.02);
}

.featured-content {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-tag {
  background: var(--bg-alt);
  color: var(--text);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.featured-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.featured-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.blog-grid {
  padding: 4rem 0 8rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 3rem;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border);
}

.blog-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: var(--bg-card);
}

.blog-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* POST SPECIFIC */
.article-header {
  padding: 10rem 0 4rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.article-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--text);
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.article-hero {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 5rem;
  box-shadow: var(--shadow-lg);
}

.article-body {
  max-width: 800px;
  margin: 0 auto 5rem;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text);
}

.article-body h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 4rem 0 1.5rem;
}

.article-body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 3rem 0 1rem;
}

.article-body p {
  margin-bottom: 1.8rem;
  color: var(--text-muted);
}

.article-body ul,
.article-body ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-footer {
  max-width: 800px;
  margin: 0 auto 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.share-btns {
  display: flex;
  gap: 0.75rem;
}

.share-btns button {
  font-weight: 600;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.share-btns button:hover {
  background: var(--text);
  color: var(--bg-card);
  border-color: var(--text);
  transform: translateY(-2px);
}

.cta-box {
  background: var(--text);
  color: var(--bg-card);
  padding: 5rem 3rem;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 0 auto 8rem;
  max-width: 1000px;
  box-shadow: var(--shadow-xl);
}

.cta-box h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--bg-card);
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-box .btn {
  background: var(--bg-card);
  color: var(--text);
  border: none;
}

.cta-box .btn:hover {
  transform: scale(1.05);
}

/* ADMIN OVERHAUL */
.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(209, 161, 53, 0.12), transparent 26%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-color) 100%);
}

.admin-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(209, 161, 53, 0.12), transparent 26%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-color) 100%);
}

.admin-back-link {
  white-space: nowrap;
}

.admin-login {
  min-height: calc(100vh - var(--navbar-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.5rem 4rem;
}

.login-card {
  background: var(--bg-card);
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 440px;
  width: 100%;
  border: 1px solid var(--border);
}

.admin-auth-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.login-card h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.admin-error {
  color: #dc2626;
  display: none;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.admin-main {
  padding: calc(var(--navbar-h) + 2rem) 0 6rem;
  background:
    radial-gradient(circle at top left, rgba(209, 161, 53, 0.12), transparent 26%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-color) 100%);
}

.admin-dashboard-shell {
  display: none;
  max-width: 1120px;
  margin: 3rem auto 0;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.admin-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-tab {
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.admin-tab:hover,
.admin-tab.active {
  background: var(--text);
  color: var(--bg-card);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.admin-create-btn {
  white-space: nowrap;
}

.admin-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.admin-panel-header {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.admin-panel-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.admin-panel-header p {
  color: var(--text-muted);
  max-width: 60ch;
}

.post-list {
  display: grid;
  gap: 1.5rem;
}

.post-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.post-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(209, 161, 53, 0.4);
}

.post-item-info {
  min-width: 0;
}

.post-item-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.post-item-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.post-item-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.admin-item-type,
.admin-featured-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-item-type {
  background: rgba(209, 161, 53, 0.12);
  color: var(--accent);
}

.admin-featured-badge {
  background: rgba(19, 62, 135, 0.12);
  color: var(--text);
}

.post-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.post-actions .btn {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-danger {
  color: #dc2626;
  border-color: #dc2626;
}

.btn-danger:hover {
  background: #dc2626;
  color: #fff;
}

.admin-empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}

.admin-empty-state h3 {
  color: var(--text);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.admin-modal-content {
  max-width: 860px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.admin-form {
  display: none;
}

.admin-form.active {
  display: block;
}

.admin-check-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

.admin-check-row input {
  width: auto;
  margin: 0;
}

.close-modal {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-modal:hover {
  background: var(--text);
  color: var(--bg-card);
  transform: rotate(90deg);
}

/* ===== MOBILE NAV ===== */
@media(max-width:900px) {
  .hamburger {
    display: flex
  }

  body.menu-open .navbar,
  body.menu-open .navbar.scrolled {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--border);
  }

  [data-theme="dark"] body.menu-open .navbar,
  [data-theme="dark"] body.menu-open .navbar.scrolled {
    background: rgba(243, 247, 255, 0.95);
    border-bottom: 1px solid rgba(11, 31, 79, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  body::after {
    content: '';
    position: fixed;
    top: var(--navbar-h);
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1090;
  }

  body.menu-open::after {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links {
    position: fixed;
    top: var(--navbar-h);
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    width: min(82vw, 340px);
    height: calc(100dvh - var(--navbar-h));
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 2rem 1.5rem;
    gap: 0.25rem;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.14);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1200;
  }

  [data-theme="dark"] .nav-links {
    background: #ffffff;
    box-shadow: -16px 0 40px rgba(11, 31, 79, 0.2);
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    font-size: 1.1rem;
    padding: 0.85rem 0;
    font-weight: 600;
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav-cta {
    margin-top: 1rem;
    font-size: 1rem !important;
    padding: 0.8rem 1.25rem !important;
    text-align: center;
    width: 100%;
    border-bottom: 0 !important;
  }

  .nav-book {
    display: none;
  }

  .nav-book-mobile {
    display: block;
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {

  .testimonial-slide-card,
  .testimonial-slide-card {
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    flex-basis: 50%;
  }

  #who .flip-card,
  #who .flip-card-inner {
    min-height: 430px;
  }

  .hero-video-bg {
    opacity: 0.6;
  }

  .hero-video-bg::before {
    width: 132px;
    height: 52px;
  }

  .section {
    padding: 5rem 0
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .owner-grid {
    grid-template-columns: 1fr;
  }

  .post-item,
  .admin-toolbar {
    align-items: stretch;
  }

  .admin-create-btn {
    width: 100%;
    justify-content: center;
  }

  .admin-panel {
    padding: 1.5rem;
  }

  .admin-panel-header h2 {
    font-size: 2rem;
  }

  .post-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
  }

  .post-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .post-actions .btn {
    flex: 1 1 120px;
    text-align: center;
    justify-content: center;
  }

  .modal {
    padding: 1rem;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .cards-grid {
    grid-template-columns: 1fr
  }

  .services-grid {
    grid-template-columns: 1fr 1fr
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps-grid::before {
    display: none
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .packages-grid {
    grid-template-columns: 1fr 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem
  }

  .testimonial-slide {
    min-width: 50%;
  }

  .featured-card {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .featured-img {
    min-height: 300px
  }
}

@media(max-width:640px) {
  :root {
    --navbar-h: 82px
  }

  .container {
    padding: 0 1rem;
  }

  .logo {
    padding: 0.15rem 0.25rem;
  }

  .nav-logo {
    height: min(58px, calc(var(--navbar-h) - 14px));
  }

  .section {
    padding: 4rem 0
  }

  .hero-content h1 {
    font-size: 2.5rem
  }

  .hero-sub {
    font-size: 0.94rem;
    line-height: 1.65;
    max-width: 28ch;
    margin-bottom: 1.5rem;
  }

  #who .flip-card,
  #who .flip-card-inner {
    min-height: 390px;
  }

  #who .flip-card-front h3 {
    font-size: 1.55rem;
    margin: 0 1rem 0.75rem;
  }

  #who .flip-actions {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
  }

  #who .flip-action-book {
    padding: 0.62rem 0.9rem;
    font-size: 0.82rem;
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .steps-grid {
    grid-template-columns: 1fr
  }

  .team-grid {
    grid-template-columns: 1fr
  }

  .packages-grid {
    grid-template-columns: 1fr
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .owner-profile {
    padding: 1rem;
    min-height: auto;
    align-items: center;
    flex-direction: column;
  }

  .owner-profile img {
    width: min(100%, 340px);
    max-height: none;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    border-radius: 22px;
    object-position: center 16%;
  }

  .owner-profile figcaption {
    position: static;
    width: 100%;
    margin-top: 0.8rem;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .owner-panel-quals span {
    font-size: 0.68rem;
    padding: 0.34rem 0.56rem;
  }

  .services-checkboxes {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    width: 100%
  }

  .hero-btns .btn {
    width: auto;
    min-width: 0;
    padding: 0.75rem 1.35rem;
    font-size: 0.92rem;
    text-align: center;
  }

  .testimonial-slide-card,
  .testimonial-slide-card {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    flex-basis: 100%;
  }

  .review-photo-frame,
  .review-content-card {
    width: 100%;
  }

  .review-photo-frame {
    border-width: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .article-title {
    font-size: 2.2rem
  }

  .about-card {
    padding: 1.5rem;
    column-gap: 1rem;
    row-gap: 0.7rem;
  }

  .testimonial-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }

  .about-icon-circle {
    width: 56px;
    height: 56px;
  }
}

@media(max-width:400px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* ══════════════════════════════
   Application Form Section
══════════════════════════════ */
.apply-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.apply-form-left {
  min-width: 0;
}

.apply-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.apply-form .form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.apply-form .form-input {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.apply-form .form-input:focus {
  outline: none;
  border-color: var(--highlight);
  box-shadow: 0 0 0 3px rgba(212, 166, 42, 0.22);
}

.apply-form .form-textarea {
  resize: vertical;
  min-height: 120px;
}

.apply-form .form-file {
  cursor: pointer;
}

.apply-image-panel {
  background: linear-gradient(135deg, #0b1f4f 0%, #1f4ea1 70%, var(--highlight) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.apply-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.apply-image-panel svg {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.apply-image-panel blockquote {
  position: relative;
  z-index: 1;
}

.apply-image-panel blockquote p {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.apply-image-panel blockquote cite {
  font-size: 0.85rem;
  opacity: 0.75;
  font-style: normal;
}

.apply-stats {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.apply-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.apply-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
}

.apply-stat span {
  font-size: 0.78rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════
   FAQ Section
══════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.faq-image-panel {
  background: linear-gradient(160deg, #071637 0%, #0d2a5d 52%, #1d4fa1 100%);
  border-radius: var(--radius-lg);
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.faq-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E") repeat;
}

.faq-about-img {
  background: linear-gradient(160deg, #0a1f49 0%, #153875 50%, #2a63ba 100%);
}

.faq-content {
  min-width: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-of-type {
  border-bottom: none;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--highlight);
  gap: 1rem;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--text);
}

.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-a.open {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-a p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.975rem;
}

.faq-a a {
  color: var(--highlight);
}

.faq-a a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════
   Responsive additions
══════════════════════════════ */
@media(max-width:900px) {
  .apply-form-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .apply-form-right {
    display: none;
  }
}

@media(max-width:640px) {
  .apply-stats {
    gap: 1.25rem;
  }
}
