/* ════════════════════════════════════════════════════
   EZ2FLY — Homepage Styles
   Fixed: text sizes, spacing proportions, progress bar
════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ocean);
}

/* Slides */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.4s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Overlays */
.hero-mask {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg,
    rgba(11,29,53,0.88) 0%,
    rgba(11,29,53,0.50) 55%,
    rgba(11,29,53,0.15) 100%);
}
.hero-glow {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse 55% 65% at 82% 52%, rgba(201,145,61,0.10) 0%, transparent 70%);
}
.weave-overlay { z-index: 2; }

/* ── Progress Bar ── */
.hero-progress {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 8;
  height: 3px;
  background: rgba(255,255,255,0.1);
}
.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--sunset));
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
}

/* ── Arrows ── */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 6; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(11,29,53,0.50);
  border: 1.5px solid rgba(201,145,61,0.35);
  color: var(--gold-lt); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }
.hero-arrow:hover {
  background: var(--gold); border-color: var(--gold); color: var(--ocean);
  transform: translateY(-50%) scale(1.08);
}

/* ── Location label ── */
.hero-label {
  position: absolute; bottom: 5rem; right: 2.5rem; z-index: 5;
  text-align: right; pointer-events: none;
}
.hero-label-loc {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-lt); opacity: 100; margin-bottom: 0.25rem;
}
.hero-label-name {
  font-family: var(--font-bara);
  font-size: 1.5rem; color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── Content ── */
.hero-content {
  position: relative; z-index: 4;
  padding-top: 6rem; /* clear nav + band */
  padding-bottom: 4rem;
}

/* Hero title — responsive, not too massive on mobile */
.hero-title {
  font-family: var(--font-bara);
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  font-weight: 400; line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em; text-transform: uppercase;
  line-height: 9rem;
}
.hero-gold { color: var(--gold-lt); }
.hero-italic {
  display: block;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero-sub {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.52); max-width: 480px;
  line-height: 1.9; margin-bottom: 2rem; font-weight: 300;
}

.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Stats row */
.hero-stats { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.hero-stat-num {
  font-family: var(--font-bara);
  font-size: 2rem; color: var(--gold-lt); line-height: 1; letter-spacing: 0.02em;
}
.hero-stat-lbl {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); margin-top: 0.2rem;
}
.hero-stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.12); }

/* ── Dots ── */
.hero-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 7; display: flex; gap: 0.45rem; align-items: center;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.28); cursor: pointer;
  transition: all 0.35s var(--ease); border: none;
}
.hero-dot.active { background: var(--gold-lt); width: 20px; }

/* ── Scroll cue ── */
.hero-scroll {
  position: absolute; bottom: 1.5rem; right: 2rem; z-index: 7;
  display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
  font-size: 0.48rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.25} 50%{opacity:.9} }

/* ══════════════════════════════════════════════════
   QUICK DESTINATIONS STRIP
══════════════════════════════════════════════════ */
.quick-dest-section { padding: 0; background: var(--ocean); }
.quick-dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 185px;
}
.quick-dest-card { position: relative; overflow: hidden; display: block; }
.qd-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
  filter: brightness(0.62) saturate(0.85);
}
.quick-dest-card:hover .qd-bg { transform: scale(1.07); filter: brightness(0.45); }
.qd-mask {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,29,53,0.88), transparent 55%);
}
.qd-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.9rem 0.75rem; text-align: center; }
.qd-flag { font-size: 1.3rem; margin-bottom: 0.2rem; }
.qd-label { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.88); }

/* ══════════════════════════════════════════════════
   FEATURED PACKAGES
══════════════════════════════════════════════════ */
.feat-section { background: var(--cream); }
.feat-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

/* ── Package Card ── */
.pkg-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 55px rgba(0,0,0,0.13); }
.pkg-card.is-featured { border-color: rgba(201,145,61,0.3); }
.pkg-card.is-featured::before {
  content: attr(data-badge);
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 3;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: var(--ocean); font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.2rem 0.55rem; border-radius: var(--r-full);
}

