:root {
  --gold: #D4AF37;
  --gold-hover: #B8962E;
  --gold-dim: rgba(212, 175, 55, 0.2);
  --gold-border: rgba(212, 175, 55, 0.5);
  --black: #000000;
  --surface: #121212;
  --surface-card: #1A1A1A;
  --surface-low: #1B1B1B;
  --surface-mid: #1F1F1F;
  --on-surface: #ffffff;
  --on-muted: #A0A0A0;
  --outline: rgba(77, 70, 53, 0.3);

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 80px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --section-py: 80px;
  --transition: all 0.3s ease;
}

/* =============================================
   BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--black);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--gold);
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* =============================================
   LAYOUT
   ============================================= */
.ep-section {
  padding: var(--section-py) 0;
}

.ep-section--dark {
  background: var(--black);
}

.ep-section--muted {
  background: var(--surface);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--on-muted);
}

.text-white {
  color: #fff;
}

.ep-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-muted);
  margin-bottom: 6px;
}

.ep-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.ep-heading-divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 40px;
}

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

.ep-heading-center .ep-heading-divider {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-ep-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

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

.btn-ep-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-ep-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-ep-full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.ep-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  transition: padding 0.3s ease;
}

.ep-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.ep-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  width: 150px;
}

.ep-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  line-height: 1;
}

.ep-brand-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 2px;
}

/* Desktop nav */
.ep-nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ep-nav-list li a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.ep-nav-list li a:hover,
.ep-nav-list li a.active {
  color: var(--gold);
}

.ep-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 99px;
  transition: background 0.2s ease;
  text-decoration: none;
}

.ep-nav-phone:hover {
  background: var(--gold-hover);
  color: var(--black);
}

/* Hamburger */
.ep-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ep-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* Mobile menu */
.ep-mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--gold-border);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  z-index: 700;
  overflow-y: auto;
  transition: left 0.35s ease;
  padding: 80px 0 40px;
}

.ep-mobile-menu.active {
  left: 0;
}

.ep-mobile-menu ul li a {
  display: block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-muted);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: color 0.2s ease, background 0.2s ease;
}

.ep-mobile-menu ul li a:hover,
.ep-mobile-menu ul li a.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.ep-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--on-muted);
  cursor: pointer;
  font-size: 20px;
}

.ep-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 600;
}

.ep-overlay.active {
  display: block;
}

@media (max-width: 991px) {

  .ep-nav-list,
  .ep-nav-phone {
    display: none !important;
  }

  .ep-hamburger {
    display: flex;
  }
}

/* =============================================
   HERO
   ============================================= */
/* =============================================
   HERO — layout trái như design
   ============================================= */
.ep-hero {
  position: relative;
  height: calc(100vh - 0px);
  min-height: 600px;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ep-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ep-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ep-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.6) 55%,
      rgba(0, 0, 0, 0.25) 100%);
}

/* Slide area chiếm hết chiều cao trừ stats */
.ep-hero-slide {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.ep-hero-inner {
  width: 100%;
}

/* Text căn trái */
.ep-hero-text {
  max-width: 560px;
}

.ep-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px) !important;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.ep-hero-title span {
  color: var(--gold);
  display: block;
}

.ep-hero-sub {
  font-size: 15px;
  color: #d1d5db;
  margin-bottom: 32px;
  line-height: 1.7;
}

.ep-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Logo EventPro bên phải hero */
.ep-hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.9;
}

.ep-hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  line-height: 1;
}

.ep-hero-brand-star {
  color: var(--gold);
  font-size: 36px;
  margin-bottom: 4px;
}

.ep-hero-brand-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Slide dots */
.ep-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.ep-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.ep-hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* Stats bar dưới hero — section riêng */
.ep-stats-bar {
  background: var(--black);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 28px 0;
  position: relative;
  z-index: 2;
}

.ep-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ep-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ep-stat-item:last-child {
  border-right: 0;
}

.ep-stat-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ep-stat-icon svg {
  width: 22px;
  height: 22px;
}

.ep-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}

.ep-stat-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--on-muted);
  line-height: 1.3;
}

/* Arrow buttons */
.ep-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 3;
  padding: 8px;
}

.ep-hero-arrow:hover {
  color: var(--gold);
}

.ep-hero-arrow--left {
  left: 20px;
}

.ep-hero-arrow--right {
  right: 20px;
}

@media (max-width: 991px) {
  .ep-hero-brand {
    display: none;
  }
}

@media (max-width: 767px) {
  .ep-hero-arrow {
    display: none;
  }

  .ep-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ep-stat-item {
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ep-stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ep-stat-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}


/* Card anchor — dùng chung cho mọi card wrap bằng <a> */
a.ep-project-card,
a.ep-equip-card,
a.ep-news-card,
a.ep-service-card,
a.ep-gallery-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.ep-project-card:hover,
a.ep-equip-card:hover,
a.ep-news-card:hover,
a.ep-service-card:hover {
  color: inherit;
}

/* =============================================
   SERVICE GRID
   ============================================= */
.ep-service-card {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.ep-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-dim);
  transform: translateY(-4px);
}

