@charset "UTF-8";
/* Ez.Park — Landing page stylesheet (prefix: ez-)
 *  Variables → Reset → Utilities → Components → Sections → Footer → Floats → Animations → Responsive
 *  Fonts: enqueue trong functions.php (tránh @import chặn render).
 * ──────────────────────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES
   ══════════════════════════════════════════════ */
:root {
  /* Colors */
  --ez-color-primary:   #cb9f2f;
  --ez-color-secondary: #000;
  --ez-color-accent:    #515151;
  --ez-color-white:     #ffffff;

  --ez-color-gray-50:  #f9fafb;
  --ez-color-gray-100: #f3f4f6;
  --ez-color-gray-200: #e5e7eb;
  --ez-color-gray-400: #9ca3af;
  --ez-color-gray-500: #6b7280;
  --ez-color-gray-600: #4b5563;

  /* Typography */
  --ez-font-sans: "Be Vietnam Pro", ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --ez-container:     80rem;
  --ez-header-height: 5rem;

  /* Shape */
  --ez-radius-pill: 9999px;
  --ez-radius-card: 2.5rem;

  /* Shadow */
  --ez-shadow-xl:  0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --ez-shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);
}


/* ══════════════════════════════════════════════
   2. RESET & BASE
   ══════════════════════════════════════════════ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ez-font-sans);
  color: var(--ez-color-secondary);
  background: var(--ez-color-white);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button { cursor: pointer; }

/* Anchor offset for fixed header */
[id] { scroll-margin-top: calc(var(--ez-header-height) + .5rem); }

::selection {
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
}


/* ══════════════════════════════════════════════
   3. UTILITIES
   ══════════════════════════════════════════════ */
.ez-u-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.ez-u-container {
  width: 100%;
  max-width: var(--ez-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ez-u-text-shadow-white { text-shadow: 3px 4px 4px rgba(255,255,255,1); }


/* ══════════════════════════════════════════════
   4. SHARED COMPONENTS
   ══════════════════════════════════════════════ */

/* 4.1 — Buttons */
.ez-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: inherit;
  font-weight: 700;
  border: none;
  border-radius: var(--ez-radius-pill);
  transition: transform .2s, background .2s, box-shadow .2s;
}

.ez-btn--primary {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
  cursor: pointer;
}
.ez-btn--primary:hover  { filter: brightness(.95); transform: scale(1.02); }
.ez-btn--primary:active { transform: scale(.98); }

.ez-btn--inline { width: auto; padding: .75rem 2rem; }

/* 4.2 — Icons */
.ez-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* 4.3 — Section background helper
   Used by: .ez-why__bg, .ez-support__bg, .ez-advantages__bg
   Pattern: position:absolute + overflow-x:clip + centered inner */
.ez-why__bg,
.ez-support__bg,
.ez-advantages__bg {
  pointer-events: none;
  position: absolute;
  left: 0; right: 0; top: 0;
  z-index: 0;
  overflow-x: clip;
}

.ez-why__bg-inner,
.ez-support__bg-inner {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.ez-why__bg img,
.ez-support__bg img { width: 100%; height: auto; }


/* ══════════════════════════════════════════════
   5. SITE SHELL
   ══════════════════════════════════════════════ */
.ez-site { min-height: 100vh; background: var(--ez-color-white); }
.ez-site__main { display: block; }


/* ══════════════════════════════════════════════
   6. HEADER
   ══════════════════════════════════════════════ */
.ez-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.ez-header.is-scrolled {
  background: var(--ez-color-white);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.07);
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.ez-header.is-scrolled img {
  height: 2.5rem;
}
.ez-header__inner {
  max-width: var(--ez-container);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ez-header__brand img {
  height: 3rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) { .ez-header__brand img { height: 4rem; } }

/* Desktop nav */
.ez-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .ez-header__nav { display: flex; } }

.ez-header__nav-link {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ez-color-secondary);
  transition: color .2s;
}
.ez-header__nav-link:hover { color: var(--ez-color-primary); }
.ez-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--ez-color-primary);
  transition: width .3s ease;
}
.ez-header__nav-link:hover::after { width: 100%; }

/* Language toggle */
.ez-header__lang {
  font-size: .875rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--ez-color-secondary);
}

/* Hamburger */
.ez-header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  background: none;
  border: none;
  color: var(--ez-color-secondary);
}
@media (min-width: 1024px) { .ez-header__menu-toggle { display: none; } }

.ez-header__tools {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.ez-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--ez-color-secondary);
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}
.ez-header__search:hover {
  color: var(--ez-color-primary);
  background: var(--ez-color-gray-100);
}
.ez-header__search:focus-visible {
  outline: 2px solid var(--ez-color-primary);
  outline-offset: 2px;
}

/* Modal tìm kiếm (lightbox) */
.ez-search-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.ez-search-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.ez-search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.ez-search-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 60rem;
  padding: 1.5rem 1.5rem 1.75rem;
  background: var(--ez-color-white);
  border-radius: 10px;
  box-shadow: var(--ez-shadow-2xl);
  transform: scale(0.96) translateY(0.5rem);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.28s ease;
}
.ez-search-modal.is-open .ez-search-modal__panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .ez-search-modal,
  .ez-search-modal__panel {
    transition: none;
  }
  .ez-search-modal__panel {
    transform: none;
  }
}
.ez-search-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.ez-search-modal__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ez-color-secondary);
  letter-spacing: 0.02em;
}
.ez-search-modal__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -0.25rem -0.25rem 0 0;
  padding: 0.35rem;
  background: none;
  border: none;
  color: var(--ez-color-secondary);
  border-radius: 0.375rem;
  transition: color 0.2s, background 0.2s;
}
.ez-search-modal__close:hover {
  color: var(--ez-color-primary);
  background: var(--ez-color-gray-100);
}
.ez-search-modal__close:focus-visible {
  outline: 2px solid var(--ez-color-primary);
  outline-offset: 2px;
}
.ez-search-modal__body .ez-search-form {
  flex-direction: column;
  align-items: stretch;
}
.ez-search-modal__body .ez-search-form__submit {
  width: 100%;
}

/* ══════════════════════════════════════════════
   7. MOBILE DRAWER
   ══════════════════════════════════════════════ */