.pkg-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pkg-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pkg-card:hover .pkg-img { transform: scale(1.06); }
.pkg-duration {
  position: absolute; bottom: 0; left: 0;
  background: rgba(11,29,53,0.9); color: var(--gold-lt);
  font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; font-weight: 600;
}
.pkg-country-badge {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.55rem;
  border-radius: var(--r-full); color: #fff;
}
.badge-japan      { background: rgba(220,38,38,0.9); }
.badge-korea      { background: rgba(59,130,246,0.9); }
.badge-china      { background: rgba(234,88,12,0.9); }
.badge-taiwan     { background: rgba(16,185,129,0.9); }
.badge-philippines{ background: rgba(8,145,178,0.9); }

.pkg-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.pkg-meta { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.pkg-meta span { font-size: 0.65rem; color: var(--muted); }
.pkg-title {
  font-family: var(--font-bara);
  font-size: 1.35rem; color: var(--ink);
  letter-spacing: 0.02em; text-transform: uppercase;
  line-height: 1.05; margin-bottom: 0.35rem;
}
.pkg-desc { font-size: 0.72rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.85rem; }
.pkg-highlights { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1rem; }
.pkg-hl {
  font-size: 0.58rem; letter-spacing: 0.04em;
  color: var(--green); background: rgba(26,92,74,0.09);
  padding: 0.17rem 0.52rem; border-radius: var(--r-full);
}
.pkg-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid var(--border);
  gap: 0.5rem; flex-wrap: wrap; margin-top: auto;
}
.pkg-price strong {
  font-family: var(--font-bara);
  font-size: 1.6rem; color: var(--gold); letter-spacing: 0.02em; display: block;
}
.pkg-price small { font-size: 0.6rem; color: var(--muted); }
.pkg-footer-btns { display: flex; gap: 0.45rem; }
.pkg-detail-btn {
  background: transparent;
  border: 1.5px solid rgba(11,29,53,0.18);
  color: var(--ocean);
  padding: 0.5rem 0.9rem; font-size: 0.6rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--r-sm); cursor: pointer; transition: all 0.22s;
}
.pkg-detail-btn:hover { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.pkg-book-btn {
  background: linear-gradient(135deg, var(--ocean), var(--navy));
  color: var(--white);
  padding: 0.5rem 0.9rem; font-size: 0.6rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--r-sm); cursor: pointer; transition: all 0.22s;
  border: none;
}
.pkg-book-btn:hover { background: linear-gradient(135deg, var(--gold), var(--sunset)); color: var(--ocean); }

