/* ============================================================
   JELLY GYM — style.css
   Pixel-perfect port dari versi Tailwind asli.
   Semua warna, spacing, font, radius, animasi identik 100%.
   ============================================================ */

/* ─── FONT IMPORTS (via HTML <link>) ─── */

/* ─── CSS CUSTOM PROPERTIES (design tokens persis dari tailwind.config) ─── */
:root {
  /* Colors */
  --primary-container:           #ff5722;
  --on-primary-container:        #541200;
  --inverse-primary:             #b02f00;
  --primary-fixed:               #ffdbd1;
  --primary-fixed-dim:           #ffb5a0;
  --on-primary-fixed:            #3b0900;
  --on-primary-fixed-variant:    #862200;
  --primary:                     #ffb5a0;
  --on-primary:                  #5f1500;

  --secondary:                   #c6c6c7;
  --on-secondary:                #2f3131;
  --secondary-container:         #454747;
  --on-secondary-container:      #b4b5b5;
  --secondary-fixed:             #e2e2e2;
  --secondary-fixed-dim:         #c6c6c7;
  --on-secondary-fixed:          #1a1c1c;
  --on-secondary-fixed-variant:  #454747;

  --tertiary:                    #c8c6c5;
  --on-tertiary:                 #303030;
  --tertiary-container:          #929090;
  --on-tertiary-container:       #2a2a2a;
  --tertiary-fixed:              #e4e2e1;
  --tertiary-fixed-dim:          #c8c6c5;
  --on-tertiary-fixed:           #1b1c1c;
  --on-tertiary-fixed-variant:   #474746;

  --background:                  #131313;
  --on-background:               #e5e2e1;

  --surface:                     #131313;
  --on-surface:                  #e5e2e1;
  --surface-variant:             #353534;
  --on-surface-variant:          #e4beb4;
  --surface-tint:                #ffb5a0;
  --surface-dim:                 #131313;
  --surface-bright:              #393939;
  --surface-container-lowest:    #0e0e0e;
  --surface-container-low:       #1c1b1b;
  --surface-container:           #201f1f;
  --surface-container-high:      #2a2a2a;
  --surface-container-highest:   #353534;

  --outline:                     #ab8980;
  --outline-variant:             #5b4039;

  --inverse-surface:             #e5e2e1;
  --inverse-on-surface:          #313030;

  --error:                       #ffb4ab;
  --on-error:                    #690005;
  --error-container:             #93000a;
  --on-error-container:          #ffdad6;

  /* Spacing tokens (dari tailwind spacing extend) */
  --space-xs:             4px;
  --space-base:           8px;
  --space-sm:             12px;
  --space-md:             24px;
  --space-gutter:         24px;
  --space-lg:             48px;
  --space-xl:             80px;
  --space-margin-mobile:  16px;
  --space-margin-desktop: 64px;

  /* Border radius tokens */
  --radius:      0.125rem;   /* DEFAULT */
  --radius-lg:   0.25rem;
  --radius-xl:   0.5rem;
  --radius-full: 0.75rem;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── BASE ─── */
body {
  background-color: #131313;
  color: #e5e2e1;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
/* Original: .noise-bg::before with fixed noise texture */
.noise-bg::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9999;
  background-image: url('../images/noise-overlay.png');
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #131313; }
::-webkit-scrollbar-thumb { background: #ff5722; border-radius: 10px; }

/* ─── TYPOGRAPHY HELPERS ─── */
.font-black-header {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
.gradient-text {
  background: linear-gradient(135deg, #ff5722, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LOADER ─── */
.loader-screen {
  position: fixed;
  inset: 0;
  background: #131313;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loaderLogo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 3.75rem;         /* text-6xl */
  color: #ff5722;
  letter-spacing: -0.05em;    /* tracking-tighter */
  opacity: 1;
}
#loaderBar {
  height: 4px;                /* h-1 */
  background: #ff5722;
  margin-top: 8px;            /* mt-2 */
  width: 0;
}

/* ─── GLASSMORPHISM BASE ─── */
.glass-nav {
  background: rgba(19,19,19,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,87,34,0.3);
  transform: translateY(-8px);
}

/* ─── ACTIVE NAV LINK ─── */
.active-nav-link {
  color: #ff5722 !important;
  position: relative;
}
.active-nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: #ff5722;
}

/* ─── ASYMMETRIC SHAPE (used in original) ─── */
.asymmetric-shape {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

/* ─── REVEAL ELEMENT (GSAP animates from, so start visible) ─── */
.reveal-element {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════
   NAVIGATION  (fixed top, full width)
   ════════════════════════════════════════ */
#mainNav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  /* glass-nav applied via class */
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding 0.3s, box-shadow 0.3s, background 0.3s;
}
/* scroll state added by JS */
#mainNav.nav-scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,1);
  background: rgba(0,0,0,0.8);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 16px;          /* py-md px-margin-mobile */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .nav-container { padding-left: 64px; padding-right: 64px; }
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem;           /* text-2xl */
  color: #ff5722;
  letter-spacing: -0.05em;
  text-decoration: none;
  transition: transform 0.2s;
}
.nav-logo:hover { transform: scale(1.05); }

/* Desktop links */
.nav-desktop-links {
  display: none;
  gap: 48px;                   /* gap-lg */
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;          /* text-xs */
  text-transform: uppercase;
  letter-spacing: 0.1em;       /* tracking-widest */
  font-weight: 600;
  list-style: none;
}
@media (min-width: 768px) { .nav-desktop-links { display: flex; } }

.nav-link {
  color: #e5e2e1;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: #ff5722; }

/* Join Club button in nav */
.btn-join {
  background: #ff5722;
  color: #fff;
  padding: 12px 24px;          /* py-sm px-md */
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.125rem;
  transition: filter 0.2s, transform 0.15s;
}
.btn-join:hover { filter: brightness(1.1); }
.btn-join:active { transform: scale(0.95); }

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: #ff5722;
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

/* Mobile menu panel */
#mobileMenu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
#mobileMenu.open { display: flex; }

.mobile-nav-link {
  color: #e5e2e1;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: #ff5722; }

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;           /* pt-24 */
  overflow: hidden;
}

/* Parallax background wrapper */
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#heroBg {
  width: 100%;
  height: 120%;
  position: absolute;
  top: -10%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #131313, transparent);
  opacity: 0.8;
}

/* Hero content */
.hero-content-wrap {
  position: relative;
  z-index: 10;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-content-wrap { padding-left: 64px; padding-right: 64px; }
}

#heroContent { max-width: 80rem; /* max-w-5xl ~= 80rem isn't exact but 64rem is max-w-4xl; original is max-w-5xl */ }
/* Tailwind max-w-5xl = 64rem */
#heroContent { max-width: 64rem; }

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 3rem;             /* text-5xl */
  line-height: 0.9;
  margin-bottom: 24px;         /* mb-md */
  opacity: 1;
}
@media (min-width: 768px) { .hero-title { font-size: 6rem; } } /* text-8xl */

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  color: #e4beb4;              /* on-surface-variant */
  max-width: 42rem;            /* max-w-2xl */
  margin-bottom: 48px;         /* mb-lg */
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;                   /* gap-md */
  opacity: 1;
}

.btn-hero-primary {
  background: #ff5722;
  color: #fff;
  padding: 24px 80px;          /* py-md px-xl */
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.125rem;         /* text-lg */
  border-radius: 0.125rem;
  transition: box-shadow 0.3s;
}
.btn-hero-primary:hover {
  box-shadow: 0 0 30px rgba(255,87,34,0.3);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: #e5e2e1;
  background: transparent;
  padding: 24px 80px;          /* py-md px-xl */
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.125rem;
  border-radius: 0.125rem;
  transition: background 0.2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.05); }

/* Floating stats card */
#heroStats {
  position: absolute;
  bottom: 80px;                /* bottom-xl */
  right: 64px;                 /* right-margin-desktop */
  display: none;
}
@media (min-width: 1024px) { #heroStats { display: block; } }

.hero-stats-inner {
  padding: 48px;               /* p-lg */
  display: flex;
  align-items: center;
  gap: 48px;                   /* gap-lg */
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2.25rem;          /* text-4xl */
  color: #ff5722;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;     /* tracking-tighter */
  opacity: 0.5;
}

.stat-divider {
  width: 1px;
  height: 3rem;                /* h-12 */
  background: rgba(255,255,255,0.1);
}

/* ════════════════════════════════════════
   ABOUT SECTION  (#tentang)
   ════════════════════════════════════════ */
#tentang {
  padding: 80px 16px;          /* py-xl px-margin-mobile */
  background-color: #0e0e0e;   /* surface-container-lowest */
}
@media (min-width: 768px) {
  #tentang { padding-left: 64px; padding-right: 64px; }
}