.ez-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s;
}
.ez-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.ez-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

.ez-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(18rem, 92vw);
  background: var(--ez-color-white);
  box-shadow: var(--ez-shadow-2xl);
  z-index: 70;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.32,.72,0,1);
}
.ez-drawer.is-open .ez-drawer__panel { transform: translateX(0); }

.ez-drawer__close-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.ez-drawer__close {
  background: none;
  border: none;
  padding: .25rem;
  color: var(--ez-color-secondary);
}

.ez-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ez-drawer__link {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ez-color-secondary);
  transition: color .2s;
}
.ez-drawer__link:hover { color: var(--ez-color-primary); }

.ez-drawer__lang-wrap {
  padding-top: 1rem;
  border-top: 1px solid var(--ez-color-gray-100);
}


/* ══════════════════════════════════════════════
   8. SECTIONS
   ══════════════════════════════════════════════ */

/* ── 8.1 Hero ── */
.ez-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ez-hero__bg { position: absolute; inset: 0; z-index: 0; }
.ez-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ez-hero__bg-overlay {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.25) 60%,
        rgba(0, 0, 0, 0.10) 100%
    );
}
.ez-hero__title {
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

.ez-hero__lead {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    opacity: 1; /* bỏ opacity: .9 mặc định */
}

.ez-hero__inner {
  position: relative;
  z-index: 10;
  max-width: var(--ez-container);
  margin: 0 auto;
  width: 100%;
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (min-width: 768px) {
  .ez-hero__inner {
    flex-direction: row;
    align-items: center;
    padding-top: 6rem;
  }
}

.ez-hero__title-block { color: var(--ez-color-white); text-align: center; }
@media (min-width: 768px) { .ez-hero__title-block { text-align: left; } }

.ez-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 12vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.04em;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,.35));
  color: var(--ez-color-primary)
}

.ez-hero__lead {
  margin: 0;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  max-width: 32rem;
  opacity: .9;  color: var(--ez-color-primary)
}

.ez-hero__form-wrap { width: 100%; max-width: 24rem; }

/* ── 8.2 Lead Form (Hero) ── */
.ez-lead-form {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 2rem;
  border-radius: var(--ez-radius-card);
  box-shadow: var(--ez-shadow-2xl);
}

.ez-lead-form__title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--ez-color-primary);
}

.ez-lead-form__field { margin-bottom: 1rem; }

.ez-lead-form__label {
  display: block;
  color: var(--ez-color-white);
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.ez-lead-form__input {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: var(--ez-radius-pill);
  border: none;
  background: rgba(255,255,255,.9);
  color: var(--ez-color-secondary);
  outline: none;
}
.ez-lead-form__input:focus { box-shadow: 0 0 0 2px var(--ez-color-primary); }

/* ── 8.3 Overview / Tabs ── */
.ez-overview { padding: 5rem 1.5rem 2rem; }

/* NOTE: #master-plan button:hover overrides tab active state for master-plan section specifically */
#master-plan button:hover {
  background: var(--ez-color-primary) !important;
  color: var(--ez-color-white);
}

.ez-overview__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: -7.7rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) { .ez-overview__tabs { gap: 1.5rem; } }

.ez-overview__tab {
  flex: 1 1 280px;
  min-height: 4rem;
  padding: 0 1rem;
  border-radius: var(--ez-radius-card);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  box-shadow: var(--ez-shadow-xl);
  border: 1px solid var(--ez-color-gray-100);
  background: var(--ez-color-white);
  color: var(--ez-color-secondary);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.ez-overview__tab:hover { color: var(--ez-color-primary); }
.ez-overview__tab.is-active {
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
  border-color: transparent;
  box-shadow: var(--ez-shadow-xl), 0 10px 40px rgba(240,86,40,.25);
}
@media (min-width: 768px) { .ez-overview__tab { min-height: 5rem; } }

.ez-overview__panel-wrap {
  position: relative;
  background: var(--ez-color-gray-50);
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--ez-shadow-2xl);
  height: 450px;
}
@media (min-width: 768px) { .ez-overview__panel-wrap { height: 650px; } }

/* Panels: CSS-hidden so all images preload; no JS layout thrash on tab switch */
.ez-overview__panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ez-overview__panel.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ez-overview__panel img { width: 100%; height: 100%; object-fit: cover; }

/* Panel card overlay */
.ez-overview__card {
  position: absolute;
  top: 2rem; right: 2rem;
  max-width: 20rem;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: var(--ez-radius-card);
  box-shadow: var(--ez-shadow-xl);
  border: 1px solid rgba(255,255,255,.2);
}
.ez-overview__card-title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ez-color-primary);
}
.ez-overview__card-text {
  margin: 0 0 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ez-color-secondary);
}
.ez-overview__card-link {
  font-weight: 700;
  color: var(--ez-color-secondary);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}
.ez-overview__card-link:hover { color: var(--ez-color-primary); }

/* Mobile panel layout */
@media (max-width: 767px) {
  .ez-overview__panel-wrap { height: auto; overflow: visible; }

  .ez-overview__panel {
    position: absolute;
    left: 0; right: 0; top: 0;
    width: 100%; height: 0;
    overflow: hidden;
  }
  .ez-overview__panel.is-active {
    position: relative;
    left: auto; right: auto; top: auto;
    height: auto;
    overflow: visible;
  }
  .ez-overview__panel img {
    height: auto;
    max-height: min(50vh, 320px);
    object-fit: cover;
    display: block;
  }
  .ez-overview__card {
    position: static;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0 0 2.5rem 2.5rem;
  }
}

/* ── 8.4 Why Choose Us ── */
.ez-why {
  position: relative;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.ez-why__inner {
  position: relative;
  z-index: 10;
  max-width: var(--ez-container);
  margin: 0 auto;
}

.ez-why__heading { text-align: center; margin-bottom: 4rem; }
.ez-why__heading-line {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}
.ez-why__heading-line--muted  { color: var(--ez-color-accent); }
.ez-why__heading-line--accent { color: var(--ez-color-primary); }

.ez-why__badge {
  display: inline-block;
  margin-top: 2rem;
  background: var(--ez-color-white);
  padding: 1rem 3rem;
  border-radius: var(--ez-radius-pill);
  box-shadow: var(--ez-shadow-2xl);
  border: 1px solid var(--ez-color-gray-50);
}
.ez-why__badge-text {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ez-color-secondary);
}