.ep-service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.ep-service-card:hover .ep-service-icon {
  transform: scale(1.12);
}

.ep-service-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: #fff;
}

.ep-service-desc {
  font-size: 10px;
  color: var(--on-muted);
}

/* =============================================
   PROJECT CARDS
   ============================================= */
.ep-project-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.ep-project-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.ep-project-img {
  position: relative;
  overflow: hidden;
  height: 256px;
}

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

.ep-project-card:hover .ep-project-img img {
  transform: scale(1.08);
}

.ep-project-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #fff;
}

.ep-project-label h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.2s ease;
  color: #fff;
}

.ep-project-card:hover .ep-project-label h3 {
  color: var(--gold);
}

.ep-project-meta {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ep-project-meta p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--on-muted);
  margin: 0;
  display: none;
}

.ep-project-meta svg {
  color: var(--gold);
  flex-shrink: 0;
}

.ep-project-meta a {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.ep-project-meta a:hover {
  text-decoration: underline;
}

/* section header with link */
.ep-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.ep-section-header a {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.ep-section-header a:hover {
  color: var(--gold);
}

/* =============================================
   EQUIPMENT
   ============================================= */
.ep-equip-card {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}

.ep-equip-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.ep-equip-img {
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
}

.ep-equip-img img {
  width: 100%;
  height: auto;
  filter: grayscale(1);
  transform: scale(0.96);
  transition: filter 0.5s ease, transform 0.4s ease;
}

.ep-equip-card:hover .ep-equip-img img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.ep-equip-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.ep-equip-card:hover .ep-equip-name {
  color: var(--gold);
}

.ep-equip-link {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
}

/* =============================================
   GALLERY
   ============================================= */
.ep-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.ep-gallery-tab {
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.ep-gallery-tab:hover,
.ep-gallery-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.ep-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 8px;
}

.ep-gallery-grid .ep-g-wide {
  grid-column: span 2;
}

.ep-gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}

.ep-gallery-item:nth-child(3) {
  grid-column: span 2;
}

.ep-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}

.ep-gallery-item:hover img {
  filter: grayscale(0);
}

.ep-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.ep-gallery-item:hover .ep-gallery-overlay {
  opacity: 1;
}

.ep-gallery-overlay-box {
  border: 1px solid var(--gold);
  padding: 16px 20px;
  text-align: center;
  color: #fff;
}

.ep-gallery-overlay-box p:first-child {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}

.ep-gallery-overlay-box p:last-child {
  font-size: 18px;
  margin: 0;
}

@media (max-width: 767px) {
  .ep-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
  }

  .ep-gallery-grid .ep-g-wide {
    grid-column: span 2;
  }

  .ep-gallery-item {
    height: 180px;
  }
}

/* =============================================
   PARTNERS / TESTIMONIALS
   ============================================= */
.ep-partner-logo {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  transition: var(--transition);
}

.ep-partner-logo:hover {
  filter: grayscale(0);
  border-color: var(--gold);
}

.ep-partner-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.ep-testimonial {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.ep-testimonial:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.ep-testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ep-testimonial-head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.ep-testimonial-head h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #fff;
}

.ep-testimonial-head p {
  font-size: 10px;
  color: var(--on-muted);
  font-style: italic;
  margin: 0;
}

.ep-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-top: 4px;
}

.ep-stars svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.ep-testimonial-text {
  font-size: 12px;
  line-height: 1.7;
  color: var(--on-muted);
  margin: 0;
}

/* =============================================
   NEWS
   ============================================= */
.ep-news-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.ep-news-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.ep-news-img {
  overflow: hidden;
  height: 192px;
}

.ep-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.ep-news-card:hover .ep-news-img img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.ep-news-body {
  padding: 16px;
}

.ep-news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.ep-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
}

.ep-tag--gold {
  background: var(--gold);
  color: var(--black);
}

.ep-tag--blue {
  background: #2563eb;
  color: #fff;
}

.ep-news-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ep-news-card:hover .ep-news-title {
  color: var(--gold);
}

.ep-news-excerpt {
  font-size: 11px;
  color: var(--on-muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ep-news-link {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.ep-news-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   QUOTE CARD
   ============================================= */
.ep-quote-card {
  background: var(--surface);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ep-quote-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(40px);
}

.ep-quote-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #fff;
}

.ep-quote-subtitle {
  font-size: 13px;
  color: var(--on-muted);
  font-style: italic;
  margin-bottom: 32px;
}

.ep-quote-list {
  margin-bottom: 32px;
}

.ep-quote-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--gold);
}

.ep-quote-list li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   FOOTER
   ============================================= */
.ep-footer {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  color: var(--on-muted);
}

.ep-footer-subscribe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0;
  gap: 32px;
  flex-wrap: wrap;
}

