/* ══════════════════════════════════════════
   DESIGN TOKENS & MASTER CSS
══════════════════════════════════════════ */
:root {
  /* MASTER BRAND COLORS */
  --navy:       #1B2A6B;
  --navy-dark:  #111d4e;
  --lime:       #C8F000;
  --lime-light: #d8ff20;
  --white:      #FFFFFF;
  --off-white:  #f4f4ef;
  --gray-light: #eaeaeb;
  --dark-pill:  rgba(10, 14, 40, 0.85);

  /* BRAND COLORS */
  --bk-red:     #E8001C;
  --bk-red-dk:  #b80015;
  --bk-red-bg:  #1a0003;
  --bk-white:   #FFFFFF;

  /* SEAFOOD COLORS */
  --sf-blue:    #0047AB;
  --sf-blue-dk: #0080cc;
  --sf-blue-bg: #2939B0;
  --sf-red:     #FF3B3B;

  /* HOTPLATE COLORS */
  --hp-orange:  #FF6B00;
  --hp-orange-dk:#cc5500;
  --hp-bg:      #870505;

  --font-d: 'Bebas Neue', sans-serif;
  --font-b: 'Figtree', sans-serif;
  
  --shadow-sm: 0 4px 6px rgba(27, 42, 107, 0.05);
  --shadow-md: 0 8px 16px rgba(27, 42, 107, 0.1);
  --shadow-lg: 0 16px 24px rgba(27, 42, 107, 0.15);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--navy);
  font-family: var(--font-b);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

input, select, textarea {
  font-family: inherit;
  transition: var(--transition);
}

