/* ============================================================
   ZClean — Components Stylesheet
   File: assets/css/components.css
   ============================================================ */

/* ── NAVBAR ──────────────────────────────────────────────────*/
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-200), var(--shadow-sm);
}
.navbar.top { background: transparent; }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
  gap: var(--sp-6);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.navbar__logo img {
  height: 66px;
  width: auto;
  transition: filter var(--dur) var(--ease);
  transform: translateX(-22px);
}
.navbar.scrolled .navbar__logo img {
  /* Chuyển logo sáng sang tông blue-600 khi navbar đổi nền */
  filter: brightness(0) saturate(100%) invert(26%) sepia(74%) saturate(1990%) hue-rotate(216deg) brightness(86%) contrast(92%);
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex: 1;
  justify-content: center;
}
.navbar__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}
.navbar__links a:hover, .navbar__links a.active { color: var(--blue-600); }
.navbar__links a:hover::after, .navbar__links a.active::after { transform: scaleX(1); }

/* Navbar top state (white links on dark hero) */
.navbar.top .navbar__links a { color: rgba(255,255,255,.85); }
.navbar.top .navbar__links a:hover { color: var(--white); }
.navbar.top .navbar__links a::after { background: var(--white); }

/* Navbar right actions */
.navbar__actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--r-full);
  border: 1px solid var(--gray-200);
  background: rgba(255,255,255,.92);
}
.lang-switch__btn {
  min-width: 36px;
  height: 28px;
  border-radius: var(--r-full);
  border: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--gray-600);
  background: transparent;
  transition: all var(--dur) var(--ease);
}
.lang-switch__btn:hover { color: var(--blue-600); }
.lang-switch__btn.active {
  background: var(--blue-600);
  color: var(--white);
}
.navbar.top .lang-switch {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.26);
}
.navbar.top .lang-switch__btn { color: rgba(255,255,255,.82); }
.navbar.top .lang-switch__btn.active {
  color: var(--blue-700);
  background: var(--white);
}
.navbar__app-hint {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  padding: 8px 14px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--blue-100);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--dur) var(--ease);
}
.navbar__app-hint:hover { background: var(--blue-600); color: white; border-color: var(--blue-600); }
.navbar.top .navbar__app-hint { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: white; }
.navbar.top .navbar__app-hint:hover { background: rgba(255,255,255,.2); }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  background: none;
  border: none;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.navbar.top .navbar__hamburger span { background: white; }
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--white);
  z-index: 399;
  padding: var(--sp-6) var(--px);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--sp-4);
  border-top: 1px solid var(--gray-200);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__mobile a:hover { color: var(--blue-600); }
.navbar__mobile .btn { width: 100%; justify-content: center; margin-top: var(--sp-4); }
.navbar__mobile-channels {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.navbar__mobile-channels a {
  flex: 1;
  text-align: center;
  padding: var(--sp-3);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 700;
  border-bottom: none !important;
}
.lang-switch--mobile {
  margin-top: 8px;
  width: fit-content;
}

/* ── HERO ────────────────────────────────────────────────────*/
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 100px 80px;
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 50%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--1 { width: 500px; height: 500px; background: rgba(59,130,246,.2); top: -100px; right: -100px; }
.hero__glow--2 { width: 400px; height: 400px; background: rgba(30,77,183,.25); bottom: -80px; left: 10%; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--blue-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}
.hero__eyebrow::before { content: '✦'; }

.hero__title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: var(--sp-5);
}
.hero__title .accent { color: var(--blue-400); }

.hero__desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  max-width: 460px;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.hero__stats {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat-num {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; }

/* Hero side cards */
.hero__cards { display: flex; flex-direction: column; gap: var(--sp-4); }
.hero__card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  color: var(--white);
  transition: background var(--dur) var(--ease);
}
.hero__card:hover { background: rgba(255,255,255,.14); }
.hero__card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--blue-600);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.hero__card-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--white); stroke-width: 2; }
.hero__card-title { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.hero__card-desc { font-size: 12px; color: rgba(255,255,255,.65); }
.hero__card-tag {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--blue-500);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--r-full);
  letter-spacing: .3px;
}