.about-flex {
  display: flex;
  flex-direction: column;
  gap: 80px;                   /* gap-xl */
  align-items: center;
}
@media (min-width: 1024px) { .about-flex { flex-direction: row; } }

/* Image side */
.about-image-col {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) { .about-image-col { width: 50%; } }

/* group hover scale on img */
.about-image-col:hover .about-img { transform: scale(1.1); }

.about-img-frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 0.125rem;
  position: relative;
  z-index: 10;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-corner-decor {
  position: absolute;
  top: -2.5rem; left: -2.5rem;  /* -top-10 -left-10 */
  width: 10rem; height: 10rem;   /* w-40 h-40 */
  border-top: 4px solid rgba(255,87,34,0.3);
  border-left: 4px solid rgba(255,87,34,0.3);
  z-index: -1;
}
.about-year-badge {
  position: absolute;
  bottom: -2.5rem; right: -2.5rem; /* -bottom-10 -right-10 */
  background: #ff5722;
  padding: 80px;               /* p-xl */
  color: #fff;
  z-index: 20;
}
.about-year-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;          /* text-4xl */
}
.about-year-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Text side */
.about-text-col {
  width: 100%;
}
@media (min-width: 1024px) { .about-text-col { width: 50%; } }

.about-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2.25rem;          /* text-4xl */
  color: #ff5722;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .about-heading { font-size: 3.75rem; } } /* text-6xl */

