/* ==========================================================================
   DESIGN SYSTEM - TRUNG TÂM DA LIỄU SÀI GÒN – PHAN RANG (ENHANCED ANIMATIONS)
   Style: Apple Minimalism × Premium Korean Dermatology × High-End Dynamic Aesthetics
   System Colors: 55% White, 35% Medical Blue (#1E5FBF), 10% Pink Highlight (#FF4D8D)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --color-white: #FFFFFF;
  --color-background: #F7FAFF;
  --color-background-blue: #EEF5FF;
  --color-primary: #1E5FBF;
  --color-primary-light: #3A7BE0;
  --color-primary-dark: #123A70;
  --color-accent: #FF4D8D;
  --color-accent-hover: #E03B77;
  --color-heading: #152033;
  --color-body: #526176;
  --color-muted: #7B8798;
  --color-border: #E3EAF3;
  --color-success: #1D9A6C;
  --color-error: #D9475D;

  /* Typography */
  --font-heading: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --font-hero: clamp(34px, 4.8vw, 56px);
  --font-h2: clamp(26px, 3.5vw, 40px);
  --font-h3: clamp(20px, 2.2vw, 26px);
  --font-body-lg: 18px;
  --font-body-base: 16px;
  --font-small: 14px;

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows (Soft Medical Elevation & Glows) */
  --shadow-soft: 0 12px 40px rgba(18, 58, 112, 0.08);
  --shadow-card: 0 8px 24px rgba(18, 58, 112, 0.05);
  --shadow-hover: 0 20px 45px rgba(30, 95, 191, 0.15);
  --shadow-accent-glow: 0 8px 25px rgba(255, 77, 141, 0.4);

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
  font-size: var(--font-body-base);
  color: var(--color-body);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.25;
  font-weight: 700;
}

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

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

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

.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(1200px, calc(100% - 48px));
  }
}

/* KEYFRAME ANIMATIONS */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 141, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(255, 77, 141, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 141, 0); }
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes gradientBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* SCROLL REVEAL ANIMATION CLASSES */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.reveal-left {
  transform: none;
}

.reveal.reveal-right {
  transform: none;
}

.reveal.reveal-zoom {
  transform: scale(0.92);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Delays for Cards */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* SECTION 01 - TOPBAR */
.topbar {
  background-color: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-small);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-link {
  color: var(--color-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-link:hover {
  color: var(--color-accent);
}

/* SECTION 02 - STICKY HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(18, 58, 112, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary-dark);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(30, 95, 191, 0.3);
  transition: var(--transition-fast);
}

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

.brand-text-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav {
  display: none;
}

.header-actions{display:flex;align-items:center;gap:9px}.mobile-menu-toggle{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border:1px solid #d5e3f1;border-radius:12px;background:#f3f8fe;color:#164b80;font-size:17px;cursor:pointer}.mobile-menu-backdrop{position:fixed;inset:0;z-index:98;border:0;background:rgba(6,32,62,.38);backdrop-filter:blur(2px)}.mobile-menu-backdrop[hidden]{display:none}
@media(max-width:991px){.main-nav.open{position:absolute;left:0;right:0;top:100%;z-index:102;display:grid;gap:4px;padding:14px max(20px,calc((100vw - 1180px)/2));border-top:1px solid #e3ebf4;background:rgba(255,255,255,.99);box-shadow:0 18px 38px rgba(13,52,94,.16)}.main-nav .nav-link{display:flex;align-items:center;min-height:45px;padding:0 18px;border-radius:11px;color:#294d72;font-size:12px;font-weight:700}.main-nav .nav-link:hover,.main-nav .nav-link.active{background:#edf5fe;color:#1268bb}.main-nav .nav-link:after{display:none}body.mobile-menu-open{overflow:hidden}}

@media (min-width: 992px) {
  .mobile-menu-toggle{display:none}
  .main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .nav-link {
    font-weight: 500;
    font-size: 13px;
    color: var(--color-heading);
    padding: 8px 0;
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2.5px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
  }

  .nav-link:hover {
    color: var(--color-primary);
  }

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

/* BẢNG GIÁ DỊCH VỤ */
.pricing-section{padding:96px 0;background:linear-gradient(180deg,#f5f9ff 0%,#fff 100%)}
.pricing-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;align-items:stretch}
.price-card{position:relative;display:flex;flex-direction:column;padding:32px;border:1px solid #dfe9f5;border-radius:24px;background:#fff;box-shadow:0 14px 36px rgba(18,63,116,.06);transition:var(--transition-normal)}
.price-card:hover{transform:translateY(-6px);border-color:#b7d4f2;box-shadow:0 22px 50px rgba(18,63,116,.12)}
.price-card-featured{border:2px solid var(--color-primary);box-shadow:0 20px 48px rgba(30,95,191,.15)}
.price-popular{position:absolute;top:0;right:24px;transform:translateY(-50%);padding:7px 12px;border-radius:999px;background:linear-gradient(135deg,var(--color-primary),var(--color-primary-light));color:#fff;font-size:9px;font-weight:800;letter-spacing:.07em;box-shadow:0 8px 18px rgba(30,95,191,.25)}
.price-card-icon{width:52px;height:52px;display:grid;place-items:center;margin-bottom:20px;border-radius:16px;background:#e9f3ff;color:var(--color-primary);font-size:19px}
.price-card-label{color:var(--color-primary);font-size:9px;font-weight:800;letter-spacing:.1em}.price-card h3{margin:7px 0 15px;font-size:21px}.price-value{display:flex;align-items:baseline;gap:5px;padding-bottom:20px;border-bottom:1px solid #e5edf6}.price-value small{color:var(--color-muted);font-size:12px}.price-value strong{color:#103d70;font-size:38px;line-height:1}.price-value span{color:var(--color-muted);font-size:11px}
.price-card ul{display:grid;gap:12px;margin:23px 0 28px;list-style:none}.price-card li{display:flex;align-items:flex-start;gap:9px;color:#52677f;font-size:12px;line-height:1.55}.price-card li i{margin-top:3px;color:#21a56f;font-size:11px}
.price-action{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding:13px 15px;border-radius:12px;background:#eff6ff;color:var(--color-primary);font-size:12px;font-weight:800}.price-card-featured .price-action{background:var(--color-primary);color:#fff}.price-action:hover{transform:translateY(-1px);box-shadow:0 10px 20px rgba(30,95,191,.14)}
.price-more{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;margin-top:24px;overflow:hidden;border:1px solid #dfe9f5;border-radius:17px;background:#dfe9f5}.price-more>div{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:18px 20px;background:#fff}.price-more span{color:#4b6077;font-size:12px}.price-more span i{width:28px;color:var(--color-primary)}.price-more strong{color:#123d6c;font-size:12px;white-space:nowrap}.pricing-note{max-width:820px;margin:20px auto 0;color:#75869a;font-size:11px;line-height:1.6;text-align:center}.pricing-note i{margin-right:6px;color:var(--color-primary)}
@media(max-width:900px){.pricing-grid{grid-template-columns:1fr;max-width:620px;margin:auto}.price-more{grid-template-columns:1fr}}
@media(max-width:560px){.pricing-section{padding:72px 0}.price-card{padding:26px 22px}.price-value strong{font-size:34px}}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--font-body-base);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(255, 77, 141, 0.35);
  animation: pulseGlow 3s infinite;
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent-glow);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(30, 95, 191, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 95, 191, 0.35);
}

.btn-outline {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-background-blue);
  transform: translateY(-2px);
}

/* SECTION 03 - HERO SECTION & HERO SLIDER */
.hero-section {
  padding: 50px 0 70px;
  background: radial-gradient(circle at 80% 20%, rgba(58, 123, 224, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, var(--color-background-blue) 0%, var(--color-background) 100%);
  position: relative;
  overflow: hidden;
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(30, 95, 191, 0.12);
  backdrop-filter: blur(8px);
  color: var(--color-primary);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(30, 95, 191, 0.2);
}

.hero-title {
  font-size: var(--font-hero);
  margin-bottom: 20px;
  color: var(--color-primary-dark);
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: var(--font-body-lg);
  color: var(--color-body);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.trust-item-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
}

.trust-item-mini i {
  color: var(--color-success);
  font-size: 16px;
}

/* HERO SLIDER CONTAINER */
.hero-slider-card { overflow: hidden; 
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  transform: perspective(1000px) rotateY(-2deg);
  transition: var(--transition-normal);
}

.hero-slider-card:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.hero-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 4/3;
  background-color: var(--color-background-blue);
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-slide:hover img {
  transform: scale(1.08);
}

.hero-slide-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(18, 58, 112, 0.12);
  animation: float 4s ease-in-out infinite;
}

.hero-slide-badge-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.hero-slide-badge-sub {
  font-size: 13px;
  color: var(--color-body);
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 14px;
  right: 14px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: none;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--color-white);
  transform: scale(1.12);
  color: var(--color-primary);
  box-shadow: 0 8px 22px rgba(30, 95, 191, 0.25);
}

.slider-dots {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 6px;
}

/* SECTION 04 - TRUST BAR */
.trust-bar-section {
  padding: 36px 0;
  background-color: var(--color-white);
  border-y: 1px solid var(--color-border);
}

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

@media (min-width: 576px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
}

.trust-card:hover {
  background-color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-primary-light);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-background-blue), #E2EEFF);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.trust-card:hover .trust-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(8deg);
}

.trust-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-card-desc {
  font-size: 13px;
  color: var(--color-muted);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px;
}

.section-subtitle {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
  padding: 4px 14px;
  background-color: rgba(30, 95, 191, 0.08);
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: var(--font-h2);
  margin-bottom: 14px;
}

.section-desc {
  font-size: var(--font-body-base);
  color: var(--color-muted);
}

/* SECTION 05 - VẤN ĐỀ LÀN DA */
.concerns-section {
  padding: 90px 0;
}

.concerns-section .section-header {
  max-width: 1380px;
}

.concerns-section .section-title {
  font-size: clamp(36px, 3.35vw, 54px);
  line-height: 1.16;
}

@media (min-width: 901px) {
  .concerns-section .section-title,
  .concerns-section .section-desc {
    white-space: nowrap;
  }
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
}

@media (min-width: 576px) {
  .concerns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .concerns-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.concern-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.concern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: 0.6s;
}

.concern-card:hover::before {
  left: 200%;
}

.concern-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-light);
}

.concern-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: var(--color-background-blue);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  transition: var(--transition-fast);
}

.concern-card:hover .concern-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.concern-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.concern-desc {
  font-size: 14px;
  color: var(--color-body);
  margin-bottom: 24px;
  flex-grow: 1;
}

.link-arrow {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-arrow:hover {
  gap: 12px;
  color: var(--color-primary-dark);
}

/* SECTION 06 - DỊCH VỤ NỔI BẬT */
.services-section {
  padding: 90px 0;
  background-color: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-light);
}

.service-card[data-detail-url] {
  cursor: pointer;
}

.service-img-box {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--color-background-blue);
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.service-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--color-body);
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

/* SECTION 07 - QUY TRÌNH 6 BƯỚC */
.process-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--color-background) 0%, var(--color-background-blue) 100%);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .process-timeline {
    grid-template-columns: repeat(6, 1fr);
  }
}