.ez-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .ez-why__grid { grid-template-columns: repeat(2, 1fr); } }

/* Mobile: mỗi khung = 1 cột × 2 hàng (ez-why__grid-page), cuộn ngang giữa các khung */
@media (max-width: 767.98px) {
  .ez-why__grid--scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    touch-action: pan-x;
  }
  .ez-why__grid--scroll > .ez-why__grid-page {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    scroll-snap-align: start;
  }
  .ez-why__grid--scroll > .ez-why__grid-page > .ez-incentive-card {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .ez-why__grid--scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    overflow-x: visible;
  }
  .ez-why__grid--scroll > .ez-why__grid-page {
    display: contents;
  }
}

.ez-why__nav {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .ez-why__nav {
    display: none !important;
  }
}
.ez-process__nav .ez-news__nav-btn:disabled,
.ez-why__nav .ez-news__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Incentive cards */
.ez-incentive-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--ez-color-white);
  padding: 1.5rem;
  border-radius: 2rem;
  box-shadow: var(--ez-shadow-2xl);
  border: 1px solid var(--ez-color-gray-50);
  transition: border-color .2s;
}
.ez-incentive-card:hover { border-color: rgba(240,86,40,.2); }

.ez-incentive-card__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ez-color-primary);
  opacity: .8;
  flex-shrink: 0;
}
.ez-incentive-card__divider {
  width: 1px; height: 4rem;
  background: var(--ez-color-gray-200);
  flex-shrink: 0;
}
.ez-incentive-card__body { flex: 1; min-width: 0; }
.ez-incentive-card__title {
  margin: 0 0 .5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ez-color-secondary);
}
.ez-incentive-card__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ez-incentive-card__stat-label {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ez-color-primary);
}
.ez-incentive-card__stat-sub {
  font-size: .75rem;
  color: var(--ez-color-gray-500);
  font-weight: 500;
}
.ez-incentive-card__text {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ez-color-primary);
}

/* ── 8.5 Support (hub + orbit items) ── */
.ez-support {
  position: relative;
  padding: 6rem 1.5rem;
  background: var(--ez-color-white);
  overflow: hidden;
}

.ez-support__stage {
  position: relative;
  z-index: 1;
  max-width: var(--ez-container);
  margin: 0 auto;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ez-support__animate-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ez-support__animate-wrap .ez-support__ring-wrap,
.ez-support__animate-wrap .ez-support__item { pointer-events: auto; }

/* SVG connector lines — desktop only */
.ez-support__lines {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) { .ez-support__lines { display: block; } }

/* Spinning ring */
.ez-support__ring-wrap {
  position: relative;
  z-index: 10;
  width: 18rem; height: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media (min-width: 768px) { .ez-support__ring-wrap { width: 41.25rem; height: 41.25rem; } }

.ez-support__ring {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 2px dashed rgba(240,86,40,.2);
  border-radius: 50%;
  animation: ez-spin 60s linear infinite;
}

/* Center hub */
.ez-support__hub {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 16rem; height: 16rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--ez-color-white);
  border: 4px solid rgba(255,255,255,.2);
  box-shadow: 0 0 50px rgba(240,86,40,.3);
  overflow: hidden;
  background-color: var(--ez-color-primary);
}
@media (min-width: 768px) { .ez-support__hub { width: 24rem; height: 24rem; margin-top: -52px; } }

.ez-support__hub-text { position: relative; z-index: 1; }
.ez-support__hub-heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font: inherit;
}
.ez-support__hub-line1 { font-size: clamp(1.75rem, 4vw, 3rem);   font-weight: 500; line-height: 1.2; }
.ez-support__hub-line2 { font-size: clamp(1.125rem, 2.5vw, 1.875rem); font-weight: 300; font-style: italic; margin: .25rem 0; }
.ez-support__hub-line3 { font-size: clamp(1.75rem, 4vw, 3rem);   font-weight: 700; line-height: 1.2; }

/* Orbit items */
.ez-support__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  z-index: 10;
  width: 100%;
  max-width: 300px;
}
@media (min-width: 768px) {
  .ez-support__item { position: absolute; margin-top: 0; }

  .ez-support__item--tl { top: 15%; left: 5%;  flex-direction: row; text-align: right; }
  .ez-support__item--bl { bottom: 15%; left: 5%; flex-direction: row; text-align: right; }
  .ez-support__item--tl .ez-support__item-text,
  .ez-support__item--bl .ez-support__item-text    { order: 1; }
  .ez-support__item--tl .ez-support__item-icon-wrap,
  .ez-support__item--bl .ez-support__item-icon-wrap { order: 2; }

  .ez-support__item--tr { top: 15%; right: 5%;    flex-direction: row-reverse; }
  .ez-support__item--br { bottom: 15%; right: 5%; flex-direction: row-reverse; }
}

.ez-support__item-title {
  margin: 0 0 .25rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ez-color-primary);
}
.ez-support__item-desc {
  margin: 0;
  font-size: .875rem;
  color: var(--ez-color-secondary);
  line-height: 1.4;
}
.ez-support__item-icon-wrap {
  flex-shrink: 0;
  width: 62.71px; height: 62.71px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ez-color-white);
  border-radius: 50%;
  box-shadow: 0 2px 3px rgba(0,0,0,.11);
}
.ez-support__item-icon-wrap img { width: 2.25rem; height: 2.25rem; object-fit: contain; }

/* ── 8.6 Process ── */
.ez-process {
  width: 100%;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}