/* ── Package Modal ── */
.pkg-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11,29,53,0.78);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s; padding: 1.5rem;
}
.pkg-modal-overlay.open { opacity: 1; pointer-events: auto; }
.pkg-modal {
  background: var(--white); border-radius: var(--r-xl);
  width: 100%; max-width: 680px; max-height: 90vh;
  overflow-y: auto; position: relative;
  box-shadow: 0 32px 90px rgba(0,0,0,0.4);
  transform: translateY(28px) scale(0.96);
  transition: transform 0.36s var(--spring);
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.pkg-modal-overlay.open .pkg-modal { transform: none; }
.pkg-modal::-webkit-scrollbar { width: 4px; }
.pkg-modal::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.pkg-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.08); color: var(--ink);
  font-size: 0.85rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; border: none;
}
.pkg-modal-close:hover { background: var(--ocean); color: var(--white); }
.pkg-modal-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--r-xl) var(--r-xl) 0 0; display: block; }
.pkg-modal-body { padding: 1.75rem 2rem 2.25rem; }
.pkg-modal-country { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.35rem; }
.pkg-modal-title { font-family: var(--font-bara); font-size: 2rem; color: var(--ink); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; margin-bottom: 0.6rem; }
.pkg-modal-meta { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-bottom: 1.2rem; font-size: 0.72rem; color: var(--muted); }
.pkg-modal-section-title {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin: 1.3rem 0 0.55rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.pkg-modal-section-title::before { content:''; display:block; width:16px; height:2px; background:var(--gold); border-radius:1px; }
.pkg-modal-list { list-style: none; }
.pkg-modal-list li { font-size: 0.77rem; color: var(--muted); padding: 0.35rem 0; border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; gap: 0.6rem; }
.pkg-modal-list li::before { content:'✦'; color:var(--gold); font-size:0.45rem; margin-top:0.38rem; flex-shrink:0; }
.pkg-modal-list.excl li::before { content:'✕'; color:var(--coral); }
.pkg-modal-rates { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.55rem; margin-top: 0.75rem; }
.pkg-modal-rate-item { background: var(--cream); border-radius: var(--r-md); padding: 0.65rem; text-align: center; }
.pkg-modal-rate-label { font-size: 0.54rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.18rem; }
.pkg-modal-rate-val { font-size: 0.74rem; font-weight: 600; color: var(--ink); }
.pkg-modal-price-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; padding-top: 1.3rem; border-top: 1px solid rgba(0,0,0,0.07); }
.pkg-modal-price { font-family: var(--font-bara); font-size: 2.2rem; color: var(--gold); letter-spacing: 0.02em; line-height: 1; }

/* ══════════════════════════════════════════════════
   HERITAGE MOSAIC
══════════════════════════════════════════════════ */
.heritage-section { background: var(--ocean); }
.heritage-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem;
}
.heritage-more-link {
  font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-lt); border-bottom: 1px solid rgba(201,145,61,0.3);
  padding-bottom: 0.15rem; transition: color 0.2s;
}
.heritage-more-link:hover { color: var(--gold); }
.heritage-mosaic {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4px; height: 540px; border-radius: var(--r-md); overflow: hidden;
}
.hm-stacked { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.hm-big, .hm-sm { position: relative; overflow: hidden; background: var(--deep); }
.hm-big img, .hm-sm img { width:100%; height:100%; object-fit:cover; transition:transform 0.7s var(--ease); filter:brightness(0.68) saturate(0.85); }
.hm-big:hover img, .hm-sm:hover img { transform:scale(1.07); filter:brightness(0.5); }
.hm-ov { position:absolute; inset:0; background:linear-gradient(to top, rgba(11,29,53,0.88) 0%, transparent 55%); }
.hm-label { position:absolute; bottom:0; left:0; right:0; padding:1.2rem; }
.hm-region { font-size:0.54rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold-lt); font-weight:600; margin-bottom:0.2rem; }
.hm-name { font-family:var(--font-bara); font-size:1.5rem; color:var(--white); letter-spacing:0.03em; text-transform:uppercase; line-height:1.05; }
.hm-sm .hm-name { font-size:0.95rem; }