.ep-footer-subscribe-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ep-footer-subscribe-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ep-footer-subscribe-left h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.ep-footer-subscribe-left p {
  font-size: 12px;
  color: var(--on-muted);
  margin: 0;
}

.ep-footer-subscribe-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ep-footer-input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  outline: none;
  min-width: 260px;
  transition: border-color 0.2s ease;
}

.ep-footer-input:focus {
  border-color: var(--gold);
}

.ep-footer-input::placeholder {
  color: var(--on-muted);
}

.ep-footer-cols {
  padding: 64px 0 48px;
}

.ep-footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}

.ep-footer-about {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ep-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ep-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--on-muted);
}

.ep-footer-contact-list li svg {
  color: var(--gold);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.ep-footer-nav h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.ep-footer-nav ul li {
  margin-bottom: 12px;
}

.ep-footer-nav ul li a {
  font-size: 12px;
  color: var(--on-muted);
  transition: color 0.2s ease;
}

.ep-footer-nav ul li a:hover {
  color: var(--gold);
}

.ep-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ep-footer-bottom p {
  font-size: 10px;
  margin: 0;
}

.ep-footer-legal {
  display: flex;
  gap: 24px;
}

.ep-footer-legal a {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s ease;
}

.ep-footer-legal a:hover {
  color: #fff;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 400;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vuta-header {
  height: auto !important;
}

.fixed-top {
  background: none !important;
}


/* ABOUT */
/* =============================================
   INTRO SECTION
   ============================================= */
.ep-intro-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}

.ep-intro-text {
  color: var(--on-muted);
  font-size: 17px;
  line-height: 1.75;
}

.ep-intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 575px) {
  .ep-intro-features {
    grid-template-columns: 1fr;
  }
}

.ep-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ep-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ep-feature-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-surface);
}

/* Image với khung viền lệch */
.ep-img-frame {
  position: relative;
}

.ep-img-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  transform: translate(16px, 16px);
  z-index: 0;
}

.ep-img-frame-inner {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.ep-img-frame-inner img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.7s ease;
  display: block;
}

.ep-img-frame-inner:hover img {
  filter: grayscale(0);
}

.ep-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(212, 175, 55, 0.9);
  color: var(--black);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.ep-play-btn:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.08);
}

.ep-play-btn .material-symbols-outlined {
  font-size: 40px;
  font-variation-settings: 'FILL' 1;
}

/* =============================================
   STATS SECTION
   ============================================= */
.ep-stats-section {
  padding: 64px 0;
  background: var(--surface-mid);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.ep-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

@media (max-width: 767px) {
  .ep-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ep-stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.ep-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-muted);
}

/* =============================================
   BENTO CARDS (Vision / Mission / Values)
   ============================================= */
.ep-bento-card {
  background: var(--surface-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.ep-bento-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.ep-bento-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.ep-bento-icon .material-symbols-outlined {
  font-size: 48px;
}

.ep-bento-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.ep-bento-text {
  color: var(--on-muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.ep-bento-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ep-bento-list li {
  color: var(--on-muted);
  font-size: 15px;
  line-height: 2;
}

/* =============================================
   TEAM CARDS
   ============================================= */
.ep-team-card {
  transition: var(--transition);
}

.ep-team-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface-mid);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.ep-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.ep-team-card:hover .ep-team-img img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.ep-team-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  margin-bottom: 4px;
}

.ep-team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-muted);
  text-align: center;
}

/* =============================================
   PARTNERS GRID
   ============================================= */
.ep-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

@media (max-width: 767px) {
  .ep-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ep-partner-cell {
  background: var(--surface);
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.ep-partner-cell:hover {
  background: var(--surface-mid);
}

.ep-partner-cell img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.ep-partner-cell:hover img {
  opacity: 1;
}

/* =============================================
   SUBSCRIBE BAR
   ============================================= */
.ep-subscribe-bar {
  background: var(--surface-mid);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 48px 0;
}

.ep-subscribe-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ep-subscribe-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ep-subscribe-left .material-symbols-outlined {
  font-size: 40px;
  color: var(--gold);
}

.ep-subscribe-left h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.ep-subscribe-left p {
  font-size: 13px;
  color: var(--on-muted);
  margin: 0;
}

.ep-subscribe-form {
  display: flex;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 99px;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

.ep-subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--on-surface);
  font-size: 14px;
  padding: 12px 20px;
  outline: none;
}

.ep-subscribe-input::placeholder {
  color: var(--on-muted);
}

.ep-subscribe-btn {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease;
  white-space: nowrap;
}

.ep-subscribe-btn:hover {
  filter: brightness(1.1);
}

/* SERVICES */
.ep-section {
  padding: 80px 0;
}

.ep-section--dark {
  background: var(--surface);
}

.ep-section--muted {
  background: var(--surface-mid);
}

.ep-section--low {
  background: var(--surface-mid);
}

.ep-heading-center {
  text-align: center;
  margin-bottom: 56px;
}

.ep-heading-center h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--on-surface);
  margin-bottom: 12px;
}