/* ══ BACKGROUND WAVY PATTERNS ══ */
.wavy-navy {
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cpath d='M0 40 Q20 15 40 40 Q60 65 80 40 Q100 15 120 40 Q140 65 160 40' stroke='%23C8F000' stroke-width='5' fill='none' opacity='0.25'/%3E%3Cpath d='M0 80 Q20 55 40 80 Q60 105 80 80 Q100 55 120 80 Q140 105 160 80' stroke='%23C8F000' stroke-width='5' fill='none' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.wavy-red {
  background-color: var(--bk-red-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cpath d='M0 40 Q20 15 40 40 Q60 65 80 40 Q100 15 120 40 Q140 65 160 40' stroke='%23E8001C' stroke-width='5' fill='none' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.wavy-blue {
  background-color: var(--sf-blue-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cpath d='M0 40 Q20 15 40 40 Q60 65 80 40 Q100 15 120 40 Q140 65 160 40' stroke='%2300AAFF' stroke-width='5' fill='none' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.wavy-orange {
  background-color: var(--hp-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cpath d='M0 40 Q20 15 40 40 Q60 65 80 40 Q100 15 120 40 Q140 65 160 40' stroke='%23FF6B00' stroke-width='5' fill='none' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.divider-lime {
  height: 16px;
  background: var(--lime);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='16'%3E%3Cpath d='M0 8 Q7.5 2 15 8 Q22.5 14 30 8 Q37.5 2 45 8 Q52.5 14 60 8' stroke='%231B2A6B' stroke-width='2.5' fill='none' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 60px 16px;
  background-repeat: repeat-x;
}
.divider-red { height: 14px; background: var(--bk-red); }
.divider-blue { height: 14px; background: var(--sf-blue); }
.divider-orange { height: 14px; background: var(--hp-orange); }

/* ══ HEADER & TOP NAVIGATION ══ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  box-shadow: var(--shadow-md);
}

/* Master bar at very top for Contact Info */
.top-contact-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 1.5rem;
  border-bottom: 1px solid rgba(200, 240, 0, 0.15);
}
.top-contact-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.top-contact-bar a:hover {
  color: var(--lime);
}
.top-contact-bar .right-links {
  display: flex;
  gap: 1.25rem;
}

nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: var(--navy);
  border-bottom: 4px solid var(--lime);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-logo {
  height: 80px;
  object-fit: contain;
  transform: scale(1.8);
  transform-origin: left center;
}
.star-badge {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--lime);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
}
.nav-logo-text {
  line-height: 1.15;
}
.nav-logo-text .nm {
  font-family: var(--font-d);
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 1.5px;
  display: block;
}
.nav-logo-text .ns {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links li a, .nav-links li button {
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-links li a:hover, .nav-links li button:hover,
.nav-links li a.active, .nav-links li button.active {
  color: var(--lime);
  background: rgba(255, 255, 255, 0.05);
}
.nav-cta {
  background: var(--lime) !important;
  color: var(--navy) !important;
  font-weight: 900 !important;
  border-radius: 6px !important;
  padding: 8px 16px !important;
}
.nav-cta:hover {
  background: var(--lime-light) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--lime);
  border-radius: 2px;
  display: block;
}
.mob-menu {
  display: none;
  position: fixed;
  top: 94px; /* Account for top bar + nav */
  left: 0;
  right: 0;
  background: var(--navy-dark);
  border-bottom: 4px solid var(--lime);
  padding: 1rem;
  z-index: 190;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mob-menu.open {
  display: flex;
}
.mob-menu a, .mob-menu button {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  text-align: left;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.mob-menu a:hover, .mob-menu button:hover {
  color: var(--lime);
  background: rgba(200, 240, 0, 0.08);
}
.mob-menu .am {
  color: var(--lime);
  background: rgba(200, 240, 0, 0.05);
}

/* ══ CORE PAGES ══ */
.page {
  display: none;
  padding-top: 80px; /* Height of header */
  min-height: 100vh;
}
.page.active {
  display: block;
}

/* ══ TEXT BLOCKS & PILLS (readability over images) ══ */
.tb-dark {
  display: inline-block;
  background: rgba(10, 14, 40, 0.9);
  color: #fff;
  padding: 6px 16px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.25;
}
.tb-lime {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  padding: 6px 16px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.25;
}
.desc-pill {
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.95);
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.desc-pill strong {
  color: var(--lime);
  font-weight: 800;
}

/* ══ HERO SECTION ══ */
.hero {
  position: relative;
  min-height: calc(100vh - 94px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(200, 240, 0, 0.2);
}
.hero-pill .dot {
  width: 7px;
  height: 7px;
  background: var(--navy);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}
.hero-tagline {
  background: rgba(17, 29, 78, 0.95);
  border: 2px solid var(--lime);
  padding: 8px 20px;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══ BUTTONS (Premium & Glossy) ══ */
.btn-lime {
  background: var(--lime);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  border: 3px solid var(--lime);
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(200, 240, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-lime:hover {
  background: var(--lime-light);
  border-color: var(--lime-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 240, 0, 0.4);
}
.btn-reservasi {
  background: #fff;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  border: 3px solid #fff;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.btn-reservasi:hover {
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 240, 0, 0.3);
}
/* WhatsApp green button — matches btn-lime/btn-reservasi sizing */
.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  border: 3px solid #25D366;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-wa:hover {
  background: #1DAA52;
  border-color: #1DAA52;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
.btn-red {
  background: var(--bk-red);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  border: 3px solid var(--bk-red);
  font-weight: 900;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-red:hover {
  background: var(--bk-red-dk);
  border-color: var(--bk-red-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 0, 28, 0.35);
}
.btn-blue {
  background: var(--sf-blue);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  border: 3px solid var(--sf-blue);
  font-weight: 900;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-blue:hover {
  background: var(--sf-blue-dk);
  border-color: var(--sf-blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.35);
}
.btn-orange {
  background: var(--hp-orange);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  border: 3px solid var(--hp-orange);
  font-weight: 900;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-orange:hover {
  background: var(--hp-orange-dk);
  border-color: var(--hp-orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--lime);
  border: 3px solid var(--navy);
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 42, 107, 0.35);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  color: rgba(200, 240, 0, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bob 2s infinite;
}
.hero-scroll .vl {
  width: 1px;
  height: 35px;
  background: linear-gradient(var(--lime), transparent);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ══ SECTION HEADLINES ══ */
.sl {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.sl-lime { color: var(--lime); }
.sl-navy { color: var(--navy); opacity: 0.5; }
.sl-white { color: #white; opacity: 0.7; }
.stitle {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: 1px;
}
.stitle.wh { color: #fff; }
.stitle.nv { color: var(--navy); }

/* ══ BRAND CARDS (HOME) ══ */
.brand-section {
  background: var(--off-white);
  padding: 5rem 1.5rem;
}
.brand-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.brand-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: var(--transition);
  border: 3px solid transparent;
  box-shadow: 0 6px 12px rgba(27,42,107,0.06);
}
.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(27,42,107,0.12);
}
.brand-card.bk:hover { border-color: var(--bk-red); }
.brand-card.sf:hover { border-color: var(--sf-blue); }
.brand-card.hp:hover { border-color: var(--hp-orange); }

.bc-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.brand-card:hover .bc-img img {
  transform: scale(1.08);
}
.bc-num {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: var(--font-d);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.bc-body {
  padding: 1.5rem;
}
.bc-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.bc-tag.bk { background: var(--bk-red); color: #fff; }
.bc-tag.sf { background: var(--sf-blue); color: #fff; }
.bc-tag.hp { background: var(--hp-orange); color: #fff; }
.bc-title {
  font-family: var(--font-d);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.bc-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.bc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.2s;
}
.bc-cta.bk { color: var(--bk-red); border-bottom: 2px solid var(--bk-red); }
.bc-cta.sf { color: var(--sf-blue); border-bottom: 2px solid var(--sf-blue); }
.bc-cta.hp { color: var(--hp-orange); border-bottom: 2px solid var(--hp-orange); }
.brand-card:hover .bc-cta {
  gap: 10px;
}

/* ══ EXCLUSIVE MEDIA COVERAGE SECTION ══ */
.media-section {
  background: #fff;
  padding: 5rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--lime);
}
.media-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: center;
}
.media-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.media-card:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
}
.media-logo {
  font-family: var(--font-d);
  font-size: 2.2rem;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1;
}
.media-logo.red { color: var(--bk-red); }
.media-logo.orange { color: var(--hp-orange); }
.media-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--navy);
  color: var(--lime);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.media-quote {
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 500;
  color: #444;
  line-height: 1.6;
}

/* ══ CELEBRITY ENDORSEMENTS SECTION ══ */
.celebrity-section {
  background: var(--navy-dark);
  padding: 5rem 1.5rem;
  color: #fff;
}
.celebrity-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.celebrity-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.celebrity-card:hover {
  border-color: var(--lime);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}
.cel-img-wrap {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.cel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.celebrity-card:hover .cel-img-wrap img {
  transform: scale(1.05);
}
.cel-body {
  padding: 1.75rem;
  position: relative;
}
.cel-quote-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3.5rem;
  font-family: var(--font-d);
  color: rgba(200, 240, 0, 0.12);
  line-height: 1;
}
.cel-name {
  font-family: var(--font-d);
  font-size: 1.8rem;
  color: var(--lime);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.cel-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.cel-quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-style: italic;
}

/* ══ SYSTEM VOUCHER CONTAINER & INPUT ══ */
.voucher-section {
  background: var(--navy-dark);
  padding: 5rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--lime);
  border-bottom: 4px solid var(--lime);
}
.voucher-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Title/subtitle text in voucher section — white on dark navy */
.voucher-section .stitle,
.voucher-section .sl {
  color: #fff !important;
}
.voucher-section > div > p,
.voucher-section .voucher-inner > p {
  color: rgba(255,255,255,0.8) !important;
}
.voucher-interactive-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
}
.v-label {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}
.v-title {
  font-family: var(--font-d);
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 15px;
}
.v-input-group {
  display: flex;
  max-width: 500px;
  margin: 1.5rem auto 0;
  gap: 10px;
}
.v-input-group input {
  flex: 1;
  border-radius: 8px;
  border: 3.5px solid transparent;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  outline: none;
}
.v-input-group input:focus {
  border-color: var(--lime);
}
.btn-claim-voucher {
  background: var(--lime);
  color: var(--navy);
  font-weight: 900;
  padding: 0 24px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 1px;
}
.btn-claim-voucher:hover {
  background: var(--lime-light);
  transform: scale(1.03);
}

.voucher-result-alert {
  margin-top: 1.25rem;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  display: none;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.voucher-result-alert.info {
  display: block;
  background: #fef9e7;
  color: #7d6608;
  border: 2px solid #f9e79f;
}

.voucher-result-alert.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
}
.voucher-result-alert.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
}

/* Active vouchers display pool */
.vouchers-display-pool {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.v-card-mini {
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.v-card-mini .tag {
  background: var(--lime);
  color: var(--navy);
  font-size: 0.55rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  right: 10px;
  text-transform: uppercase;
}
.v-card-code {
  font-family: var(--font-d);
  font-size: 1.5rem;
  color: var(--lime);
  letter-spacing: 1px;
}
.v-card-title {
  font-size: 0.8rem;
  font-weight: 800;
  margin: 4px 0;
}
.v-card-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ══ SURABAYA OUTLET GALLERY ══ */
.outlet-section {
  background: var(--off-white);
  padding: 5rem 1.5rem;
}
.outlet-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.outlet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.outlet-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 3.5px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.outlet-card:hover {
  transform: translateY(-6px);
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
}
.outlet-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.outlet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.outlet-card:hover .outlet-img img {
  transform: scale(1.06);
}
.outlet-body {
  padding: 1.25rem;
}
.outlet-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 5px;
}
.outlet-address {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
}
.outlet-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--gray-light);
  font-size: 0.72rem;
  font-weight: 800;
}
.outlet-status {
  color: var(--bk-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.outlet-status .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bk-red);
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 0, 28, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(232, 0, 28, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 0, 28, 0); }
}

/* ══ BRAND PAGES SUB-HEADER ══ */
.brand-subhead {
  padding: 5rem 1.5rem 3.5rem;
  text-align: center;
  color: #fff;
  border-bottom: 4px solid var(--lime);
}
/* Bright red for Bakso page, with subtle white wave overlay */
.brand-subhead.bk {
  background-color: var(--bk-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='80'%3E%3Cpath d='M0 40 Q25 10 50 40 Q75 70 100 40 Q125 10 150 40 Q175 70 200 40' stroke='%23ffffff' stroke-width='4' fill='none' opacity='0.12'/%3E%3Cpath d='M0 65 Q25 35 50 65 Q75 95 100 65 Q125 35 150 65 Q175 95 200 65' stroke='%23ffffff' stroke-width='3' fill='none' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 200px 80px;
}
.brand-subhead.sf { background-color: var(--sf-blue-bg); }
.brand-subhead.hp { background-color: var(--hp-bg); }

/* ══ BRAND ACTION BUTTONS (Compact Pills) ══ */
.brand-action-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.brand-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-s);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}
.brand-btn-pill.filled {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(200, 240, 0, 0.35);
}
.brand-btn-pill.filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 240, 0, 0.5);
}
.brand-btn-pill.outline {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.brand-btn-pill.outline:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ══ BRAND QUICK ACTION BUTTONS ══ */
.brand-quick-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.bqb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2.5px solid transparent;
}
.bqb-btn span {
  font-size: 1.1rem;
}
/* Lihat Menu — white solid */
.bqb-menu {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.bqb-menu:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.24);
}
/* Reservasi — outline white */
.bqb-reservasi {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.bqb-reservasi:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* Chat WA — lime/green */
.bqb-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.bqb-wa:hover {
  background: #1DAA52;
  border-color: #1DAA52;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* ══ BRAND GOOGLE MAPS SECTION ══ */
.brand-map-section {
  background: var(--off-white);
  padding: 3.5rem 1.5rem 4rem;
  border-top: 3px solid var(--lime);
}
.brand-map-section.sf {
  border-top-color: var(--sf-blue);
}
.brand-map-section.hp {
  border-top-color: var(--hp-orange);
}
.brand-map-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.brand-map-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.brand-map-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.brand-map-title {
  font-family: 'Figtree', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 4px;
}
.brand-map-addr {
  font-size: 0.88rem;
  color: #555;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}
.brand-map-wa-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.brand-map-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.5);
}
.brand-map-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27, 42, 107, 0.12);
  border: 3px solid rgba(27,42,107,0.08);
  background: #eee;
  min-height: 380px;
}
.brand-map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* Responsive brand quick btns */
@media (max-width: 600px) {
  .brand-quick-btns { gap: 0.7rem; }
  .bqb-btn { padding: 11px 18px; font-size: 0.78rem; }
  .brand-map-header { flex-direction: column; gap: 0.8rem; }
  .brand-map-wa-btn { margin-left: 0; }
}

.brand-chip {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.brand-chip.bk { background: var(--bk-red); }
.brand-chip.sf { background: var(--sf-blue); }
.brand-chip.hp { background: var(--hp-orange); }

.brand-title-menu {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin-bottom: 10px;
}
.brand-lead {
  font-size: 0.95rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.brand-body {
  padding: 4rem 1.5rem;
}
.brand-body.bk { background: #fff5f5; }
.brand-body.sf { background: #f0f8ff; }
.brand-body.hp { background: #fff8f0; }

.menu-category-title {
  font-family: var(--font-d);
  font-size: 2.2rem;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
}
.menu-category-title.bk { border-bottom: 4px solid var(--bk-red); }
.menu-category-title.sf { border-bottom: 4px solid var(--sf-blue); }
.menu-category-title.hp { border-bottom: 4px solid var(--hp-orange); }

.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.menu-card-item {
  background: #fff;
  border: 2.5px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(27,42,107,0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.menu-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(27,42,107,0.1);
}
.menu-card-item.bk:hover { border-color: var(--bk-red); }
.menu-card-item.sf:hover { border-color: var(--sf-blue); }
.menu-card-item.hp:hover { border-color: var(--hp-orange); }

.m-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.m-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card-item:hover .m-img-box img {
  transform: scale(1.08);
}
.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lime);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.menu-badge.hot { background: var(--bk-red); color: #fff; }
.menu-badge.best { background: var(--navy); color: var(--lime); }

.m-body-box {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}
.m-dish-name {
  font-family: var(--font-d);
  font-weight: normal;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.m-dish-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.m-dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed rgba(27,42,107,0.15);
  padding-top: 16px;
  margin-top: auto;
}
.m-dish-price {
  font-family: var(--font-b);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0px;
}
.m-dish-order-btn {
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-b);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(200, 240, 0, 0.2);
}
.m-dish-order-btn:hover {
  background: var(--navy);
  color: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 42, 107, 0.25);
}
.order-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.m-dish-order-btn:hover .order-icon {
  transform: translateX(3px);
}

/* ══ FRANCHISE PAGE ══ */
.franchise-header {
  text-align: center;
  padding: 5rem 1.5rem;
  background: var(--navy);
  color: #fff;
  border-bottom: 4px solid var(--lime);
}
.franchise-body {
  padding: 5rem 1.5rem;
  background: var(--off-white);
}
.franchise-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.franchise-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}
.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
}
.b-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.b-title {
  font-weight: 900;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.b-desc {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.package-card {
  background: #fff;
  border-radius: 16px;
  border: 3.5px solid transparent;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.package-card.highlight {
  border-color: var(--lime);
  box-shadow: 0 10px 25px rgba(200, 240, 0, 0.2);
}
.package-hdr {
  background: var(--navy);
  color: #fff;
  padding: 1.75rem;
  text-align: center;
}
.package-card.highlight .package-hdr {
  background: var(--navy-dark);
}
.p-name {
  font-family: var(--font-d);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.p-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.p-price-box {
  padding: 1.5rem;
  text-align: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
}
.p-price-label {
  font-size: 0.65rem;
  font-weight: 900;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.p-price {
  font-family: var(--font-d);
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 1.1;
  margin-top: 2px;
}
.p-features {
  padding: 1.75rem;
  list-style: none;
}
.p-features li {
  font-size: 0.82rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-features li::before {
  content: '✓';
  color: #28a745;
  font-weight: 900;
}

/* Franchise Application Form Section */
.franchise-form-section {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(27,42,107,0.05);
}
.ff-title {
  font-family: var(--font-d);
  font-size: 2.2rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
}

/* Form Styles common to Reservations & Franchise */
.fg {
  margin-bottom: 1.25rem;
}
.fg label {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
  margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: #fff;
  border: 2.5px solid rgba(27, 42, 107, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--navy);
  font-family: var(--font-b);
  font-size: 0.92rem;
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(200, 240, 0, 0.35);
}
.fg select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231B2A6B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.fsub {
  width: 100%;
  background: var(--navy);
  color: var(--lime);
  border: 3px solid var(--navy);
  padding: 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 1rem;
}
.fsub:hover {
  background: var(--lime);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.success-box {
  display: none;
  background: #d4edda;
  border-radius: 12px;
  border: 2px solid #c3e6cb;
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
  color: #155724;
  font-weight: 800;
}
.success-box.on {
  display: block;
}

/* ══ RESERVASI PAGE ══ */
.rv-page-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.rv-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.rv-intro h1 {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: 0.95;
  color: var(--navy);
  margin-bottom: 10px;
}
.rv-intro p {
  color: #555;
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ══ ABOUT PAGE ══ */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}
.about-sub-chip {
  display: inline-block;
  border: 2.5px solid var(--lime);
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.about-sub-chip p {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
}

/* ══ WHY BINTANG LIMA SECTION ══ */
.why-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.about-values {
  background: var(--off-white);
  padding: 5rem 1.5rem;
}
.about-values-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.val-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
}
.val-card:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
  box-shadow: var(--shadow-md);
}
.val-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.val-title {
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.val-desc {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.6;
}

.about-story {
  background: var(--navy);
  padding: 5rem 1.5rem;
  color: #fff;
}
.story-inner {
  max-width: 800px;
  margin: 0 auto;
}
.story-inner h2 {
  font-family: var(--font-d);
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.story-inner h2 span {
  color: var(--lime);
}
.story-inner p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.story-inner strong {
  color: var(--lime);
}

/* ══ FLOATING WHATSAPP ACTION BUTTON ══ */
.floating-wa-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-message-bubble {
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 10px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  border: 2px solid #25d366;
  white-space: nowrap;
  animation: floatUp 2s infinite ease-in-out alternate;
}
@keyframes floatUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}
.wa-icon-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  font-size: 1.8rem;
  transition: var(--transition);
}
.wa-icon-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: #1ebd58;
}

/* ══ FOOTER ══ */
footer {
  background: var(--navy-dark);
  padding: 4rem 1.5rem 2rem;
  border-top: 4px solid var(--lime);
  color: rgba(255, 255, 255, 0.7);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 300px;
}
.footer-links h4 {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  font-weight: 600;
}
.footer-links ul li a:hover {
  color: var(--lime);
}
.footer-bottom {
  max-width: 1140px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 240, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(200, 240, 0, 0.08);
  border: 2px solid rgba(200, 240, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--lime);
}
.footer-socials a:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ══ VIRAL TIKTOK & REELS SOCIAL PROOF GRID ══ */
.social-reviews-section {
  background: var(--off-white);
  padding: 5rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--lime);
}
.social-reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.social-reviews-sub {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
  margin-top: 0.75rem;
  margin-bottom: 3rem;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.social-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(27, 42, 107, 0.08);
  border: 2.5px solid transparent;
  transition: var(--transition);
  text-align: left;
  cursor: pointer;
}
.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
  box-shadow: 0 16px 32px rgba(27, 42, 107, 0.14);
}
.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}
.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.social-card:hover .video-thumbnail-wrapper img {
  transform: scale(1.06);
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.5) 100%
  );
  pointer-events: none;
  transition: background 0.3s ease;
}
.social-card:hover .video-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.6) 100%
  );
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  pointer-events: none;
}
.play-button svg {
  width: 22px;
  height: 22px;
  margin-left: 3px; /* Optically centre the triangle */
}
.social-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.14);
  box-shadow: 0 10px 32px rgba(0,0,0,0.38);
}
.platform-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
  pointer-events: none;
}
.platform-badge.tiktok {
  background: #000;
  color: #fff;
}
.platform-badge.reels {
  background: linear-gradient(135deg, #E1306C, #833AB4);
  color: #fff;
}
.view-count-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  letter-spacing: 0.3px;
}
.social-card-body {
  padding: 1rem 1.1rem 1.2rem;
}
.social-handle {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 5px;
  opacity: 0.65;
}
.social-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  line-height: 1.55;
  margin-bottom: 8px;
}
.social-tags {
  font-size: 0.7rem;
  color: #4B87C8;
  font-weight: 700;
  line-height: 1.5;
  word-break: break-word;
}

/* CTA Button */
.social-cta-wrap {
  margin-top: 1rem;
}
.social-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 700px;
  background: var(--navy);
  color: var(--lime);
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 3px solid var(--navy);
  box-shadow: 0 8px 24px rgba(27, 42, 107, 0.2);
  transition: var(--transition);
  text-decoration: none;
}
.social-cta-btn:hover {
  background: var(--navy-dark);
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(27, 42, 107, 0.28);
}
.social-cta-icon {
  font-size: 1.3rem;
}
.social-cta-arrow {
  font-size: 1.4rem;
  transition: transform 0.25s ease;
}
.social-cta-btn:hover .social-cta-arrow {
  transform: translateX(5px);
}