/* App download teaser in hero */
.hero__app-teaser {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-4);
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.hero__app-teaser:hover { background: rgba(255,255,255,.18); }
.hero__app-teaser svg { width: 28px; height: 28px; fill: none; stroke: var(--white); stroke-width: 1.8; }
.hero__app-teaser-text { font-size: 11px; color: rgba(255,255,255,.6); }
.hero__app-teaser-label { font-size: 14px; font-weight: 700; color: var(--white); }

/* ── BOOKING STRIP ───────────────────────────────────────────*/
.booking-strip {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: clamp(20px, 3vw, 40px);
  margin-top: -44px;
  position: relative;
  z-index: 10;
}
.booking-strip__inner {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-end;
  flex-wrap: wrap;
}
.booking-field {
  flex: 1;
  min-width: 140px;
}
.booking-field label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.booking-field select,
.booking-field input[type="date"],
.booking-field input[type="tel"] {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.booking-field select:focus,
.booking-field input:focus {
  border-color: var(--blue-500);
  background: var(--white);
  outline: none;
}
.booking-field .booking-submit {
  width: 100%;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.booking-field .booking-submit:hover { background: var(--blue-700); transform: translateY(-1px); }

/* ── SERVICE CARDS ───────────────────────────────────────────*/
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .icon-box { background: var(--blue-600); }
.service-card:hover .icon-box svg { stroke: var(--white); }
.service-card__title { font-size: 19px; font-weight: 800; color: var(--blue-900); margin: var(--sp-5) 0 var(--sp-3); }
.service-card__desc { font-size: 14px; color: var(--gray-500); line-height: 1.75; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-5);
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-600);
  transition: gap var(--dur) var(--ease);
}
.service-card:hover .service-card__link { gap: 10px; }

/* ── PACKAGE CARDS ───────────────────────────────────────────*/
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 960px;
  margin-inline: auto;
}
.pkg-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  position: relative;
  background: var(--white);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pkg-card--featured { background: var(--blue-900); border-color: var(--blue-500); }
.pkg-card__badge { position: absolute; top: 20px; right: 20px; }
.pkg-card__name { font-size: 24px; font-weight: 800; color: var(--blue-900); margin-bottom: 6px; }
.pkg-card--featured .pkg-card__name { color: var(--white); }
.pkg-card__sub { font-size: 13px; color: var(--gray-400); margin-bottom: var(--sp-6); }
.pkg-card--featured .pkg-card__sub { color: rgba(255,255,255,.55); }
.pkg-card__features { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-8); }
.pkg-card__features li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: 14px; color: var(--gray-600); line-height: 1.5;
}
.pkg-card--featured .pkg-card__features li { color: rgba(255,255,255,.8); }
.pkg-card__features li::before {
  content: '';
  display: block;
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: var(--blue-500);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── WHY SECTION ─────────────────────────────────────────────*/
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.why-items { display: flex; flex-direction: column; gap: var(--sp-6); }
.why-item { display: flex; gap: var(--sp-5); align-items: flex-start; }
.why-item__num {
  font-size: 12px; font-weight: 800; color: var(--blue-600);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  width: 40px; height: 40px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font);
}
.why-item__title { font-size: 16px; font-weight: 700; color: var(--blue-900); margin-bottom: 5px; }
.why-item__desc { font-size: 14px; color: var(--gray-500); line-height: 1.75; }

.why-panel {
  background: var(--blue-900);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
}
.why-panel__title { font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; line-height: 1.25; margin-bottom: var(--sp-5); }
.why-panel__intro { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: var(--sp-6); }
.why-metric {
  display: flex; align-items: center; gap: var(--sp-4);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-3);
}
.why-metric:last-child { margin-bottom: 0; }
.why-metric__num { font-size: clamp(28px, 3vw, 38px); font-weight: 900; color: var(--blue-400); line-height: 1; flex-shrink: 0; }
.why-metric__label { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ── PROCESS ─────────────────────────────────────────────────*/
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  position: relative;
  margin-top: var(--sp-12);
}
.process-connector {
  position: absolute;
  top: 36px; left: calc(12.5% + 8px); right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(to right, var(--blue-700), var(--blue-500), var(--blue-700));
  pointer-events: none;
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 var(--sp-3); }
.process-step__circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--blue-800);
  border: 2px solid var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  position: relative; z-index: 1;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.process-step:hover .process-step__circle { background: var(--blue-600); }