.ep-gold-bar {
  width: 96px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
}

/* ── OVERVIEW ── */
.ep-overview-img-wrap {
  position: relative;
}

.ep-overview-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  transform: translate(0, 0);
  transition: border-color 0.4s;
  z-index: 0;
  pointer-events: none;
}

.ep-overview-img-wrap:hover::before {
  border-color: rgba(212, 175, 55, 0.5);
}

.ep-overview-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  filter: grayscale(1);
  transition: filter 0.7s;
}

.ep-overview-img-wrap:hover img {
  filter: grayscale(0);
}

.ep-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.ep-overview-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--on-surface);
  margin-bottom: 20px;
}

.ep-overview-desc {
  font-size: 16px;
  color: var(--on-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.ep-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}

.ep-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--on-surface);
}

.ep-check-item .material-symbols-outlined {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── CORE SERVICE CARDS ── */
.ep-service-card {
  background: var(--surface-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.ep-service-card:hover {
  background: var(--surface-high);
  border-color: var(--gold-solid);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.ep-service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.ep-service-card:hover .ep-service-card-icon {
  transform: scale(1.1);
}

.ep-service-card-icon .material-symbols-outlined {
  font-size: 30px;
  color: var(--gold);
}

.ep-service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 12px;
}

.ep-service-card p {
  font-size: 14px;
  color: var(--on-muted);
  flex: 1;
  margin-bottom: 24px;
}

.ep-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.2s;
}

.ep-service-card:hover a {
  gap: 12px;
}

/* ── DETAILED SERVICE BLOCKS ── */
.ep-detail-block {
  margin-bottom: 80px;
}

.ep-detail-block:last-child {
  margin-bottom: 0;
}

.ep-detail-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-sm);
  margin-right: 16px;
  flex-shrink: 0;
}

.ep-detail-icon-wrap .material-symbols-outlined {
  font-size: 30px;
  color: var(--gold);
}

.ep-detail-heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.ep-detail-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--on-surface);
}

.ep-detail-desc {
  font-size: 16px;
  color: var(--on-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.ep-done-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin-bottom: 32px;
}

.ep-done-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--on-muted);
}

.ep-done-item .material-symbols-outlined {
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}

.ep-detail-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.ep-detail-btn:hover {
  background: var(--gold);
  color: #000;
}

.ep-detail-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
}

/* ── WORKFLOW ── */
.ep-workflow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .ep-workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .ep-workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ep-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ep-step-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: border 0.3s ease;
}

.ep-step:hover .ep-step-circle {
  border-style: solid;
  border-color: var(--gold);
}

.ep-step-circle .material-symbols-outlined {
  font-size: 30px;
  color: var(--gold);
}

.ep-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ep-step h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface);
  line-height: 1.4;
}

/* ── STATS ── */
.ep-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

@media (max-width: 767px) {
  .ep-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ep-stat .material-symbols-outlined {
  font-size: 48px;
  color: var(--gold);
  opacity: 0.5;
  transition: opacity 0.3s;
  display: block;
  margin: 0 auto 12px;
}

.ep-stat:hover .material-symbols-outlined {
  opacity: 1;
}

.ep-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.ep-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-muted);
}

/* ── EVENT TYPES GALLERY ── */
.ep-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 991px) {
  .ep-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ep-types-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ep-type-item {
  position: relative;
  height: 240px;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.ep-type-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.7s, transform 0.7s;
}

.ep-type-item:hover img {
  filter: grayscale(0);
  transform: scale(1.08);
}

.ep-type-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
}

.ep-type-item:hover {
  border-color: var(--gold);
}

.ep-type-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

/* ── FAQ ── */
.ep-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ep-faq-item {
  background: var(--surface-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.ep-faq-item[open] {
  border-color: rgba(212, 175, 55, 0.6);
}

.ep-faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--on-surface);
}

.ep-faq-summary .material-symbols-outlined {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 22px;
}

.ep-faq-item[open] .ep-faq-summary .material-symbols-outlined {
  transform: rotate(180deg);
}

.ep-faq-body {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--on-muted);
  line-height: 1.8;
}

/* ── CTA GOLD BANNER ── */
.ep-cta-banner {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ep-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ep-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 14px;
  position: relative;
}

.ep-cta-banner p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
  position: relative;
}

.ep-cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.ep-cta-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ep-cta-btn-dark:hover {
  opacity: 0.85;
}

.ep-cta-btn-border {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid #000;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.ep-cta-btn-border:hover {
  background: #000;
  color: var(--gold);
}