.about-body {
  font-size: 1.125rem;         /* text-lg */
  color: #e4beb4;
  line-height: 1.8;
  font-weight: 300;            /* font-light */
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;                   /* gap-md */
  margin-top: 24px;
}
@media (min-width: 768px) {
  .about-features { grid-template-columns: 1fr 1fr; }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 24px;                   /* gap-md */
}
.about-feature-icon {
  font-size: 2.5rem;           /* text-4xl */
  color: #ff5722;
  flex-shrink: 0;
}
.about-feature h4 {
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 0.875rem;
  opacity: 0.6;
  font-family: 'Inter', sans-serif;
}

/* ════════════════════════════════════════
   PROGRAMS SECTION  (#produk)
   ════════════════════════════════════════ */
#produk {
  padding: 80px 16px;
}
@media (min-width: 768px) { #produk { padding-left: 64px; padding-right: 64px; } }

.programs-header {
  text-align: center;
  margin-bottom: 80px;         /* mb-xl */
}
.programs-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 3rem;             /* text-5xl */
  margin-bottom: 12px;         /* mb-sm */
}
@media (min-width: 768px) { .programs-title { font-size: 4.375rem; } } /* text-7xl */
.programs-subtitle {
  color: #e4beb4;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;                   /* gap-lg */
}
@media (min-width: 768px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }

/* Program card  (group hover) */
.program-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 0.125rem;
}
.program-card.mt-offset {
  margin-top: 0;
}
@media (min-width: 768px) { .program-card.mt-offset { margin-top: 80px; } } /* md:mt-xl */

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.7s ease;
}
.program-card:hover img { transform: scale(1.1); }

.program-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
}

.program-content {
  position: absolute;
  bottom: 0;
  padding: 48px;               /* p-lg */
  width: 100%;
  transform: translateY(1rem); /* translate-y-4 */
  transition: transform 0.4s ease;
}
.program-card:hover .program-content { transform: translateY(0); }

.program-tag {
  display: inline-block;
  background: rgba(255,87,34,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,87,34,0.4);
  padding: 2px 8px;            /* px-sm py-xs */
  border-radius: 0.125rem;
  color: #ff5722;
  font-size: 0.625rem;         /* text-[10px] */
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.program-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.875rem;         /* text-3xl */
  margin-bottom: 4px;
}
.program-desc {
  font-size: 0.75rem;
  color: #e4beb4;
  margin-bottom: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.program-card:hover .program-desc { opacity: 1; }

.program-join-btn {
  display: flex;
  align-items: center;
  gap: 4px;                    /* gap-xs */
  color: #ff5722;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  transition: gap 0.3s;
}
.program-card:hover .program-join-btn { gap: 24px; }

/* ════════════════════════════════════════
   SERVICES SECTION  (#layanan)
   ════════════════════════════════════════ */
#layanan {
  padding: 80px 16px;
  background-color: #1c1b1b;   /* surface-container-low */
}
@media (min-width: 768px) { #layanan { padding-left: 64px; padding-right: 64px; } }

.services-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 24px;
}
@media (min-width: 768px) { .services-header { flex-direction: row; } }