.ez-process__title {
  margin: 0 0 3rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
.ez-process__title span { font-size: clamp(2.25rem, 5vw, 3.75rem); color: var(--ez-color-accent); }

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

/* Mobile: mỗi khung = 1 cột × 2 hàng (ez-process__grid-page), cuộn ngang giữa các khung */
@media (max-width: 767.98px) {
  .ez-process__grid--scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    touch-action: pan-x;
  }
  .ez-process__grid--scroll > .ez-process__grid-page {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    scroll-snap-align: start;
  }
  .ez-process__grid--scroll > .ez-process__grid-page > .ez-process__step {
    max-width: none;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .ez-process__grid--scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: unset;
    gap: 1.5rem;
    overflow-x: visible;
  }
  .ez-process__grid--scroll > .ez-process__grid-page {
    display: contents;
  }
}
@media (min-width: 1024px) {
  .ez-process__grid--scroll {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ez-process__nav {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .ez-process__nav {
    display: none !important;
  }
}

.ez-process__step {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 146px;
  padding: 1rem 1.75rem 1rem 5rem;
  background-color: var(--ez-color-gray-100);
  background-image: var(--ez-process-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ez-color-secondary);
  font-size: 1rem;
  line-height: 1.35;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  transition: transform .2s;
}
.ez-process__step:hover { transform: scale(1.02); }
.ez-process__step p { margin: 0; text-align: center; }

/* ── 8.7 Advantages (orbit bubbles) ── */
.ez-advantages {
  position: relative;
  padding: 8rem 1.5rem;
  overflow: hidden;
  background: var(--ez-color-white);
  margin-top: 3rem;
}

.ez-advantages__bg { margin-top: 10rem; }
.ez-advantages__bg-inner {
  position: relative;
  width: 100%;
  max-width: 2000px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.ez-advantages__bg img { width: 100%; height: auto; }

.ez-advantages__inner {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
}

.ez-advantages__orbit {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Concentric rings */
.ez-advantages__ring {
  position: absolute;
  border-radius: 50%;
  border: 20px solid var(--ez-color-gray-50);
}
.ez-advantages__ring--1 { inset: 0; }
.ez-advantages__ring--2 { inset: 3rem; border-color: var(--ez-color-gray-100); }
.ez-advantages__ring--3 { inset: 6rem; border-color: var(--ez-color-gray-200); }

/* Center node */
.ez-advantages__center {
  position: relative;
  z-index: 20;
  width: 16rem; height: 16rem;
  background: var(--ez-color-white);
  border-radius: 50%;
  box-shadow: var(--ez-shadow-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--ez-color-gray-100);
}
@media (min-width: 768px) { .ez-advantages__center { width: 24rem; height: 24rem; } }

.ez-advantages__center-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--ez-color-accent);
  line-height: 1.15;
}
.ez-advantages__center-link {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--ez-color-primary);
}
.ez-advantages__center-link:hover { text-decoration: underline; }

/* Orbit bubbles */
.ez-adv-bubble {
  position: absolute;
  z-index: 30;
  width: 8rem; height: 8rem;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(#f97316 0deg 70deg, #fff3e8 70deg 290deg, #f97316 290deg 360deg);
  box-shadow: var(--ez-shadow-xl);
  transition: transform .2s;
}
@media (min-width: 768px) { .ez-adv-bubble { width: 11rem; height: 11rem; } }

/* Bubble positions */
.ez-adv-bubble--tl { top: 10%;    left: -10%; }
.ez-adv-bubble--tc { top: -15%;   left: 50%; transform: translateX(-50%); }
.ez-adv-bubble--tr { top: 10%;    right: -10%; }
.ez-adv-bubble--br { bottom: 10%; right: -10%; }
.ez-adv-bubble--bc { bottom: -15%; left: 50%; transform: translateX(-50%); }
.ez-adv-bubble--bl { bottom: 10%; left: -10%; }

/* Hover states (separate to avoid overriding transform origin on tc/bc) */
.ez-adv-bubble--tl:hover,
.ez-adv-bubble--tr:hover,
.ez-adv-bubble--br:hover,
.ez-adv-bubble--bl:hover { transform: scale(1.05); }
.ez-adv-bubble--tc:hover,
.ez-adv-bubble--bc:hover { transform: translateX(-50%) scale(1.05); }

.ez-adv-bubble__inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--ez-color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}
.ez-adv-bubble__inner img {
  width: 2rem; height: 2rem;
  object-fit: contain;
  margin-bottom: .5rem;
}
@media (min-width: 768px) { .ez-adv-bubble__inner img { width: 3rem; height: 3rem; } }

.ez-adv-bubble__label {
  font-size: .625rem;
  color: var(--ez-color-secondary);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
@media (min-width: 768px) { .ez-adv-bubble__label { font-size: .75rem; } }

.ez-adv-bubble__value {
  font-size: .75rem;
  font-weight: 700;
  text-transform: unset;
  line-height: 1.2;
  color: var(--ez-color-primary);
}
@media (min-width: 768px) { .ez-adv-bubble__value { font-size: .75rem; } }

.ez-news { padding: 6rem 1.5rem; background: var(--ez-color-white); }

.ez-news__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ez-color-primary);
}

.ez-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .ez-news__grid { grid-template-columns: 1fr 1fr; } }

.ez-news__article-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ez-color-secondary);
  cursor: pointer;
  transition: color .2s;
}
.ez-news__article-title:hover,
.ez-news__article-title a:hover { color: var(--ez-color-primary); }
.ez-news__article-title a { color: inherit; text-decoration: none; }

.ez-news__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  font-style: italic;
  color: var(--ez-color-gray-500);
}

.ez-news__excerpt {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--ez-color-secondary);
}

.ez-news__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--ez-color-gray-400);
  margin-bottom: 1.5rem;
}

.ez-news__thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: var(--ez-shadow-2xl);
}
.ez-news__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ez-news__thumb a { display: block; height: 100%; }
.ez-news__thumb a:focus-visible {
  outline: 2px solid var(--ez-color-primary);
  outline-offset: 4px;
}

/* Nav buttons */
.ez-news__nav { display: flex; gap: 1rem; margin-top: 3rem; }
.ez-news__nav-btn {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--ez-color-primary);
  background: transparent;
  color: var(--ez-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.ez-news__nav-btn:hover {
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
}

/* Splide slider overrides */
.ez-news-slider { margin: 0; }
.ez-news-slider .splide__slide {
  box-sizing: border-box;
  background: transparent;
  padding: 14px;
}

#ez-single-related-slider-track{
  padding: 10px 0 !important;
}

/* ══════════════════════════════════════════════
   9. FOOTER
   ══════════════════════════════════════════════ */

/* 9.1 — Wrapper & ambient glow */
.ez-footer-wrap { position: relative; overflow-x: hidden; }