/* DỰ ÁN */
/* ── FILTER BAR ── */
.ep-filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(19, 19, 19, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.ep-filter-bar::-webkit-scrollbar {
  display: none;
}

.ep-filter-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.ep-filter-btn {
  padding: 8px 22px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: transparent;
  color: var(--on-surface);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.ep-filter-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.ep-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* ── BENTO FEATURED ── */
.ep-bento {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 20px;
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .ep-bento {
    grid-template-columns: 1fr;
  }
}

.ep-bento-main {
  position: relative;
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.08);
}

.ep-bento-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ep-bento-main:hover img {
  transform: scale(1.04);
}

.ep-bento-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
  pointer-events: none;
}

.ep-bento-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ep-bento-small {
  flex: 1;
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-dim);
}

.ep-bento-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ep-bento-small:hover img {
  transform: scale(1.05);
}

.ep-bento-small::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  pointer-events: none;
}

/* Card overlay content */
.ep-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ep-card-tag--gold {
  background: var(--gold);
  color: #000;
}

.ep-card-tag--glass {
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(8px);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.ep-card-body-main {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 32px;
}

.ep-card-body-main h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 16px;
}

.ep-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--on-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.ep-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ep-card-meta .material-symbols-outlined {
  color: var(--gold);
  font-size: 18px;
}

.ep-card-desc {
  color: var(--on-muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 20px;
}

.ep-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  transition: gap 0.2s ease;
}

.ep-card-link:hover {
  gap: 12px;
  color: var(--gold);
}

.ep-card-body-small {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px;
}

.ep-card-body-small h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ep-card-body-small .ep-card-meta {
  font-size: 12px;
  margin-bottom: 0;
}

/* ── PROJECT GRID ── */
.ep-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 20px;
  margin-bottom: 36px;
}

.ep-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--on-surface);
}

.ep-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ep-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.25);
}

.ep-dots span:first-child {
  background: var(--gold);
}

.ep-project-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}

.ep-project-card-img {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.ep-project-card-img img,
.ep-project-card-img .ep-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.ep-project-card:hover .ep-project-card-img img,
.ep-project-card:hover .ep-bg-img {
  transform: scale(1.08);
}

.ep-project-card-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  background: rgba(19, 19, 19, 0.82);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.ep-project-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--on-surface);
  transition: color 0.2s;
  line-height: 1.35;
}

.ep-project-card:hover h4 {
  color: var(--gold);
}

.ep-project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--on-muted);
  font-size: 13px;
}

.ep-project-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ep-project-card-meta .material-symbols-outlined {
  font-size: 15px;
}

/* Load more */
.ep-load-more {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin: 40px auto 0;
  display: flex;
}

.ep-load-more:hover {
  background: var(--gold);
  color: #000;
}

/* ── STATS COUNTER ── */
.ep-stats-counter {
  background: var(--surface-mid);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .ep-stats-counter {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ep-counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.ep-counter-item:last-child {
  border-right: 0;
}

.ep-counter-item .material-symbols-outlined {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 12px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.ep-counter-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.ep-counter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-muted);
}

@media (max-width: 767px) {
  .ep-counter-item {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .ep-counter-item:nth-child(odd) {
    border-right: 1px solid rgba(212, 175, 55, 0.1);
  }

  .ep-counter-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

/* ── CTA SECTION ── */
.ep-cta-section {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 96px 32px;
  text-align: center;
  margin-bottom: 80px;
}

.ep-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ep-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(1) brightness(0.5);
}

.ep-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--surface), transparent 40%, transparent 60%, var(--surface));
}

.ep-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.ep-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ep-cta-desc {
  font-size: 17px;
  color: var(--on-muted);
  margin-bottom: 40px;
}

.ep-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ep-btn-gold-pill {
  background: var(--gold);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.ep-btn-gold-pill:hover {
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}

.ep-btn-outline-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 99px;
  transition: background 0.2s;
  text-decoration: none;
}

.ep-btn-outline-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.ep-btn-outline-pill .material-symbols-outlined {
  color: var(--gold);
}

.project-event--bg {
  background: var(--surface);
}

/* THUE THIET BI SECTION */

.ep-hero {
  position: relative;
  height: 80vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.ep-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ep-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.ep-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}