/* ══ RESPONSIVE ADAPTABILITY ══ */
@media (max-width: 992px) {
  .brand-cards { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .celebrity-grid { grid-template-columns: 1fr; }
  .outlet-grid { grid-template-columns: repeat(2, 1fr); }
  .franchise-benefits { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .vals-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Navigation */
  .top-contact-bar { display: none; }
  nav { height: 60px; }
  .mob-menu { top: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .main-logo { height: 60px; transform: scale(1.6); }
  
  /* Layout & Spacing */
  .page { padding-top: 60px; }
  .hero { min-height: calc(100vh - 60px); }
  body { padding-bottom: 70px; } /* Space for Sticky Bottom Bar */
  
  /* Section Padding reduction */
  .voucher-section, .outlet-section, .testi-sec, .why-sec, .about-values, .social-reviews-section {
    padding: 3rem 1.25rem;
  }
  
  /* Typography scale down */
  .stitle { font-size: 2.2rem; }
  .brand-title-menu { font-size: 2.6rem; }
  .hero-tagline { font-size: 0.8rem; padding: 6px 16px; letter-spacing: 1px; }
  
  /* Map scroll-trap fix */
  .brand-map-frame iframe { height: 250px !important; }

  /* Grids */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .frow { grid-template-columns: 1fr; gap: 1rem; }
  .brand-cards { grid-template-columns: 1fr; }
  .outlet-grid { grid-template-columns: 1fr; }
  .franchise-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Typography */
  .hero-title { font-size: 2.8rem; }
  .brand-title-menu { font-size: 2.6rem; }
  .stitle { font-size: 1.8rem; }
  .desc-pill, .brand-lead { font-size: 0.75rem; line-height: 1.4; padding: 10px 16px; }
  .hero-tagline { font-size: 0.65rem; padding: 4px 10px; }
  p { line-height: 1.5; }
  
  /* Touch Targets (Buttons) */
  .hero-btns, .brand-quick-btns { 
    flex-direction: column; 
    width: 100%; 
  }
  .hero-btns { max-width: none; }
  .btn-lime, .btn-reservasi, .btn-wa, .btn-red, .brand-quick-btns > * { 
    width: 100%; 
    justify-content: center; 
  }
  
  /* Other layout */
  .v-input-group { flex-direction: column; }
  .btn-claim-voucher { padding: 14px; }
  
  /* Compact Menu Cards for 2-Column Mobile View (4 per screen) */
  .menu-container { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.8rem; 
  }
  .m-img-box { height: 110px; }
  .m-body-box { padding: 0.8rem; }
  .m-dish-name { font-size: 0.85rem; line-height: 1.2; margin-bottom: 4px; }
  .m-dish-desc { 
    font-size: 0.7rem; 
    line-height: 1.3; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .m-dish-price { font-size: 0.9rem; }
  .menu-badge { font-size: 0.5rem; padding: 2px 5px; top: 6px; left: 6px; }
  .vals-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .social-cta-btn { font-size: 0.8rem; letter-spacing: 0.5px; padding: 16px 20px; gap: 8px; }
  
  /* Hide Old Floating WA */
  .floating-wa-widget { display: none !important; }
}

/* ══ GEN Z MINIMALIST HERO BUTTONS ══ */
.brand-minimal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 1rem;
}
.btn-pill-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-pill-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.btn-text-link {
  background: none;
  border: none;
  color: var(--lime);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-text-link:hover {
  opacity: 0.8;
}

/* ══ BENTO BOX MAP REDESIGN ══ */
.bento-map-section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.bento-map-container {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  background: #f0f0f0; /* fallback */
}
.bento-map-container iframe {
  display: block;
}
.bento-glass-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  max-width: 400px;
}
.bgc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.bgc-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.bgc-header h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.bgc-header p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
}
.bgc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 12px;
  margin-top: 12px;
}
.bgc-hours {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.bgc-wa-btn {
  background: #25D366;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.2s;
}
.bgc-wa-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .brand-minimal-actions { flex-direction: row; justify-content: space-between; }
  .btn-pill-glass { font-size: 0.8rem; padding: 8px 16px; flex: 1; }
  .btn-text-link { font-size: 0.8rem; flex: 1; text-align: right; }
  
  .bento-glass-card {
    position: relative;
    bottom: auto; left: auto; right: auto;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    max-width: 100%;
  }
  .bento-map-container { border-radius: 16px; border: 1px solid rgba(0,0,0,0.1); }
  .bento-map-container iframe { border-radius: 16px 16px 0 0 !important; }
}

/* ══ MOBILE BOTTOM ACTION PILL (Redesigned) ══ */
.mob-bottom-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 280px;
  background: rgba(17, 29, 78, 0.95);
  backdrop-filter: blur(10px);
  display: none; /* hidden on desktop */
  padding: 8px 8px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 999;
  border: 1px solid rgba(255,255,255,0.1);
}
.mbb-inner {
  display: flex;
  gap: 8px;
  width: 100%;
}
.mbb-btn {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}
.mbb-wa {
  background: #25D366;
  color: #fff;
}
.mbb-reservasi {
  background: var(--lime);
  color: var(--navy);
}