.ez-footer-wrap__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ez-footer-wrap__glow-item {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.ez-footer-wrap__glow-item--a {
  width: 400px; height: 400px;
  top: 350px; left: calc(-400px / 2);
  background: radial-gradient(circle, rgba(240,86,40,.4) 0%, transparent 70%);
}
.ez-footer-wrap__glow-item--b {
  width: 600px; height: 600px;
  top: -10vh; left: calc(50vw - 400px);
  background: radial-gradient(circle, rgba(240,86,40,.35) 0%, transparent 70%);
  filter: blur(50px);
}
.ez-footer-wrap__glow-item--c {
  width: 350px; height: 350px;
  top: calc(50px + 20vh); right: 0;
  background: radial-gradient(circle, rgba(240,86,40,.3) 0%, transparent 70%);
}

.ez-footer {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

/* 9.2 — Contact section */
.ez-contact {
  max-width: var(--ez-container);
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

.ez-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) { .ez-contact__grid { grid-template-columns: 1fr 1fr; } }

.ez-contact__title,
.ez-contact__widget-title {
  margin: 0 0 3rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ez-color-accent);
}

.ez-contact__list   { display: flex; flex-direction: column; gap: 2rem; }
.ez-contact__row    { display: flex; gap: 1rem; }

.ez-contact__icon {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  background: var(--ez-color-white);
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ez-color-primary);
}
.ez-contact__row-title { margin: 0 0 .25rem; font-weight: 700; color: var(--ez-color-secondary); }
.ez-contact__row-text  { margin: 0; font-size: .875rem; color: var(--ez-color-gray-600); line-height: 1.6; }

/* Contact form */
.ez-contact-form {
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(20px);
  border: 2px solid var(--ez-color-white);
  padding: 2rem;
  border-radius: 2.5rem;
  box-shadow: var(--ez-shadow-2xl);
}
@media (min-width: 768px) { .ez-contact-form { padding: 3rem; } }

.ez-contact-form__title {
  margin: 0 0 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--ez-color-primary);
}

.ez-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .ez-contact-form__grid { grid-template-columns: 1fr 1fr; } }

.ez-contact-form__field--full { grid-column: 1 / -1; }

.ez-contact-form__label {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--ez-color-secondary);
}

.ez-contact-form__input,
.ez-contact-form__textarea {
  width: 100%;
  padding: .75rem 1.5rem;
  border: 1px solid var(--ez-color-gray-100);
  background: var(--ez-color-white);
  outline: none;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.ez-contact-form__input   { border-radius: var(--ez-radius-pill); }
.ez-contact-form__textarea {
  border-radius: 1.5rem;
  min-height: 8rem;
  resize: vertical;
}
.ez-contact-form__input:focus,
.ez-contact-form__textarea:focus { box-shadow: 0 0 0 2px var(--ez-color-primary); }

.ez-contact-form__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.ez-contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2.5rem;
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
  font-weight: 700;
  border: none;
  border-radius: var(--ez-radius-pill);
  box-shadow: 0 10px 15px -3px rgba(240,86,40,.25);
  transition: transform .2s, filter .2s;
  cursor: pointer;
}
.ez-contact-form__submit:hover { filter: brightness(.95); transform: scale(1.05); }

/* 9.3 — Footer links grid */
.ez-footer-links {
  max-width: var(--ez-container);
  margin: 0 auto;
  padding: 0 1.5rem 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border-bottom: 1px solid var(--ez-color-gray-100);
}
@media (min-width: 768px)  { .ez-footer-links { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ez-footer-links { grid-template-columns: repeat(6, 1fr); } }

.ez-footer-links__heading {
  margin: 0 0 1rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--ez-color-secondary);
  cursor: pointer;
  transition: color .2s;
}
.ez-footer-links__heading:hover { color: var(--ez-color-primary); }

.ez-footer-links__list { margin: 0; padding: 0; list-style: none; }
.ez-footer-links__list li { margin-bottom: .5rem; }
.ez-footer-links__list a {
  font-size: .75rem;
  color: var(--ez-color-gray-500);
  transition: color .2s;
}
.ez-footer-links__list a:hover { color: var(--ez-color-primary); }

/* 9.4 — Footer brand bar */
.ez-footer-brand {
  max-width: var(--ez-container);
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) { 
  .ez-footer-brand {
    grid-template-columns: 1fr 1fr;
  }
  .ez-footer-brand p strongs {
      font-size: 14px;
  }
   }
.ez-footer-brand ul{
    margin-left: -18px;
}
.ez-footer-brand__logo  { height: 80px; width: auto; object-fit: contain; }
.ez-footer-brand__text  { font-size: .875rem; color: var(--ez-color-gray-600); line-height: 1.6; }
.ez-footer-brand__text a:hover { color: var(--ez-color-primary); }
.ez-footer-brand__copy  { font-size: .75rem; color: var(--ez-color-gray-400); margin-top: 1rem; }

.ez-footer-brand .widget        { margin: 0 0 1rem; }
.ez-footer-brand .widget:last-child { margin-bottom: 0; }
.ez-footer-brand .widget-title  { font-size: inherit; font-weight: 700; margin: 0 0 .75rem; color: var(--ez-color-gray-800); }

.ez-footer-brand__cta-wrap {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 768px) { .ez-footer-brand__cta-wrap { justify-content: flex-end; } }

.ez-footer-brand__cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
  font-weight: 700;
  border-radius: .75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  transition: filter .2s;
}
.ez-footer-brand__cta:hover { filter: brightness(.95); }