.ep-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  color: rgba(212, 175, 55, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ep-hero-breadcrumb .material-symbols-outlined {
  font-size: 13px;
}

.ep-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.ep-hero-title .gold-gradient {
  background: linear-gradient(to right, #f2ca50, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ep-gold-bar-center {
  width: 96px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.ep-hero-desc {
  font-size: 17px;
  color: var(--on-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── SHARED ── */
.ep-section {
  padding: 80px 0;
}

.ep-section--dark {
  background: var(--surface);
}

.ep-section--muted {
  background: var(--surface-mid);
}

.ep-section--black {
  background: #000;
}

.ep-heading-center {
  text-align: center;
  margin-bottom: 48px;
}

.ep-heading-center h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 12px;
}

.ep-heading-center p {
  font-size: 15px;
  color: var(--on-muted);
  max-width: 480px;
  margin: 0 auto;
}

.ep-gold-bar-left {
  width: 160px;
  height: 2px;
  background: var(--gold);
  margin-top: 14px;
}

.ep-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* ── INTRO (2-col) ── */
.ep-intro-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.25;
}

.ep-intro-text {
  font-size: 17px;
  color: var(--on-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ep-badges {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ep-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.ep-badge-item .material-symbols-outlined {
  color: var(--gold);
  font-variation-settings: 'FILL' 1;
  font-size: 20px;
}

/* Staggered image grid */
.ep-intro-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ep-intro-imgs .ep-img-tall {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
}

.ep-intro-imgs .ep-img-tall.shift-down {
  margin-top: 32px;
}

.ep-intro-imgs .ep-img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.5s;
}

.ep-intro-imgs .ep-img-tall:hover img {
  filter: grayscale(0) contrast(1);
}

/* ── CATEGORY CARDS ── */
.ep-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .ep-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ep-cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}

.ep-cat-card:hover {
  border-color: var(--gold-solid);
  transform: translateY(-4px);
}

.ep-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ep-cat-card:hover img {
  transform: scale(1.1);
}

.ep-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.ep-cat-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.ep-cat-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s;
}

.ep-cat-card:hover .ep-cat-brand {
  opacity: 1;
}

/* .ep-equip-link--price {
  opacity: 0;
  transition: opacity 0.3s;
}

.ep-equip-card:hover .ep-equip-link--price {
  opacity: 1;
} */

/* ── EQUIPMENT ITEMS ── */
.ep-equip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ep-equip-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.ep-equip-header h2 span {
  color: var(--gold);
}

.ep-equip-nav {
  display: flex;
  gap: 8px;
}

.ep-equip-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
  background: none;
  color: var(--on-surface);
  cursor: pointer;
  transition: var(--transition);
}

.ep-equip-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ep-equip-card {
  background: var(--surface-card);
  border: 1px solid var(--gold-dim);
  padding: 24px;
  transition: var(--transition);
}

.ep-equip-card:hover {
  background: var(--surface-high);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
}

.ep-equip-card .ep-equip-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 20px;
}

.ep-equip-card .ep-equip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.5s, transform 0.4s;
}

.ep-equip-card:hover .ep-equip-img img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.ep-equip-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.ep-equip-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ep-equip-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-muted);
}

.ep-equip-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.ep-equip-desc {
  font-size: 14px;
  color: var(--on-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ep-equip-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
  transition: var(--transition);
}

.ep-equip-btn:hover {
  background: var(--gold);
  color: #000;
}

/* ── WHY US ── */
.ep-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .ep-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ep-why-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(19, 19, 19, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-dim);
  transition: var(--transition);
}

.ep-why-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.06);
}

.ep-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.ep-why-icon .material-symbols-outlined {
  font-size: 36px;
}

.ep-why-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.ep-why-card p {
  font-size: 14px;
  color: var(--on-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── TIMELINE (rental process) ── */
.ep-timeline-wrap {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ep-timeline-left {
  flex: 0 0 300px;
}

.ep-timeline-left h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ep-timeline-left h2 span {
  color: var(--gold);
}

.ep-timeline-left p {
  font-size: 16px;
  color: var(--on-muted);
  line-height: 1.75;
}

.ep-timeline-stat {
  background: var(--surface-card);
  border: 1px solid var(--gold-dim);
  padding: 28px;
  margin-top: 40px;
}

.ep-timeline-stat .ep-stat-big {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}

.ep-timeline-stat p {
  font-size: 14px;
  color: var(--on-muted);
  margin-top: 6px;
}

.ep-timeline-steps {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.ep-timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(212, 175, 55, 0.18);
}

@media (max-width: 767px) {
  .ep-timeline-line {
    display: none;
  }
}

.ep-step-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.ep-step-circle {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--on-surface);
  z-index: 1;
  transition: var(--transition);
}

.ep-step-row:hover .ep-step-circle {
  background: var(--gold);
  color: #000;
}

.ep-step-circle.dim {
  border-color: rgba(212, 175, 55, 0.3);
}

.ep-step-body {
  padding-top: 8px;
}

.ep-step-body h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ep-step-body p {
  font-size: 14px;
  color: var(--on-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── FINAL CTA ── */
.ep-final-cta {
  padding: 96px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ep-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(90deg, #000 0, #000 1px, transparent 1px, transparent calc(100%/12));
  pointer-events: none;
}

.ep-final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.ep-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.15;
}

.ep-final-cta p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
  margin-bottom: 48px;
}

.ep-final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ep-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 44px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ep-cta-dark:hover {
  opacity: 0.85;
}

.ep-cta-outline-dark {
  display: inline-flex;
  background: transparent;
  color: #000;
  border: 2px solid #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 44px;
  cursor: pointer;
  transition: var(--transition);
}

.ep-cta-outline-dark:hover {
  background: #000;
  color: var(--gold);
}

.ep-main-content--category {
  /* padding: 60px 0; */
}

/* ! BLOG CSS */



/* ! DETAIL BLOG CSS */
/* ── BREADCRUMB ── */
.ep-breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(208, 197, 175, 0.6);
  margin-bottom: 40px;
}

.ep-breadcrumb a:hover {
  color: var(--gold);
}

.ep-breadcrumb .material-symbols-outlined {
  font-size: 14px;
}

/* ── ARTICLE META ── */
.ep-article-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.ep-article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--on-surface);
  margin-bottom: 32px;
}