.process-step {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--color-border);
  position: relative;
  transition: var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-primary);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-primary-light);
  opacity: 0.35;
  margin-bottom: 10px;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--color-muted);
}

/* SECTION 08 - KẾT QUẢ THỰC TẾ & BEFORE/AFTER SLIDER */
.results-section {
  padding: 90px 0;
  background-color: var(--color-white);
}

.ba-slider-container {
  max-width: 840px;
  margin: 0 auto 36px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--color-border);
}

.ba-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  user-select: none;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-img-after {
  z-index: 1;
}

.ba-img-before {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}

.ba-img-before img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--color-white);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.ba-handle:hover .ba-handle-circle {
  transform: translate(-50%, -50%) scale(1.12);
}

.ba-label {
  position: absolute;
  bottom: 20px;
  padding: 8px 18px;
  background: rgba(18, 32, 51, 0.82);
  backdrop-filter: blur(6px);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  z-index: 4;
  letter-spacing: 0.5px;
}

.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; }

.disclaimer-box {
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* SECTION 09 - KHÔNG GIAN CLINIC GALLERY */
.gallery-section {
  padding: 90px 0;
}

.gallery-carousel { position:relative; overflow:hidden; padding-bottom:38px; }
.gallery-track { display:flex; gap:20px; transition:transform .65s cubic-bezier(.22,.61,.36,1); will-change:transform; }

.gallery-item {
  flex:0 0 calc((100% - 40px) / 3);
  margin:0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--color-background-blue);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item figcaption { position:absolute; left:14px; right:14px; bottom:14px; padding:11px 13px; border-radius:12px; background:rgba(7,35,66,.78); color:#fff; font-size:12px; font-weight:650; backdrop-filter:blur(8px); }
.gallery-nav { position:absolute; top:calc(50% - 28px); width:42px; height:42px; display:grid; place-items:center; border:0; border-radius:50%; background:rgba(255,255,255,.96); color:var(--color-primary); box-shadow:0 10px 28px rgba(18,63,116,.2); cursor:pointer; z-index:3; transition:var(--transition-fast); }
.gallery-nav:hover { background:var(--color-primary); color:#fff; transform:scale(1.06); }
.gallery-prev { left:14px; }
.gallery-next { right:14px; }
.gallery-dots { position:absolute; left:0; right:0; bottom:8px; display:flex; justify-content:center; gap:7px; }
.gallery-dot { width:7px; height:7px; padding:0; border:0; border-radius:50%; background:#c6d4e5; cursor:pointer; transition:var(--transition-fast); }
.gallery-dot.active { width:24px; border-radius:999px; background:var(--color-primary); }
@media(max-width:991px){.gallery-item{flex-basis:calc((100% - 20px) / 2)}}
@media(max-width:640px){.gallery-item{flex-basis:100%}.gallery-track{gap:14px}.gallery-nav{width:38px;height:38px}.gallery-prev{left:9px}.gallery-next{right:9px}}

/* SECTION 10 - ĐỘI NGŨ CHUYÊN GIA */
.team-section {
  padding: 90px 0;
  background-color: var(--color-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 576px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.team-img-box {
  aspect-ratio: 1/1;
  background-color: var(--color-background-blue);
  overflow: hidden;
}

.team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-box img {
  transform: scale(1.05);
}

.team-info {
  padding: 24px;
}

.team-name {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-role {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

/* SECTION 11 - ĐÁNH GIÁ KHÁCH HÀNG (TESTIMONIALS SLIDER) */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--color-background-blue) 0%, var(--color-background) 100%);
}

.testimonials-slider {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.stars-rating {
  color: #FFC107;
  margin-bottom: 18px;
  font-size: 20px;
}

.testimonial-text {
  font-size: var(--font-body-lg);
  color: var(--color-heading);
  font-style: italic;
  margin-bottom: 26px;
  line-height: 1.7;
}

.testimonial-user {
  font-weight: 700;
  font-size: 17px;
}

.testimonial-service {
  font-size: 13px;
  color: var(--color-muted);
}

/* SECTION 12 - KIẾN THỨC DA DỄ HIỂU */
.blog-section {
  padding: 90px 0;
  background-color: var(--color-white);
}

.blog-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 4px 12px;
}

.blog-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light) transparent;
}

.blog-grid::-webkit-scrollbar {
  height: 6px;
}
.blog-grid::-webkit-scrollbar-track {
  background: var(--color-background-blue);
  border-radius: 999px;
}
.blog-grid::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 999px;
}

.blog-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.blog-nav {
  position: absolute;
  top: calc(50% - 24px);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(18, 58, 112, 0.18);
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-fast);
}
.blog-nav:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.08);
}
.blog-prev { left: 8px; }
.blog-next { right: 8px; }