.process-step__circle svg { width: 28px; height: 28px; fill: none; stroke: var(--blue-300); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-step__num {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-500); color: var(--white);
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.process-step__title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: var(--sp-2); }
.process-step__desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── REVIEWS ─────────────────────────────────────────────────*/
.review-card { cursor: default; }
.reviews-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-4);
  align-items: center;
}
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - (2 * var(--sp-6))) / 3));
  gap: var(--sp-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card--slide { scroll-snap-align: start; }
.reviews-track .review-card:hover {
  transform: translateY(0);
  box-shadow: var(--shadow-lg);
}
.reviews-nav {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--blue-700);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.reviews-nav:hover {
  transform: translateY(-2px);
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}
.reviews-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
}
.review-card__stars { color: var(--amber-400); font-size: 16px; letter-spacing: 2px; margin-bottom: var(--sp-4); }
.review-card__text { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: var(--sp-5); font-style: italic; }
.reviewer { display: flex; align-items: center; gap: var(--sp-3); }
.reviewer__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.reviewer__name { font-size: 15px; font-weight: 700; color: var(--blue-900); }
.reviewer__area { font-size: 12px; color: var(--gray-400); }

/* ── ABOUT ───────────────────────────────────────────────────*/
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.about-values { display: flex; flex-direction: column; gap: var(--sp-4); margin-top: var(--sp-8); }
.about-value {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  background: var(--gray-50);
  border-radius: var(--r-md);
  border-left: 3px solid var(--blue-500);
}
.about-value__title { font-size: 15px; font-weight: 700; color: var(--blue-900); margin-bottom: 3px; }
.about-value__desc { font-size: 13px; color: var(--gray-500); line-height: 1.65; }
.about-image-box {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
  display: flex; flex-direction: column; gap: var(--sp-6);
}
.about-image-box__mission {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.4;
}
.about-image-box__vision {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
}
.about-image-box__slogan {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-300);
  letter-spacing: -.5px;
}

/* ── TEAM ────────────────────────────────────────────────────*/
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.team-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ┌─────────────────────────────────────────────────────────────┐
   │  HƯỚNG DẪN ẢNH NHÂN VIÊN                                   │
   │  Thêm ảnh vào thư mục: assets/images/team/                 │
   │  Tên file gợi ý: nguyen-van-a.jpg, tran-thi-b.jpg, ...     │
   │  Kích thước khuyến nghị: 400×480px, tỷ lệ 5:6              │
   │  Định dạng: jpg hoặc webp (nén tốt nhất)                   │
   │                                                             │
   │  Sau đó cập nhật src trong index.html:                      │
   │  <img src="assets/images/team/ten-file.jpg"                 │
   │       alt="Tên nhân viên" class="team-card__photo">        │
   └─────────────────────────────────────────────────────────────┘ */
.team-card__photo-wrap {
  width: 100%;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--blue-50);
  position: relative;
}
.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.team-card:hover .team-card__photo { transform: scale(1.04); }
/* Placeholder khi chưa có ảnh */
.team-card__photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-3);
  color: var(--blue-300); background: var(--blue-50);
}
.team-card__photo-placeholder svg { width: 48px; height: 48px; stroke: var(--blue-200); fill: none; stroke-width: 1.5; }
.team-card__photo-placeholder span { font-size: 12px; color: var(--blue-300); }
.team-card__body { padding: var(--sp-5); }
.team-card__name { font-size: 16px; font-weight: 800; color: var(--blue-900); margin-bottom: 3px; }
.team-card__role { font-size: 13px; color: var(--blue-600); font-weight: 600; margin-bottom: var(--sp-3); }
.team-card__bio { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ── CAREERS ─────────────────────────────────────────────────*/
.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.career-points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.career-point {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
}
.career-point__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.career-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(22px, 3vw, 34px);
}
.career-form-card h3 {
  font-size: 24px;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.career-form-card .form-subtitle {
  margin-bottom: var(--sp-6);
}

/* ── CONTACT / CTA ───────────────────────────────────────────*/
.cta-section {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-900) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::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.03'%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");
}
.cta-actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-10); }