.services-header-left { max-width: 42rem; }
.services-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 3rem;
  color: #ff5722;
}
@media (min-width: 768px) { .services-heading { font-size: 3.75rem; } }
.services-subtext { color: #e4beb4; margin-top: 12px; }

.btn-all-services {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid #ff5722;
  padding-bottom: 4px;
  background: none;
  color: #e5e2e1;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}
.btn-all-services:hover { color: #ff5722; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;                   /* gap-gutter */
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4,1fr); } }

.service-card {
  padding: 48px;               /* p-lg */
  border-radius: 0.125rem;
}
.service-icon {
  font-size: 3rem;             /* text-5xl */
  color: #ff5722;
  margin-bottom: 24px;
  display: block;
}
.service-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.875rem;
  color: #e4beb4;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   GALLERY SECTION  (#galeri)
   ════════════════════════════════════════ */
#galeri {
  padding: 80px 16px;
  overflow: hidden;
}
@media (min-width: 768px) { #galeri { padding-left: 64px; padding-right: 64px; } }

.gallery-heading {
  text-align: center;
  margin-bottom: 80px;
}
.gallery-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 3rem;
}
@media (min-width: 768px) { .gallery-title { font-size: 4.375rem; } }

/* Bento grid */
#galleryGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;                   /* gap-md */
  height: 1000px;
}
@media (min-width: 768px) {
  #galleryGrid {
    grid-template-columns: repeat(12, 1fr);
    height: 700px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
/* Mobile: all items fill column span 1 (default) */
/* Desktop bento layout */
@media (min-width: 768px) {
  .gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 3; }
  .gallery-item:nth-child(3) { grid-column: span 3; }
  .gallery-item:nth-child(4) { grid-column: span 6; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

/* ════════════════════════════════════════
   TESTIMONIALS SECTION  (#testimoni)
   ════════════════════════════════════════ */
#testimoni {
  padding: 80px 16px;
  background-color: #131313;   /* surface */
}
@media (min-width: 768px) { #testimoni { padding-left: 64px; padding-right: 64px; } }

.testimonials-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 80px;
}
@media (min-width: 768px) { .testimonials-heading { font-size: 3.75rem; } }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card {
  padding: 80px;               /* p-xl */
  border-radius: 0.125rem;
}

.stars {
  display: flex;
  color: #ff5722;
  margin-bottom: 24px;
}
/* FILL icon variation */
.icon-fill {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.testimonial-quote {
  font-style: italic;
  font-weight: 300;
  color: #e4beb4;
  margin-bottom: 48px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 24px;
}
.author-avatar {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: #ff5722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-role { font-size: 0.75rem; opacity: 0.4; }

/* ════════════════════════════════════════
   FINAL CTA SECTION
   ════════════════════════════════════════ */
#cta-section {
  padding: 6rem 16px;          /* py-24 */
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { #cta-section { padding-left: 64px; padding-right: 64px; } }

.cta-bg-color {
  position: absolute;
  inset: 0;
  background: #ff5722;
  z-index: 0;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../images/carbon-pattern.png');
  opacity: 0.2;
}
.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;            /* max-w-4xl */
  margin: 0 auto;
}
.cta-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 3rem;
  color: #fff;
  line-height: 1;              /* leading-tight */
  margin-bottom: 24px;
}
@media (min-width: 768px) { .cta-heading { font-size: 6rem; } } /* text-8xl */

.cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 80px;
}
@media (min-width: 768px) { .cta-sub { font-size: 1.25rem; } }

.btn-cta {
  background: #fff;
  color: #ff5722;
  padding: 48px 80px;          /* py-lg px-xl */
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;          /* text-xl */
  border-radius: 0.125rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  transition: transform 0.2s;
}
.btn-cta:hover { transform: scale(1.05); }

/* ════════════════════════════════════════
   MAP & INFO SECTION  (#lokasi)
   ════════════════════════════════════════ */
#lokasi {
  padding: 80px 16px;
  background-color: #0e0e0e;
}
@media (min-width: 768px) { #lokasi { padding-left: 64px; padding-right: 64px; } }

.location-grid {
  display: grid;
  gap: 80px;
}
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; } }

/* Hours */
.hours-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.875rem;
  margin-bottom: 24px;
}