/* ══════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════ */
.why-section { background: var(--ocean); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-img-col { position: relative; }
.why-badge {
  position: absolute; top: 1.5rem; left: -1.2rem; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: var(--ocean); padding: 1rem 1.2rem; text-align: center;
  box-shadow: 0 8px 28px rgba(201,145,61,0.4);
}
.why-badge-num { font-family: var(--font-bara); font-size: 1.7rem; line-height: 1; }
.why-badge-lbl { font-size: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; margin-top: 0.12rem; }
.why-main-img { width:100%; aspect-ratio:3/4; object-fit:cover; filter:brightness(0.72) saturate(0.88); border-radius:var(--r-sm); }
.why-accent-img { position:absolute; bottom:-1.75rem; right:-1.75rem; width:46%; aspect-ratio:1; object-fit:cover; border:4px solid var(--ocean); border-radius:var(--r-sm); }
.why-cards { display:grid; grid-template-columns:1fr 1fr; gap:0.85rem; }
.why-card { padding:1.3rem; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); border-top:2px solid var(--gold); border-radius:var(--r-sm); transition:all 0.3s; }
.why-card:hover { background:rgba(201,145,61,0.07); transform:translateY(-3px); }
.why-card-icon { font-size:1.2rem; margin-bottom:0.5rem; }
.why-card-title { font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.why-card-desc { font-size: 0.7rem; color: rgba(255,255,255,0.36); line-height: 1.72; }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testi-section { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.testi-card { background:var(--white); border:1px solid rgba(0,0,0,0.06); padding:1.75rem; border-radius:var(--r-lg); position:relative; transition:all 0.3s; box-shadow:var(--shadow-sm); }
.testi-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.testi-quote-mark { position:absolute; top:0.75rem; right:1.2rem; font-family:var(--font-serif); font-size:4.5rem; line-height:1; color:rgba(201,145,61,0.1); pointer-events:none; }
.testi-stars { color:var(--gold-lt); font-size:0.78rem; letter-spacing:0.08em; margin-bottom:0.85rem; }
.testi-text { font-size: 0.8rem; color: var(--muted); line-height: 1.82; margin-bottom: 1.3rem; font-style: italic; }
.testi-author { display:flex; gap:0.8rem; align-items:center; }
.testi-av { width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,var(--gold),var(--teal)); display:flex; align-items:center; justify-content:center; font-size:0.68rem; font-weight:700; color:var(--white); flex-shrink:0; }
.testi-name { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.testi-loc { font-size: 0.62rem; color: var(--muted); margin-top: 0.08rem; }

/* ══════════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════════ */
.cta-strip { background:linear-gradient(135deg,var(--gold) 0%,var(--sunset) 100%); padding:4rem 0; }
.cta-strip-inner { display:flex; justify-content:space-between; align-items:center; gap:2rem; flex-wrap:wrap; }
.cta-strip-title { font-family:var(--font-bara); font-size:clamp(2.4rem,4.5vw,3.8rem); color:var(--ocean); line-height:0.93; letter-spacing:0.02em; text-transform:uppercase; }
.cta-strip-sub { font-size:0.84rem; color:rgba(12,33,58,0.58); margin-top:0.6rem; max-width:360px; line-height:1.8; }
.cta-strip-btns { display:flex; gap:0.85rem; flex-wrap:wrap; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .quick-dest-grid { grid-template-columns: repeat(3,1fr); height: 155px; }
  .heritage-mosaic { grid-template-columns: 1fr 1fr; height: auto; }
  .hm-big { aspect-ratio: 16/9; grid-column: span 2; }
  .hm-stacked { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .hm-sm { aspect-ratio: 4/3; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-accent-img { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-arrow { display: none; }
}
@media (max-width: 768px) {
  .feat-grid { grid-template-columns: 1fr; }
  .quick-dest-grid { grid-template-columns: repeat(3,1fr); height: 130px; }
  .heritage-mosaic { grid-template-columns: 1fr; height: auto; }
  .hm-big { aspect-ratio: 4/3; grid-column: span 1; }
  .hm-stacked { grid-template-columns: 1fr 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-sub { margin: 0.5rem auto 0; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .hero-label { display: none; }
  .hero-scroll { display: none; }
  .hero-content { padding-top: 5rem; padding-bottom: 3rem; }
  .pkg-modal-body { padding: 1.3rem 1.1rem 1.75rem; }
  .pkg-modal-rates { grid-template-columns: 1fr 1fr; }
  .pkg-modal-title { font-size: 1.65rem; }
}
@media (max-width: 480px) {
  .quick-dest-grid { grid-template-columns: repeat(3,1fr); gap: 1px; height: 115px; }
  .hero-stats { gap: 1.2rem; }
  .hero-stat-div { display: none; }
  .pkg-footer { flex-direction: column; align-items: flex-start; }
  .pkg-footer-btns { width: 100%; }
  .pkg-detail-btn, .pkg-book-btn { flex: 1; text-align: center; justify-content: center; }
}
