@font-face {
  font-family: "UTM Avo";
  src:
    url("../font/UTM%20Avo.ttf") format("truetype"),
    url("../font/UTM Avo.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UTM Avo";
  src:
    url("../font/UTM%20AvoBold.ttf") format("truetype"),
    url("../font/UTM AvoBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UTM Avo";
  src:
    url("../font/UTM%20AvoItalic.ttf") format("truetype"),
    url("../font/UTM AvoItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "UTM Avo";
  src:
    url("../font/UTM%20AvoBold_Italic.ttf") format("truetype"),
    url("../font/UTM AvoBold_Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "UTM Cookies";
  src: url("../font/UTM-Cookies.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #ff1e7e;
  --primary-hover: #e0156d;
  --primary-light: #fff0f6;
  --secondary-color: #4a00e0;
  --secondary-hover: #3b00b3;
  --accent-color: #ff8a00;

  --text-color: #161c2c;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --bg-color: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;

  --border-color: #e2e8f0;
  --border-dark: #cbd5e1;

  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #3b82f6;

  --font-primary:
    "UTM Avo", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  --font-secondary: "UTM Cookies", cursive, sans-serif;

  --container-max-width: 1530px;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
  font-size: 100%;
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button,
[role="button"] {
  cursor: pointer;
}

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

p {
  overflow-wrap: break-word;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.text-primary {
  color: var(--primary-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.border-primary {
  border-color: var(--primary-color) !important;
}

.text-main {
  color: var(--text-color) !important;
}
.text-muted {
  color: var(--text-muted) !important;
}

.font-primary {
  font-family: var(--font-primary) !important;
}
.font-secondary {
  font-family: var(--font-secondary) !important;
}
.font-avo {
  font-family: "UTM Avo", sans-serif !important;
}
.font-cookies {
  font-family: "UTM Cookies", cursive !important;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--primary-color);
  border-radius: var(--radius-md);
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   Custom Native Scroll Reveal Engine (Silk-Smooth Gentle Transitions)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1.3s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

[data-reveal="fade-up"] {
  transform: translate3d(0, 36px, 0);
}

[data-reveal="fade-down"] {
  transform: translate3d(0, -36px, 0);
}

[data-reveal="fade-left"] {
  transform: translate3d(40px, 0, 0);
}

[data-reveal="fade-right"] {
  transform: translate3d(-40px, 0, 0);
}

[data-reveal="zoom-in"] {
  transform: scale3d(0.95, 0.95, 0.95);
}

[data-reveal="fade-in"] {
  transform: none;
}

/* Revealed State */
[data-reveal].is-revealed {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) !important;
}

.container {
  width: 100%;
  max-width: var(--container-max-width, 1530px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ==========================================================================
   Global Component: Reusable Fluid Section Padding (.section)
   ========================================================================== */
.section {
  padding-top: clamp(40px, 5.5556vw, 80px);
  padding-bottom: clamp(40px, 5.5556vw, 80px);
}

/* ==========================================================================
   Global Component: Reusable Section Header & Title (.section-header, .section-title)
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-title {
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-secondary, "UTM Cookies", cursive);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.section-subtitle {
  color: #596273;
  font-family: var(--font-primary, "UTM Avo", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   Global Component: Reusable Navigation Buttons (Prev / Next)
   ========================================================================== */
.btn-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.25s ease;
  user-select: none;
  flex-shrink: 0;
  text-decoration: none;
}

.btn-nav svg {
  width: 7px;
  height: 11px;
  display: block;
  flex-shrink: 0;
}

.btn-nav--prev {
  background-color: #ffffff;
  color: #24313d;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #ece8e4;
}

.btn-nav--prev:hover {
  background-color: #f8fafc;
  transform: scale(1.05);
}

.btn-nav--next {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-nav--next:hover {
  background-color: var(--primary-hover, #e0156d);
  transform: scale(1.05);
}

/* ==========================================================================
   Global Component: Reusable Main Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 28px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-normal);
  line-height: 1;
}

.btn--primary {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0px 6px 16px rgba(255, 30, 126, 0.25);
  transition: all 0.3s;
}

.btn--primary:hover {
  background-color: var(--primary-hover, #e0156d);
  border-color: var(--primary-hover, #e0156d);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0px 8px 24px rgba(255, 30, 126, 0.35);
  transition: all 0.3s;
}

.btn--white {
  background-color: #ffffff;
  color: var(--primary-color);
  border-color: #ffffff;
  transition: all 0.3s;
}

.btn--white:hover {
  transform: translateY(-2px);
  transition: all 0.3s;
}

.btn--outline {
  background-color: transparent;
  color: #596273;
  border-color: #d9d9d9;
  transition: all 0.3s;
}

.btn--outline:hover {
  border-color: var(--primary-color);
  color: #fff;
  transition: all 0.3s;
}

.section-header {
  text-align: center;
  margin-bottom: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-header--left {
  text-align: left;
  align-items: flex-start;
}

.section-title {
  color: var(--primary-color);
  font-family: var(--font-secondary, "UTM Cookies", cursive);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.3;
  word-wrap: break-word;
  margin: 0;
}

.section-title--left {
  text-align: left;
}

.section-title--center {
  text-align: center;
}

.section-title-highlight {
  color: var(--primary-color);
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: 18px;
  color: var(--text-color, #161c2c);
  line-height: 1.6;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
  will-change: background-color, box-shadow;
}

.home .header {
  position: fixed;
  background-color: transparent;
  box-shadow: none;
}

.admin-bar .header {
  top: 32px;
}

.header--is-sticky {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.header--is-sticky .header__container {
  padding: 10px 15px;
}

.header--is-sticky .header__logo-img {
  height: 48px;
}

.header__container {
  width: 100%;
  max-width: var(--container-max-width, 1530px);
  margin: 0 auto;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: padding 0.3s ease;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: max-height 0.3s ease;
}

.header__logo-text {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.header__nav-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header__nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
}

.header__nav-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.header__nav-link:hover,
.header__nav-link--active,
.header__nav-item.current-menu-item > .header__nav-link {
  color: var(--primary-color);
}

.header__nav-link--active::after,
.header__nav-item.current-menu-item > .header__nav-link::after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 1px;
  margin-top: 4px;
}

.header__nav-item--has-children {
  position: relative;
}

.header__nav-chevron {
  margin-left: 6px;
  transition: transform 0.25s ease;
  stroke: currentColor;
}

.header__nav-item--has-children:hover .header__nav-chevron {
  transform: rotate(180deg);
}

.header__submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 250px;
  background: #ffffff;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  outline: 1px #f0f0f0 solid;
  outline-offset: -1px;
  overflow: hidden;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 120;
  list-style: none;
  margin: 0;
}

.header__nav-item--has-children:hover > .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__submenu-item {
  border-bottom: 1px #f0f0f0 solid;
}

.header__submenu-item:last-child {
  border-bottom: none;
}

.header__submenu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: #161c2c;
  font-family: "UTM Avo", var(--font-primary), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.header__submenu-link:hover,
.header__submenu-link--active {
  color: #ff1e7e;
  background-color: #fff8fb;
}

.header__hotline {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__hotline-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.header__hotline-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  color: #ffffff;
}

.header__hotline-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__hotline-number {
  color: #ffffff;
  line-height: 1;
}

.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-color);
}

.header__toggle-icon {
  width: 28px;
  height: 28px;
  stroke: var(--primary-color);
}

/* ==========================================================================
   Fullscreen Mobile Navigation Drawer (Slide Left to Right)
   ========================================================================== */
.header__mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #fff0f6 0%, #fff9fc 100%);
  z-index: 99999;
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    visibility 0.4s;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
}

.header__mobile-menu.header__mobile-menu--open {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Decorative Mobile Menu Sakura Flowers */
.header__mobile-flowers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.header__mobile-flower {
  position: absolute;
  line-height: 1;
  user-select: none;
  filter: drop-shadow(0 2px 6px rgba(255, 30, 126, 0.15));
  animation: floatSakura 4s ease-in-out infinite alternate;
}

.header__mobile-flower--1 {
  top: 45px;
  right: 70px;
  font-size: 34px;
  opacity: 0.75;
  animation-delay: 0s;
}

.header__mobile-flower--2 {
  top: 240px;
  left: -8px;
  font-size: 38px;
  opacity: 0.45;
  transform: rotate(-15deg);
  animation-delay: 1s;
}

.header__mobile-flower--3 {
  top: 410px;
  right: 15px;
  font-size: 32px;
  opacity: 0.6;
  transform: rotate(20deg);
  animation-delay: 2s;
}

.header__mobile-flower--4 {
  bottom: 110px;
  left: 24px;
  font-size: 26px;
  opacity: 0.5;
  animation-delay: 0.5s;
}

.header__mobile-flower--5 {
  top: 130px;
  right: 25px;
  font-size: 22px;
  opacity: 0.5;
  animation-delay: 1.5s;
}

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

.header__mobile-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  flex-shrink: 0;
}

.header__mobile-logo .header__logo-img {
  max-height: 40px;
  width: auto;
}

.header__mobile-close {
  background: transparent;
  border: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-color, #161c2c);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.header__mobile-close:hover {
  transform: rotate(90deg);
}

.header__mobile-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
}

.header__mobile-content {
  position: relative;
  z-index: 2;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
}

.header__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile Menu Staggered Fade Up Animation */
.header__mobile-list > li,
.header__mobile-footer {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.header__mobile-menu.header__mobile-menu--open .header__mobile-list > li,
.header__mobile-menu.header__mobile-menu--open .header__mobile-footer {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

.header__mobile-menu.header__mobile-menu--open
  .header__mobile-list
  > li:nth-child(1) {
  transition-delay: 0.15s;
}
.header__mobile-menu.header__mobile-menu--open
  .header__mobile-list
  > li:nth-child(2) {
  transition-delay: 0.22s;
}
.header__mobile-menu.header__mobile-menu--open
  .header__mobile-list
  > li:nth-child(3) {
  transition-delay: 0.29s;
}
.header__mobile-menu.header__mobile-menu--open
  .header__mobile-list
  > li:nth-child(4) {
  transition-delay: 0.36s;
}
.header__mobile-menu.header__mobile-menu--open
  .header__mobile-list
  > li:nth-child(5) {
  transition-delay: 0.43s;
}
.header__mobile-menu.header__mobile-menu--open
  .header__mobile-list
  > li:nth-child(6) {
  transition-delay: 0.5s;
}
.header__mobile-menu.header__mobile-menu--open
  .header__mobile-list
  > li:nth-child(7) {
  transition-delay: 0.57s;
}
.header__mobile-menu.header__mobile-menu--open
  .header__mobile-list
  > li:nth-child(8) {
  transition-delay: 0.64s;
}

.header__mobile-menu.header__mobile-menu--open .header__mobile-footer {
  transition-delay: 0.5s;
}

.header__mobile-link {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color, #161c2c);
  text-decoration: none;
  display: block;
  padding: 12px 18px;
  border-radius: 12px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    padding-left 0.25s ease;
}

.header__mobile-link:hover,
.header__mobile-link--active {
  color: var(--primary-color);
  background-color: #fff0f5;
  padding-left: 24px;
}

/* Mobile Submenu & BEM Nav Walker Overrides inside Mobile Drawer */
.header__mobile-menu .header__nav-list,
.header__mobile-menu .header__mobile-list {
  display: flex;
  flex-direction: column;
  align-items: stretch !important;
  text-align: left !important;
  gap: 8px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__mobile-menu .header__nav-item,
.header__mobile-menu .header__mobile-item {
  width: 100%;
  position: relative;
  text-align: left !important;
}

.header__mobile-menu .header__nav-link,
.header__mobile-menu .header__mobile-link {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color, #161c2c);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left !important;
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    padding-left 0.25s ease;
}

.header__mobile-menu .header__nav-text {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  text-align: left !important;
}

.header__mobile-menu .header__nav-link::after {
  display: none !important;
}

.header__mobile-menu .header__nav-link:hover,
.header__mobile-menu .header__nav-link--active,
.header__mobile-menu .header__mobile-link:hover,
.header__mobile-menu .header__mobile-link--active {
  color: var(--primary-color, #ff1e7e);
  background-color: #fff0f5;
  padding-left: 22px;
}

.header__mobile-menu .header__nav-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.header__mobile-menu
  .header__nav-item.is-submenu-open
  > .header__nav-link
  .header__nav-chevron {
  transform: rotate(180deg);
}

/* Submenu inside Mobile Menu Drawer - Reset Desktop Absolute Floating & Hidden By Default */
.header__mobile-menu .header__submenu,
.header__mobile-menu .header__mobile-submenu {
  display: none; /* Hidden by default until clicked */
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  min-width: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  border-left: 2px solid #f3d6e2 !important;
  border-radius: 0 !important;
  padding: 4px 0 4px 12px !important;
  margin: 6px 0 6px 12px !important;
  flex-direction: column !important;
  gap: 4px !important;
  list-style: none !important;
  text-align: left !important;
}

.header__mobile-menu .header__submenu-item,
.header__mobile-menu .header__mobile-subitem {
  border-bottom: none !important;
  width: 100%;
  text-align: left !important;
}

.header__mobile-menu .header__submenu-link,
.header__mobile-menu .header__mobile-sublink {
  font-family: "UTM Avo", var(--font-primary), sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #161c2c;
  text-decoration: none;
  display: block;
  text-align: left !important;
  padding: 8px 14px;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.header__mobile-menu .header__submenu-link:hover,
.header__mobile-menu .header__submenu-link--active,
.header__mobile-menu .header__mobile-sublink:hover,
.header__mobile-menu .header__mobile-sublink--active {
  color: var(--primary-color, #ff1e7e);
  background-color: #fff0f5;
}

.header__mobile-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.header__mobile-hotline {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

body.menu-open {
  overflow: hidden !important;
}

.banner {
  position: relative;
  min-height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.banner__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.banner__content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  z-index: 2;
}

.banner__title {
  font-family: var(--font-secondary, "UTM Cookies", cursive);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-color, #161c2c);
  margin: 0;
}

.banner__title-highlight {
  color: var(--primary-color);
  display: block;
}

.banner__desc {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: rgba(38, 38, 38, 0.8);
  margin: 0;
}

.banner__actions {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.banner__btn {
  height: 46px;
  padding: 0 24px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0px 8px 24px rgba(255, 79, 135, 0.25);
  transition: all var(--transition-fast);
}

.banner__btn:hover {
  background-color: var(--primary-hover, #e0156d);
  transform: translateY(-2px);
  box-shadow: 0px 12px 28px rgba(255, 79, 135, 0.35);
}

.banner__media {
  position: relative;
  z-index: 2;
}

.banner__img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  animation: bannerFloat 6s ease-in-out infinite;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  width: 477px;
  height: 564px;
  aspect-ratio: 159/188;
}

@keyframes bannerFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.6deg);
  }
}

.banner__stats {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid #ece8e4;
  box-shadow: 0px 10px 24px -10px rgba(0, 0, 0, 0.05);
  padding: 24px 30px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.banner__stats-item {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner__stats-item:hover {
  transform: translateY(-4px);
}

.banner__stats-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner__stats-item:hover .banner__stats-icon {
  transform: scale(1.12) rotate(-5deg);
}

.banner__stats-icon-img {
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.banner__stats-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.banner__stats-number {
  font-family: var(--font-secondary, "UTM Cookies", cursive);
  font-size: 26px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.1;
}

.banner__stats-label {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color, #161c2c);
  line-height: 1.3;
}

.banner__stats-label span {
  color: var(--primary-color);
}

.phuong-cham {
  background: var(
    --Linear-2,
    linear-gradient(296deg, #ffd6e7 4.3%, #fffaf8 83.01%)
  );
  width: 100%;
  overflow-x: clip;
}

.phuong-cham__header {
  text-align: center;
  margin-bottom: 40px;
}

.phuong-cham__title {
  color: var(--primary-color);
  font-size: 44px;
  font-weight: 400;
  text-align: center;
}

.phuong-cham__slider-wrap {
  position: relative;
  width: 100%;
}

.phuong-cham__slider {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 20px;
  margin-top: 0;
  overflow: hidden;
}

.phuong-cham__slider .swiper-slide {
  height: auto;
  display: flex;
}

.phuong-cham__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 10;
  transition: all var(--transition-fast);
}

.phuong-cham__nav-btn--prev {
  left: -80px;
  background-color: #ffffff;
  color: #24313d;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #ece8e4;
}

.phuong-cham__nav-btn--prev:hover {
  background-color: #f8fafc;
  transform: translateY(-50%) scale(1.05);
}

.phuong-cham__nav-btn--next {
  right: -80px;
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.phuong-cham__nav-btn--next:hover {
  background-color: var(--primary-hover, #e0156d);
  transform: translateY(-50%) scale(1.05);
}

.phuong-cham__card {
  width: 100%;
  margin-top: 50px;
  padding: 24px 20px 20px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.phuong-cham__card:hover .phuong-cham__card-img {
  transform: scale(1.12);
  transition: all 0.3s;
}

.phuong-cham__card:hover .phuong-cham__card-title {
  color: var(--primary-color);
  transition: all 0.3s;
}

.phuong-cham__card--yellow {
  background-color: #fffbf0;
}

.phuong-cham__card--green {
  background-color: #f1f9f3;
}

.phuong-cham__card--blue {
  background-color: #f0f5fe;
}

.phuong-cham__card-header {
  position: relative;
  padding-top: 20px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phuong-cham__badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 5px solid #ffffff;
  outline-offset: -5px;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.06);
}

.phuong-cham__card--yellow .phuong-cham__badge {
  background-color: #fbbc05;
  box-shadow: 0px 6px 16px #fffbf0;
}

.phuong-cham__card--green .phuong-cham__badge {
  background-color: #34a853;
  box-shadow: 0px 6px 16px #f1f9f3;
}

.phuong-cham__card--blue .phuong-cham__badge {
  background-color: #4285f4;
  box-shadow: 0px 6px 16px #f0f5fe;
}

.phuong-cham__badge-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.phuong-cham__card-title {
  color: #24313d;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.phuong-cham__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.phuong-cham__card-desc {
  color: #161c2c;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
}

.phuong-cham__card-media {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.phuong-cham__card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: all 0.3s;
}

.target-goals {
  width: 100%;
  position: relative;
  background: url("../images/bg-target.png") no-repeat center top/cover;
  background-size: cover;
}

.target-tree {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.target-tree img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.target-goals__subtitle {
  max-width: 800px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  color: #161c2c;
}

.target-goals__highlight {
  color: var(--primary-color);
  font-weight: 700;
}

.target-goals__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.target-goals__tree-wrap {
  width: 864px;
  height: 628px;
  position: relative;
  flex-shrink: 0;
}

.target-goals__card {
  position: relative;
  padding: 24px 16px 14px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  min-height: 150px;
}

.target-goals__card--pos-tri-tue {
  position: absolute;
  top: 55px;
  left: 280px;
  width: 258px;
  height: 237px;
  background: url("../images/apple.png") no-repeat center/contain !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 50px 35px 34px;
  justify-content: end;
}

.target-goals__card--pos-tri-tue .target-goals__badge {
  top: 58px;
  width: 36px;
  height: 36px;
}

.target-goals__card--pos-tri-tue .target-goals__badge-icon {
  width: 20px;
  height: 20px;
}

.target-goals__card--pos-dao-duc {
  position: absolute;
  top: 402px;
  left: 0;
  width: 232px;
}

.target-goals__card--pos-dinh-duong {
  position: absolute;
  top: 479px;
  left: 292px;
  width: 280px;
}

.target-goals__card--pos-the-chat {
  position: absolute;
  top: 400px;
  left: 632px;
  width: 232px;
}

.target-goals__card:hover,
.target-goals__card--active {
  transform: translateY(-4px);
}

.target-goals__card--blue {
  background-color: #f0f5fe;
  box-shadow: 0px 4px 16px rgba(66, 133, 244, 0.15);
}

.target-goals__card--pink {
  background-color: #fff0f5;
  box-shadow: 0px 4px 16px rgba(255, 30, 126, 0.15);
}

.target-goals__card--green {
  background-color: #f1f9f3;
  box-shadow: 0px 4px 16px rgba(52, 168, 83, 0.15);
}

.target-goals__card--yellow {
  background-color: #fffbf0;
  box-shadow: 0px 4px 16px rgba(251, 188, 5, 0.15);
}

.target-goals__badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}

.target-goals__card--blue .target-goals__badge {
  background-color: #4285f4;
}

.target-goals__card--pink .target-goals__badge {
  background-color: var(--primary-color);
}

.target-goals__card--green .target-goals__badge {
  background-color: #34a853;
}

.target-goals__card--yellow .target-goals__badge {
  background-color: #fbbc05;
}

.target-goals__badge-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.target-goals__card-title {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.target-goals__card--blue .target-goals__card-title {
  color: #4285f4;
}

.target-goals__card--pink .target-goals__card-title {
  color: var(--primary-color);
}

.target-goals__card--green .target-goals__card-title {
  color: #34a853;
}

.target-goals__card--yellow .target-goals__card-title {
  color: #e5a800;
}

.target-goals__card-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
}

.target-goals__card--pink .target-goals__card-divider {
  background: rgba(255, 30, 126, 0.19);
}

.target-goals__card--green .target-goals__card-divider {
  background: rgba(52, 168, 83, 0.19);
}

.target-goals__card--yellow .target-goals__card-divider {
  background: rgba(251, 188, 5, 0.19);
}

.target-goals__card--blue .target-goals__card-divider {
  background: rgba(66, 133, 244, 0.19);
}

.target-goals__card-desc {
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #333333;
}

.target-goals__detail {
  flex: 1;
  max-width: 620px;
}

.target-goals__detail-box {
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 2px 8px 24px rgba(22, 28, 44, 0.05);
}

.target-goals__detail-box--white {
  background-color: #ffffff;
  color: var(--primary-color);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.06);
}

.target-goals__detail-box--white .target-goals__detail-title {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.target-goals__detail-box--white .target-goals__detail-sub {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.target-goals__detail-intro-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.target-goals__detail-paragraph {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.target-goals__detail-box--blue {
  background-color: #4285f4;
  color: #ffffff;
}

.target-goals__detail-box--pink {
  background-color: var(--primary-color);
  color: #ffffff;
}

.target-goals__detail-box--green {
  background-color: #34a853;
  color: #ffffff;
}

.target-goals__detail-box--yellow {
  background-color: #e5a800;
  color: #ffffff;
}

.target-goals__detail-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  color: #ffffff;
}

.target-goals__detail-sub {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.target-goals__detail-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.target-goals__detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.target-goals__detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}

.target-goals__detail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
  flex-shrink: 0;
}

.footer {
  width: 100%;
  margin-top: auto;
}

.footer__wrapper {
  background: linear-gradient(
    180deg,
    rgba(255, 133, 185, 0.75) 0%,
    rgba(255, 30, 126, 0.85) 100%
  );
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-top: 3px solid var(--primary-color);
  padding-top: 40px;
  padding-bottom: 20px;
  color: #ffffff;
  overflow: hidden;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 24px;
}

.footer__brand {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 100%;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer__logo-text {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.footer__slogan {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast);
}

.footer__social-item:hover {
  transform: translateY(-2px);
  background-color: var(--primary-hover, #e0156d);
  color: #ffffff;
}

.footer__nav-group {
  flex: 1 1 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

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

.footer__col-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.footer__col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col-link {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color, #161c2c);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.footer__col-link:hover {
  color: #ffffff;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 30, 126, 0.3);
  margin-bottom: 16px;
}

.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer__copyright {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Sakura Kids - Outstanding Values Section Base Styles (.sakura-values)
   ========================================================================== */
.sakura-values {
  background: linear-gradient(
    296deg,
    rgba(255, 214, 231, 0.5) 4.3%,
    rgba(255, 250, 248, 0.5) 83.01%
  );
  position: relative;
  width: 100%;
}

.sakura-values__wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.sakura-values__header {
  width: 100%;
  text-align: center;
}

.sakura-values__title {
  color: var(--primary-color);
  font-size: 44px;
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.2;
  word-wrap: break-word;
  margin: 0;
}

.sakura-values__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

.sakura-values__item {
  width: 100%;
  position: relative;
  z-index: 1;
}

.sakura-values__row {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Watermark Text (THÂN, TÂM, TRÍ) inside Content Card */
.sakura-values__watermark {
  position: absolute;
  bottom: 40px;
  font-size: 150px;
  font-weight: 700;
  font-family: var(--font-primary);
  opacity: 0.5;
  line-height: 0.8;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  user-select: none;
}

.sakura-values__item--image-left .sakura-values__watermark {
  right: 20px;
  left: auto;
  color: #ffb5d4;
}

.sakura-values__item--image-right .sakura-values__watermark {
  left: 20px;
  right: auto;
  color: rgba(255, 181, 212, 0.7);
}

/* Image Media Carousel Container */
.sakura-values__media {
  width: 620px;
  max-width: 50%;
  flex-shrink: 0;
  min-height: 380px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
}

.sakura-values__carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.sakura-values__slide {
  width: 100%;
  height: 100%;
}

.sakura-values__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation Buttons */
.sakura-values__nav {
  position: absolute;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 10;
}

.sakura-values__nav--bottom-right {
  right: 16px;
}

.sakura-values__nav--bottom-left {
  left: 16px;
}

.sakura-values__nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  line-height: 1;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.25s ease;
  user-select: none;
}

.sakura-values__nav-btn svg {
  width: 8px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.sakura-values__nav-btn--prev {
  background: #ffffff;
  color: #24313d;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #ece8e4;
}

.sakura-values__nav-btn--prev:hover {
  background: #f8fafc;
  transform: scale(1.05);
}

.sakura-values__nav-btn--next {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.sakura-values__nav-btn--next:hover {
  background: #e0156d;
  transform: scale(1.05);
}

/* Content Card */
.sakura-values__content-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.sakura-values__card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: #fbd7e3;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  border: 1px solid #ece8e4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: 100%;
  box-sizing: border-box;
}

.sakura-values__card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sakura-values__sub-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sakura-values__sub-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sakura-values__sub-tag {
  color: var(--primary-color);
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  word-wrap: break-word;
}

.sakura-values__sub-title {
  color: #161c2c;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 700;
  word-wrap: break-word;
  margin: 0;
}

.sakura-values__sub-desc {
  color: #161c2c;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin: 0;
}

/* Right-aligned content card (for TÂM block) */
.sakura-values__card--align-right .sakura-values__sub-header {
  justify-content: flex-end;
}

.sakura-values__card--align-right .sakura-values__sub-title,
.sakura-values__card--align-right .sakura-values__sub-desc {
  text-align: right;
}

/* ==========================================================================
   Sakura Experience Section (CTA Section)
   ========================================================================== */
.sakura-experience {
  width: 100%;
  position: relative;
  background-color: var(--primary-color);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.sakura-experience__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -50px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 120px 120px 120px rgba(255, 255, 255, 0.15);
  filter: blur(60px);
  pointer-events: none;
}

.sakura-experience__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.sakura-experience__title {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
}

.sakura-experience__desc {
  color: #ffffff;
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  max-width: 800px;
  word-wrap: break-word;
}

.sakura-experience__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.sakura-experience__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: #ffffff;
  color: var(--primary-color);
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.sakura-experience__btn:hover {
  transform: translateY(-2px);
}

.sakura-experience__btn-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.sakura-experience__btn:hover .sakura-experience__btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   Sakura News & Events Section
   ========================================================================== */
.sakura-news {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #fffaf8 0%, #ffe6f0 100%);
}

.sakura-news__header {
  text-align: center;
  margin-bottom: 40px;
}

.sakura-news__title {
  color: var(--primary-color);
}

.sakura-news__slider-wrap {
  position: relative;
  width: 100%;
}

.sakura-news__slider {
  width: 100%;
  overflow: hidden;
}

.sakura-news__card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.sakura-news__card:hover {
}

.sakura-news__card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.sakura-news__card-media {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}

.sakura-news__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
  transition: all 0.3s;
}

.sakura-news__card:hover .sakura-news__card-img {
  transform: scale(1.04);
  transition: all 0.3s;
}

.sakura-news__card-body {
  padding: 16px 16px 20px;
}

.sakura-news__card-title {
  color: #24313d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  transition: color var(--transition-fast);
}

.sakura-news__card:hover .sakura-news__card-title {
  color: var(--primary-color);
}

.sakura-news__nav-btn {
  position: absolute;
  top: 150px;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 10;
  transition: all var(--transition-fast);
}

.sakura-news__nav-btn--prev {
  left: -80px;
  background-color: #ffffff;
  color: #24313d;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #ece8e4;
}

.sakura-news__nav-btn--prev:hover {
  background-color: #f8fafc;
  transform: translateY(-50%) scale(1.05);
}

.sakura-news__nav-btn--next {
  right: -80px;
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

.sakura-news__nav-btn--next:hover {
  background-color: var(--primary-hover, #e0156d);
  transform: translateY(-50%) scale(1.05);
}

/* ==========================================================================
   Sakura System Section (Campuses)
   ========================================================================== */
.sakura-system {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #ffe6f0 0%, #ffd6e7 100%);
  overflow-x: clip;
  overflow-y: visible;
}

.sakura-system__inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.sakura-system__mascot {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  object-fit: contain;
}

.sakura-system__mascot--left {
  width: 246px;
  height: 246px;
  left: 0;
  top: -20px;
  animation: bannerFloat 6s ease-in-out infinite;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.sakura-system__mascot--right {
  width: 220px;
  height: 220px;
  right: -40px;
  bottom: -30px;
  animation: bannerFloat 6s ease-in-out infinite;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.sakura-system__header {
  text-align: center;
}

.sakura-system__title {
  color: var(--primary-color);
}

.sakura-system__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sakura-system__tab-btn {
  height: 50px;
  padding: 0 28px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  background-color: transparent;
  color: #596273;
  border: 1.5px solid #d9d9d9;
  outline: none;
}

.sakura-system__tab-btn--active {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0px 6px 16px rgba(255, 30, 126, 0.25);
}

.sakura-system__tab-btn:hover:not(.sakura-system__tab-btn--active) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.sakura-system__content {
  width: 100%;
}

.sakura-system__grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.sakura-system__grid--active {
  display: grid;
}

.sakura-system__card {
  background-color: var(--primary-color);
  border-radius: 20px;
  border-left: 4px solid #ffffff;
  padding: 18px 18px 18px 20px;
  box-shadow: 0px 10px 24px -8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #ffffff;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  transition: all 0.3s;
}

.sakura-system__card:hover {
  transform: translateY(-3px);
  transition: all 0.3s;
}

.sakura-system__card-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.sakura-system__card-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sakura-system__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  color: #ffffff;
}

.sakura-system__card-text {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.45;
}

.sakura-system__actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.sakura-system__more-btn {
  height: 50px;
  padding: 0 32px;
  border-radius: 25px;
  background-color: #ffffff;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  border: 1.5px solid var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0px 6px 16px -8px rgba(0, 0, 0, 0.04);
}

.sakura-system__more-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0px 8px 24px rgba(255, 30, 126, 0.3);
}

/* ==========================================================================
   Floating Action Buttons (Zalo & Back to Top)
   ========================================================================== */
.floating-widgets {
  position: fixed;
  right: 24px;
  bottom: 60px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.floating-widgets__item {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-widgets__item:hover {
  transform: translateY(-3px) scale(1.06);
}

.floating-widgets__item:active {
  transform: translateY(0) scale(0.96);
}

.floating-widgets__item--zalo {
  background-color: #0378e0;
  box-shadow: 0px 4px 12px rgba(2.55, 119.85, 224.4, 0.35);
  color: #ffffff;
}

.floating-widgets__item--zalo:hover {
  box-shadow: 0px 6px 16px rgba(3, 120, 224, 0.5);
}

.floating-widgets__label {
  font-family: var(--font-primary, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.floating-widgets__item--top {
  background-color: #ff1e7e;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition:
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-widgets__item--top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-widgets__item--top.is-visible:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0px 6px 16px rgba(255, 30, 126, 0.45);
}

.floating-widgets__icon-top {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

/* ==========================================================================
   Archive Page Base Styles & Mobile Responsiveness
   ========================================================================== */
.archive-hero {
  position: relative;
  height: 320px;
  background: linear-gradient(180deg, #fff0f6 0%, #fff9fc 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.archive-hero__bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.archive-hero__icon {
  position: absolute;
  font-family: var(--font-secondary, "UTM Cookies", cursive);
  opacity: 0.15;
}

.archive-hero__icon--1 {
  left: 120px;
  top: 40px;
  transform: rotate(15deg);
  font-size: 80px;
}

.archive-hero__icon--2 {
  right: 120px;
  top: 160px;
  transform: rotate(-25deg);
  font-size: 60px;
  opacity: 0.12;
}

.archive-hero__icon--3 {
  left: 50%;
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
  font-size: 40px;
  opacity: 0.1;
}

.archive-hero__title {
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-secondary, "UTM Cookies", cursive);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.archive-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  flex-wrap: wrap;
}

.archive-hero__breadcrumb-link {
  color: #596273;
  text-decoration: none;
}

.archive-hero__breadcrumb-sep {
  color: #596273;
}

.archive-hero__breadcrumb-current {
  color: var(--primary-color, #ff1e7e);
}

.archive-featured__card {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 16px 32px -8px rgba(0, 0, 0, 0.03);
  border-radius: 32px;
  border: 1px solid #ece8e4;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.archive-featured__media {
  width: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.archive-featured__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.archive-featured__card:hover .archive-featured__img {
  transform: scale(1.05);
}

.archive-featured__body {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.archive-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.archive-featured__badge {
  padding: 6px 12px;
  background: rgba(255, 30, 126, 0.11);
  border-radius: 12px;
  color: var(--primary-color, #ff1e7e);
  font-size: 14px;
  font-weight: 700;
}

.archive-featured__date {
  color: #596273;
  font-size: 14px;
}

.archive-featured__title {
  font-size: 32px;
  font-weight: 700;
  color: #161c2c;
  line-height: 1.35;
}

.archive-featured__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.archive-featured__title a:hover {
  color: var(--primary-color, #ff1e7e);
}

.archive-featured__desc {
  color: #596273;
  font-size: 16px;
  line-height: 24px;
}

.archive-featured__btn {
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid var(--primary-color, #ff1e7e);
  color: var(--primary-color, #ff1e7e);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.archive-featured__btn:hover {
  background: var(--primary-color, #ff1e7e);
  color: #ffffff;
}

.archive-categories {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 48px;
}

.archive-categories__item {
  height: 50px;
  padding: 12px 28px;
  border-radius: 25px;
  background: #ffffff;
  border: 1.5px solid #ece8e4;
  color: #596273;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.archive-categories__item:hover,
.archive-categories__item--active {
  background: var(--primary-color, #ff1e7e);
  border-color: var(--primary-color, #ff1e7e);
  color: #ffffff;
}

.archive-grid-section {
  margin-bottom: 48px;
}

.archive-grid-section__title {
  text-align: center;
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-secondary, "UTM Cookies", cursive);
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 48px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.archive-card {
  background: #ffffff;
  box-shadow: 0px 10px 24px -10px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  border: 1px solid #fbd7e3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.archive-card__media {
  width: 100%;
  overflow: hidden;
}

.archive-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.archive-card:hover .archive-card__img {
  transform: scale(1.06);
}

.archive-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
}

.archive-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #161c2c;
  line-height: 1.35;
}

.archive-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.archive-card__title a:hover {
  color: var(--primary-color, #ff1e7e);
}

.archive-card__desc {
  color: #596273;
  font-size: 16px;
  line-height: 24px;
  flex: 1;
}

.archive-card__action {
  margin-top: auto;
}

.archive-card__link {
  color: var(--primary-color, #ff1e7e);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.25s ease;
}

.archive-card__link:hover {
  gap: 14px;
}

.archive-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.archive-pagination .nav-links,
.archive-pagination__list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.archive-pagination .page-numbers {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #ffffff;
  border: 1.5px solid #ece8e4;
  color: #596273;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--primary-color, #ff1e7e);
  border-color: var(--primary-color, #ff1e7e);
  color: #ffffff;
}

.archive-pagination .page-numbers.dots {
  border: none;
  background: transparent;
}

/* ==========================================================================
   Single Post Detail Page (.single-post)
   ========================================================================== */
.single.single-post {
  padding: 0;
}
.single-post {
  padding: 80px 0;
  background-color: #ffffff;
}

.single-post__layout {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
}

.single-post__main {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Post Meta Bar */
.single-post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.single-post__category {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--primary-color, #ff1e7e);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.single-post__category:hover {
  opacity: 0.9;
  color: #ffffff;
}

.single-post__date {
  color: #596273;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 24px;
}

.single-post__meta-sep {
  color: #596273;
  font-size: 14px;
}

.single-post__author {
  color: #596273;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 700;
}

/* Post Title & Lead */
.single-post__title {
  color: #161c2c;
  font-size: 32px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 42px;
  margin: 0;
}

.single-post__lead {
  color: #161c2c;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.6;
}

/* Rich Post Content (.entry-content) */
.single-post__content {
  color: #161c2c;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 24px;
}

.single-post__content p {
  margin-bottom: 24px;
}

.single-post__content p:last-child {
  margin-bottom: 0;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-primary);
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
}

.single-post__content h2 {
  font-size: 22px;
  line-height: 30px;
}

.single-post__content h3 {
  font-size: 18px;
  line-height: 26px;
}

.single-post__content h4 {
  font-size: 16px;
  line-height: 24px;
}

.single-post__content img,
.single-post__content figure {
  margin: 24px 0 0;
  width: 100%;
}

.single-post__content img {
  border-radius: 16px;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.single-post__content figcaption,
.single-post__content .wp-caption-text {
  text-align: center;
  color: #596273;
  font-size: 16px;
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  margin-top: 12px;
}

.single-post__content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  background: #fbe0eb;
  border-left: 4px solid var(--primary-color, #ff1e7e);
  border-radius: 12px;
  color: #161c2c;
  font-style: italic;
  font-weight: 500;
}

/* Post Footer & Share */
.single-post__footer {
  padding-top: 24px;
  border-top: 1px solid #ece8e4;
  margin-top: 16px;
}

.single-post__share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-post__share-label {
  color: #596273;
  font-size: 14px;
  font-family: var(--font-primary);
  font-weight: 700;
}

.single-post__share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.single-post__share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.single-post__share-btn--facebook {
  background: #1877f2;
  color: #ffffff;
}

/* Sidebar Column */
.single-post__sidebar {
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.admin-bar .single-post__sidebar {
  top: 132px;
}

/* Sidebar Widget General */
.single-sidebar-widget {
  padding: 24px;
  border-radius: 24px;
}

.single-sidebar-widget__title {
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

/* Widget 1: Related Posts */
.single-sidebar-widget--related {
  background: #fbd7e3;
  outline: 1px solid #fbe0eb;
  outline-offset: -1px;
}

.single-sidebar-widget__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.single-sidebar-widget__divider {
  height: 1px;
  background: #fbe0eb;
  width: 100%;
}

.single-sidebar-widget__post-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.single-sidebar-widget__post-item:hover {
  opacity: 0.85;
}

.single-sidebar-widget__post-thumb {
  width: 100px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.single-sidebar-widget__post-info {
  flex: 1 1 0%;
  min-width: 0;
}

.single-sidebar-widget__post-title {
  color: #161c2c;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-sidebar-widget__empty {
  color: #596273;
  font-family: var(--font-primary);
  font-size: 14px;
  margin: 0;
}

/* Widget 2: Register Banner Widget */
.single-sidebar-widget--register {
  background: linear-gradient(135deg, #ff1e7e 0%, #e3328b 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #ffffff;
}

.single-sidebar-widget__register-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.single-sidebar-widget__register-title {
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.single-sidebar-widget__register-desc {
  opacity: 0.9;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.single-sidebar-widget__register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #ffffff;
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.single-sidebar-widget__register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  color: var(--primary-color, #ff1e7e);
}

/* Widget 3: Branch Locator Widget */
.single-sidebar-widget--branches {
  background: #fbe0eb;
  border-radius: 16px;
  outline: 1px solid #fbe0eb;
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-sidebar-widget--branches .single-sidebar-widget__title {
  color: #161c2c;
  margin-bottom: 0;
}

.single-sidebar-widget__branches-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-sidebar-widget__branch-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-sidebar-widget__branch-pin {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-sidebar-widget__branch-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.single-sidebar-widget__branch-name {
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.single-sidebar-widget__branch-addr {
  color: #596273;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.single-sidebar-widget__branches-all {
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.25s ease;
}

.single-sidebar-widget__branches-all:hover {
  opacity: 0.85;
}

/* ==========================================================================
   Sakura Register Component (Đăng ký tư vấn)
   ========================================================================== */
.sakura-register {
  position: relative;
  background: linear-gradient(135deg, #ffd6e7 0%, #fffaf8 100%);
  overflow: hidden;
  width: 100%;
}

.sakura-register__bg-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sakura-register__icon {
  position: absolute;
  font-family: var(--font-secondary, "UTM Cookies", cursive);
  opacity: 0.2;
}

.sakura-register__icon--1 {
  left: 240px;
  top: 40px;
  transform: rotate(12deg);
  font-size: 64px;
  color: #ff1e7e;
}

.sakura-register__icon--2 {
  right: 240px;
  top: 91px;
  transform: rotate(-45deg);
  font-size: 48px;
  opacity: 0.15;
  color: #ff1e7e;
}

.sakura-register__mascot {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  object-fit: contain;
}

.sakura-register__mascot--left {
  width: 246px;
  height: 246px;
  left: 104px;
  top: 0;
  animation: bannerFloat 4s ease-in-out infinite;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.sakura-register__mascot--right {
  width: 246px;
  height: 347px;
  right: 108px;
  top: 140px;
  animation: bannerFloat 4s ease-in-out infinite;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.sakura-register__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.sakura-register__subtitle {
  max-width: 736px;
  margin: 0 auto;
  text-align: center;
}

.sakura-register__form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.sakura-register__input-wrap {
  position: relative;
}

.sakura-register__input-wrap--phone {
  width: 320px;
}

.sakura-register__input-wrap--select {
  width: 300px;
}

.sakura-register__input,
.sakura-register__select {
  width: 100%;
  height: 52px;
  padding: 14px 24px;
  background: #ffffff;
  border-radius: 999px;
  border: none;
  outline: 1.5px #ece8e4 solid;
  outline-offset: -1.5px;
  color: #596273;
  font-family: var(--font-primary, "UTM Avo", sans-serif);
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sakura-register__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 44px;
}

.sakura-register__select-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sakura-register__input::placeholder {
  color: #596273;
}

.sakura-register__input:focus,
.sakura-register__select:focus {
  outline-color: var(--primary-color, #ff1e7e);
}

.sakura-register__submit-btn {
  height: 52px;
  padding: 14px 32px;
  background: var(--primary-color, #ff1e7e);
  border-radius: 999px;
  border: none;
  color: #ffffff;
  font-family: var(--font-primary, "UTM Avo", sans-serif);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sakura-register__submit-btn:hover {
  background: var(--primary-hover, #e0156d);
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px rgba(255, 30, 126, 0.35);
}

/* ==========================================================================
   Contact Page Component (.contact-section, .contact-card, .contact-form)
   ========================================================================== */
.contact-section__subtitle {
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.contact-card {
  flex: 1 1 0;
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.contact-card--form {
  background: #ffffff;
  box-shadow: 0px 10px 28px rgba(22, 28, 44, 0.07);
  outline: 1px solid #f3d6e2;
  outline-offset: -1px;
  gap: 22px;
}

.contact-card--info {
  background: #fff8fb;
  gap: 28px;
}

.contact-card__title {
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-secondary, "UTM Cookies", cursive);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  word-wrap: break-word;
  margin: 0;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.contact-form__group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact-form__label {
  color: var(--text-color, #161c2c);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
}

.contact-form__input {
  width: 100%;
  height: 58px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 12px;
  border: 1.5px solid #f3d6e2;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--text-color, #161c2c);
  transition: border-color var(--transition-fast, 0.15s ease);
}

.contact-form__input::placeholder {
  color: #596273;
  font-size: 16px;
}

.contact-form__input:focus {
  border-color: var(--primary-color, #ff1e7e);
  outline: none;
}

.contact-form__textarea {
  height: 128px;
  resize: vertical;
  line-height: 24px;
}

.contact-form__btn {
  padding-left: 30px;
  padding-right: 30px;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.contact-info__icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--primary-color, #ff1e7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-info__text {
  flex: 1 1 0;
  color: #596273;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 24px;
}

.contact-info__hotline {
  color: var(--primary-color, #ff1e7e);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.contact-info__hotline:hover {
  color: var(--primary-hover, #e0156d);
}

.contact-info__email {
  color: #596273;
  transition: color var(--transition-fast, 0.15s ease);
}

.contact-info__email:hover {
  color: var(--primary-color, #ff1e7e);
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-social__title {
  color: var(--text-color, #161c2c);
  font-size: 14px;
  font-family: "Plus Jakarta Sans", var(--font-primary);
  font-weight: 700;
}

.contact-social__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-social__btn {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color, #ff1e7e);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition:
    transform var(--transition-fast, 0.15s ease),
    background-color var(--transition-fast, 0.15s ease);
}

.contact-social__btn:hover {
  background-color: var(--primary-hover, #e0156d);
  transform: translateY(-2px);
}

.contact-social__btn--zalo {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-primary);
}

/* ==========================================================================
   Branch Hero Banner Component (.branch-hero)
   ========================================================================== */
.branch-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.branch-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.branch-hero__content-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.branch-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 654px;
}

.branch-hero__title {
  font-family: "UTM Cookies", cursive;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
}

.branch-hero__title-pink {
  color: #ff1e7e;
}

.branch-hero__title-dark {
  color: var(--Color-Black, #161c2c);
}

.branch-hero__desc {
  color: rgba(38, 38, 38, 0.8);
  font-family: "UTM Avo", var(--font-primary), sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
}

.branch-hero__media-wrap {
  display: block;
}

.branch-hero__media-wrap--main {
  position: relative;
  z-index: 1;
}

.branch-hero__media-wrap--sub {
  width: 70%;
  max-width: 320px;
  margin: -40px auto 30px;
  position: relative;
  z-index: 2;
}

.branch-hero__img {
  display: block;
  width: 100%;
  height: auto;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
}

.branch-hero__img--main {
  border-radius: 16px;
  animation: heroFloatMain 6s ease-in-out infinite alternate;
}

.branch-hero__img--sub {
  border-radius: 24px;
  transform: rotate(-8deg);
  transform-origin: top left;
  animation: heroFloatSub 5s ease-in-out infinite alternate;
}

@keyframes heroFloatMain {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}

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

/* ==========================================================================
   Daily Life Hero Banner Component (.daily-hero)
   ========================================================================== */
.daily-hero {
  position: relative;
  width: 100%;
  height: 700px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.daily-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.daily-hero__content-wrap {
  width: 1056px;
  padding-left: 230px;
  padding-right: 80px;
  display: flex;
  align-items: center;
}

.daily-hero__content {
  width: 100%;
  max-width: 654px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.daily-hero__title {
  font-family: "UTM Cookies", cursive;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
}

.daily-hero__title-pink {
  color: #ff1e7e;
}

.daily-hero__title-dark {
  color: var(--Color-Black, #161c2c);
}

.daily-hero__desc {
  color: rgba(38, 38, 38, 0.8);
  font-family: "UTM Avo", var(--font-primary), sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 31.5px;
  margin: 0;
  word-wrap: break-word;
}

.daily-hero__photos-grid {
  position: static;
}

.daily-hero__photo-item {
  position: absolute;
  z-index: 2;
  transition: all 0.3s;
}

.daily-hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.daily-hero__photo-item--1 {
  width: 305.61px;
  height: 229.48px;
  left: 960px;
  top: 143.82px;
  transform: rotate(-4deg);
  transform-origin: top left;
}

.daily-hero__photo-item--2 {
  width: 434.16px;
  height: 276.71px;
  left: 931px;
  top: 396.95px;
  transform: rotate(-4deg);
  transform-origin: top left;
}

.daily-hero__photo-item--3 {
  width: 310px;
  height: 250px;
  left: 1392.02px;
  top: 121.99px;
  transform: rotate(0deg);
  transform-origin: top left;
}

.daily-hero__photo-item--4 {
  width: 340px;
  height: 270px;
  left: 1397.34px;
  top: 383px;
  transform: rotate(1deg);
  transform-origin: top left;
}

/* ==========================================================================
   Daily Journey Section Component (.daily-journey)
   ========================================================================== */
.daily-journey {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: #ffffff;
}

.daily-journey__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.daily-journey__header {
  max-width: 800px;
}

.daily-journey__timeline {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.daily-journey__item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.daily-journey__time-col {
  flex: 0 0 172px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.daily-journey__time {
  font-family: "UTM Avo", var(--font-primary), sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.daily-journey__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.daily-journey__card {
  flex: 1 1 0%;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--card-color, #fbbc05);
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.daily-journey__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.daily-journey__card-media {
  width: 180px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.daily-journey__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.daily-journey__card-content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.daily-journey__card-title {
  color: #161c2c;
  font-family: "UTM Avo", var(--font-primary), sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.daily-journey__card-desc {
  color: #596273;
  font-family: "UTM Avo", var(--font-primary), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

/* ==========================================================================
   Daily Growth Section Component (.daily-growth)
   ========================================================================== */
.daily-growth {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(343deg, #ffd6e7 0%, #fffaf8 100%);
  overflow: hidden;
}

.daily-growth__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.daily-growth__gallery {
  width: 100%;
}

.daily-growth__slider {
  width: 100%;
  padding-bottom: 10px;
}

.daily-growth__item {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.daily-growth__item:hover .daily-growth__img {
  transform: scale(1.05);
  transition: all 0.3s;
}

.daily-growth__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s;
}

.daily-growth__pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.daily-growth__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff1e7e;
  opacity: 0.3;
  margin: 0 !important;
  transition: all 0.3s ease;
}

.daily-growth__pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  opacity: 1;
}

/* ==========================================================================
   Daily Outcomes Component (.daily-outcomes)
   ========================================================================== */
.daily-outcomes {
  padding: 80px 0;
  background-color: #ffffff;
}

.daily-outcomes__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.daily-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
}

.daily-outcomes__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.daily-outcomes__avatar-wrap {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  box-shadow: 0px 6px 18px rgba(22, 28, 44, 0.08);
  border: 8px solid #ffffff;
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
  transform: translateZ(0);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.daily-outcomes__card:hover .daily-outcomes__avatar-wrap {
  transform: translateY(-4px);
  box-shadow: 0px 12px 24px rgba(255, 30, 126, 0.15);
}

.daily-outcomes__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.daily-outcomes__card:hover .daily-outcomes__avatar-img {
  transform: scale(1.06);
}

.daily-outcomes__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ff1e7e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.daily-outcomes__card:hover .daily-outcomes__badge {
  transform: scale(1.1);
}

.daily-outcomes__badge-icon {
  color: #ffffff;
  font-size: 20px;
  font-family: var(--font-primary), sans-serif;
  line-height: 1;
}

.daily-outcomes__card-title {
  color: #ff1e7e;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.daily-outcomes__card-desc {
  color: #596273;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

/* ==========================================================================
   Admissions Page Hero Banner (.admissions-hero)
   ========================================================================== */
.admissions-hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  background: linear-gradient(135deg, #fff0f6 0%, #fff9fc 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 70px 0;
}

.admissions-hero__bg-circle {
  position: absolute;
  width: 330px;
  height: 330px;
  left: -80px;
  top: 420px;
  background: rgba(255, 212, 230, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.admissions-hero__flower {
  position: absolute;
  left: 140px;
  top: 90px;
  opacity: 0.16;
  font-size: 58px;
  line-height: 1;
  pointer-events: none;
}

.admissions-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.admissions-hero__content {
  flex: 1 1 0;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.admissions-hero__badge {
  display: inline-flex;
  padding: 8px 18px;
  background: #ffe0ec;
  border-radius: 999px;
}

.admissions-hero__badge-text {
  color: #ff1e7e;
  font-family: "Plus Jakarta Sans", var(--font-primary), sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.admissions-hero__title {
  display: flex;
  flex-direction: column;
  font-family: "UTM Cookies", cursive;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

.admissions-hero__title-pink {
  color: #ff1e7e;
}

.admissions-hero__title-dark {
  color: #262626;
}

.admissions-hero__desc {
  color: #161c2c;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.admissions-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.admissions-hero__btn {
  height: 52px;
  padding: 0 32px;
  background: #ff1e7e;
  color: #ffffff;
  border-radius: 999px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast, 0.15s ease);
  box-shadow: 0px 4px 14px rgba(255, 30, 126, 0.25);
}

.admissions-hero__btn:hover {
  background: #e0156d;
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px rgba(255, 30, 126, 0.35);
  color: #ffffff;
}

.admissions-hero__note {
  color: #d90d62;
  font-size: 16px;
  font-weight: 700;
}

.admissions-hero__media-wrap {
  flex: 0 0 auto;
  width: 580px;
}

.admissions-hero__card {
  width: 100%;
  height: 440px;
  padding: 12px;
  transform: rotate(-2deg);
  transform-origin: top left;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.admissions-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

/* ==========================================================================
   Target Page Hero Banner (.target-hero)
   ========================================================================== */
.target-hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  height: 700px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.target-hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 230px;
  padding-right: 80px;
  box-sizing: border-box;
}

.target-hero__content-wrap {
  display: flex;
  align-items: center;
  max-width: 654px;
}

.target-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.target-hero__title {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
}

.target-hero__title-pink {
  color: #ff1e7e;
}

.target-hero__title-dark {
  color: #161c2c;
}

.target-hero__desc {
  color: rgba(38, 38, 38, 0.8);
  font-size: 18px;
  font-weight: 700;
  line-height: 31.5px;
  margin: 0;
  word-wrap: break-word;
}

.target-hero__media-wrap {
  position: absolute;
  left: 1114px;
  top: 154px;
  width: 389px;
  height: 460px;
  flex-shrink: 0;
}

.target-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Admissions Steps Component (.admissions-steps)
   ========================================================================== */
.admissions-steps {
  padding: 80px 0;
  background: linear-gradient(343deg, #ffd6e7 0%, #fffaf8 100%);
}

.admissions-steps__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.admissions-steps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.admissions-steps__card {
  background: #ffffff;
  border-radius: 24px;
  border: 2px solid #ff1e7e;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 8px 24px rgba(255, 30, 126, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.admissions-steps__card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 32px rgba(255, 30, 126, 0.14);
}

.admissions-steps__card-header {
  padding: 20px 24px;
  background: #ff1e7e;
  display: flex;
  align-items: center;
  gap: 16px;
}

.admissions-steps__num-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: #ff1e7e;
  font-size: 22px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admissions-steps__card-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.admissions-steps__card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.admissions-steps__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.admissions-steps__meta-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.admissions-steps__meta-text {
  font-size: 16px;
  line-height: 24px;
}

.admissions-steps__meta-text--time {
  font-weight: 700;
}

.admissions-steps__meta-text--location {
  color: #596273;
}

.admissions-steps__para {
  color: #161c2c;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.admissions-steps__sub-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admissions-steps__sub-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admissions-steps__sub-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admissions-steps__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff1e7e;
  flex-shrink: 0;
}

.admissions-steps__sub-label {
  color: #161c2c;
  font-size: 15px;
  font-weight: 700;
}

.admissions-steps__sub-desc {
  color: #596273;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

/* ==========================================================================
   Admissions Form Component (.admissions-form)
   ========================================================================== */
.admissions-form {
  padding: 80px 0;
  background-color: #ffffff;
}

.admissions-form__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.admissions-form__row {
  display: flex;
  align-items: stretch;
  gap: 36px;
  width: 100%;
}

.admissions-form__box {
  flex: 1 1 0;
  padding: 36px;
  background: #ffffff;
  border-radius: 24px;
  border: 1.5px solid #f3d6e2;
  box-shadow: 0px 10px 28px rgba(22, 28, 44, 0.07);
  display: flex;
  flex-direction: column;
}

.admissions-form__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.admissions-form__field-group {
  display: flex;
  gap: 16px;
  width: 100%;
}

.admissions-form__field {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admissions-form__field--full {
  flex: 1 1 100%;
}

.admissions-form__label {
  color: #161c2c;
  font-size: 14px;
  font-weight: 700;
}

.admissions-form__input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  background: #ffffff;
  border: 1.5px solid #f3d6e2;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: #161c2c;
  outline: none;
  transition:
    border-color var(--transition-fast, 0.15s ease),
    box-shadow var(--transition-fast, 0.15s ease);
}

.admissions-form__input::placeholder {
  color: #596273;
}

.admissions-form__input:focus {
  border-color: #ff1e7e;
  box-shadow: 0 0 0 3px rgba(255, 30, 126, 0.12);
}

.admissions-form__select-wrap {
  position: relative;
  width: 100%;
}

.admissions-form__select {
  width: 100%;
  height: 54px;
  padding: 0 40px 0 16px;
  background: #ffffff;
  border: 1.5px solid #f3d6e2;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: #161c2c;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition-fast, 0.15s ease);
}

.admissions-form__select:focus {
  border-color: #ff1e7e;
}

.admissions-form__select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.admissions-form__action {
  margin-top: 8px;
}

.admissions-form__submit-btn {
  height: 52px;
  padding: 0 36px;
  background: #ff1e7e;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast, 0.15s ease);
  box-shadow: 0px 4px 14px rgba(255, 30, 126, 0.25);
}

.admissions-form__submit-btn:hover {
  background: #e0156d;
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px rgba(255, 30, 126, 0.35);
}

.admissions-form__media-box {
  flex: 1 1 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.admissions-form__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admissions-form__quote-card {
  position: relative;
  z-index: 2;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
}

.admissions-form__quote-text {
  color: #161c2c;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

/* ==========================================================================
   Admissions FAQ Component (.admissions-faq)
   ========================================================================== */
.admissions-faq {
  padding: 80px 0;
  background-color: #fff8fb;
}

.admissions-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.admissions-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.admissions-faq__item {
  background: #ffffff;
  border-radius: 18px;
  border: 1.5px solid #f3d6e2;
  overflow: hidden;
  transition:
    border-color var(--transition-fast, 0.15s ease),
    box-shadow var(--transition-fast, 0.15s ease);
}

.admissions-faq__item.is-active {
  border-color: #ff1e7e;
  box-shadow: 0px 10px 28px rgba(22, 28, 44, 0.07);
}

.admissions-faq__question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.admissions-faq__question-text {
  color: #161c2c;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  transition: color var(--transition-fast, 0.15s ease);
}

.admissions-faq__item.is-active .admissions-faq__question-text,
.admissions-faq__question:hover .admissions-faq__question-text {
  color: #ff1e7e;
}

.admissions-faq__icon {
  color: #ff1e7e;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.admissions-faq__answer {
  padding: 0 24px 20px;
}

.admissions-faq__answer-text {
  color: #596273;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

/* ==========================================================================
   Branch Map Section Component (.branch-map-section)
   ========================================================================== */
.branch-map-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.branch-map__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.branch-map__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.branch-map__img {
  width: 100%;
  max-height: 460px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 8px 24px rgba(255, 30, 126, 0.12));
}

.branch-map__marker {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 3;
}

.branch-map__flower {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
  animation: sakuraPulse 3s ease-in-out infinite alternate;
}

.branch-map__flower svg {
  width: 100%;
  height: 100%;
}

.branch-map__line {
  height: 0;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.9);
  width: 36px;
  flex-shrink: 0;
}

.branch-map__pin {
  background: #ffffff;
  height: 34px;
  padding: 5px 20px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 14px rgba(255, 30, 126, 0.18);
  white-space: nowrap;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.branch-map__marker:hover .branch-map__pin {
  transform: translateY(-2px);
  box-shadow: 0px 6px 18px rgba(255, 30, 126, 0.28);
}

.branch-map__marker--hanoi {
  top: 12%;
  left: 55%;
}

.branch-map__marker--hcm {
  top: 74%;
  left: 45%;
  display: flex;
  align-items: flex-start;
}

.branch-map__marker--hcm .branch-map__line {
  width: 28px;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.95);
  transform: rotate(68deg);
  transform-origin: 0 50%;
  margin-left: 2px;
  margin-top: 10px;
}

.branch-map__marker--hcm .branch-map__pin {
  margin-left: 14px;
  margin-top: 24px;
}

@keyframes sakuraPulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.branch-map__pin-text {
  color: #ff1e7e;
  font-family: "UTM Avo", var(--font-primary), sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.branch-map__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.branch-map__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.branch-map__title {
  color: #ff1e7e;
  font-family: "UTM Cookies", cursive;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

.branch-map__desc {
  color: #596273;
  font-family: "UTM Avo", var(--font-primary), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.branch-map__stats {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.branch-map__stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.branch-map__stat-number {
  font-family: "UTM Cookies", cursive;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.branch-map__stat-number--pink {
  color: #ff1e7e;
}

.branch-map__stat-number--blue {
  color: #4285f4;
}

.branch-map__stat-number--green {
  color: #34a853;
}

.branch-map__stat-label {
  color: #161c2c;
  font-family: "UTM Avo", var(--font-primary), sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

/* ==========================================================================
   Branch Page Component (.branch-section, .branch-tabs, .branch-card)
   ========================================================================== */
.branch-section__subtitle {
  max-width: 800px;
  margin: 0 auto;
}

.branch-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.branch-tab {
  height: 50px;
  padding: 0 28px;
  border-radius: 25px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast, 0.15s ease);
  border: 1.5px solid var(--primary-color, #ff1e7e);
  background-color: #ffffff;
  color: var(--primary-color, #ff1e7e);
  outline: none;
}

.branch-tab:hover,
.branch-tab--active {
  background-color: var(--primary-color, #ff1e7e);
  color: #ffffff;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.branch-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0px 10px 24px -10px rgba(0, 0, 0, 0.05);
  outline: 1px solid #ffd6e7;
  outline-offset: -1px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition-fast, 0.15s ease),
    box-shadow var(--transition-fast, 0.15s ease);
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 32px -8px rgba(255, 30, 126, 0.12);
}

.branch-card__media {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.branch-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.branch-card:hover .branch-card__img {
  transform: scale(1.04);
}

.branch-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 auto;
}

.branch-card__title {
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.branch-card__info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.branch-card__info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-color, #161c2c);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 24px;
}

.branch-card__icon {
  color: var(--primary-color, #ff1e7e);
  flex-shrink: 0;
  margin-top: 3px;
}

.branch-card__link {
  color: var(--text-color, #161c2c);
  text-decoration: none;
  transition: color var(--transition-fast, 0.15s ease);
}

.branch-card__link:hover {
  color: var(--primary-color, #ff1e7e);
}

.branch-card__action {
  margin-top: auto;
}

.branch-card__map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-color, #ff1e7e);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--transition-fast, 0.15s ease);
}

.branch-card__map-link:hover {
  opacity: 0.85;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Ordered from Largest to Smallest Breakpoint)
   ========================================================================== */

@media (min-width: 1025px) {
  :root {
    --container-max-width: 79.6875vw;
  }

  ::-webkit-scrollbar {
    width: 0.416667vw;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 0.416667vw;
  }

  .section {
    padding: 4.1667vw 0;
  }

  .header__container {
    padding: 1.0417vw 0;
    gap: 1.0417vw;
  }

  .header--is-sticky .header__container {
    padding: 0.625vw 0;
  }

  .header__logo-img {
    height: 4.1667vw;
  }

  .header--is-sticky .header__logo-img {
    height: 3.125vw;
  }

  .header__logo-text {
    font-size: 1.25vw;
  }

  .header__nav-list {
    gap: 2.0833vw;
  }

  .header__nav-link {
    font-size: 0.833333vw;
    padding: 0.2083vw 0;
  }

  .header__nav-text {
    gap: 0.4167vw;
  }

  .header__nav-icon svg {
    width: 0.833333vw;
    height: 0.833333vw;
  }

  .header__nav-link--active::after,
  .header__nav-item.current-menu-item > .header__nav-link::after {
    height: 0.1042vw;
    margin-top: 0.2083vw;
  }

  .header__submenu {
    min-width: 11.4583vw;
    border-radius: 0.4167vw;
    padding: 0.5208vw 0;
    margin-top: 0.5208vw;
    transform: translateY(0.5208vw);
  }

  .header__submenu-link {
    padding: 0.4167vw 1.0417vw;
    font-size: 0.83333vw;
  }

  .header__hotline-button {
    height: 2.7083vw;
    padding: 0 1.25vw;
    gap: 0.5208vw;
    font-size: 0.9375vw;
  }

  .header__hotline-icon {
    width: 1.0417vw;
    height: 1.0417vw;
  }

  .banner {
    min-height: 47.9167vw;
    padding-top: 8.3333vw;
    padding-bottom: 2.6042vw;
  }

  .banner__inner {
    gap: 6.5104vw;
  }

  .banner__content {
    gap: 1.0417vw;
  }

  .banner__title {
    font-size: 2.3438vw;
    line-height: 1.45;
  }

  .banner__desc {
    font-size: 0.9375vw;
    line-height: 1.75;
  }

  .banner__actions {
    margin-top: 0.5208vw;
  }

  .banner__btn {
    height: 2.6042vw;
    padding: 0 1.6667vw;
    border-radius: 2.0833vw;
    font-size: 0.833333vw;
    box-shadow: 0px 0.4167vw 1.25vw rgba(255, 79, 135, 0.25);
  }

  .banner__img--desktop {
    max-width: 31.25vw;
  }

  .banner__img {
    width: 24.8438vw;
    height: 29.375vw;
    aspect-ratio: 159/188;
  }

  .banner__stats {
    border-radius: 1.25vw;
    padding: 1.5625vw 2.6042vw;
    margin-top: 2.0833vw;
    gap: 1.5625vw;
  }

  .banner__stats-item {
    gap: 0.833333vw;
  }

  .banner__stats-icon {
    width: 2.6042vw;
    height: 2.6042vw;
  }

  .banner__stats-icon-img {
    max-width: 2.2917vw;
    max-height: 2.2917vw;
  }

  .banner__stats-number {
    font-size: 1.5625vw;
  }

  .banner__stats-label {
    font-size: 0.833333vw;
  }

  .footer__wrapper {
    border-top-left-radius: 1.25vw;
    border-top-right-radius: 1.25vw;
    border-top: 0.1563vw solid var(--primary-color);
    padding-top: 2.6042vw;
    padding-bottom: 1.25vw;
  }

  .footer__content {
    gap: 2.0833vw;
    margin-bottom: 1.5625vw;
  }

  .footer__brand {
    gap: 1.0417vw;
    max-width: 23.9583vw;
  }

  .footer__logo-img {
    height: 2.8646vw;
  }

  .footer__logo-text {
    font-size: 1.25vw;
  }

  .footer__slogan {
    font-size: 0.9375vw;
  }

  .footer__socials {
    gap: 0.625vw;
  }

  .footer__social-item {
    width: 2.083333vw;
    height: 2.083333vw;
    font-size: 0.5729vw;
  }

  .footer__nav-group {
    gap: 1.5625vw;
  }

  .footer__col {
    gap: 0.625vw;
  }

  .footer__col-title {
    font-size: 0.833333vw;
  }

  .footer__col-list {
    gap: 0.5208vw;
  }

  .footer__col-link {
    font-size: 0.833333vw;
  }

  .footer__divider {
    margin-bottom: 1.0417vw;
  }

  .footer__copyright {
    font-size: 0.833333vw;
  }

  .floating-widgets__item {
    width: 2.9167vw !important;
    height: 2.9167vw !important;
  }

  .floating-widgets__label {
    font-size: 0.72916667vw;
  }

  .floating-widgets__label {
    font-size: 0.7292vw !important;
  }

  .floating-widgets__icon-top {
    width: 1.25vw !important;
    height: 1.25vw !important;
  }

  .floating-widgets {
    gap: 0.72916667vw !important;
  }

  .section-header {
    margin-bottom: 2.083333vw;
    gap: 0.833333vw;
  }

  .section-title {
    font-size: 2.2917vw;
  }

  .section-subtitle {
    font-size: 0.9375vw;
  }

  .phuong-cham__slider {
    padding-top: 3.5vw;
    padding-bottom: 1vw;
    margin-top: -1vw;
  }

  .phuong-cham__nav-btn {
    width: 2.7083vw;
    height: 2.7083vw;
  }

  .phuong-cham__nav-btn--prev {
    left: -4.1667vw;
  }

  .phuong-cham__nav-btn--next {
    right: -4.1667vw;
  }

  .phuong-cham__card {
    padding: 1.25vw 1.0417vw 1.0417vw;
    border-radius: 1.25vw;
    gap: 1.0417vw;
    margin-top: 2.604166667vw;
  }

  .phuong-cham__card-header {
    padding-top: 1.0417vw;
    min-height: 3.0208vw;
  }

  .phuong-cham__badge {
    width: 4.1667vw;
    height: 4.1667vw;
    top: -3.3333vw;
  }

  .phuong-cham__badge-icon {
    width: 2.6042vw;
    height: 2.6042vw;
  }

  .phuong-cham__card-title {
    font-size: 1.0417vw;
  }

  .phuong-cham__card-desc {
    font-size: 0.9375vw;
    line-height: 1.4583vw;
  }

  .phuong-cham__card-img {
    height: 12.5vw;
    border-radius: 0.833333vw;
  }

  .target-goals__subtitle {
    max-width: 41.6667vw;
    margin-top: 0.833333vw;
    font-size: 0.9375vw;
    line-height: 1.4583vw;
  }

  .target-goals__inner {
    gap: 1.5625vw;
    margin-top: 2.0833vw;
  }

  .target-goals__img {
    width: 13.4375vw;
    height: 12.3438vw;
  }

  .target-goals__tree-wrap {
    width: 45vw;
    height: 32.7083vw;
  }

  .target-goals__card {
    padding: 1.25vw 0.833333vw 0.7292vw;
    border-radius: 0.833333vw;
    gap: 0.4167vw;
    min-height: 7.8125vw;
  }

  .target-goals__card--pos-tri-tue {
    top: 1.8646vw;
    left: 12.3vw;
    width: 13.4375vw;
    height: 12.34375vw;
    padding: 2.6042vw 1.8229vw 1.7708333vw;
    animation: bannerFloat 6s ease-in-out infinite;
    transition:
      transform 0.4s ease,
      filter 0.4s ease;
  }

  .target-goals__card--pos-tri-tue .target-goals__badge {
    top: 3.0417vw;
    width: 1.875vw;
    height: 1.875vw;
  }

  .target-goals__card--pos-tri-tue .target-goals__badge-icon {
    width: 1.0417vw;
    height: 1.0417vw;
  }

  .target-goals__card--pos-dao-duc {
    top: 22vw;
    left: -3.125vw;
    width: 12.083333vw;
  }

  .target-goals__card--pos-dinh-duong {
    top: 26.3vw;
    left: 12vw;
    width: 14.58333vw;
  }

  .target-goals__card--pos-the-chat {
    top: 22.3vw;
    left: 29.7vw;
    width: 12.08333vw;
  }

  .target-goals__badge {
    width: 2.6042vw;
    height: 2.6042vw;
    top: -1.3021vw;
  }

  .target-goals__badge-icon {
    width: 1.3542vw;
    height: 1.3542vw;
  }

  .target-goals__card-title {
    font-size: 0.833333vw;
  }

  .target-goals__card-desc {
    font-size: 0.7813vw;
    line-height: 1.1458vw;
  }

  .target-goals__detail {
    max-width: 32.2917vw;
  }

  .target-goals__detail-box {
    padding: 2.0833vw;
    border-radius: 1.25vw;
    gap: 1.25vw;
    box-shadow: 0.1042vw 0.4167vw 1.25vw rgba(22, 28, 44, 0.05);
  }

  .target-goals__detail-box--white {
    box-shadow: 0px 0.2083vw 1.25vw rgba(0, 0, 0, 0.06);
  }

  .target-goals__detail-box--white .target-goals__detail-title {
    font-size: 1.0417vw;
  }

  .target-goals__detail-box--white .target-goals__detail-sub {
    font-size: 0.9375vw;
    line-height: 1.5;
  }

  .target-goals__detail-intro-desc {
    gap: 0.833333vw;
  }

  .target-goals__detail-paragraph {
    font-size: 0.7813vw;
    line-height: 1.6;
  }

  .target-goals__detail-title {
    font-size: 1.0417vw;
  }

  .target-goals__detail-sub {
    font-size: 0.9375vw;
  }

  .target-goals__detail-divider {
    height: 0.0521vw;
  }

  .target-goals__detail-list {
    gap: 0.7292vw;
  }

  .target-goals__detail-item {
    font-size: 0.9375vw;
    line-height: 1.4583vw;
    gap: 0.625vw;
  }

  .target-goals__detail-dot {
    width: 0.3125vw;
    height: 0.3125vw;
  }

  /* Sakura Values Section (vw desktop scaling) */

  .sakura-values__wrapper {
    gap: 2.5vw;
    padding: 0 2.083333vw;
  }

  .sakura-values__title {
    font-size: 2.2917vw;
  }

  .sakura-values__list {
    gap: 2.5vw;
  }

  .sakura-values__row {
    gap: 1.25vw;
  }

  .sakura-values__watermark {
    font-size: 7.8125vw;
    bottom: 2.083333vw;
  }

  .sakura-values__item--image-left .sakura-values__watermark {
    right: 1.0417vw;
    left: auto;
  }

  .sakura-values__item--image-right .sakura-values__watermark {
    left: 1.0417vw;
    right: auto;
  }

  .sakura-values__media {
    width: 32.2917vw;
    max-width: 50%;
    min-height: 19.7917vw;
    height: auto;
    border-radius: 1.0417vw;
    box-shadow: 0 0.2083vw 1.0417vw rgba(0, 0, 0, 0.04);
  }

  .sakura-values__nav {
    bottom: 0.833333vw;
    gap: 0.5729vw;
  }

  .sakura-values__nav--bottom-right {
    right: 0.833333vw;
  }

  .sakura-values__nav--bottom-left {
    left: 0.833333vw;
  }

  .sakura-values__nav-btn {
    width: 2.7083vw;
    height: 2.7083vw;
  }

  .sakura-values__nav-btn svg {
    width: 0.416667vw;
  }

  .sakura-values__nav-btn--prev {
    border-width: 0.0781vw;
  }

  .sakura-values__card {
    padding: 1.5625vw;
    border-radius: 1.0417vw;
    gap: 1.5625vw;
    border-width: 0.0521vw;
  }

  .sakura-values__card-inner {
    gap: 1.5625vw;
  }

  .sakura-values__sub-item {
    gap: 0.5208vw;
  }

  .sakura-values__sub-header {
    gap: 0.625vw;
  }

  .sakura-values__sub-tag {
    font-size: 0.9375vw;
  }

  .sakura-values__sub-title {
    font-size: 0.833333vw;
  }

  .sakura-values__sub-desc {
    font-size: 0.833333vw;
    line-height: 1.25vw;
  }
  /* Sakura Experience Section (vw desktop scaling) */
  .sakura-experience {
    padding: 3.125vw 0;
    min-height: 17.7083vw;
  }

  .sakura-experience__glow {
    width: 21.875vw;
    height: 21.875vw;
    right: -2.6042vw;
    top: -6.25vw;
    filter: blur(3.125vw);
  }

  .sakura-experience__inner {
    gap: 1.0417vw;
  }

  .sakura-experience__title {
    font-size: 2.0833vw;
    line-height: 2.5vw;
  }

  .sakura-experience__desc {
    font-size: 0.9375vw;
    line-height: 1.4583vw;
    max-width: 41.6667vw;
  }

  .sakura-experience__actions {
    margin-top: 0.2083vw;
  }

  .sakura-experience__btn {
    gap: 0.4167vw;
    padding: 0.7292vw 1.6667vw;
    font-size: 0.833333vw;
    border-radius: 5.2083vw;
    box-shadow: 0px 0.2083vw 0.833333vw rgba(0, 0, 0, 0.08);
  }

  .sakura-experience__btn-icon {
    width: 0.833333vw;
    height: 0.833333vw;
  }

  /* Sakura News Desktop Scaling */
  .sakura-news {
    padding: 3.125vw 0 2.0833vw;
  }

  .sakura-news__header {
    margin-bottom: 2.0833vw;
  }

  .sakura-news__card {
    border-radius: 1.0417vw;
  }

  .sakura-news__card-media {
    height: 15.625vw;
    border-radius: 1.0417vw;
  }

  .sakura-news__card-body {
    padding: 0.833333vw 0.833333vw 1.0417vw;
  }

  .sakura-news__card-title {
    font-size: 0.9375vw;
    line-height: 1.4;
  }

  .sakura-news__nav-btn {
    width: 2.7083vw;
    height: 2.7083vw;
    top: 7.8125vw;
    border-radius: 1.3542vw;
    box-shadow: 0px 0.2083vw 0.625vw rgba(0, 0, 0, 0.06);
  }

  .sakura-news__nav-btn--prev {
    left: -4.1667vw;
    border-width: 0.0781vw;
  }

  .sakura-news__nav-btn--next {
    right: -4.1667vw;
  }

  .sakura-news__nav-btn svg {
    width: 0.5208vw;
    height: 0.833333vw;
  }

  /* Sakura System Desktop Scaling */
  .sakura-system {
    padding: 3.125vw 0;
  }

  .sakura-system__inner {
    gap: 1.6667vw;
  }

  .sakura-system__mascot--left {
    width: 12.8125vw;
    height: 12.8125vw;
    top: -1.0417vw;
  }

  .sakura-system__mascot--right {
    width: 12.8125vw;
    height: 18.59375vw;
    right: 0;
    bottom: -5.5625vw;
  }

  .sakura-system__tabs {
    gap: 0.625vw;
  }

  .sakura-system__tab-btn {
    height: 2.6042vw;
    padding: 0 1.4583vw;
    border-radius: 1.3021vw;
    font-size: 0.833333vw;
    border-width: 0.0781vw;
  }

  .sakura-system__tab-btn--active {
    box-shadow: 0px 0.3125vw 0.833333vw rgba(255, 30, 126, 0.25);
  }

  .sakura-system__grid {
    gap: 1.0417vw;
  }

  .sakura-system__card {
    border-radius: 1.0417vw;
    border-left-width: 0.2083vw;
    padding: 0.9375vw 0.9375vw 0.9375vw 1.0417vw;
    gap: 0.625vw;
    box-shadow: 0px 0.5208vw 1.25vw -0.4167vw rgba(0, 0, 0, 0.05);
  }

  .sakura-system__card-name {
    font-size: 0.9375vw;
    line-height: 1.3;
  }

  .sakura-system__card-info {
    gap: 0.4167vw;
  }

  .sakura-system__card-icon {
    margin-top: 0.1563vw;
  }

  .sakura-system__card-icon svg {
    width: 0.7292vw;
    height: 0.7292vw;
  }

  .sakura-system__card-text {
    font-size: 0.7813vw;
    line-height: 1.25vw;
  }

  .sakura-system__actions {
    margin-top: 0.5208vw;
  }

  .sakura-system__more-btn {
    height: 2.6042vw;
    padding: 0 1.6667vw;
    border-radius: 1.3021vw;
    font-size: 0.833333vw;
    border-width: 0.0781vw;
  }

  /* Archive Page Desktop Scaling (vw) */
  .archive-hero {
    height: 16.6667vw;
    gap: 0.8333vw;
  }

  .archive-hero__icon--1 {
    left: 6.25vw;
    top: 2.0833vw;
    font-size: 4.1667vw;
  }

  .archive-hero__icon--2 {
    right: 6.25vw;
    top: 8.3333vw;
    font-size: 3.125vw;
  }

  .archive-hero__icon--3 {
    top: 1.0417vw;
    font-size: 2.0833vw;
  }

  .archive-hero__title {
    font-size: 2.2917vw;
    margin-bottom: 0.8333vw;
  }

  .archive-hero__breadcrumb {
    gap: 0.4167vw;
    font-size: 0.8333vw;
  }

  .archive-featured__card {
    border-radius: 1.6667vw;
  }

  .archive-featured__img {
    height: 25vw;
  }

  .archive-featured__body {
    padding: 2.5vw;
    gap: 1.0417vw;
  }

  .archive-featured__meta {
    gap: 0.8333vw;
  }

  .archive-featured__badge {
    padding: 0.3125vw 0.625vw;
    border-radius: 0.625vw;
    font-size: 0.7292vw;
  }

  .archive-featured__date {
    font-size: 0.7292vw;
  }

  .archive-featured__title {
    font-size: 1.6667vw;
  }

  .archive-featured__desc {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  .archive-featured__btn {
    padding: 0.7292vw 1.6667vw;
    border-radius: 5.2083vw;
    font-size: 0.8333vw;
    gap: 0.4167vw;
  }

  .archive-categories {
    gap: 0.8333vw;
    margin: 2.5vw;
  }

  .archive-categories__item {
    height: 2.6042vw;
    padding: 0.625vw 1.4583vw;
    border-radius: 1.3021vw;
    font-size: 0.8333vw;
  }

  .archive-grid-section {
    margin-bottom: 2.5vw;
  }

  .archive-grid-section__title {
    font-size: 2.2917vw;
    margin-bottom: 2.5vw;
  }

  .archive-grid {
    gap: 2.3438vw;
  }

  .archive-card {
    border-radius: 1.25vw;
  }

  .archive-card__img {
    height: 15.625vw;
  }

  .archive-card__body {
    padding: 1.25vw;
    gap: 1.0417vw;
  }

  .archive-card__title {
    font-size: 0.9375vw;
  }

  .archive-card__desc {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  .archive-card__link {
    font-size: 0.8333vw;
    gap: 0.5208vw;
  }

  .archive-pagination .nav-links,
  .archive-pagination__list {
    gap: 0.625vw;
  }

  .archive-pagination .page-numbers {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 1.25vw;
    font-size: 0.8333vw;
  }

  /* Sakura Register Section (vw desktop scaling) */
  .sakura-register {
    padding: 4.1667vw 0;
  }

  .sakura-register__inner {
    gap: 1.25vw;
  }

  .sakura-register__header {
    gap: 0.8333vw;
  }

  .sakura-register__title {
    font-size: 2.0833vw;
  }

  .sakura-register__desc {
    font-size: 0.8333vw;
    max-width: 33.85416667vw;
  }

  .sakura-register__form {
    gap: 0.8333vw;
    margin-top: 0.4167vw;
  }

  .sakura-register__input-wrap {
    width: 20.8333vw;
  }

  .sakura-register__input {
    height: 2.6042vw;
    padding: 0.7292vw 1.25vw;
    border-radius: 51.9792vw;
    font-size: 0.78125vw;
  }

  .sakura-register__submit-btn {
    height: 2.6042vw;
    padding: 0.7292vw 1.6667vw;
    border-radius: 51.9792vw;
    font-size: 0.78125vw;
  }

  .sakura-register__icon--1 {
    left: 12.5vw;
    top: 2.0833vw;
    font-size: 3.3333vw;
  }

  .sakura-register__icon--2 {
    right: 12.5vw;
    top: 4.7557vw;
    font-size: 2.5vw;
  }

  /* single post desktop vw scaling */
  .single-post {
    padding: 4.1667vw 0;
  }

  .single-post__layout {
    gap: 2.5vw;
  }

  .single-post__main {
    gap: 1.6667vw;
  }

  .single-post__meta {
    gap: 0.8333vw;
  }

  .single-post__category {
    padding: 0.3125vw 0.7292vw;
    font-size: 0.7292vw;
  }

  .single-post__date,
  .single-post__author {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  .single-post__title {
    font-size: 1.6667vw;
    line-height: 2.1875vw;
  }

  .single-post__lead {
    font-size: 0.8333vw;
  }

  .single-post__content {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  .single-post__content p {
    margin-bottom: 1.25vw;
  }

  .single-post__content h2 {
    font-size: 1.1458vw;
    line-height: 1.5625vw;
    margin-top: 1.6667vw;
    margin-bottom: 0.8333vw;
  }

  .single-post__content h3 {
    font-size: 0.9375vw;
    line-height: 1.3542vw;
    margin-top: 1.4583vw;
    margin-bottom: 0.7292vw;
  }

  .single-post__content img {
    border-radius: 0.8333vw;
  }

  .single-post__content figcaption,
  .single-post__content .wp-caption-text {
    font-size: 0.8333vw;
    margin-top: 0.625vw;
  }

  .single-post__sidebar {
    width: 21.875vw;
    gap: 2.0833vw;
    top: 5.2083vw;
  }

  .admin-bar .single-post__sidebar {
    top: calc(5.2083vw + 32px);
  }

  .single-sidebar-widget {
    padding: 1.25vw;
    border-radius: 1.25vw;
  }

  .single-sidebar-widget__title {
    font-size: 0.9375vw;
    margin-bottom: 1.25vw;
  }

  .single-sidebar-widget__content {
    gap: 1.0417vw;
  }

  .single-sidebar-widget__post-item {
    gap: 0.8333vw;
  }

  .single-sidebar-widget__post-thumb {
    width: 5.2083vw;
    height: 4.1667vw;
    border-radius: 0.625vw;
  }

  .single-sidebar-widget__post-title {
    font-size: 0.8333vw;
  }

  .single-sidebar-widget--register,
  .single-sidebar-widget--branches {
    border-radius: 0.8333vw;
    gap: 0.8333vw;
  }

  .single-sidebar-widget__register-icon {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 0.625vw;
  }

  .single-sidebar-widget__register-title {
    font-size: 0.9375vw;
  }

  .single-sidebar-widget__register-desc {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  .single-sidebar-widget__register-btn {
    padding: 0.625vw 1.25vw;
    font-size: 0.8333vw;
  }

  .single-sidebar-widget__branch-name,
  .single-sidebar-widget__branch-addr,
  .single-sidebar-widget__branches-all {
    font-size: 0.8333vw;
  }

  .single-post__share-label {
    font-size: 0.72916667vw;
  }

  .single-post__share-btn {
    gap: 0.4167vw;
    padding: 0.4167vw 0.8333vw;
    font-size: 0.6770833vw;
  }

  .single-post__share-btn svg {
    width: 0.72916667vw;
    height: 0.72916667vw;
  }

  .single-post__share {
    gap: 0.4167vw;
  }

  .single-post__footer {
    padding-top: 1.25vw;
    margin-top: 0.8333vw;
  }

  /* Contact section desktop vw scaling */
  .contact-section__subtitle {
    max-width: 41.6667vw;
  }

  .contact-grid {
    gap: 1.875vw;
  }

  .contact-card {
    padding: 1.875vw;
    border-radius: 1.25vw;
  }

  .contact-card--form {
    gap: 1.1458vw;
    box-shadow: 0px 0.52083vw 1.4583vw rgba(22, 28, 44, 0.07);
    outline-width: 0.052083vw;
  }

  .contact-card--info {
    gap: 1.4583vw;
  }

  .contact-card__title {
    font-size: 1.5625vw;
  }

  .contact-form {
    gap: 0.8333vw;
  }

  .contact-form__row {
    gap: 0.8333vw;
  }

  .contact-form__group {
    gap: 0.4167vw;
  }

  .contact-form__label {
    font-size: 0.8333vw;
  }

  .contact-form__input {
    height: 3.0208vw;
    padding: 0.8333vw 0.9375vw;
    border-radius: 0.625vw;
    border-width: 0.0781vw;
    font-size: 0.8333vw;
  }

  .contact-form__input::placeholder {
    font-size: 0.8333vw;
  }

  .contact-form__textarea {
    height: 6.6667vw;
    line-height: 1.25vw;
  }

  .contact-form__btn {
    height: 2.6042vw;
    padding: 0 1.5625vw;
    font-size: 0.8333vw;
  }

  .contact-info__list {
    gap: 1.25vw;
  }

  .contact-info__item {
    gap: 0.9375vw;
  }

  .contact-info__icon-box {
    width: 2.7083vw;
    height: 2.7083vw;
  }

  .contact-info__icon-box svg {
    width: 1.25vw;
    height: 1.25vw;
  }

  .contact-info__text {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  .contact-info__hotline {
    font-size: 1.1458vw;
  }

  .contact-social {
    gap: 0.625vw;
  }

  .contact-social__title {
    font-size: 0.7292vw;
  }

  .contact-social__links {
    gap: 0.625vw;
  }

  .contact-social__btn {
    width: 2.0833vw;
    height: 2.0833vw;
  }

  .contact-social__btn--icon svg {
    width: 0.9375vw;
    height: 0.9375vw;
  }

  .contact-social__btn--zalo {
    font-size: 0.5208vw;
  }

  /* Branch Hero desktop vw scaling */
  .branch-hero {
    height: 36.4583vw;
    min-height: 36.4583vw;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .branch-hero__inner {
    width: 55vw;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 11.9792vw;
    padding-right: 4.1667vw;
    flex-direction: row;
    align-items: center;
    gap: 1.875vw;
  }

  .branch-hero__content-wrap {
    flex: 1 1 0;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.875vw;
  }

  .branch-hero__content {
    width: 34.0625vw;
    gap: 1.0417vw;
    max-width: none;
  }

  .branch-hero__title {
    font-size: 2.3438vw;
    line-height: 1.2;
  }

  .branch-hero__desc {
    font-size: 0.9375vw;
    line-height: 1.6406vw;
  }

  .branch-hero__media-wrap--main {
    position: absolute;
    width: 31.5104vw;
    height: 24.1667vw;
    left: 50.2604vw;
    top: 8.4896vw;
    margin: 0;
    z-index: 1;
  }

  .branch-hero__img--main {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .branch-hero__media-wrap--sub {
    position: absolute;
    width: 20.4198vw;
    height: 13.6635vw;
    left: 72.3938vw;
    top: 22.0927vw;
    margin: 0;
    z-index: 2;
  }

  .branch-hero__img--sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-8deg);
    transform-origin: top left;
  }

  /* Branch Map Section desktop vw scaling (1920px baseline) */
  .branch-map-section {
    height: 35.7813vw;
    min-height: 35.7813vw;
    padding: 0;
  }

  .branch-map__inner {
    flex-direction: row;
    align-items: center;
    gap: 3.125vw;
    height: 100%;
  }

  .branch-map__visual {
    height: 26.0417vw;
    width: 34.8958333vw;
    padding-left: 13.0208333vw;
    max-width: none;
    margin: 0;
    flex-shrink: 0;
  }

  .branch-map__img {
    max-height: 26.0417vw;
  }

  .branch-map__flower {
    width: 1.0417vw;
    height: 1.0417vw;
  }

  .branch-map__line {
    width: 3.125vw;
    border-top-width: 0.08vw;
  }

  .branch-map__pin {
    height: 1.7708vw;
    padding: 0.2604vw 1.0417vw;
    border-radius: 0.8854vw;
  }

  .branch-map__marker--hanoi {
    top: 12%;
    left: 54%;
  }

  .branch-map__marker--hcm {
    top: 83%;
    left: 58%;
  }

  .branch-map__marker--hcm .branch-map__line {
    width: 1.4583vw;
    border-top-width: 0.08vw;
    transform: rotate(68deg);
    transform-origin: 0 50%;
    margin-left: -0.3125vw;
    margin-top: 0.9375vw;
  }

  .branch-map__marker--hcm .branch-map__pin {
    margin-left: -1.145833vw;
    margin-top: 2.25vw;
  }

  .branch-map__pin-text {
    font-size: 0.8333vw;
  }

  .branch-map__content {
    gap: 2.0833vw;
    flex: 1 1 0;
  }

  .branch-map__header {
    gap: 0.8333vw;
  }

  .branch-map__title {
    font-size: 2.2917vw;
  }

  .branch-map__desc {
    font-size: 0.8333vw;
    line-height: 1.25vw;
    width: 80%;
  }

  .branch-map__stats {
    gap: 2.0833vw;
  }

  .branch-map__stat-item {
    gap: 0.4167vw;
  }

  .branch-map__stat-number {
    font-size: 2.5vw;
  }

  .branch-map__stat-label {
    font-size: 0.8333vw;
  }

  /* Branch section desktop vw scaling */
  .branch-section__subtitle {
    max-width: 41.6667vw;
  }

  .branch-tabs {
    gap: 0.8333vw;
    margin-bottom: 2.5vw;
  }

  .branch-tab {
    height: 2.6042vw;
    padding: 0 1.4583vw;
    border-radius: 1.3021vw;
    border-width: 0.0781vw;
    font-size: 0.8333vw;
  }

  .branch-grid {
    gap: 1.6667vw;
  }

  .branch-card {
    border-radius: 1.25vw;
    box-shadow: 0px 0.5208vw 1.25vw -0.5208vw rgba(0, 0, 0, 0.05);
    outline-width: 0.05208vw;
  }

  .branch-card__media {
    height: 15.625vw;
  }

  .branch-card__body {
    padding: 1.25vw;
    gap: 1.0417vw;
  }

  .branch-card__title {
    font-size: 0.9375vw;
  }

  .branch-card__info-list {
    gap: 0.625vw;
  }

  .branch-card__info-item {
    gap: 0.4167vw;
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  .branch-card__icon {
    width: 0.9375vw;
    height: 0.9375vw;
  }

  .branch-card__map-link {
    gap: 0.2083vw;
    font-size: 0.8333vw;
  }

  .branch-card__map-link svg {
    width: 0.625vw;
    height: 0.625vw;
  }

  /* Sakura Register Desktop VW Scaling */
  .sakura-register__icon--1 {
    left: 12.5vw;
    top: 2.0833vw;
    font-size: 3.3333vw;
  }

  .sakura-register__icon--2 {
    right: 12.5vw;
    top: 4.7396vw;
    font-size: 2.5vw;
  }

  .sakura-register__mascot--left {
    width: 12.8125vw;
    height: 12.8125vw;
    left: 5.4167vw;
  }

  .sakura-register__mascot--right {
    width: 12.8125vw;
    height: 18.0729vw;
    right: 5.625vw;
    top: 5.4896vw;
  }

  .sakura-register__inner {
    gap: 1.6667vw;
  }

  .sakura-register__subtitle {
    max-width: 38.3333vw;
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  .sakura-register__form {
    gap: 0.8333vw;
  }

  .sakura-register__input-wrap--phone {
    width: 16.6667vw;
  }

  .sakura-register__input-wrap--select {
    width: 15.625vw;
  }

  .sakura-register__input,
  .sakura-register__select {
    height: 2.7083vw;
    padding: 0.7292vw 1.25vw;
    border-radius: 51.979vw;
    font-size: 0.8333vw;
    line-height: 1.25vw;
    outline-width: 0.0781vw;
  }

  .sakura-register__select {
    padding-right: 2.2917vw;
  }

  .sakura-register__select-arrow {
    right: 1.25vw;
  }

  .sakura-register__select-arrow svg {
    width: 0.625vw;
    height: 0.3646vw;
  }

  .sakura-register__submit-btn {
    height: 2.7083vw;
    padding: 0.7292vw 1.6667vw;
    border-radius: 51.979vw;
    font-size: 0.78125vw;
  }

  /* Daily Life Page Desktop VW Scaling */
  .daily-hero {
    height: 36.4583vw;
  }

  .daily-hero__content-wrap {
    width: 55vw;
    padding-left: 11.979vw;
    padding-right: 4.167vw;
  }

  .daily-hero__content {
    max-width: 34.0625vw;
    gap: 1.0416vw;
  }

  .daily-hero__title {
    font-size: 2.34375vw;
  }

  .daily-hero__desc {
    font-size: 0.9375vw;
    line-height: 1.64vw;
  }

  .daily-hero__photo-item--1 {
    width: 15.917vw;
    height: 11.952vw;
    left: 50vw;
    top: 7.49vw;
  }

  .daily-hero__photo-item--2 {
    width: 22.6125vw;
    height: 14.412vw;
    left: 48.4895vw;
    top: 19.674vw;
  }

  .daily-hero__photo-item--3 {
    width: 16.1458vw;
    height: 13.02vw;
    left: 72.5vw;
    top: 6.3536vw;
  }

  .daily-hero__photo-item--4 {
    width: 17.7083vw;
    height: 14.0625vw;
    left: 71.778vw;
    top: 19.948vw;
  }

  .daily-journey {
    padding: 4.1667vw 0;
  }

  .daily-journey__inner {
    gap: 2.5vw;
  }

  .daily-journey__timeline {
    max-width: 62.5vw;
    gap: 0.9375vw;
  }
  .daily-journey__item {
    gap: 1.4583vw;
  }

  .daily-journey__time-col {
    flex: 0 0 8.9583vw;
    gap: 1.4583vw;
  }

  .daily-journey__time {
    font-size: 1.0416vw;
  }

  .daily-journey__dot {
    width: 0.9375vw;
    height: 0.9375vw;
    border-width: 0.2083vw;
  }

  .daily-journey__card {
    padding: 1.25vw;
    border-radius: 1.25vw;
    gap: 1.25vw;
  }

  .daily-journey__card-media {
    width: 9.375vw;
    height: 6.25vw;
    border-radius: 0.8333vw;
  }

  .daily-journey__card-title {
    font-size: 1.0416vw;
  }

  .daily-journey__card-desc {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  /* Daily Growth Desktop VW Scaling */
  .daily-growth {
    padding: 4.1667vw 0;
  }

  .daily-growth__inner {
    gap: 2.0833vw;
  }

  .daily-growth__gallery {
    gap: 1.6667vw;
  }

  .daily-growth__grid {
    gap: 1.04167vw;
  }

  .daily-growth__item {
    height: 18.229vw;
    border-radius: 1.04167vw;
  }

  .daily-growth__pagination {
    margin-top: 1.04167vw;
    gap: 0.4167vw;
  }

  .daily-growth__pagination .swiper-pagination-bullet {
    width: 0.4167vw;
    height: 0.4167vw;
  }

  .daily-growth__pagination .swiper-pagination-bullet-active {
    width: 0.5208vw;
    height: 0.5208vw;
  }

  /* Daily Outcomes Desktop VW Scaling */
  .daily-outcomes {
    padding: 4.1667vw 0;
  }

  .daily-outcomes__inner {
    gap: 2.5vw;
  }

  .daily-outcomes__grid {
    gap: 2.0833vw;
  }

  .daily-outcomes__card {
    gap: 0.8333vw;
  }

  .daily-outcomes__avatar-wrap {
    width: 9.8958vw;
    height: 9.8958vw;
    border-width: 0.4167vw;
    box-shadow: 0px 0.3125vw 0.9375vw rgba(22, 28, 44, 0.08);
  }

  .daily-outcomes__badge {
    width: 2.5vw;
    height: 2.5vw;
    box-shadow: 0px 0.15625vw 0.4167vw rgba(0, 0, 0, 0.15);
  }

  .daily-outcomes__badge-icon {
    font-size: 1.0416vw;
  }

  .daily-outcomes__card-title {
    font-size: 1.0416vw;
  }

  .daily-outcomes__card-desc {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  /* Admissions Hero Desktop VW Scaling */
  .admissions-hero {
    min-height: 36.4583vw;
    padding: 3.6458vw 0;
  }

  .admissions-hero__bg-circle {
    width: 17.1875vw;
    height: 17.1875vw;
    left: -4.1667vw;
    top: 21.875vw;
  }

  .admissions-hero__flower {
    left: 7.2917vw;
    top: 4.6875vw;
    font-size: 3.0208vw;
  }

  .admissions-hero__inner {
    gap: 3.125vw;
  }

  .admissions-hero__content {
    max-width: 35.4167vw;
    gap: 1.25vw;
  }

  .admissions-hero__badge {
    padding: 0.4167vw 0.9375vw;
  }

  .admissions-hero__badge-text {
    font-size: 0.7292vw;
  }

  .admissions-hero__title {
    font-size: 2.2917vw;
  }

  .admissions-hero__desc {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  .admissions-hero__actions {
    gap: 1.0417vw;
  }

  .admissions-hero__btn {
    height: 2.7083vw;
    padding: 0 1.6667vw;
    font-size: 0.8333vw;
  }

  .admissions-hero__note {
    font-size: 0.8333vw;
  }

  .admissions-hero__media-wrap {
    width: 30.2083vw;
  }

  .admissions-hero__card {
    height: 22.9167vw;
    padding: 0.625vw;
    border-radius: 1.875vw;
  }

  .admissions-hero__img {
    border-radius: 1.3542vw;
  }

  /* Target Hero Desktop VW Scaling */
  .target-hero {
    height: 36.4583vw;
    min-height: 36.4583vw;
  }

  .target-hero__inner {
    padding-left: 11.9792vw;
    padding-right: 4.1667vw;
  }

  .target-hero__content-wrap {
    max-width: 34.0625vw;
  }

  .target-hero__content {
    gap: 1.0417vw;
  }

  .target-hero__title {
    font-size: 2.3438vw;
  }

  .target-hero__desc {
    font-size: 0.9375vw;
    line-height: 1.6406vw;
  }

  .target-hero__media-wrap {
    left: 58.0208vw;
    top: 8.0208vw;
    width: 20.2604vw;
    height: 23.9583vw;
  }

  /* Admissions Steps Desktop VW Scaling */
  .admissions-steps {
    padding: 4.1667vw 0;
  }

  .admissions-steps__inner {
    gap: 2.5vw;
  }

  .admissions-steps__grid {
    gap: 1.25vw;
  }

  .admissions-steps__card {
    border-radius: 1.25vw;
    border-width: 0.1042vw;
    box-shadow: 0px 0.4167vw 1.25vw rgba(255, 30, 126, 0.06);
  }

  .admissions-steps__card-header {
    padding: 1.0417vw 1.25vw;
    gap: 0.8333vw;
  }

  .admissions-steps__num-badge {
    width: 2.5vw;
    height: 2.5vw;
    font-size: 1.1458vw;
  }

  .admissions-steps__card-title {
    font-size: 0.8333vw;
  }

  .admissions-steps__card-body {
    padding: 1.0417vw 1.25vw 1.25vw;
    gap: 0.625vw;
  }

  .admissions-steps__meta-item {
    gap: 0.4167vw;
  }

  .admissions-steps__meta-icon {
    width: 0.8333vw;
    height: 0.8333vw;
    margin-top: 0.1563vw;
  }

  .admissions-steps__meta-text,
  .admissions-steps__para {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  .admissions-steps__sub-list {
    gap: 0.7292vw;
  }

  .admissions-steps__sub-item {
    gap: 0.3125vw;
  }

  .admissions-steps__sub-header {
    gap: 0.4167vw;
  }

  .admissions-steps__dot {
    width: 0.4167vw;
    height: 0.4167vw;
  }

  .admissions-steps__sub-label {
    font-size: 0.78125vw;
  }

  .admissions-steps__sub-desc {
    font-size: 0.7292vw;
    line-height: 1.1458vw;
  }

  /* Admissions Form Desktop VW Scaling */
  .admissions-form {
    padding: 4.1667vw 0;
  }

  .admissions-form__inner {
    gap: 2.5vw;
  }

  .admissions-form__row {
    gap: 1.875vw;
  }

  .admissions-form__box {
    padding: 1.875vw;
    border-radius: 1.25vw;
    border-width: 0.0781vw;
    box-shadow: 0px 0.5208vw 1.4583vw rgba(22, 28, 44, 0.07);
  }

  .admissions-form__form {
    gap: 1.25vw;
  }

  .admissions-form__field-group {
    gap: 0.8333vw;
  }

  .admissions-form__field {
    gap: 0.4167vw;
  }

  .admissions-form__label {
    font-size: 0.7292vw;
  }

  .admissions-form__input,
  .admissions-form__select {
    height: 2.8125vw;
    padding: 0 0.8333vw;
    border-radius: 0.625vw;
    border-width: 0.0781vw;
    font-size: 0.7292vw;
  }

  .admissions-form__select {
    padding-right: 2.0833vw;
  }

  .admissions-form__select-arrow {
    right: 0.8333vw;
  }

  .admissions-form__select-arrow svg {
    width: 0.625vw;
    height: 0.3646vw;
  }

  .admissions-form__action {
    margin-top: 0.4167vw;
  }

  .admissions-form__submit-btn {
    height: 2.7083vw;
    padding: 0 1.875vw;
    font-size: 0.8333vw;
    box-shadow: 0px 0.2083vw 0.7292vw rgba(255, 30, 126, 0.25);
  }

  .admissions-form__media-box {
    border-radius: 1.25vw;
    min-height: 22.9167vw;
    padding: 1.25vw;
  }

  .admissions-form__quote-card {
    padding: 1.1458vw;
    border-radius: 0.9375vw;
  }

  .admissions-form__quote-text {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }

  /* Admissions FAQ Desktop VW Scaling */
  .admissions-faq {
    padding: 4.1667vw 0;
  }

  .admissions-faq__inner {
    gap: 2.5vw;
    max-width: 62.5vw;
  }

  .admissions-faq__list {
    gap: 0.7292vw;
  }

  .admissions-faq__item {
    border-radius: 0.9375vw;
    border-width: 0.0781vw;
  }

  .admissions-faq__item.is-active {
    box-shadow: 0px 0.5208vw 1.4583vw rgba(22, 28, 44, 0.07);
  }

  .admissions-faq__question {
    padding: 1.0417vw 1.25vw;
    gap: 0.8333vw;
  }

  .admissions-faq__question-text {
    font-size: 0.8333vw;
  }

  .admissions-faq__icon {
    font-size: 1.25vw;
  }

  .admissions-faq__answer {
    padding: 0 1.25vw 1.0417vw;
  }

  .admissions-faq__answer-text {
    font-size: 0.8333vw;
    line-height: 1.25vw;
  }
}

@media (max-width: 1200px) {
  .banner__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 20px;
  }

  .phuong-cham__nav-btn--prev {
    left: -20px;
  }
  .phuong-cham__nav-btn--next {
    right: -20px;
  }
}

@media (max-width: 1024px) {
  .target-goals {
    padding: 60px 0 40px;
  }

  .target-tree {
    display: none;
  }

  .target-goals__header {
    margin-bottom: 40px;
  }

  .target-goals__subtitle {
    max-width: 100%;
    font-size: 16px;
    line-height: 24px;
  }

  .target-goals__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 30px;
  }

  .target-goals__tree-wrap {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
    justify-items: center;
  }

  .target-goals__card,
  .target-goals__card--pos-tri-tue,
  .target-goals__card--pos-dao-duc,
  .target-goals__card--pos-dinh-duong,
  .target-goals__card--pos-the-chat {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto;
    padding: 28px 16px 16px !important;
    border-radius: 16px !important;
    margin-top: 20px;
  }

  .target-goals__card--pos-tri-tue {
    background: #f0f5fe !important;
    box-shadow: 0px 4px 16px rgba(66, 133, 244, 0.15) !important;
    justify-content: flex-start !important;
    height: auto !important;
  }

  .target-goals__badge,
  .target-goals__card--pos-tri-tue .target-goals__badge {
    position: absolute !important;
    top: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 2;
  }

  .target-goals__badge-icon,
  .target-goals__card--pos-tri-tue .target-goals__badge-icon {
    width: 22px !important;
    height: 22px !important;
  }

  .target-goals__card-title {
    font-size: 15px;
    line-height: 1.3;
  }

  .target-goals__card-desc {
    font-size: 13px;
    line-height: 19px;
  }

  .target-goals__detail {
    width: 100%;
    max-width: 100%;
  }

  .target-goals__detail-box {
    padding: 28px 24px;
    border-radius: 20px;
    gap: 16px;
    margin-bottom: 0;
  }

  .target-goals__detail-title,
  .target-goals__detail-box--white .target-goals__detail-title {
    font-size: 18px;
  }

  .target-goals__detail-sub,
  .target-goals__detail-box--white .target-goals__detail-sub {
    font-size: 15px;
    line-height: 22px;
  }

  .target-goals__detail-intro-desc {
    gap: 14px;
  }

  .target-goals__detail-paragraph {
    font-size: 14px;
    line-height: 1.6;
  }

  .target-goals__detail-item {
    font-size: 15px;
    line-height: 22px;
    gap: 10px;
  }

  /* Sakura Values Tablet Styles */
  .sakura-values {
    padding: 60px 0;
  }

  .sakura-values__wrapper {
    gap: 36px;
  }

  .sakura-values__title {
    font-size: 32px;
  }

  .sakura-values__list {
    gap: 36px;
  }

  .sakura-values__row {
    flex-direction: column !important;
    gap: 24px;
  }

  .sakura-values__media {
    width: 100%;
    max-width: 100%;
    height: 320px;
    border-radius: 16px;
  }

  .sakura-values__content-col {
    width: 100%;
  }

  .sakura-values__card {
    padding: 24px 20px;
    border-radius: 16px;
    gap: 24px;
  }

  .sakura-values__card--align-right .sakura-values__sub-header {
    justify-content: flex-start;
  }

  .sakura-values__card--align-right .sakura-values__sub-title,
  .sakura-values__card--align-right .sakura-values__sub-desc {
    text-align: left;
  }

  .sakura-values__watermark {
    font-size: 90px;
    opacity: 0.35;
    bottom: 16px;
  }

  .sakura-values__item--image-left .sakura-values__watermark {
    right: 16px;
    left: auto;
  }

  .sakura-values__item--image-right .sakura-values__watermark {
    left: 16px;
    right: auto;
  }

  /* Sakura Experience Tablet Styles */
  .sakura-experience {
    padding: 50px 0;
    min-height: auto;
  }

  .sakura-experience__inner {
    gap: 16px;
  }

  .sakura-experience__title {
    font-size: 32px;
    line-height: 1.3;
  }

  .sakura-experience__desc {
    font-size: 16px;
    line-height: 1.5;
  }

  .sakura-experience__btn {
    padding: 12px 28px;
    font-size: 15px;
  }

  /* Sakura News & System Tablet Styles */
  .sakura-news {
    padding: 40px 0 30px;
  }

  .sakura-news__card-media {
    height: 220px;
  }

  .sakura-news__nav-btn {
    width: 44px;
    height: 44px;
    top: 110px;
  }

  .sakura-system {
    padding: 30px 0 40px;
  }

  .sakura-system__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sakura-system__mascot {
    display: none;
  }

  .single-post {
    padding: 40px 0;
  }

  .single-post__layout {
    flex-direction: column;
    gap: 40px;
  }

  .single-post__sidebar {
    width: 100%;
    position: static;
    top: auto;
  }

  .single-post__title {
    font-size: 24px;
    line-height: 32px;
  }

  .archive-featured__card {
    flex-direction: column;
  }

  .archive-featured__media {
    width: 100%;
    max-width: 100%;
  }

  .archive-featured__img {
    height: 240px;
  }

  .archive-featured__body {
    padding: 24px 20px;
  }

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

@media (max-width: 991px) {
  .header__nav,
  .header__hotline {
    display: none;
  }

  .header__toggle {
    display: block;
  }

  .banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .banner__content {
    flex: 1 1 100%;
    align-items: center;
    max-width: 100%;
  }

  .banner__media {
    flex: 1 1 100%;
    justify-content: center;
  }

  .footer__content {
    flex-direction: column;
    gap: 24px;
  }

  .contact-grid {
    flex-direction: column;
  }

  /* Admissions Hero Tablet Responsive */
  .admissions-hero {
    min-height: auto;
    padding: 90px 0 40px;
  }

  .admissions-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .admissions-hero__content {
    max-width: 100%;
    align-items: center;
    gap: 18px;
  }

  .admissions-hero__title {
    font-size: 32px;
  }

  .admissions-hero__desc {
    font-size: 15px;
    line-height: 1.5;
  }

  .admissions-hero__actions {
    justify-content: center;
    gap: 16px;
  }

  .admissions-hero__media-wrap {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .admissions-hero__card {
    height: 380px;
    transform: rotate(0deg);
  }

  /* Branch Hero Tablet Responsive */
  .branch-hero {
    min-height: auto;
    padding-top: 90px;
  }

  .branch-hero__inner {
    padding: 36px 20px;
  }

  .branch-hero__title {
    font-size: 26px;
    line-height: 1.3;
  }

  .branch-hero__desc {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Daily Life Hero Tablet Responsive */
  .daily-hero {
    height: auto;
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .daily-hero__inner {
    flex-direction: column;
    height: auto;
  }

  .daily-hero__content-wrap {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;
  }

  .daily-hero__content {
    max-width: 100%;
    align-items: center;
  }

  .daily-hero__title {
    font-size: 26px;
  }

  .daily-hero__desc {
    font-size: 15px;
    line-height: 1.5;
  }

  .daily-hero__photos-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    margin: 0 auto;
  }

  .daily-hero__photo-item {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: 180px !important;
    border-radius: 20px !important;
    border: 5px solid #ffffff !important;
    transform: none !important;
  }

  /* Daily Journey Section Tablet Responsive */
  .daily-journey {
    padding: 50px 0;
  }

  .daily-journey__inner {
    gap: 32px;
  }

  .daily-journey__timeline {
    max-width: 100%;
    gap: 14px;
  }

  .daily-journey__time-col {
    flex: 0 0 142px;
    gap: 16px;
  }

  .daily-journey__time {
    font-size: 17px;
  }

  .daily-journey__card {
    padding: 18px;
    gap: 16px;
    border-radius: 18px;
  }

  .daily-journey__card-media {
    width: 140px;
    height: 95px;
    border-radius: 12px;
  }

  .daily-journey__card-title {
    font-size: 17px;
  }

  /* Daily Growth Tablet Responsive */
  .daily-growth {
    padding: 50px 0;
  }

  .daily-growth__inner {
    gap: 28px;
  }

  .daily-growth__grid {
    gap: 16px;
  }

  .daily-growth__item {
    height: 240px;
    border-radius: 16px;
  }

  /* Daily Outcomes Tablet Responsive */
  .daily-outcomes {
    padding: 50px 0;
  }

  .daily-outcomes__inner {
    gap: 32px;
  }

  .daily-outcomes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }

  .daily-outcomes__avatar-wrap {
    width: 160px;
    height: 160px;
    border-width: 6px;
  }

  .daily-outcomes__badge {
    width: 42px;
    height: 42px;
  }

  .daily-outcomes__badge-icon {
    font-size: 18px;
  }

  .daily-outcomes__card-title {
    font-size: 18px;
  }

  .daily-outcomes__card-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Target Hero Tablet Responsive */
  .target-hero {
    height: auto;
    min-height: auto;
    padding: 90px 0 40px;
  }

  .target-hero__inner {
    flex-direction: column;
    padding: 0 24px;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .target-hero__content-wrap {
    max-width: 100%;
    justify-content: center;
  }

  .target-hero__content {
    align-items: center;
    gap: 16px;
  }

  .target-hero__title {
    font-size: 32px;
  }

  .target-hero__desc {
    font-size: 16px;
    line-height: 1.5;
  }

  .target-hero__media-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 389px;
    height: 320px;
  }

  /* Admissions Steps Tablet Responsive */
  .admissions-steps {
    padding: 50px 0;
  }

  .admissions-steps__inner {
    gap: 32px;
  }

  .admissions-steps__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Admissions Form Tablet Responsive */
  .admissions-form {
    padding: 50px 0;
  }

  .admissions-form__inner {
    gap: 32px;
  }

  .admissions-form__row {
    flex-direction: column;
    gap: 28px;
  }

  .admissions-form__box {
    padding: 28px;
  }

  .admissions-form__media-box {
    min-height: 320px;
    padding: 20px;
  }

  /* Admissions FAQ Tablet Responsive */
  .admissions-faq {
    padding: 50px 0;
  }

  .admissions-faq__inner {
    gap: 32px;
    max-width: 100%;
  }

  .admissions-faq__question {
    padding: 18px 20px;
  }

  .admissions-faq__answer {
    padding: 0 20px 18px;
  }

  .daily-journey__card-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .branch-hero__media-wrap--sub {
    width: 60%;
    max-width: 280px;
    margin: -20px auto 20px;
  }

  /* Branch Map Section Tablet Responsive */
  .branch-map-section {
    height: auto;
    min-height: auto;
    padding: 50px 0;
    background-size: cover;
  }

  .branch-map__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }

  .branch-map__visual {
    width: 100%;
    max-width: 440px;
    height: auto;
    padding-left: 0;
    margin: 0 auto;
  }

  .branch-map__img {
    max-height: 300px;
    width: 100%;
    object-fit: contain;
  }

  .branch-map__flower {
    width: 18px;
    height: 18px;
  }

  .branch-map__flower svg {
    width: 18px;
    height: 18px;
  }

  .branch-map__line {
    width: 40px;
  }

  .branch-map__marker--hcm .branch-map__line {
    width: 20px;
    margin-top: 10px;
  }

  .branch-map__pin {
    height: 28px;
    padding: 3px 14px;
    border-radius: 14px;
  }

  .branch-map__pin-text {
    font-size: 13px;
  }

  .branch-map__content {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .branch-map__title {
    font-size: 24px;
  }

  .branch-map__desc {
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
  }

  .branch-map__stats {
    flex-direction: row;
    justify-content: center;
    gap: 28px;
  }

  .branch-map__stat-number {
    font-size: 30px;
  }

  .branch-map__stat-label {
    font-size: 14px;
  }

  /* Branch Cards Grid Tablet Responsive */
  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .branch-card__media {
    height: 220px;
  }

  .branch-card__body {
    padding: 20px;
    gap: 16px;
  }

  .branch-card__title {
    font-size: 17px;
  }

  .branch-card__info-item {
    font-size: 14px;
    line-height: 1.5;
  }

  .branch-card__map-link {
    font-size: 14px;
  }
}

@media (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

@media (max-width: 768px) {
  .footer__nav-group {
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Global mobile typography rule for regular text */
  body,
  p,
  li,
  .font-primary,
  .section-subtitle,
  .banner__desc,
  .phuong-cham__card-desc,
  .target-goals__subtitle,
  .target-goals__card-desc,
  .target-goals__detail-sub,
  .target-goals__detail-item,
  .sakura-values__sub-desc,
  .sakura-values__sub-title,
  .footer__slogan,
  .footer__col-link,
  .footer__copyright {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .target-goals__header {
    margin-bottom: 30px;
    gap: 10px;
  }

  .target-goals__header .section-title,
  .section-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }

  .target-goals__inner {
    gap: 24px;
    margin-top: 20px;
  }

  .target-goals__tree-wrap {
    gap: 30px 12px;
  }

  .btn {
    height: 40px;
  }

  .target-goals__card,
  .target-goals__card--pos-tri-tue,
  .target-goals__card--pos-dao-duc,
  .target-goals__card--pos-dinh-duong,
  .target-goals__card--pos-the-chat {
    padding: 30px 15px !important;
    margin-top: 18px;
  }

  .target-goals__badge,
  .target-goals__card--pos-tri-tue .target-goals__badge {
    top: -18px !important;
    width: 42px !important;
    height: 42px !important;
  }

  .target-goals__badge-icon,
  .target-goals__card--pos-tri-tue .target-goals__badge-icon {
    width: 18px !important;
    height: 18px !important;
  }

  .target-goals__card-title {
    font-size: 16px;
  }

  .target-goals__detail-box {
    padding: 20px 16px;
    border-radius: 16px;
    gap: 14px;
  }

  .target-goals__detail-title {
    font-size: 16px;
  }

  .target-goals__detail-list {
    gap: 10px;
  }

  .target-goals__detail-item {
    gap: 8px;
  }

  /* Sakura Values Mobile Styles */
  .sakura-values {
    padding: 40px 0;
  }

  .sakura-values__wrapper {
    gap: 28px;
  }

  .sakura-values__title {
    font-size: 24px !important;
  }

  .sakura-values__list {
    gap: 28px;
  }

  .sakura-values__card {
    padding: 20px 16px;
    border-radius: 16px;
    gap: 18px;
  }

  .sakura-values__card-inner {
    gap: 18px;
  }

  .sakura-values__sub-tag {
    font-size: 15px !important;
  }

  .sakura-values__sub-title {
    font-size: 14px !important;
  }

  .sakura-values__sub-desc {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .sakura-values__row {
    flex-direction: column;
  }

  .sakura-values__media {
    order: 1;
    width: 100%;
    max-width: 100%;
    min-height: unset;
    height: 240px;
    border-radius: 14px;
  }

  .sakura-values__content-col {
    order: 2;
    width: 100%;
  }

  .sakura-values__card--align-right .sakura-values__sub-header {
    justify-content: flex-start;
  }

  .sakura-values__card--align-right .sakura-values__sub-title,
  .sakura-values__card--align-right .sakura-values__sub-desc {
    text-align: left;
  }

  .sakura-values__nav {
    bottom: 12px;
  }

  .sakura-values__nav-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .sakura-values__watermark {
    font-size: 64px;
    opacity: 0.25;
    bottom: 12px;
  }

  .sakura-values__item--image-left .sakura-values__watermark {
    right: 12px;
    left: auto;
  }

  .sakura-values__item--image-right .sakura-values__watermark {
    left: 12px;
    right: auto;
  }

  .phuong-cham__card {
    margin-top: 35px;
  }
  /* Sakura Experience Mobile Styles */
  .sakura-experience {
    padding: 40px 0;
  }

  .sakura-experience__inner {
    gap: 14px;
    padding: 0 16px;
  }

  .sakura-experience__title {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  .sakura-experience__desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .sakura-experience__btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Sakura News & System Mobile Styles */
  .sakura-news {
    padding: 30px 0 20px;
  }

  .sakura-news__header {
    margin-bottom: 24px;
  }

  .sakura-news__nav-btn {
    display: none;
  }

  .sakura-news__card-media {
    height: 230px;
  }

  .sakura-news__card-title {
    font-size: 16px !important;
  }

  .sakura-system {
    padding: 20px 0 30px;
  }

  .sakura-system__inner {
    gap: 20px;
  }

  .sakura-system__tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .sakura-system__tab-btn {
    height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .sakura-system__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sakura-system__card {
    padding: 14px;
    border-radius: 16px;
  }

  .sakura-system__card-name {
    font-size: 15px !important;
  }

  .sakura-system__card-text {
    font-size: 13px !important;
  }

  .sakura-system__more-btn {
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
  }

  .sakura-register__mascot--left {
    width: 80px;
    height: 100px;
    left: 0;
    top: 0;
  }

  .sakura-register__mascot--right {
    width: 100px;
    height: 100px;
    right: 0;
    bottom: 0;
    top: unset;
  }

  .floating-widgets {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .floating-widgets__item {
    width: 48px;
    height: 48px;
  }

  .floating-widgets__label {
    font-size: 13px;
  }

  .floating-widgets__icon-top {
    width: 14px;
    height: 14px;
  }

  .sakura-register__title {
    font-size: 28px;
  }

  .sakura-register__desc {
    font-size: 14px;
  }

  .sakura-register__form {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }

  .sakura-register__input-wrap {
    width: 100%;
  }

  .sakura-register__submit-btn {
    height: 40px;
  }
}

@media (max-width: 640px) {
  .banner__stats {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .archive-hero {
    height: 200px;
  }

  .archive-hero__title {
    font-size: 28px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .archive-grid-section__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .archive-categories {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 32px;
  }

  .archive-categories__item {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 576px) {
  /* Admissions Hero Mobile Responsive */
  .admissions-hero {
    padding: 90px 0 40px;
  }

  .admissions-hero__inner {
    gap: 28px;
  }

  .admissions-hero__badge {
    padding: 6px 14px;
  }

  .admissions-hero__badge-text {
    font-size: 12px;
  }

  .admissions-hero__title {
    font-size: 24px;
  }

  .admissions-hero__desc {
    font-size: 14px;
    line-height: 1.45;
  }

  .admissions-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .admissions-hero__btn {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }

  .admissions-hero__note {
    font-size: 14px;
  }

  .admissions-hero__media-wrap {
    max-width: 100%;
  }

  .admissions-hero__card {
    height: 250px;
    padding: 8px;
    border-radius: 20px;
  }

  .admissions-hero__img {
    border-radius: 14px;
  }

  /* Target Hero Mobile Responsive */
  .target-hero {
    padding: 90px 0 36px;
  }

  .target-hero__inner {
    padding: 0 16px;
    gap: 24px;
  }

  .target-hero__title {
    font-size: 24px;
  }

  .target-hero__desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .target-hero__media-wrap {
    width: 250px;
    height: auto;
  }

  /* Admissions FAQ Mobile Responsive */
  .admissions-faq {
    padding: 36px 0;
  }

  .admissions-faq__inner {
    gap: 24px;
  }

  .admissions-faq__list {
    gap: 12px;
  }

  .admissions-faq__item {
    border-radius: 14px;
  }

  .admissions-faq__question {
    padding: 14px 16px;
    gap: 12px;
  }

  .admissions-faq__question-text {
    font-size: 14px;
  }

  .admissions-faq__icon {
    font-size: 20px;
  }

  .admissions-faq__answer {
    padding: 0 16px 16px;
  }

  .admissions-faq__answer-text {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .contact-form__row {
    flex-direction: column;
  }
  .contact-card {
    padding: 24px 18px;
  }
  .contact-card__title {
    font-size: 24px;
  }

  /* Branch Hero Mobile Responsive */
  .branch-hero__inner {
    padding: 24px 16px;
  }

  .branch-hero__content {
    gap: 10px;
  }

  .branch-hero__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .branch-hero__desc {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }

  .branch-hero__media-wrap--sub {
    width: 65%;
    max-width: 240px;
    margin: -15px auto 15px;
  }

  /* Daily Life Hero Mobile Responsive */
  .daily-hero {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .daily-hero__title {
    font-size: 22px;
  }

  .daily-hero__desc {
    font-size: 14px;
  }

  .daily-hero__photos-grid {
    gap: 12px;
    padding: 0 15px;
  }

  .daily-hero__photo-item {
    height: 130px !important;
  }

  /* Daily Journey Section Mobile Responsive */
  .daily-journey {
    padding: 36px 0;
  }

  .daily-journey__inner {
    gap: 24px;
  }

  .daily-journey__timeline {
    gap: 16px;
  }

  .daily-journey__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .daily-journey__time-col {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .daily-journey__time {
    font-size: 16px;
    text-align: left;
  }

  .daily-journey__dot {
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .daily-journey__card {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
    border-radius: 16px;
  }

  .daily-journey__card-media {
    width: 100%;
    height: 160px;
    border-radius: 12px;
  }

  .daily-journey__card-title {
    font-size: 16px;
  }

  .daily-journey__card-desc {
    font-size: 13.5px;
    line-height: 1.45;
  }

  /* Daily Growth Mobile Responsive */
  .daily-growth {
    padding: 36px 0;
  }

  .daily-growth__inner {
    gap: 20px;
  }

  .daily-growth__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .daily-growth__item {
    height: 220px;
    border-radius: 16px;
  }

  /* Daily Outcomes Mobile Responsive */
  .daily-outcomes {
    padding: 36px 0;
  }

  .daily-outcomes__inner {
    gap: 24px;
  }

  .daily-outcomes__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .daily-outcomes__avatar-wrap {
    width: 140px;
    height: 140px;
    border-width: 5px;
  }

  .daily-outcomes__badge {
    width: 38px;
    height: 38px;
  }

  .daily-outcomes__badge-icon {
    font-size: 16px;
  }

  .daily-outcomes__card-title {
    font-size: 16px;
  }

  .daily-outcomes__card-desc {
    font-size: 13.5px;
    line-height: 1.45;
  }

  /* Admissions Steps Mobile Responsive */
  .admissions-steps {
    padding: 36px 0;
  }

  .admissions-steps__inner {
    gap: 24px;
  }

  .admissions-steps__card-header {
    padding: 16px;
    gap: 12px;
  }

  .admissions-steps__num-badge {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .admissions-steps__card-title {
    font-size: 14px;
  }

  .admissions-steps__card-body {
    padding: 16px;
    gap: 10px;
  }

  .admissions-steps__meta-text,
  .admissions-steps__para {
    font-size: 14px;
    line-height: 1.5;
  }

  .admissions-steps__sub-label {
    font-size: 14px;
  }

  .admissions-steps__sub-desc {
    font-size: 13px;
    line-height: 1.45;
  }

  /* Admissions Form Mobile Responsive */
  .admissions-form {
    padding: 36px 0;
  }

  .admissions-form__inner {
    gap: 24px;
  }

  .admissions-form__box {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .admissions-form__form {
    gap: 16px;
  }

  .admissions-form__field-group {
    flex-direction: column;
    gap: 14px;
  }

  .admissions-form__input,
  .admissions-form__select {
    height: 46px;
    padding: 0 14px;
    font-size: 13.5px;
    border-radius: 10px;
  }

  .admissions-form__submit-btn {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }

  .admissions-form__media-box {
    min-height: 260px;
    padding: 16px;
    border-radius: 18px;
  }

  .admissions-form__quote-card {
    padding: 16px;
    border-radius: 14px;
  }

  .admissions-form__quote-text {
    font-size: 14px;
    line-height: 1.45;
  }

  /* Branch Map Section Mobile Responsive */
  .branch-map-section {
    padding: 36px 0;
  }

  .branch-map__inner {
    gap: 20px;
    flex-direction: column-reverse;
  }

  .branch-map__visual {
    max-width: 320px;
  }

  .branch-map__img {
    max-height: 220px;
  }

  .branch-map__flower {
    width: 15px;
    height: 15px;
  }

  .branch-map__flower svg {
    width: 15px;
    height: 15px;
  }

  .branch-map__line {
    width: 30px;
  }

  .branch-map__marker--hcm .branch-map__line {
    width: 15px;
    margin-top: 19px;
  }

  .branch-map__marker--hcm .branch-map__pin {
    margin-left: -10px;
    margin-top: 31px;
  }

  .branch-map__pin {
    height: 24px;
    padding: 2px 10px;
    border-radius: 12px;
  }

  .branch-map__pin-text {
    font-size: 10px;
  }

  .branch-map__content {
    gap: 18px;
  }

  .branch-map__title {
    font-size: 20px;
  }

  .branch-map__desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .branch-map__stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
    width: 100%;
  }

  .branch-map__marker--hanoi {
    top: 12%;
    left: 36%;
  }

  .branch-map__marker--hcm {
    top: 82%;
    left: 38%;
  }

  .branch-map__stat-item {
    gap: 2px;
  }

  .branch-map__stat-number {
    font-size: 28px;
  }

  .branch-map__stat-label {
    font-size: 13px;
  }

  /* Branch Section & Grid Mobile Responsive */
  .branch-section {
    padding: 36px 0;
  }

  .branch-section__subtitle {
    font-size: 13px;
    max-width: 100%;
  }

  .branch-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .branch-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .branch-tab {
    height: 38px;
    padding: 0 16px;
    font-size: 13px;
    border-radius: 19px;
  }

  .branch-card {
    border-radius: 16px;
  }

  .branch-card__media {
    height: 230px;
  }

  .branch-card__body {
    padding: 16px;
    gap: 12px;
  }

  .branch-card__title {
    font-size: 16px;
  }

  .branch-card__info-list {
    gap: 8px;
  }

  .branch-card__info-item {
    font-size: 14px;
    line-height: 1.4;
    gap: 6px;
  }

  .branch-card__icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }

  .branch-card__map-link {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 30px;
  }

  .banner {
    padding-top: 90px;
  }

  .target-goals__header .section-title,
  .section-title {
    font-size: 20px !important;
  }
  .banner__title {
    font-size: 20px;
  }

  .banner__btn {
    height: 40px;
    font-size: 14px;
  }
  .banner__inner {
    gap: 20px;
  }

  .banner__img {
    width: 250px;
    height: auto;
  }

  .banner__stats-number {
    font-size: 20px;
  }

  .banner__stats-icon-img {
    max-width: 30px;
    max-height: 30px;
  }

  .banner__stats {
    margin-top: 1rem;
  }

  .phuong-cham__badge {
    width: 65px;
    height: 65px;
  }

  .phuong-cham__badge-icon {
    width: 35px;
    height: 35px;
  }

  .phuong-cham__card-title {
    font-size: 1rem;
  }

  .phuong-cham__card-header {
    min-height: unset;
  }

  .phuong-cham__card-img {
    height: 200px;
  }

  .target-goals {
    padding: 40px 0;
  }

  .target-goals__tree-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sakura-values__media {
    min-height: unset;
    height: 250px;
  }

  .sakura-values__nav {
    bottom: 10px;
    gap: 8px;
  }

  .sakura-values__nav--bottom-right {
    right: 10px;
  }

  .sakura-values__nav--bottom-left {
    left: 10px;
  }

  .sakura-values__nav-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .sakura-values__card {
    padding: 16px 14px;
  }

  /* archive */

  .archive-hero__icon--1 {
    left: 0;
    top: 0;
    font-size: 40px;
  }

  .archive-hero__icon--2 {
    right: 10px;
    top: 70px;
    font-size: 30px;
  }

  .archive-hero__icon--3 {
    left: 55%;
    font-size: 24px;
  }
  .archive-featured__title {
    font-size: 16px;
  }

  .archive-featured__body {
    gap: 10px;
  }

  .archive-featured__btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .archive-categories {
    margin: 30px 0;
  }

  .archive-categories__item {
    height: 40px;
    font-size: 14px;
  }
  .archive-featured__date,
  .archive-featured__badge {
    font-size: 12px;
  }

  .archive-card__body {
    padding: 20px 15px;
  }

  .archive-card__title {
    font-size: 16px;
  }

  .archive-card__body {
    gap: 10px;
  }

  .archive-card__link {
    font-size: 14px;
  }

  .archive-card__img {
    height: 220px;
  }

  .archive-pagination .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .archive-grid-section {
    margin-bottom: 30px;
  }

  .sakura-register__inner {
    gap: 0;
  }

  .single-post__meta {
    gap: 10px;
  }

  .single-post__date,
  .single-post__author {
    font-size: 14px;
  }

  .single-post__sidebar,
  .single-post__main {
    gap: 20px;
  }

  .single-post__title {
    font-size: 20px;
  }

  .single-post__content h3 {
    font-size: 16px;
  }
  .single-sidebar-widget__register-title,
  .single-sidebar-widget__title {
    font-size: 16px;
  }

  .single-sidebar-widget__branches-all,
  .single-sidebar-widget__branch-name,
  .single-sidebar-widget__branch-addr {
    font-size: 14px;
  }

  .single-sidebar-widget__register-btn {
    height: 40px;
  }
}

/* ==========================================================================
   Component: 404 Error Page (.error-404-page)
   ========================================================================== */
.error-404-page {
  background-color: #fff8fb;
  position: relative;
  overflow: hidden;
}

.error-404 {
  position: relative;
  padding-top: clamp(60px, 6vw, 110px);
  padding-bottom: clamp(60px, 6vw, 110px);
}

.error-404__decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.error-404__flower {
  position: absolute;
  font-size: 28px;
  opacity: 0.45;
  animation: float404Flower 4s ease-in-out infinite alternate;
}

.error-404__flower--1 {
  top: 8%;
  left: 6%;
  animation-delay: 0s;
}

.error-404__flower--2 {
  top: 15%;
  right: 8%;
  animation-delay: 1s;
}

.error-404__flower--3 {
  bottom: 12%;
  left: 10%;
  animation-delay: 2s;
}

.error-404__flower--4 {
  bottom: 20%;
  right: 6%;
  animation-delay: 1.5s;
}

@keyframes float404Flower {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-15px) rotate(15deg);
  }
}

.error-404__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-404__graphic {
  margin-bottom: 24px;
}

.error-404__number-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.error-404__number {
  font-family: "UTM Cookies", cursive !important;
  font-size: 140px;
  line-height: 1;
  color: var(--primary-color, #ff1e7e);
  text-shadow: 0px 8px 28px rgba(255, 30, 126, 0.18);
  letter-spacing: 2px;
}

.error-404__badge {
  position: absolute;
  top: -8px;
  right: -24px;
  width: 56px;
  height: 56px;
  background: #ffffff;
  color: var(--primary-color, #ff1e7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 6px 20px rgba(255, 30, 126, 0.22);
  border: 2.5px solid #ffffff;
  transform: rotate(12deg);
}

.error-404__title {
  font-family: "UTM Cookies", cursive !important;
  font-size: 38px;
  color: #161c2c;
  margin-bottom: 16px;
  line-height: 1.3;
}

.error-404__desc {
  font-family: "UTM Avo", sans-serif !important;
  font-size: 16px;
  color: #596273;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

.error-404__search {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 36px;
}

.error-404__search-form {
  width: 100%;
}

.error-404__search-group {
  position: relative;
  display: flex;
  align-items: center;
}

.error-404__search-input {
  width: 100%;
  height: 54px;
  padding: 0 56px 0 24px;
  background: #ffffff;
  border: 1.5px solid #ece8e4;
  border-radius: 100px;
  font-family: "UTM Avo", sans-serif !important;
  font-size: 15px;
  color: #161c2c;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.error-404__search-input:focus {
  border-color: var(--primary-color, #ff1e7e);
  box-shadow: 0px 4px 20px rgba(255, 30, 126, 0.18);
  outline: none;
}

.error-404__search-btn {
  position: absolute;
  right: 7px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color, #ff1e7e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.error-404__search-btn:hover {
  background: var(--primary-hover, #e0156d);
  transform: scale(1.05);
}

.error-404__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.error-404__btn {
  gap: 8px;
}

.error-404__btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 100px;
  font-family: "UTM Avo", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  color: #596273;
  border: 1.5px solid #d9d9d9;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.error-404__btn-contact:hover {
  border-color: var(--primary-color, #ff1e7e);
  color: var(--primary-color, #ff1e7e);
  transform: translateY(-2px);
}

/* Responsive Desktop Sizing with vw */
@media (min-width: 769px) {
  .error-404__inner {
    max-width: 35.4167vw;
  }

  .error-404__number {
    font-size: 7.2917vw;
  }

  .error-404__title {
    font-size: 1.9792vw;
    margin-bottom: 0.8333vw;
  }

  .error-404__desc {
    font-size: 0.9375vw;
    max-width: 30.2083vw;
    margin-bottom: 1.6667vw;
  }

  .error-404__badge {
    width: 2.9167vw;
    height: 2.9167vw;
    top: -0.4167vw;
    right: -1.25vw;
  }

  .error-404__search {
    max-width: 25vw;
    margin-bottom: 1.875vw;
  }

  .error-404__search-input {
    height: 2.8125vw;
    font-size: 0.8333vw;
    padding-left: 1.25vw;
  }

  .error-404__search-btn {
    width: 2.1875vw;
    height: 2.1875vw;
    right: 0.3646vw;
  }

  .error-404__btn,
  .error-404__btn-contact {
    height: 2.6042vw;
    padding: 0 1.4583vw;
    font-size: 0.8854vw;
  }
}

/* Large Screens (1921px+) Fluid Sizing */
@media (min-width: 1921px) {
  .error-404__number {
    font-size: 140px;
  }

  .error-404__title {
    font-size: 38px;
  }

  .error-404__desc {
    font-size: 16px;
    max-width: 580px;
  }

  .error-404__badge {
    width: 56px;
    height: 56px;
    top: -8px;
    right: -24px;
  }

  .error-404__search {
    max-width: 480px;
  }

  .error-404__search-input {
    height: 54px;
    font-size: 15px;
    padding-left: 24px;
  }

  .error-404__search-btn {
    width: 40px;
    height: 40px;
  }

  .error-404__btn,
  .error-404__btn-contact {
    height: 50px;
    padding: 0 28px;
    font-size: 16px;
  }
}

/* Mobile Sizing */
@media (max-width: 768px) {
  .error-404 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .error-404__number {
    font-size: 96px;
  }

  .error-404__title {
    font-size: 26px;
  }

  .error-404__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .error-404__badge {
    width: 42px;
    height: 42px;
    top: -4px;
    right: -12px;
  }

  .error-404__badge svg {
    width: 22px;
    height: 22px;
  }

  .error-404__actions {
    flex-direction: column;
    width: 100%;
  }

  .error-404__btn,
  .error-404__btn-contact {
    width: 100%;
  }
}