@media (max-width: 768px) {
  .mob-bottom-bar {
    display: block;
  }
}

/* ══ ANIMATION UTILITIES ══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fu {
  animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.d1 { animation-delay: 0.15s; }
.d2 { animation-delay: 0.3s; }
.d3 { animation-delay: 0.45s; }

/* ══ GEN-Z MODERN HERO BUTTONS ══ */
.hero-modern-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 2.5rem;
}
.btn-modern-primary {
  background: var(--lime);
  color: var(--navy);
  font-family: var(--font-s);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(200, 240, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-modern-primary .arrow {
  transition: transform 0.3s;
}
.btn-modern-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(200, 240, 0, 0.5);
}
.btn-modern-primary:hover .arrow {
  transform: translate(4px, -4px);
}

.hero-primary-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-modern-primary.outline {
  background: var(--navy);
  color: var(--lime);
  border: 2px solid var(--lime);
  box-shadow: none;
}
.btn-modern-primary.outline:hover {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 10px 25px rgba(200, 240, 0, 0.4);
}

.hero-secondary-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
.btn-modern-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-s);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-modern-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.btn-modern-glass .icon {
  font-size: 1.1rem;
}

/* ══ BENTO BRAND GRID ══ */
.bento-brand-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.bento-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bento-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a2e;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.05);
}
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.15);
}
.bento-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.bento-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.55);
}
.bento-card:hover .bento-bg img {
  transform: scale(1.08);
  filter: brightness(0.65);
}
.bento-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
}
.bk-gradient { background: linear-gradient(to top, rgba(180, 20, 20, 0.95) 0%, rgba(180, 20, 20, 0.7) 40%, rgba(180, 20, 20, 0.25) 70%, transparent 100%); }
.sf-gradient { background: linear-gradient(to top, rgba(0, 60, 150, 0.95) 0%, rgba(0, 60, 150, 0.7) 40%, rgba(0, 60, 150, 0.25) 70%, transparent 100%); }
.hp-gradient { background: linear-gradient(to top, rgba(230, 80, 0, 0.95) 0%, rgba(230, 80, 0, 0.7) 40%, rgba(230, 80, 0, 0.25) 70%, transparent 100%); }