.ez-footer-brand__cta-icon {
  width: 2rem; height: 2rem;
  background: rgba(255,255,255,.2);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ══════════════════════════════════════════════
   10. FLOATING ELEMENTS
   ══════════════════════════════════════════════ */

/* 10.1 — Float toolbar (right-center) */
.ez-float {
  position: fixed;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ez-float__btn {
  position: relative;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--ez-color-white);
  border: 1px solid var(--ez-color-gray-50);
  box-shadow: var(--ez-shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ez-color-gray-400);
  transition: color .2s, transform .2s;
}
.ez-float__btn:hover { color: var(--ez-color-primary); transform: scale(1.1); }

.ez-float__tooltip {
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  padding: .25rem .75rem;
  background: var(--ez-color-secondary);
  color: var(--ez-color-white);
  font-size: .75rem;
  border-radius: .375rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.ez-float__btn:hover .ez-float__tooltip { opacity: 1; }

/* 10.2 — Floating contact group (bottom-right) */
.floating-contact-group {
  position: fixed;
  bottom: 24px; right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fcg-btn {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.fcg-btn .pulse-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  transform-origin: center;
  animation: pulseRing 2.2s ease-out infinite;
  pointer-events: none;
}
.fcg-btn .pulse-ring:nth-child(2) { animation-delay: .7s; opacity: .55; }

.fcg-btn .btn-icon {
  position: relative;
  width: 45px; height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22), 0 1px 4px rgba(0,0,0,.12);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease;
  animation: shake 4s ease-in-out infinite;
}
.fcg-btn:hover .btn-icon {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0,0,0,.28), 0 2px 8px rgba(0,0,0,.15);
  animation: none;
}
.fcg-btn .btn-icon svg { width: 22px; height: 22px; fill: #fff; }

.fcg-btn .badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 18px; height: 18px;
  background: #ff3b30;
  border-radius: 50%;
  border: 2.5px solid #fff;
  animation: badgePop .4s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: 1s;
}

/* Tooltip */
.fcg-btn .tooltip {
  position: absolute;
  right: 72px;
  bottom: 50%; transform: translateY(50%);
  background: #1c1e21;
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease, right .2s ease;
  letter-spacing: .01em;
}
.fcg-btn .tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1c1e21;
}
.fcg-btn:hover .tooltip { opacity: 1; right: 76px; }

/* Button color themes */
.fcg-phone .pulse-ring { background: rgba(37,211,102,.35); }
.fcg-phone .btn-icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 16px rgba(37,211,102,.45), 0 1px 4px rgba(0,0,0,.12);
}
.fcg-phone:hover .btn-icon { box-shadow: 0 8px 28px rgba(37,211,102,.55), 0 2px 8px rgba(0,0,0,.15); }

.fcg-zalo .pulse-ring { background: rgba(0,104,255,.30); }
.fcg-zalo .btn-icon {
  background: #0068ff;
  box-shadow: 0 4px 16px rgba(0,104,255,.45), 0 1px 4px rgba(0,0,0,.12);
}
.fcg-zalo:hover .btn-icon { box-shadow: 0 8px 28px rgba(0,104,255,.55), 0 2px 8px rgba(0,0,0,.15); }
.fcg-zalo .btn-icon svg {
  width: 43px;
  height: 26px;
  margin-left: -5px;
}
.fcg-messenger .pulse-ring { background: rgba(0,132,255,.30); }
.fcg-messenger .btn-icon {
  background: linear-gradient(135deg, #0084ff 0%, #a334fa 100%);
  box-shadow: 0 4px 16px rgba(0,132,255,.45), 0 1px 4px rgba(0,0,0,.12);
}
.fcg-messenger:hover .btn-icon { box-shadow: 0 8px 28px rgba(0,132,255,.55), 0 2px 8px rgba(0,0,0,.15); }

/* 10.3 — Sticky CTA */
.ez-sticky-cta {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 105;
  padding: 1rem 2rem;
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
  font-weight: 700;
  border: none;
  border-radius: var(--ez-radius-pill);
  box-shadow: var(--ez-shadow-2xl);
  transition: transform .2s, filter .2s;
}
.ez-sticky-cta:hover  { filter: brightness(.95); transform: scale(1.05); }
.ez-sticky-cta:active { transform: scale(.95); }

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

.ez-sticky-cta--desktop { display: none; bottom: 2rem; left: 2rem; }
@media (min-width: 768px) { .ez-sticky-cta--desktop { display: block; } }


/* ══════════════════════════════════════════════
   11. SINGLE POST (single.php template)
   ══════════════════════════════════════════════ */
.single-post .ez-header {
    padding-top: 0;
    padding-bottom: 0;
}

.ez-single { padding-top: 4rem; }

.ez-single__hero { width: 100%; margin: 0; }
.ez-single__hero-inner { width: 100%; max-height: min(70vh, 520px); overflow: hidden; }
.ez-single__hero-img { display: block; width: 100%; height: min(70vh, 520px); object-fit: cover; }

.ez-single--no-hero .ez-single__wrap { padding-top: 1rem; }
.ez-single__wrap { padding-top: 2rem; padding-bottom: 2rem; }

.ez-single__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ez-color-primary);
}
.ez-single__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--ez-color-gray-400);
  margin-bottom: 2rem;
}

.ez-single__content {
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ez-color-secondary);
}
.ez-single__content > *:first-child { margin-top: 0; }
.ez-single__content h2,
.ez-single__content h3,
.ez-single__content h4 { margin-top: 2rem; margin-bottom: .75rem; font-weight: 700; color: var(--ez-color-secondary); }
.ez-single__content p { margin: 0 0 1.25rem; }
.ez-single__content a { color: var(--ez-color-primary); text-decoration: underline; text-underline-offset: 2px; }
.ez-single__content img,
.ez-single__content .wp-block-image img { height: auto; max-width: 100%; border-radius: var(--ez-radius-card); }
.ez-single__content .alignwide {
  max-width: none;
  margin-left: calc(50% - 50vw + 1.5rem);
  margin-right: calc(50% - 50vw + 1.5rem);
  width: calc(100vw - 3rem);
}

.ez-single__pages {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ez-color-gray-100);
}
.ez-single__pages-label { display: inline; margin-right: .5rem; font-weight: 700; }

/* Related posts */
.ez-single-related {
  padding: 1.5rem 0 3rem;
  background: var(--ez-color-gray-50);
  border-top: 1px solid var(--ez-color-gray-100);
}
.ez-single-related__title {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  color: var(--ez-color-primary);
}

.ez-single-related__slider-wrap {
  position: relative;
}

.ez-single-related-slider {
  margin: 0;
}

.ez-single-related-slider .splide__slide {
  display: flex;
  box-sizing: border-box;
  height: auto;
}

.ez-single-related-slider .splide__slide > .ez-single-related__card {
  width: 100%;
  min-height: 100%;
}