@media (max-width: 991px) {
  .blog-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .blog-card {
    flex: 0 0 82%;
    min-width: 82%;
  }
  .blog-nav {
    display: none;
  }
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.blog-img-box {
  aspect-ratio: 16/10;
  background-color: var(--color-background-blue);
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.06);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
}

.blog-desc {
  font-size: 14px;
  color: var(--color-muted);
  flex-grow: 1;
  margin-bottom: 18px;
}

.footer-credit { white-space: nowrap; }
.footer-credit a { color: #ffffff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.footer-credit a:hover { color: #b9dcff; }

/* GIỚI THIỆU TRUNG TÂM */
.gallery-section { overflow: hidden; }
.about-showcase { display:grid; grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr); gap:clamp(38px,6vw,78px); align-items:center; margin-bottom:72px; }
.about-visual { overflow: hidden;  position:relative; min-height:590px; }
.about-visual::before { content:""; position:absolute; inset:32px 34px -22px -28px; border-radius:32px; background:linear-gradient(145deg,#e7f2ff,#f8fbff); z-index:0; }
.about-visual::after { content:""; position:absolute; width:140px; height:140px; right:-28px; top:-28px; border-radius:50%; background:rgba(24,112,203,.09); z-index:0; }
.about-visual > img { position:relative; z-index:1; width:100%; height:590px; object-fit:cover; border-radius:30px 90px 30px 30px; box-shadow:0 28px 70px rgba(18,63,116,.18); }
.about-visual-badge,.about-visual-note { position:absolute; z-index:2; display:flex; align-items:center; gap:13px; background:rgba(255,255,255,.96); box-shadow:0 16px 40px rgba(18,63,116,.16); backdrop-filter:blur(10px); }
.about-visual-badge { left:-22px; bottom:34px; padding:16px 20px; border-radius:18px; }
.about-visual-badge i { width:40px; height:40px; display:grid; place-items:center; border-radius:12px; background:#e9f3ff; color:var(--color-primary); }
.about-visual-badge span,.about-visual-note span { color:var(--color-muted); font-size:12px; line-height:1.45; }
.about-visual-badge strong,.about-visual-note strong { display:block; color:var(--color-heading); font-size:14px; }
.about-visual-note { right:-28px; top:78px; padding:14px 17px; border-radius:16px; }
.about-visual-note i { color:#1ea86b; font-size:24px; }
.about-content h2 { margin:13px 0 22px; font-size:clamp(34px,4.4vw,54px); line-height:1.14; letter-spacing:-.035em; color:#102f55; }
.about-content > p { color:var(--color-body); line-height:1.8; margin-bottom:16px; }
.about-content .about-lead { color:#264a72; font-size:18px; font-weight:600; line-height:1.7; }
.about-feature-list { display:grid; gap:14px; margin:26px 0 30px; }
.about-feature-list > div { display:grid; grid-template-columns:48px 1fr; gap:14px; align-items:center; }
.about-feature-list i { width:48px; height:48px; display:grid; place-items:center; border-radius:15px; background:linear-gradient(145deg,#e9f4ff,#f7fbff); color:var(--color-primary); font-size:18px; }
.about-feature-list strong { display:block; margin-bottom:3px; color:var(--color-heading); font-size:15px; }
.about-feature-list small { display:block; color:var(--color-muted); font-size:12px; line-height:1.5; }
.about-actions { display:flex; flex-wrap:wrap; align-items:center; gap:22px; }
.about-contact-link { color:var(--color-primary); font-size:14px; font-weight:750; }
.about-contact-link i { margin-right:7px; }
.about-gallery-heading { display:flex; justify-content:space-between; align-items:end; gap:28px; margin-bottom:24px; padding-top:28px; border-top:1px solid var(--color-border); }
.about-gallery-heading span { color:var(--color-primary); font-size:11px; font-weight:800; letter-spacing:.1em; }
.about-gallery-heading h3 { max-width:590px; font-size:clamp(22px,3vw,32px); text-align:right; line-height:1.3; }

@media(max-width:991px){.about-showcase{grid-template-columns:1fr;}.about-visual{min-height:520px;max-width:720px}.about-visual>img{height:520px}.about-content{max-width:760px}.about-gallery-heading{align-items:start;flex-direction:column}.about-gallery-heading h3{text-align:left}}
@media(max-width:640px){.about-showcase{gap:46px;margin-bottom:54px}.about-visual{min-height:410px;margin:0 10px}.about-visual>img{height:410px;border-radius:24px 54px 24px 24px}.about-visual::before{inset:22px 18px -16px -14px}.about-visual-note{right:-10px;top:28px}.about-visual-badge{left:-10px;bottom:20px}.about-content h2{font-size:36px}.about-content .about-lead{font-size:16px}.about-actions{align-items:flex-start;flex-direction:column;gap:16px}}

/* SECTION 13 - FORM ĐẶT LỊCH CUỐI TRANG */
.booking-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fbff 0%, #edf5ff 58%, #f9fcff 100%);
  color: var(--color-heading);
}

.booking-section::before,.booking-section::after{content:"";position:absolute;border-radius:50%;pointer-events:none}.booking-section::before{width:460px;height:460px;right:-160px;top:-230px;background:rgba(25,112,203,.07)}.booking-section::after{width:260px;height:260px;left:-110px;bottom:-150px;border:48px solid rgba(25,112,203,.045)}
.booking-panel{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) minmax(390px,.82fr);gap:clamp(44px,7vw,88px);align-items:center;max-width:1120px;margin:0 auto}
.booking-eyebrow{display:inline-flex;align-items:center;gap:8px;margin-bottom:18px;padding:8px 13px;border:1px solid #cfe2f7;border-radius:999px;background:#fff;color:var(--color-primary);font-size:11px;font-weight:800;letter-spacing:.08em;box-shadow:0 8px 20px rgba(18,63,116,.06)}
.booking-intro h2{max-width:640px;margin-bottom:20px;color:#10365f;font-size:clamp(34px,4.5vw,54px);line-height:1.15;letter-spacing:-.035em}.booking-intro>p{max-width:590px;color:#60758d;font-size:16px;line-height:1.8}
.booking-benefits{display:grid;gap:14px;margin:30px 0}.booking-benefits>div{display:grid;grid-template-columns:46px 1fr;gap:14px;align-items:center}.booking-benefits i{width:46px;height:46px;display:grid;place-items:center;border-radius:14px;background:#e4f1ff;color:var(--color-primary);font-size:17px}.booking-benefits strong{display:block;color:#183c65;font-size:14px;margin-bottom:3px}.booking-benefits small{display:block;color:#74879d;font-size:12px;line-height:1.45}
.booking-contact{display:flex;align-items:center;gap:16px;padding-top:22px;border-top:1px solid #d7e5f3}.booking-contact span{color:#75899f;font-size:12px}.booking-contact a{color:var(--color-primary);font-size:19px;font-weight:800}.booking-contact i{margin-right:7px}
.booking-form-card{padding:36px;background:#fff;border:1px solid #dce9f6;border-radius:26px;color:var(--color-heading);box-shadow:0 24px 65px rgba(18,63,116,.14)}
.booking-form-heading{margin-bottom:25px}.booking-form-heading>span{color:var(--color-primary);font-size:10px;font-weight:800;letter-spacing:.11em}.booking-form-heading h3{margin:6px 0 5px;font-size:27px}.booking-form-heading p{color:var(--color-muted);font-size:13px}.form-success-alert{padding:14px 16px;margin-bottom:20px;border:1px solid #b9e8c9;border-radius:12px;background:#effbf3;color:#237a43;font-size:13px;font-weight:650;line-height:1.5}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-label {
  color:#29415e;
  font-size: 12px;
  font-weight: 700;
}
.form-label span{color:#ef4444}.form-control-wrap{position:relative}.form-control-wrap>i{position:absolute;left:16px;top:50%;transform:translateY(-50%);z-index:1;color:#8ca0b8;font-size:14px}.form-control-wrap .form-control{padding-left:44px;width:100%}

.form-control {
  min-height:52px;
  padding: 13px 16px;
  border-radius: 13px;
  border: 1px solid #dbe5f0;
  background-color: #f8fbff;
  color:var(--color-heading);
  font-family:inherit;
  font-size:14px;
  outline: none;
  transition: var(--transition-fast);
}
.form-select-wrap select{appearance:auto}.booking-submit{width:100%;min-height:54px;margin-top:5px;padding:0 20px;display:flex;align-items:center;justify-content:space-between;border:0;border-radius:14px;background:linear-gradient(135deg,#0b67c5,#074b91);color:#fff;font-family:inherit;font-size:14px;font-weight:800;cursor:pointer;box-shadow:0 12px 25px rgba(11,103,197,.25);transition:var(--transition-normal)}.booking-submit:hover{transform:translateY(-2px);box-shadow:0 16px 30px rgba(11,103,197,.32)}.booking-submit i{width:32px;height:32px;display:grid;place-items:center;border-radius:9px;background:rgba(255,255,255,.14)}.booking-privacy{display:flex;align-items:flex-start;justify-content:center;gap:7px;color:#8192a6;font-size:10px;line-height:1.5;text-align:center}.booking-privacy i{margin-top:2px;color:#4d9a70}
.booking-form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}.booking-note{min-height:88px;resize:vertical}.booking-submit:disabled{cursor:wait;opacity:.72;transform:none}.form-control.is-invalid{border-color:#dc4c64;box-shadow:0 0 0 3px rgba(220,76,100,.1)}
@media(max-width:560px){.booking-form-row{grid-template-columns:1fr}}
@media(max-width:900px){.booking-panel{grid-template-columns:1fr;max-width:700px}.booking-intro{text-align:center}.booking-intro>p{margin-inline:auto}.booking-benefits{max-width:500px;margin-inline:auto;text-align:left}.booking-contact{justify-content:center}}
@media(max-width:560px){.booking-section{padding:72px 0}.booking-intro h2{font-size:35px}.booking-form-card{padding:25px 20px;border-radius:21px}.booking-contact{align-items:flex-start;flex-direction:column;gap:7px}.booking-contact a{font-size:18px}}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(30, 95, 191, 0.15);
}

/* SECTION 14 - FOOTER & MOBILE STICKY BAR */
.site-footer {
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg,#061f3d 0%,#082f5a 55%,#073d70 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 0 24px;
  font-size: 14px;
}
.site-footer::before{content:"";position:absolute;width:520px;height:520px;right:-240px;bottom:-300px;border-radius:50%;border:90px solid rgba(255,255,255,.025);pointer-events:none}.site-footer>.container{position:relative;z-index:1}
.footer-highlight{transform:translateY(-1px);display:flex;align-items:center;justify-content:space-between;gap:28px;padding:28px 32px;margin-bottom:62px;border:1px solid rgba(255,255,255,.12);border-top:0;border-radius:0 0 24px 24px;background:linear-gradient(110deg,rgba(255,255,255,.11),rgba(255,255,255,.055));box-shadow:0 18px 50px rgba(0,12,30,.18);backdrop-filter:blur(10px)}.footer-highlight>div:first-child{display:flex;align-items:center;gap:15px}.footer-highlight-icon{width:50px;height:50px;display:grid;place-items:center;border-radius:15px;background:rgba(255,255,255,.13);color:#fff;font-size:19px}.footer-highlight small{display:block;color:rgba(255,255,255,.58);font-size:11px;margin-bottom:3px}.footer-highlight strong{color:#fff;font-size:17px}.footer-highlight-actions{display:flex;align-items:center;gap:12px}.footer-call,.footer-book{display:inline-flex;align-items:center;gap:8px;min-height:46px;padding:0 18px;border-radius:12px;font-size:13px;font-weight:800}.footer-call{color:#fff;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.07)}.footer-book{color:#07335e;background:#fff}.footer-book:hover{color:var(--color-primary);transform:translateY(-1px)}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(32px,5vw,62px);
  margin-bottom: 54px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.55fr .8fr .7fr 1.25fr;
  }
}
.footer-brand{display:flex;align-items:center;margin-bottom:22px;color:#fff}.footer-brand-mark{width:152px;height:auto;display:block}.footer-brand-mark img{width:100%;height:auto;display:block;object-fit:contain}.footer-brand-col>p{max-width:390px;color:rgba(255,255,255,.61);font-size:13px;line-height:1.75}.footer-trust{display:flex;align-items:center;gap:11px;margin:20px 0;color:#fff}.footer-trust>i{color:#64d89c;font-size:22px}.footer-trust strong{display:block;font-size:12px}.footer-trust small{display:block;margin-top:2px;color:rgba(255,255,255,.52);font-size:10px}.footer-socials{display:flex;gap:9px}.footer-socials a{width:38px;height:38px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.12);border-radius:11px;background:rgba(255,255,255,.055);color:#fff}.footer-socials a:hover{background:#fff;color:var(--color-primary);transform:translateY(-2px)}

.footer-title {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom:13px;
  position:relative;
}
.footer-title::after{content:"";position:absolute;left:0;bottom:0;width:28px;height:2px;border-radius:999px;background:#49a4f4}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links a{display:flex;align-items:center;gap:8px;color:rgba(255,255,255,.63);font-size:12px}.footer-links i{color:#5baaf1;font-size:8px;transition:transform .2s ease}.footer-links a:hover i{transform:translateX(3px)}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-contact-list{display:grid;gap:16px}.footer-contact-list>div{display:grid;grid-template-columns:38px 1fr;gap:11px;align-items:start}.footer-contact-list>div>i{width:38px;height:38px;display:grid;place-items:center;border-radius:11px;background:rgba(255,255,255,.075);color:#62b3fa}.footer-contact-list small{display:block;margin-bottom:3px;color:rgba(255,255,255,.43);font-size:9px;text-transform:uppercase;letter-spacing:.06em}.footer-contact-list strong,.footer-contact-list a{display:block;color:rgba(255,255,255,.82);font-size:11px;line-height:1.55}.footer-contact-list a{color:#fff;font-size:15px;font-weight:800}.footer-open{display:inline-flex;align-items:center;gap:8px;margin-top:20px;padding:8px 12px;border:1px solid rgba(100,216,156,.22);border-radius:999px;background:rgba(100,216,156,.07);color:#9ce3ba;font-size:10px;font-weight:700}.footer-open span{width:7px;height:7px;border-radius:50%;background:#64d89c;box-shadow:0 0 0 4px rgba(100,216,156,.12)}
.footer-contact-page{display:flex;align-items:center;justify-content:space-between;margin-top:12px;padding:10px 12px;border-radius:10px;background:rgba(255,255,255,.07);color:#fff;font-size:10px;font-weight:750}.footer-contact-page:hover{background:#fff;color:var(--color-primary)}
.footer-legal{display:flex;align-items:center;justify-content:center;gap:12px}.footer-legal a{color:rgba(255,255,255,.58)}.footer-legal span{width:3px;height:3px;border-radius:50%;background:rgba(255,255,255,.3)}.footer-bottom>.footer-credit{text-align:right}.footer-credit a{color:#fff;text-decoration:none}.footer-credit a:hover{color:#81c2fa}
@media(max-width:900px){.footer-highlight{align-items:flex-start;flex-direction:column}.footer-bottom{grid-template-columns:1fr;text-align:center}.footer-bottom>.footer-credit{text-align:center}.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.footer-highlight{padding:24px 20px;margin-bottom:48px}.footer-highlight-actions{width:100%;align-items:stretch;flex-direction:column}.footer-call,.footer-book{justify-content:center}.footer-highlight strong{font-size:14px}.footer-grid{grid-template-columns:1fr}.footer-brand-col{padding-bottom:26px;border-bottom:1px solid rgba(255,255,255,.1)}}
@media(max-width:620px){.footer-bottom{gap:8px;padding-top:16px;font-size:9px;line-height:1.45}.footer-legal{gap:8px}.footer-credit{font-size:9px}.footer-credit a{text-underline-offset:2px}}

/* MOBILE STICKY CTA BAR */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  z-index: 999;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-heading);
  gap: 3px;
}

.sticky-btn i {
  font-size: 18px;
}

.sticky-btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  animation: pulseGlow 2.5s infinite;
}

.sticky-btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.sticky-btn-soft{background:#eef5fd;color:#174a7d}
@media(max-width:767px){
  .mobile-sticky-bar{gap:4px;padding:7px 6px calc(7px + env(safe-area-inset-bottom))}
  .sticky-btn{min-width:0;padding:8px 2px;border-radius:10px;font-size:9px;line-height:1.15;white-space:nowrap}
  .sticky-btn i{font-size:16px}
  .sticky-btn-accent{box-shadow:0 7px 18px rgba(255,75,143,.25)}
}

/* Compact mobile header */
.header-cta-short{display:none}
.logo-brand img{display:block;width:158px;height:58px;object-fit:contain;object-position:left center}
@media(max-width:640px){
  .topbar{padding:7px 0;font-size:10px}
  .topbar-content{gap:10px;align-items:center}
  .topbar-item{min-width:0;gap:6px;line-height:1.45}
  .topbar-item:first-child{flex:1}
  .topbar-item:first-child span{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
  .topbar-item:first-child>i{flex:0 0 auto}
  .topbar-item:last-child{flex:0 0 auto}
  .topbar-hotline-label{display:none}
  .topbar-link{gap:5px;font-size:11px;white-space:nowrap}
  .header-content{height:64px;gap:10px}
  .logo-brand{min-width:0;gap:0;font-size:12px;line-height:1.2}
  .logo-brand img{width:122px;height:54px}
  .logo-icon{flex:0 0 auto;width:38px;height:38px;border-radius:12px;font-size:18px}
  .brand-text-sub{margin-top:3px;font-size:8px;letter-spacing:.25px;white-space:nowrap}
  .header-content>div:last-child{flex:0 0 auto}
  .header-content>div:last-child .btn{min-height:38px;padding:0 13px;gap:6px;font-size:10px;box-shadow:none}
  .header-cta-full{display:none}
  .header-cta-short{display:inline}
}
@media(max-width:370px){
  .logo-brand img{width:108px;height:48px}
  .brand-text-sub{display:none}
  .header-content>div:last-child .btn{padding:0 11px}
}

/* Mobile hero slider: Clean, sleek, premium overlay badge */
@media (max-width: 640px) {
  .hero-slider-card, .hero-slider-card:hover {
    transform: none !important;
    border-radius: 20px;
  }
  .hero-slide {
    display: block;
    aspect-ratio: 4/3;
    min-height: 260px;
    position: relative;
    background-color: var(--color-background-blue);
  }
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-slide-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 20px rgba(18, 58, 112, 0.15);
    animation: none;
  }
  .hero-slide-badge-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary-dark);
  }
  .hero-slide-badge-sub {
    font-size: 11px;
    line-height: 1.4;
    color: var(--color-body);
    margin-top: 3px;
  }
  .slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
    box-shadow: 0 6px 16px rgba(18, 58, 112, 0.18);
  }
}

/* Combined proof and customer experience section */
.proof-section{padding:100px 0;background:linear-gradient(180deg,#f4f8fe 0%,#fff 100%)}.proof-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:45px;margin-bottom:30px}.proof-heading>div:first-child{max-width:820px}.proof-heading .section-title,.proof-heading .section-desc{text-align:left;margin-left:0}.proof-heading .section-title{margin-top:12px;text-transform:none}.proof-trust{flex:0 0 260px;display:flex;align-items:center;gap:13px;padding:17px 18px;border:1px solid #d8e6f4;border-radius:16px;background:#fff;box-shadow:0 12px 30px rgba(18,63,116,.06)}.proof-trust>i{color:#1870c5;font-size:24px}.proof-trust span{color:#71859a;font-size:9px;line-height:1.5}.proof-trust strong{display:block;color:#173f6b;font-size:11px}.proof-filters{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:25px}.proof-filters button{min-height:40px;padding:0 16px;border:1px solid #d5e3f1;border-radius:999px;background:#fff;color:#5f748a;font-family:inherit;font-size:10px;font-weight:750;cursor:pointer}.proof-filters button.active{border-color:#1268bb;background:#1268bb;color:#fff;box-shadow:0 8px 18px rgba(18,104,187,.2)}.proof-cases{display:grid;grid-template-columns:1.35fr 1fr 1fr;gap:20px}.proof-case{overflow:hidden;display:flex;flex-direction:column;border:1px solid #dce8f4;border-radius:22px;background:#fff;box-shadow:0 14px 34px rgba(18,63,116,.07);transition:.3s ease}.proof-case:hover{transform:translateY(-4px);box-shadow:0 20px 42px rgba(18,63,116,.12)}.proof-case[hidden]{display:none}.proof-case-image{position:relative;height:245px;overflow:hidden;background:#eaf2fb}.proof-case-featured .proof-case-image{height:310px}.proof-case-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.proof-case:hover img{transform:scale(1.04)}.proof-case-image>span{position:absolute;left:14px;top:14px;padding:7px 10px;border-radius:999px;background:rgba(11,60,110,.86);color:#fff;font-size:8px;font-weight:800;letter-spacing:.08em}.proof-case-content{display:flex;flex:1;flex-direction:column;padding:24px}.proof-case-type{color:#1370c7;font-size:8px;font-weight:800;letter-spacing:.11em}.proof-case-content h3{margin:7px 0 10px;color:#163e6a;font-size:20px;line-height:1.35}.proof-case-featured h3{font-size:25px}.proof-case-content>p{color:#667b91;font-size:11px;line-height:1.7}.proof-case-meta{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:18px 0}.proof-case-meta>div{padding:12px;border-radius:12px;background:#f1f6fc}.proof-case-meta small{display:block;color:#7d90a4;font-size:8px}.proof-case-meta strong{color:#21486f;font-size:10px}.proof-case-content>a{display:inline-flex;align-items:center;gap:7px;margin-top:auto;padding-top:17px;color:#1268bb;font-size:10px;font-weight:800}.proof-reviews{margin-top:28px;padding:30px;border:1px solid #dce8f4;border-radius:24px;background:#fff;box-shadow:0 16px 40px rgba(18,63,116,.07)}.proof-reviews-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:22px}.proof-reviews-heading span{color:#1370c7;font-size:8px;font-weight:800;letter-spacing:.11em}.proof-reviews-heading h3{margin-top:6px;font-size:25px}.proof-reviews-heading>small{color:#7c8fa3;font-size:8px}.proof-review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}.proof-review-grid>article{padding:20px;border:1px solid #e0e9f3;border-radius:17px;background:#f9fbfe}.proof-review-top{display:grid;grid-template-columns:40px 1fr auto;align-items:center;gap:10px}.proof-review-top>span{width:40px;height:40px;display:grid;place-items:center;border-radius:50%;background:#e3f0ff;color:#1268bb;font-size:10px;font-weight:800}.proof-review-top strong{display:block;color:#1c436d;font-size:11px}.proof-review-top small{color:#7b8da1;font-size:8px}.proof-review-top b{color:#e9a900;font-size:9px}.proof-review-grid p{min-height:76px;margin:17px 0;color:#3f5873;font-size:10px;line-height:1.75}.proof-review-grid footer{display:flex;align-items:center;gap:5px;padding-top:13px;border-top:1px solid #e0e9f2;color:#39815f;font-size:8px}.proof-review-grid footer time{margin-left:auto;color:#8a9bad}.proof-note{display:flex;align-items:flex-start;gap:10px;margin-top:17px;padding:14px 16px;border-radius:13px;background:#edf5fd;color:#708398}.proof-note>i{margin-top:2px;color:#1670c6}.proof-note p{font-size:9px;line-height:1.6}
@media(max-width:960px){.proof-heading{align-items:flex-start;flex-direction:column}.proof-trust{flex-basis:auto}.proof-cases{grid-template-columns:1fr 1fr}.proof-case-featured{grid-column:span 2}.proof-review-grid{grid-template-columns:1fr}}
@media(max-width:640px){.proof-section{padding:72px 0}.proof-heading{gap:20px}.proof-heading .section-title{font-size:34px}.proof-trust{width:100%}.proof-filters{overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}.proof-filters button{flex:0 0 auto}.proof-cases{grid-template-columns:1fr}.proof-case-featured{grid-column:auto}.proof-case-image,.proof-case-featured .proof-case-image{height:250px}.proof-case-content,.proof-reviews{padding:21px}.proof-case-featured h3{font-size:22px}.proof-reviews-heading{align-items:flex-start;flex-direction:column}.proof-review-grid{display:flex;overflow-x:auto;scroll-snap-type:x mandatory}.proof-review-grid>article{flex:0 0 88%;scroll-snap-align:start}.proof-note{font-size:9px}}

/* Customer treatment journey timeline */
.journey-profile{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:28px;margin-bottom:30px;padding:21px 24px;border:1px solid #d9e6f3;border-radius:18px;background:#fff;box-shadow:0 12px 30px rgba(18,63,116,.06)}.journey-profile span{color:#1370c7;font-size:8px;font-weight:800;letter-spacing:.1em}.journey-profile h3{margin-top:5px;font-size:18px}.journey-profile small{display:block;color:#8293a6;font-size:8px}.journey-profile strong{color:#294d72;font-size:10px}.journey-profile>a{display:inline-flex;align-items:center;gap:7px;padding:11px 14px;border-radius:11px;background:#edf5fe;color:#1268bb;font-size:9px;font-weight:800}.journey-nav{position:relative;display:grid;grid-template-columns:repeat(5,1fr);margin:0 25px 26px}.journey-nav:before{content:"";position:absolute;left:9%;right:9%;top:19px;height:2px;background:#cfdeed}.journey-nav button{position:relative;z-index:1;display:flex;align-items:center;flex-direction:column;gap:8px;border:0;background:none;color:#7b8da1;font-family:inherit;font-size:9px;font-weight:750;cursor:pointer}.journey-nav b{width:40px;height:40px;display:grid;place-items:center;border:5px solid #f4f8fe;border-radius:50%;background:#d8e5f2;color:#557089;font-size:9px;transition:.25s ease}.journey-nav button.active{color:#1268bb}.journey-nav button.active b{background:#1268bb;color:#fff;box-shadow:0 7px 18px rgba(18,104,187,.25)}.journey-track{display:grid;grid-template-columns:repeat(5,minmax(240px,1fr));gap:14px;overflow-x:auto;padding:4px 3px 18px;scroll-snap-type:x mandatory}.journey-card{overflow:hidden;scroll-snap-align:start;border:1px solid #dce7f2;border-radius:19px;background:#fff;box-shadow:0 12px 30px rgba(18,63,116,.06);transition:.25s ease}.journey-card.active{border-color:#8bbce9;box-shadow:0 17px 36px rgba(18,104,187,.14)}.journey-photo{position:relative;height:205px;overflow:hidden;background:#eaf2fb}.journey-photo img{width:100%;height:100%;object-fit:cover}.journey-photo>span{position:absolute;left:12px;bottom:12px;padding:7px 10px;border-radius:999px;background:rgba(12,56,102,.86);color:#fff;font-size:7px;font-weight:800;letter-spacing:.08em}.journey-result .journey-photo>span{background:#21865d}.journey-card>div:last-child{padding:20px}.journey-card small{color:#1370c7;font-size:7px;font-weight:800;letter-spacing:.09em}.journey-card h3{min-height:48px;margin:7px 0 9px;color:#173f69;font-size:16px;line-height:1.35}.journey-card p{min-height:70px;color:#6a7e93;font-size:9px;line-height:1.65}.journey-card ul{display:grid;gap:7px;margin-top:15px;padding-top:14px;border-top:1px solid #e4ecf4;list-style:none}.journey-card li{color:#516a82;font-size:8px}.journey-card li i{margin-right:5px;color:#24a36d}.journey-thanks{display:grid;grid-template-columns:230px 1fr;gap:32px;margin-top:26px;padding:30px 34px;border:1px solid #d8e6f3;border-radius:23px;background:linear-gradient(135deg,#fff,#f0f7ff);box-shadow:0 16px 40px rgba(18,63,116,.08)}.journey-customer{display:flex;align-items:center;gap:12px}.journey-customer>span{width:52px;height:52px;display:grid;place-items:center;border-radius:50%;background:#1268bb;color:#fff;font-size:12px;font-weight:800;box-shadow:0 8px 20px rgba(18,104,187,.22)}.journey-customer strong{display:block;color:#173f69;font-size:12px}.journey-customer small{display:block;margin-top:4px;color:#7c8ea1;font-size:8px;line-height:1.45}.journey-thanks blockquote{margin:0;color:#294d72;font-size:14px;font-style:italic;line-height:1.8}.journey-thanks-meta{grid-column:2;display:flex;align-items:center;justify-content:space-between;padding-top:14px;border-top:1px solid #dce7f2;color:#73869a;font-size:8px}.journey-thanks-meta span{color:#d34f75;font-weight:750}.journey-thanks-meta i{margin-right:5px}
@media(max-width:760px){.journey-profile{grid-template-columns:1fr;gap:14px}.journey-profile>a{justify-self:start}.journey-nav{overflow-x:auto;display:flex;justify-content:flex-start;gap:20px;margin:0 0 22px;padding-bottom:6px}.journey-nav:before{display:none}.journey-nav button{flex:0 0 72px}.journey-track{grid-template-columns:repeat(5,82%)}.journey-photo{height:230px}.journey-card h3,.journey-card p{min-height:0}.journey-thanks{grid-template-columns:1fr;gap:20px;padding:24px 21px}.journey-thanks-meta{grid-column:auto}.journey-thanks blockquote{font-size:12px}}

/* Single-stage timeline detail panel */
.journey-stage{overflow:hidden;display:grid;grid-template-columns:1.08fr .92fr;min-height:480px;border:1px solid #d9e6f3;border-radius:24px;background:#fff;box-shadow:0 18px 44px rgba(18,63,116,.1)}.journey-stage-photo{position:relative;min-height:480px;overflow:hidden;background:#eaf2fb}.journey-stage-photo img{width:100%;height:100%;object-fit:cover;transition:opacity .22s ease,transform .45s ease}.journey-stage-photo>span{position:absolute;left:20px;bottom:20px;padding:9px 13px;border-radius:999px;background:rgba(12,61,111,.88);color:#fff;font-size:8px;font-weight:800;letter-spacing:.08em}.journey-stage-content{position:relative;display:flex;justify-content:center;flex-direction:column;padding:46px}.journey-stage-count{position:absolute;right:30px;top:26px;text-align:right}.journey-stage-count>span{display:block;color:#d7e6f5;font-size:46px;font-weight:800;line-height:1}.journey-stage-count small{color:#94a4b5;font-size:6px;letter-spacing:.09em}.journey-stage-content>small{color:#1370c7;font-size:8px;font-weight:800;letter-spacing:.1em}.journey-stage-content h3{max-width:480px;margin:10px 0 14px;color:#173f69;font-size:30px;line-height:1.25}.journey-stage-content>p{max-width:520px;color:#687d92;font-size:12px;line-height:1.75}.journey-stage-content ul{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:25px 0 0;list-style:none}.journey-stage-content li{padding:13px 14px;border-radius:12px;background:#eff6fd;color:#3f5d79;font-size:9px;font-weight:700}.journey-stage-content li i{margin-right:6px;color:#25a36e}.journey-stage-hint{display:flex;align-items:center;gap:7px;margin-top:24px;color:#8697a8;font-size:8px}.journey-stage.stage-change .journey-stage-photo img{animation:journeyImageIn .42s ease}.journey-stage.stage-change .journey-stage-content{animation:journeyContentIn .36s ease}@keyframes journeyImageIn{from{opacity:.35;transform:scale(1.025)}to{opacity:1;transform:scale(1)}}@keyframes journeyContentIn{from{opacity:.3;transform:translateY(8px)}to{opacity:1;transform:none}}
@media(max-width:760px){.journey-stage{grid-template-columns:1fr;min-height:0}.journey-stage-photo{min-height:300px;height:300px}.journey-stage-content{padding:30px 23px}.journey-stage-count{right:20px;top:22px}.journey-stage-count>span{font-size:38px}.journey-stage-content h3{padding-right:56px;font-size:23px}.journey-stage-content>p{font-size:11px}.journey-stage-content ul{grid-template-columns:1fr}.journey-stage-hint{margin-top:18px}}

/* Mobile header: menu replaces booking button */
@media(max-width:640px){.header-actions{margin-left:auto}.header-actions>.btn{display:none}.mobile-menu-toggle{width:42px;height:42px;border-radius:13px;font-size:18px}}

/* Softer circular visual for journey timeline */
.journey-stage{grid-template-columns:1fr 1fr;background:linear-gradient(135deg,#f2f8ff 0%,#fff 55%)}.journey-stage-photo{display:grid;place-items:center;min-height:500px;background:radial-gradient(circle at center,rgba(255,255,255,.95) 0 42%,transparent 42.5%),linear-gradient(145deg,#e5f2ff,#f7fbff)}.journey-stage-photo:before{content:"";position:absolute;width:min(84%,430px);aspect-ratio:1;border:1px solid rgba(18,104,187,.14);border-radius:50%;box-shadow:0 0 0 20px rgba(18,104,187,.035),0 0 0 42px rgba(18,104,187,.018)}.journey-stage-photo img{position:relative;z-index:1;width:min(76%,390px);height:auto;aspect-ratio:1;border:9px solid #fff;border-radius:50%;object-fit:cover;box-shadow:0 24px 55px rgba(18,63,116,.18)}.journey-stage-photo>span{left:50%;bottom:37px;z-index:2;transform:translateX(-50%);white-space:nowrap;box-shadow:0 9px 22px rgba(12,61,111,.2)}
@media(max-width:760px){.journey-stage{grid-template-columns:1fr}.journey-stage-photo{min-height:330px;height:330px}.journey-stage-photo:before{width:270px}.journey-stage-photo img{width:240px;border-width:7px}.journey-stage-photo>span{bottom:23px}}

/* FLOATING CHAT BUTTONS (DESKTOP & MOBILE) */
.floating-chat-group {
  position: fixed;
  right: 26px;
  bottom: 32px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.floating-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.floating-zalo {
  background: #0068FF;
}

.floating-zalo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: block;
}

.floating-messenger {
  background: linear-gradient(135deg, #0084FF 0%, #a832a8 100%);
  color: #ffffff !important;
  font-size: 28px;
}

.floating-tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(15, 32, 54, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.floating-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid rgba(15, 32, 54, 0.92);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 767px) {
  .floating-chat-group {
    right: 14px;
    bottom: 84px;
    gap: 10px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .floating-zalo img {
    width: 48px;
    height: 48px;
  }
  .floating-messenger {
    font-size: 24px;
  }
  .floating-tooltip {
    display: none;
  }
}

/* Five-star customer thank-you carousel */
.thanks-slider{margin-top:26px}.thanks-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:15px}.thanks-heading span{color:#1370c7;font-size:8px;font-weight:800;letter-spacing:.1em}.thanks-heading h3{margin-top:6px;font-size:23px}.thanks-controls{display:flex;gap:8px}.thanks-controls button{width:38px;height:38px;border:1px solid #d5e3f1;border-radius:50%;background:#fff;color:#164b80;cursor:pointer;box-shadow:0 7px 17px rgba(18,63,116,.08)}.thanks-viewport{overflow:hidden;border:1px solid #d8e6f3;border-radius:23px;background:linear-gradient(135deg,#fff,#f0f7ff);box-shadow:0 16px 40px rgba(18,63,116,.08)}.thanks-track{display:flex;transition:transform .58s cubic-bezier(.22,1,.36,1)}.thanks-slide{flex:0 0 100%;display:grid;grid-template-columns:230px 1fr;gap:32px;padding:30px 34px}.thanks-content{min-width:0}.thanks-stars{display:flex;gap:4px;margin-bottom:10px;color:#ffb800;font-size:14px}.thanks-content blockquote{margin:0;color:#294d72;font-size:14px;font-style:italic;line-height:1.8}.thanks-content footer{display:flex;align-items:center;justify-content:space-between;margin-top:20px;padding-top:14px;border-top:1px solid #dce7f2;color:#73869a;font-size:8px}.thanks-content footer span{color:#d34f75;font-weight:750}.thanks-content footer i{margin-right:5px}.thanks-dots{display:flex;justify-content:center;gap:7px;margin-top:13px}.thanks-dots button{width:7px;height:7px;padding:0;border:0;border-radius:50%;background:#c6d7e8;cursor:pointer;transition:.25s ease}.thanks-dots button.active{width:24px;border-radius:999px;background:#1268bb}
.thanks-slide .journey-customer{align-items:flex-start;justify-content:center;flex-direction:column;gap:12px}.thanks-slide .journey-customer>span{width:78px;height:78px;font-size:17px}.thanks-slide .journey-customer strong{font-size:14px}.thanks-slide .journey-customer small{margin-top:6px;font-size:9px}
@media(max-width:760px){.thanks-heading{align-items:flex-start}.thanks-heading h3{font-size:19px}.thanks-slide{grid-template-columns:1fr;gap:18px;padding:24px 21px}.thanks-content blockquote{font-size:12px}.thanks-controls button{width:34px;height:34px}.thanks-stars{font-size:13px}}

/* Customer messages styled as compact letter cards */
.thanks-heading,.thanks-viewport,.thanks-dots{max-width:1080px;margin-left:auto;margin-right:auto}.thanks-viewport{position:relative;border-radius:28px;background:linear-gradient(145deg,#fff 0%,#f7fbff 62%,#edf6ff 100%)}.thanks-viewport:before{content:"";position:absolute;right:0;top:0;z-index:2;width:54px;height:54px;background:linear-gradient(225deg,#e5f1fc 0 49%,transparent 50%);pointer-events:none}.thanks-slide{grid-template-columns:210px 1fr;align-items:stretch;min-height:300px;padding:38px 42px}.thanks-slide .journey-customer{padding-right:28px;border-right:1px dashed #c8dcec}.thanks-content{position:relative;display:flex;justify-content:center;flex-direction:column;padding:18px 22px 12px 54px}.thanks-content:before{content:"\201C";position:absolute;left:0;top:0;color:#c9e0f5;font-family:Georgia,serif;font-size:72px;font-weight:700;line-height:1}.thanks-content blockquote{font-size:15px;line-height:1.9}.thanks-stars{margin-bottom:13px}.thanks-content footer{margin-top:24px}
@media(max-width:760px){.thanks-heading,.thanks-viewport,.thanks-dots{max-width:100%}.thanks-viewport{border-radius:22px}.thanks-viewport:before{width:40px;height:40px}.thanks-slide{grid-template-columns:1fr;min-height:460px;padding:28px 24px}.thanks-slide .journey-customer{padding:0 0 20px;border-right:0;border-bottom:1px dashed #c8dcec}.thanks-content{padding:22px 0 0 30px}.thanks-content:before{left:-5px;top:10px;font-size:52px}.thanks-content blockquote{font-size:12px;line-height:1.8}.thanks-content footer{align-items:flex-start;flex-direction:column;gap:7px}}

/* Balanced proportions for the customer message card */
.thanks-slide{grid-template-columns:180px 1fr;min-height:250px;padding:28px 36px;gap:28px}.thanks-slide .journey-customer{align-self:center;align-items:center;width:100%;padding-right:24px;text-align:center}.thanks-slide .journey-customer>div{width:100%}.thanks-slide .journey-customer>span{width:70px;height:70px;font-size:15px}.thanks-content{align-self:center;padding:8px 12px 8px 46px}.thanks-content:before{top:-3px;font-size:58px}.thanks-content blockquote{font-size:14px;line-height:1.75}.thanks-content footer{margin-top:18px;padding-top:12px}
@media(max-width:760px){.thanks-slide{grid-template-columns:1fr;min-height:0;padding:24px 22px;gap:18px}.thanks-slide .journey-customer{align-self:stretch;padding:0 0 16px}.thanks-slide .journey-customer>span{width:64px;height:64px}.thanks-content{align-self:stretch;padding:16px 0 2px 30px}.thanks-content:before{top:7px;font-size:46px}.thanks-content blockquote{font-size:12px}.thanks-content footer{margin-top:16px}}

/* Auto-playing journey timeline */
.journey-nav b{position:relative}.journey-nav button.active b:after{content:"";position:absolute;inset:-8px;border:2px solid rgba(18,104,187,.18);border-top-color:#1268bb;border-right-color:#1268bb;border-radius:50%;animation:journeyProgressSpin 5.8s linear infinite}.journey-nav button.active b{animation:journeyNodePulse 1.8s ease-in-out infinite}.journey-stage.stage-change .journey-stage-photo:before{animation:journeyHaloIn .65s ease}.journey-stage.stage-change .journey-stage-count>span{animation:journeyNumberIn .45s cubic-bezier(.22,1,.36,1)}
@keyframes journeyProgressSpin{to{transform:rotate(360deg)}}@keyframes journeyNodePulse{0%,100%{box-shadow:0 7px 18px rgba(18,104,187,.25)}50%{box-shadow:0 7px 24px rgba(18,104,187,.46)}}@keyframes journeyHaloIn{from{opacity:.25;transform:scale(.92)}to{opacity:1;transform:scale(1)}}@keyframes journeyNumberIn{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:none}}
@media(prefers-reduced-motion:reduce){.journey-nav button.active b,.journey-nav button.active b:after,.journey-stage.stage-change .journey-stage-photo:before,.journey-stage.stage-change .journey-stage-count>span{animation:none}}

/* Keep hero copy synchronized with each visual slide */
.hero-content.hero-content-sync .hero-tag{animation:heroCopyIn .38s ease both}.hero-content.hero-content-sync .hero-title{animation:heroCopyIn .45s .04s ease both}.hero-content.hero-content-sync .hero-desc{animation:heroCopyIn .45s .08s ease both}.hero-content.hero-content-sync .hero-actions{animation:heroCopyIn .45s .12s ease both}@keyframes heroCopyIn{from{opacity:.2;transform:translateY(10px)}to{opacity:1;transform:none}}@media(prefers-reduced-motion:reduce){.hero-content.hero-content-sync .hero-tag,.hero-content.hero-content-sync .hero-title,.hero-content.hero-content-sync .hero-desc,.hero-content.hero-content-sync .hero-actions{animation:none}}


/* MOBILE CLEAN RESPONSIVE FIX (NO CLIPPING, NO HORIZONTAL SCROLL) */
html, body {
  overflow-x: hidden !important;
  position: relative;
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, 1200px);
    margin-inline: auto;
  }
  .hero-section {
    padding: 28px 0 40px;
    overflow: hidden;
  }
  .hero-title {
    font-size: clamp(23px, 6.5vw, 32px);
    line-height: 1.3;
    letter-spacing: normal;
  }
  .hero-desc {
    font-size: 14px;
    line-height: 1.65;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
  }
}



/* DISABLE ANY TRANSLATE SHIFT THAT PUSHES CONTENT OFF-SCREEN */
.reveal, .reveal-left, .reveal-right, .reveal-zoom {
  opacity: 1 !important;
  transform: none !important;
}