.bento-content {
  position: relative;
  z-index: 3;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-large {
  min-height: 500px;
}
.bento-medium {
  flex: 1;
  min-height: 240px;
}
.bento-medium .bento-content {
  padding: 2rem;
}
.bento-header {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bento-tag {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.3);
}
.bento-num {
  font-family: var(--font-d);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.5);
  line-height: 1;
}
.bento-text {
  color: #fff;
  margin-bottom: 1.5rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.5);
}
.bento-card:hover .bento-text {
  transform: translateY(0);
}
.bento-title {
  font-family: var(--font-d);
  font-size: 2.8rem;
  line-height: 0.9;
  margin-bottom: 10px;
}
.bento-medium .bento-title {
  font-size: 2.2rem;
}
.bento-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bento-cta-wrap {
  overflow: hidden;
}
.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-card:hover .bento-cta {
  transform: translateY(0);
  opacity: 1;
}

/* ══ MAP DIVIDER & CAPTION ══ */
.map-divider-container {
  text-align: center;
  padding: 3rem 1.5rem 1.5rem;
  position: relative;
}
.map-divider-line {
  width: 60px;
  height: 4px;
  background: var(--lime);
  border-radius: 4px;
  margin: 0 auto 1rem;
}
.map-caption {
  font-family: var(--font-s);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0.5px;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .map-caption { font-size: 0.95rem; }
  .map-divider-container { padding: 2rem 1rem 1rem; }
}