.ep-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  margin-bottom: 36px;
}

.ep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ep-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  flex-shrink: 0;
}

.ep-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-author-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.ep-author-name span {
  color: var(--gold);
}

.ep-author-role {
  font-size: 11px;
  color: rgba(208, 197, 175, 0.65);
}

.ep-meta-info {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(208, 197, 175, 0.65);
  font-size: 13px;
  font-weight: 600;
}

.ep-meta-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ep-meta-info .material-symbols-outlined {
  font-size: 17px;
}

.ep-share-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ep-share-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(208, 197, 175, 0.6);
}

.ep-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--outline);
  background: none;
  color: var(--on-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.ep-share-btn:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.ep-share-btn .material-symbols-outlined {
  font-size: 17px;
}

/* ── HERO IMAGE ── */
.ep-article-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--gold-dim);
  margin-bottom: 40px;
}

.ep-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-article-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--surface), transparent);
  pointer-events: none;
}

/* ── ARTICLE CONTENT ── */
.ep-article-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--on-muted);
}

.ep-article-content p {
  margin-bottom: 1.5rem;
}

.ep-article-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 16px;
}

.ep-article-content ul {
  margin: 24px 0;
}

.ep-article-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 16px;
}

.ep-article-content ul li .material-symbols-outlined {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Blockquote */
.ep-blockquote {
  margin: 36px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--gold);
  background: var(--surface-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--on-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* Inline image */
.ep-inline-img {
  margin: 40px 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.ep-inline-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Read more button */
.ep-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 48px;
}

.ep-read-more-btn:hover {
  opacity: 0.75;
}

/* ── SIDEBAR ── */
.ep-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  max-height: calc(100vh - var(--nav-h) - 48px);
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ep-sidebar::-webkit-scrollbar {
  display: none;
}

/* TOC */
.ep-toc {
  background: var(--surface-mid);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 28px;
}

.ep-toc h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--on-surface);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--outline);
  margin-bottom: 18px;
}

.ep-toc ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ep-toc ul li a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-muted);
  transition: color 0.2s;
  line-height: 1.4;
}

.ep-toc ul li a:hover {
  color: var(--gold);
}

/* Sidebar CTA */
.ep-sidebar-cta {
  position: relative;
  overflow: hidden;
  background: var(--surface-mid);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  padding: 28px;
}

.ep-sidebar-cta::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.ep-sidebar-cta h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.ep-sidebar-cta p {
  font-size: 14px;
  color: rgba(208, 197, 175, 0.8);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.ep-sidebar-cta-btn {
  width: 100%;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  position: relative;
  z-index: 1;
}

.ep-sidebar-cta-btn:hover {
  opacity: 0.88;
}

/* Related posts */
.ep-related h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 20px;
}

.ep-related-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--outline);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.ep-related-item:last-child {
  border-bottom: 0;
}

.ep-related-item:hover {
  transform: translateX(4px);
}

.ep-related-thumb {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gold-dim);
}

.ep-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.ep-related-item:hover .ep-related-thumb img {
  filter: grayscale(0);
}

.ep-related-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ep-related-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.ep-related-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface);
  line-height: 1.45;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.ep-related-item:hover .ep-related-title {
  color: var(--gold);
}

.ep-related-date {
  font-size: 11px;
  color: rgba(208, 197, 175, 0.55);
}

/* ── BOTTOM CTA ── */
.ep-bottom-cta {
  background: var(--surface-high);
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  padding: 56px 0;
}

.ep-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ep-bottom-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ep-bottom-cta-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.ep-bottom-cta-icon .material-symbols-outlined {
  font-size: 32px;
}

.ep-bottom-cta h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 4px;
}

.ep-bottom-cta p {
  font-size: 14px;
  color: rgba(208, 197, 175, 0.7);
  margin: 0;
}

.ep-bottom-cta-btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.ep-bottom-cta-btn:hover {
  opacity: 0.88;
}

/* ── SUBSCRIBE BAR ── */
.ep-subscribe-bar {
  background: var(--surface-mid);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 48px 0;
}

.ep-subscribe-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ep-subscribe-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ep-subscribe-left .material-symbols-outlined {
  font-size: 40px;
  color: var(--gold);
}

.ep-subscribe-left h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}

.ep-subscribe-left p {
  font-size: 13px;
  color: var(--on-muted);
  margin: 0;
}

.ep-subscribe-form {
  display: flex;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 99px;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

.ep-subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--on-surface);
  font-size: 14px;
  padding: 12px 20px;
  outline: none;
}