.channels-row {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}
.channel-btn {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  padding: 12px 24px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 700;
  border: 2px solid; cursor: pointer; text-decoration: none;
  transition: all var(--dur) var(--ease);
}
.channel-btn--zalo { border-color: #0068ff; color: #0068ff; background: rgba(0,104,255,.08); }
.channel-btn--zalo:hover { background: #0068ff; color: white; }
.channel-btn--messenger { border-color: #0099ff; color: #0099ff; background: rgba(0,153,255,.08); }
.channel-btn--messenger:hover { background: linear-gradient(135deg,#0099ff,#a033ff); color: white; border-color: transparent; }

/* ── FOOTER ──────────────────────────────────────────────────*/
.footer {
  background: var(--blue-950);
  color: rgba(255,255,255,.6);
  padding-block: var(--sp-16) var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__brand .footer__logo { display: flex; align-items: center; justify-content: flex-start; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer__brand .footer__logo img {
  height: 66px;
  width: auto;
  display: block;
  /* Ảnh gốc có khoảng trống 2 bên nên bù trái để thẳng hàng phần chữ */
  transform: translateX(-22px);
}
.footer__brand p { font-size: 14px; line-height: 1.75; max-width: 300px; }
.footer__brand address { font-style: normal; margin-top: var(--sp-5); font-size: 13px; line-height: 1.8; }
.footer__brand address strong { color: rgba(255,255,255,.8); }
.footer__col h4 {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: rgba(255,255,255,.8); margin-bottom: var(--sp-5);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col ul a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--dur) var(--ease); }
.footer__col ul a:hover { color: var(--blue-400); }
.footer__contact { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-2); }
.footer__contact-item { display: flex; align-items: center; gap: var(--sp-3); font-size: 14px; }
.footer__contact-item svg { width: 16px; height: 16px; fill: none; stroke: var(--blue-400); stroke-width: 2; flex-shrink: 0; }
.footer__contact-item a { color: rgba(255,255,255,.65); transition: color var(--dur) var(--ease); }
.footer__contact-item a:hover { color: var(--blue-400); }
.footer__social { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.footer__social a {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 13px; font-weight: 700;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer__social a:hover { background: var(--blue-600); color: white; border-color: transparent; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer__bottom p { font-size: 13px; }
.footer__app-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 13px; color: var(--blue-400); font-weight: 600;
  border: 1px solid rgba(59,130,246,.3);
  padding: 6px 14px; border-radius: var(--r-full);
}

/* ── RESPONSIVE: Components ─────────────────────────────────*/
@media (max-width: 1024px) {
  .navbar__links { gap: var(--sp-5); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .career-grid { grid-template-columns: 1fr; }
  .reviews-track { grid-auto-columns: minmax(280px, calc((100% - var(--sp-6)) / 2)); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .why-grid, .about-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 440px; }
}

@media (max-width: 768px) {
  .navbar__links, .navbar__app-hint { display: none; }
  .navbar__hamburger { display: flex; }

  .hero { min-height: auto; padding-block: 100px 60px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__cards { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: var(--sp-6); }

  .booking-strip { border-radius: var(--r-lg); margin-top: -24px; }
  .booking-strip__inner { flex-direction: column; }
  .booking-field { width: 100%; min-width: unset; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-slider { grid-template-columns: 1fr; }
  .reviews-nav { display: none; }
  .reviews-track { grid-auto-columns: minmax(270px, 85%); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: -1px; }
  .hero__stats { flex-wrap: wrap; gap: var(--sp-5); }
  .team-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .channels-row { flex-direction: column; align-items: center; }
  .channel-btn { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
}