@media (max-width: 992px) {
  .bento-brand-grid {
    grid-template-columns: 1fr;
  }
  .bento-large {
    min-height: 400px;
  }
}
@media (max-width: 480px) {
  /* HERO REDESIGN (Shorter, Cleaner) */
  .hero-pill { display: none !important; }
  .hero { 
    min-height: auto !important; 
    padding: 2.5rem 1.5rem 4rem !important; 
  }
  .tb-dark { background: rgba(10, 14, 40, 0.9) !important; padding: 6px 12px !important; color: #fff; }
  .tb-lime { background: var(--lime) !important; color: var(--navy) !important; padding: 6px 12px !important; }
  .hero-title { font-size: 3.2rem !important; line-height: 1.25 !important; margin-bottom: 0.5rem; }
  .desc-pill { font-size: 0.7rem !important; padding: 10px 14px !important; }

  .hero-tagline { display: none !important; }
  .hero-secondary-actions { display: none !important; }
  .hero-modern-actions { width: 100%; margin-top: 1.5rem; }
  
  .hero-primary-group { flex-direction: row; width: 100%; gap: 8px; flex-wrap: nowrap; }
  .hero-primary-group > button { flex: 1; min-width: 0; justify-content: center; font-size: 0.8rem; padding: 14px 8px; letter-spacing: 0; }
  .btn-modern-glass { min-width: 0; }
  
  /* BENTO GRID (True Grid on Mobile) */
  .bento-brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .bento-large {
    grid-column: span 2;
    min-height: 260px;
  }
  .bento-column {
    flex-direction: row;
    grid-column: span 2;
    gap: 12px;
  }
  .bento-medium {
    flex: 1;
    min-height: 200px;
  }
  
  /* Mini Bento Typography */
  .bento-content { padding: 1.2rem; }
  .bento-header { top: 1rem; left: 1rem; right: 1rem; }
  .bento-title { font-size: 1.8rem; }
  .bento-medium .bento-title { font-size: 1.3rem; line-height: 1; }
  .bento-medium .bento-desc { display: none; } /* Hide desc on small cards for cleanliness */
  .bento-medium .bento-cta-wrap { display: none; }
  .bento-desc { font-size: 0.8rem; -webkit-line-clamp: 2; margin-bottom: 5px; }
  .bento-card { border-radius: 20px; }
  .bento-tag { padding: 4px 8px; font-size: 0.6rem; }
  .bento-num { font-size: 1.5rem; }
  .bento-medium .bento-header { top: 0.8rem; left: 0.8rem; right: 0.8rem; }
  .bento-medium .bento-content { padding: 1rem; }
  .bento-medium .bento-num { display: none; }
}

/*  VIDEO GALLERY (TIKTOK/REELS STYLE)  */
.video-gallery-section {
  padding: 5rem 1.5rem;
  background: var(--bg-light);
}
.vg-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vg-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.vg-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.vg-scroll-container::-webkit-scrollbar {
  display: none;
}
.vg-card {
  flex: 0 0 280px;
  height: 498px; /* ~16:9 vertical */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  background: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.vg-card:hover {
  transform: translateY(-8px);
}
.vg-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.vg-card:hover video {
  opacity: 1;
}
.vg-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #fff;
  pointer-events: none;
}
.vg-overlay h4 {
  font-family: var(--font-b);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.vg-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
}
.play-icon-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.vg-card:hover .play-icon-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .vg-card {
    flex: 0 0 240px;
    height: 426px;
  }
}

/*  PHOTO GRID GALLERY (FOR BRANDS)  */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.pg-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 250px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  background: #000;
}
.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}
.pg-item:hover img {
  transform: scale(1.08);
  opacity: 1;
}
.pg-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  pointer-events: none;
}

/*  POSTER MENU GRID  */
.poster-menu-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.poster-img {
  width: 100%;
  max-width: 700px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}
.poster-img:hover {
  transform: scale(1.02);
}