.ep-subscribe-input::placeholder {
  color: var(--on-muted);
}

.ep-subscribe-btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: filter 0.2s;
  white-space: nowrap;
}

.ep-subscribe-btn:hover {
  filter: brightness(1.1);
}

.ep-main {
  padding: 40px 0;
  background: var(--surface);
}

.bb-social-sharing .bb-social-sharing__item svg {
  color: var(--gold);
}

/* ! CSS CONTACT */
/* ── MAIN CONTACT SECTION ── */
.ep-contact-section {
  padding: 80px 0;
  background: #000;
}

.ep-contact-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 991px) {
  .ep-contact-row {
    flex-direction: column;
  }
}

/* Form card */
.ep-form-card {
  flex: 0 0 60%;
  background: var(--surface-low);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 40px;
}

@media (max-width: 991px) {
  .ep-form-card {
    flex: none;
  }
}

.ep-form-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.ep-form-card>p {
  font-size: 14px;
  color: var(--on-muted);
  margin-bottom: 32px;
}

/* Form fields */
.ep-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 575px) {
  .ep-field-row {
    grid-template-columns: 1fr;
  }
}

.ep-field {
  position: relative;
}

.ep-field .material-symbols-outlined {
  position: absolute;
  left: 0;
  bottom: 10px;
  font-size: 20px;
  color: rgba(212, 175, 55, 0.55);
  transition: color 0.2s, transform 0.2s;
}

.ep-field input,
.ep-field select,
.ep-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 8px 8px 8px 32px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.ep-field input:focus,
.ep-field select:focus,
.ep-field textarea:focus {
  border-color: var(--gold);
}

.ep-field input:focus+.material-symbols-outlined,
.ep-field select:focus+.material-symbols-outlined,
.ep-field textarea:focus+.material-symbols-outlined,
.ep-field input:focus~.material-symbols-outlined,
.ep-field select:focus~.material-symbols-outlined {
  color: var(--gold);
  transform: scale(1.1);
}

.ep-field input::placeholder,
.ep-field textarea::placeholder {
  color: rgba(208, 197, 175, 0.45);
}

.ep-field select option {
  background: var(--surface);
  color: var(--on-surface);
}

.ep-field--full {
  margin-bottom: 24px;
}

.ep-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.2s, transform 0.1s;
}

.ep-submit-btn:hover {
  filter: brightness(1.08);
}

.ep-submit-btn:active {
  transform: scale(0.98);
}

.ep-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--on-muted);
  opacity: 0.6;
  margin-top: 12px;
}

/* Info card */
.ep-info-card {
  flex: 1;
  background: var(--surface-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.ep-info-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.08);
}

.ep-info-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.ep-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.ep-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ep-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ep-info-icon .material-symbols-outlined {
  font-size: 22px;
}

.ep-info-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
}

.ep-info-sub {
  font-size: 13px;
  color: var(--on-muted);
}

/* Social links in info card */
.ep-info-social {
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: 24px;
}

.ep-info-social-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.ep-info-social-links {
  display: flex;
  gap: 10px;
}

.ep-info-social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.ep-info-social-links a:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.ep-info-social-links a .material-symbols-outlined {
  font-size: 20px;
}

/* Staff decorative image */
.ep-info-staff {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 240px;
  z-index: 0;
  opacity: 0.7;
}

.ep-info-staff img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ── MAP SECTION ── */
.ep-map-section {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: var(--surface-card);
}

.ep-map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface-low) 0%, var(--surface-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  transition: filter 0.7s;
}

.ep-map-section:hover .ep-map-placeholder {
  filter: grayscale(0.3);
}

.ep-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.ep-map-pin-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  animation: mapBounce 1.6s ease-in-out infinite;
}

@keyframes mapBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.ep-map-pin-dot .material-symbols-outlined {
  font-size: 32px;
  color: #000;
}

.ep-map-info-box {
  position: absolute;
  bottom: 32px;
  left: 64px;
  background: rgba(19, 19, 19, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  padding: 24px;
  max-width: 320px;
  z-index: 2;
}

@media (max-width: 767px) {
  .ep-map-info-box {
    display: none;
  }
}

.ep-map-info-box h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}

.ep-map-info-box p {
  font-size: 13px;
  color: var(--on-muted);
  margin-bottom: 8px;
}

.ep-map-info-box .ep-addr {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--on-muted);
}

.ep-map-dir-btn {
  display: inline-block;
  margin-top: 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.ep-map-dir-btn:hover {
  background: var(--gold);
  color: #000;
}

/* ── WHY EVENTPRO ── */
.ep-why-section {
  background: var(--surface);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 64px 0;
}

.ep-why-section h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 48px;
}

.ep-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 767px) {
  .ep-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.ep-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ep-why-item .material-symbols-outlined {
  font-size: 48px;
  color: var(--gold);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.ep-why-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.ep-why-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-muted);
}