.ez-single-related__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.ez-single-related__nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--ez-color-primary);
  background: transparent;
  color: var(--ez-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ez-single-related__nav-btn:hover {
  background: var(--ez-color-primary);
  color: var(--ez-color-white);
}

.ez-single-related__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--ez-color-white);
  border-radius: .5rem .5rem 2rem 2rem;
  overflow: hidden;
  box-shadow: var(--ez-shadow-xl);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.ez-single-related__card:hover { box-shadow: var(--ez-shadow-2xl); transform: translateY(-2px); }

.ez-single-related__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ez-color-gray-100);
}
.ez-single-related__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ez-single-related__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1rem 1.5rem;
}
.ez-single-related__card-title {
  margin: 0 0 .5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ez-color-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ez-single-related__card:hover .ez-single-related__card-title { color: var(--ez-color-primary); }
.ez-single-related__excerpt {
  margin: 0;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--ez-color-gray-500);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ez-single-related__body .ez-single-related__excerpt.ez-news__excerpt {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--ez-color-secondary);
}

.ez-single-related__body .ez-news__meta {
  margin-bottom: 0;
}

/* Archive / blog index — 3 cột, cùng card related (không slider) */
.ez-archive__section {
  padding-top: 2rem;
  margin-top: 4rem;
  text-align: left;
}
.ez-archive__header {
  margin-bottom: 1rem;
  text-align: center;
}
.ez-archive__title {
  margin-bottom: 0.75rem;
  text-align: left;
  font-size: 1.5rem;
}
.ez-archive__description {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ez-color-gray-500);
}
.ez-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .ez-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ez-archive__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}
.ez-archive__item {
  margin: 0;
  min-width: 0;
}
.ez-archive__item .ez-single-related__card {
  height: 100%;
}
.ez-archive__empty {
  margin: 0;
  text-align: center;
  color: var(--ez-color-gray-500);
}
.ez-archive__pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.ez-archive__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}
.ez-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ez-color-secondary);
  border: 2px solid var(--ez-color-gray-200);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ez-archive__pagination a.page-numbers:hover {
  border-color: var(--ez-color-primary);
  color: var(--ez-color-primary);
}
.ez-archive__pagination .page-numbers.current {
  background: var(--ez-color-primary);
  border-color: var(--ez-color-primary);
  color: var(--ez-color-white);
}
.ez-archive__pagination .page-numbers.dots {
  border: none;
  min-width: auto;
  padding: 0 0.25rem;
}
.ez-archive__pagination .prev.page-numbers,
.ez-archive__pagination .next.page-numbers {
  gap: 0.25rem;
}

/* Trang tìm kiếm */
.ez-search__header .ez-search__form-wrap {
  margin-top: 1.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.ez-search__hint {
  margin: 1rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--ez-color-gray-500);
  line-height: 1.6;
}
.ez-search-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
}
.ez-search-form__input {
  flex: 1 1 4rem;
  min-width: 0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--ez-color-gray-200);
  border-radius: var(--ez-radius-pill);
  background: var(--ez-color-white);
  color: var(--ez-color-secondary);
  transition: border-color 0.2s;
}
.ez-search-form__input:hover { border-color: var(--ez-color-gray-400); }
.ez-search-form__input:focus {
  outline: none;
  border-color: var(--ez-color-primary);
}
.ez-search-form__submit {
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════
   12. KEYFRAME ANIMATIONS
   ══════════════════════════════════════════════ */
@keyframes ez-spin {
  to { transform: rotate(360deg); }
}

@keyframes shake {
  0%, 55%, 100% { transform: rotate(0deg); }
  57%  { transform: rotate(-12deg); }
  59%  { transform: rotate(12deg); }
  61%  { transform: rotate(-10deg); }
  63%  { transform: rotate(10deg); }
  65%  { transform: rotate(-6deg); }
  67%  { transform: rotate(6deg); }
  69%  { transform: rotate(-2deg); }
  71%  { transform: rotate(0deg); }
}

@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: .8; }
  80%  { transform: scale(2.0); opacity: 0; }
  100% { transform: scale(2.0); opacity: 0; }
}

@keyframes badgePop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}


/* ══════════════════════════════════════════════
   13. SCROLL REVEAL
   ══════════════════════════════════════════════ */
.ez-reveal {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity .75s cubic-bezier(.22,1,.36,1),
    transform .75s cubic-bezier(.22,1,.36,1);
}
.ez-reveal.is-visible { opacity: 1; transform: translate3d(0,0,0); }

.ez-reveal--fade-left  { transform: translate3d(-2rem, 0, 0); }
.ez-reveal--fade-right { transform: translate3d(2rem, 0, 0); }
.ez-reveal--fade       { transform: none; }

.ez-reveal--scale         { transform: scale(.94); }
.ez-reveal--scale.is-visible { transform: scale(1); }

/* Bubbles: preserve translateX on tc/bc positions */
.ez-adv-bubble--tc.ez-reveal--scale,
.ez-adv-bubble--bc.ez-reveal--scale { transform: translateX(-50%) scale(.92); }
.ez-adv-bubble--tc.ez-reveal--scale.is-visible,
.ez-adv-bubble--bc.ez-reveal--scale.is-visible { transform: translateX(-50%) scale(1); }

.ez-adv-bubble--tl.ez-reveal--scale,
.ez-adv-bubble--tr.ez-reveal--scale,
.ez-adv-bubble--br.ez-reveal--scale,
.ez-adv-bubble--bl.ez-reveal--scale { transform: scale(.92); }
.ez-adv-bubble--tl.ez-reveal--scale.is-visible,
.ez-adv-bubble--tr.ez-reveal--scale.is-visible,
.ez-adv-bubble--br.ez-reveal--scale.is-visible,
.ez-adv-bubble--bl.ez-reveal--scale.is-visible { transform: scale(1); }

/* Preserve hover after reveal */
.ez-adv-bubble.ez-reveal--scale.is-visible:hover { transform: scale(1.05); }
.ez-adv-bubble--tc.ez-reveal--scale.is-visible:hover,
.ez-adv-bubble--bc.ez-reveal--scale.is-visible:hover { transform: translateX(-50%) scale(1.05); }