.hours-card { padding: 48px; border-radius: 0.125rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row + .hours-row { padding-top: 24px; }
.hours-day { font-weight: 600; }
.hours-time { color: #ff5722; }

/* Status card */
.status-card {
  margin-top: 80px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  border-radius: 0.125rem;
}
.status-icon-wrap {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(255,87,34,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.status-icon { font-size: 2.5rem; color: #ff5722; }

.status-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 4px;
}
.status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
#statusPulse {
  width: 0.75rem; height: 0.75rem;
  border-radius: 50%;
  display: inline-block;
}
#statusPulse.open  { background: #22c55e; animation: pulse-dot 1.5s infinite; }
#statusPulse.closed { background: #ef4444; animation: none; }
#statusText { font-size: 1.5rem; }
#statusText.open  { color: #22c55e; }
#statusText.closed { color: #ef4444; }
@keyframes pulse-dot {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:.5; transform: scale(1.2); }
}

/* Map placeholder */
.map-box {
  position: relative;
  min-height: 400px;
  border-radius: 0.125rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.map-bg { position: absolute; inset: 0; background: #201f1f; }
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-card {
  text-align: center;
  padding: 80px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.125rem;
  max-width: 20rem;
}
.map-pin-icon { font-size: 3rem; color: #ff5722; margin-bottom: 24px; display: block; }
.map-address { font-weight: 700; margin-bottom: 24px; }
.btn-maps {
  display: block;
  background: #ff5722;
  color: #fff;
  padding: 12px 48px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.875rem;
  border-radius: 0.125rem;
  transition: filter 0.2s;
}
.btn-maps:hover { filter: brightness(1.1); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer {
  padding: 80px 16px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 768px) { footer { padding-left: 64px; padding-right: 64px; } }

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 80px;
}
@media (min-width: 768px) { .footer-top { flex-direction: row; } }

.footer-brand { max-width: 24rem; }
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.875rem;
  color: #ff5722;
  margin-bottom: 24px;
}
.footer-brand p {
  color: #e4beb4;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 48px;
}
.footer-socials {
  display: flex;
  gap: 24px;
  list-style: none;
}
.social-link {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e2e1;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: #ff5722; color: #fff; }
.social-icon { font-size: 1.25rem; }

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.3;
  margin-bottom: 48px;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #e5e2e1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: #ff5722; }
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-list li { font-size: 0.875rem; font-weight: 500; color: #e4beb4; }

.footer-bottom {
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;      /* tracking-[4px] */
  opacity: 0.3;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-legal-links { display: flex; gap: 48px; list-style: none; }
.footer-legal-links a { color: inherit; text-decoration: none; }

/* ════════════════════════════════════════
   FLOATING ELEMENTS
   ════════════════════════════════════════ */
.floating-wrap {
  position: fixed;
  bottom: 24px; right: 24px;  /* bottom-gutter right-gutter */
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 60;
}

#backToTop {
  width: 3rem; height: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5722;
  cursor: pointer;
  background: rgba(19,19,19,0.7);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s, transform 0.3s;
}
#backToTop.visible { opacity: 1; transform: scale(1); }

#waFloating {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 8px;
  border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  max-width: 48px;
  overflow: hidden;
  text-decoration: none;
  transition: max-width 0.4s ease;
}
#waFloating:hover { max-width: 220px; }

.wa-icon-wrap {
  width: 2rem; height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-text {
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.75rem;
  padding-right: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
#waFloating:hover .wa-text { opacity: 1; }

/* ════════════════════════════════════════
   BOOKING MODAL
   ════════════════════════════════════════ */
#bookingModal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
}
#bookingModal.active { display: flex; }

.modal-inner {
  /* glass-nav + border */
  background: rgba(19,19,19,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  max-width: 32rem;            /* max-w-lg */
  padding: 80px;               /* p-xl */
  border-radius: 0.125rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #e5e2e1;
  transition: color 0.2s;
}
.modal-close:hover { color: #ff5722; }
.modal-close .material-symbols-outlined { font-size: 1.875rem; }

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.875rem;
  color: #ff5722;
  margin-bottom: 24px;
}
.modal-sub {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 48px;
}

#bookingForm .form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 4px;
  opacity: 0.5;
}
.form-input, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 24px;               /* p-md */
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  border-radius: 0;            /* rounded-none */
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-input:focus, .form-select:focus { border-color: #ff5722; }
.form-select { background-color: #201f1f; cursor: pointer; }

.btn-submit {
  width: 100%;
  background: #ff5722;
  color: #fff;
  padding: 48px 0;             /* py-lg */
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.125rem;
  border-radius: 0.125rem;
  transition: filter 0.2s, transform 0.15s;
}
.btn-submit:hover { filter: brightness(1.1); }
.btn-submit:active { transform: scale(0.95); }

/* ════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.95);
  cursor: pointer;
}
#lightbox.active { display: flex; }
#lightboxImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,1);
  transition: transform 0.5s;
}

/* ════════════════════════════════════════
   MATERIAL ICONS font-variation
   ════════════════════════════════════════ */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24;
}