/* Stagger delays (child index 1–15) */
.ez-reveal-stagger > .ez-reveal:nth-child(1)  { transition-delay: .04s; }
.ez-reveal-stagger > .ez-reveal:nth-child(2)  { transition-delay: .10s; }
.ez-reveal-stagger > .ez-reveal:nth-child(3)  { transition-delay: .16s; }
.ez-reveal-stagger > .ez-reveal:nth-child(4)  { transition-delay: .22s; }
.ez-reveal-stagger > .ez-reveal:nth-child(5)  { transition-delay: .28s; }
.ez-reveal-stagger > .ez-reveal:nth-child(6)  { transition-delay: .34s; }
.ez-reveal-stagger > .ez-reveal:nth-child(7)  { transition-delay: .40s; }
.ez-reveal-stagger > .ez-reveal:nth-child(8)  { transition-delay: .46s; }
.ez-reveal-stagger > .ez-reveal:nth-child(9)  { transition-delay: .52s; }
.ez-reveal-stagger > .ez-reveal:nth-child(10) { transition-delay: .58s; }
.ez-reveal-stagger > .ez-reveal:nth-child(11) { transition-delay: .64s; }
.ez-reveal-stagger > .ez-reveal:nth-child(12) { transition-delay: .70s; }
.ez-reveal-stagger > .ez-reveal:nth-child(13) { transition-delay: .76s; }
.ez-reveal-stagger > .ez-reveal:nth-child(14) { transition-delay: .82s; }
.ez-reveal-stagger > .ez-reveal:nth-child(15) { transition-delay: .88s; }

/* Advantages orbit-specific delays */
.ez-advantages__orbit > .ez-advantages__center.ez-reveal   { transition-delay: .06s; }
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(5)  { transition-delay: .10s; }
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(6)  { transition-delay: .14s; }
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(7)  { transition-delay: .18s; }
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(8)  { transition-delay: .22s; }
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(9)  { transition-delay: .26s; }
.ez-advantages__orbit > .ez-adv-bubble.ez-reveal:nth-child(10) { transition-delay: .30s; }

/* Compound transitions: preserve interactive states alongside reveal */
.ez-overview__tab.ez-reveal {
  transition:
    opacity .75s cubic-bezier(.22,1,.36,1),
    transform .75s cubic-bezier(.22,1,.36,1),
    background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.ez-process__step.ez-reveal {
  transition:
    opacity .75s cubic-bezier(.22,1,.36,1),
    transform .75s cubic-bezier(.22,1,.36,1);
}
.ez-process__step.ez-reveal.is-visible:hover { transform: scale(1.02); }

.ez-incentive-card.ez-reveal {
  transition:
    opacity .75s cubic-bezier(.22,1,.36,1),
    transform .75s cubic-bezier(.22,1,.36,1),
    border-color .2s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ez-reveal {
    opacity: 1 !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
  .ez-reveal:not(.ez-adv-bubble)          { transform: none !important; }
  .ez-advantages__center.ez-reveal--scale { transform: none !important; }
  .ez-adv-bubble--tc.ez-reveal--scale,
  .ez-adv-bubble--bc.ez-reveal--scale     { transform: translateX(-50%) scale(1) !important; }
  .ez-adv-bubble--tl.ez-reveal--scale,
  .ez-adv-bubble--tr.ez-reveal--scale,
  .ez-adv-bubble--br.ez-reveal--scale,
  .ez-adv-bubble--bl.ez-reveal--scale     { transform: scale(1) !important; }
}


/* ══════════════════════════════════════════════
   14. RESPONSIVE OVERRIDES
   ══════════════════════════════════════════════ */
@media (max-width: 650px) {
  .ez-float,
  .ez-footer-brand__cta-wrap { display: none !important; }

  .ez-float { right: .5rem !important; }

  .ez-support__ring-wrap { background: transparent !important; }

  .ez-why { padding: 3rem 1.5rem; }
  .ez-why__heading { margin-bottom: 1rem; }
  .ez-why__grid,
  .ez-why__grid--scroll { gap: 1rem; }

  .ez-u-container { padding-left: 0; padding-right: 0; }

  .ez-support { padding: 3rem 1.5rem; }
  .ez-support__item {
    align-items: flex-start;
    margin-top: 1.5rem;
    max-width: 100%;
    justify-content: space-between !important;
    display: flex !important;
  }

  .ez-process { padding: 2rem .5rem !important; margin-top: 1rem; }

  .ez-news { padding: 1rem 1.5rem !important; }
  .ez-news__title { margin: 0 !important; }
  .ez-news__nav,
  .ez-process__nav,
  .ez-why__nav { margin-top: .5rem !important; }

  .ez-single-related__nav { margin-top: 1rem !important; }

  .ez-contact__title { margin: 0 0 1rem; }
  .ez-contact__grid  { gap: 0 !important; }
  .ez-contact__list  { gap: 1rem !important; }
  .ez-contact-form__title { margin: 0 0 1rem; }

  .ez-footer-brand { padding: 1rem 1.5rem 0; gap: 1rem; }

  .ez-single-related,
  .ez-single__wrap{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .ez-process__grid--scroll {       
    padding-bottom: 15px;
  }

  .ez-advantages {
      padding: 4rem 1.5rem;
      margin-top: 1rem;
  }
  
  .ez-overview {
      padding: 4rem .5rem 1rem;
  }

  .ez-overview__tabs {
      gap: 1rem;
      margin-bottom: 1rem;
  }

  .ez-overview__card {
      padding: 1.5rem;
  }

  .ez-why__grid--scroll > .ez-incentive-card {
      margin-bottom: 10px;
  }

  .ez-news__grid {
      gap: 1.5rem;
  }

  .ez-news__thumb {
    order: -1;
  }

  .ez-search-form__input {
      flex: 1 1 3rem;
      border-radius: 12px;
  }

  .ez-search-modal__panel {
      padding: 1rem;
      border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .floating-contact-group { bottom: 16px; right: 12px; gap: 15px; }
  .fcg-btn .btn-icon,
  .fcg-btn .pulse-ring { width: 40px; height: 40px; }
  .fcg-btn .pulse-ring { margin: -20px 0 0 -20px; }
  .fcg-btn .tooltip { display: none; }
}