/* ==========================================================================
   MITRA GAS UTAMA — STYLES.CSS
   --------------------------------------------------------------------------
   Desain: lokal, hangat, dan "crafted" — bukan template generik.
   Cara pakai:
   1. Semua Warna, Font, Radius, Shadow diatur di :root (1x ubah = berubah semua)
   2. Setiap bagian diberi komentar blok agar mudah dicari (Ctrl+F nama bagian)
   3. Utility class (.text-*, .bg-*, .btn-*) reusable di HTML mana saja
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES / DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand warna — biru royal + putih (bukan gradien template) */
  --brand-blue: #1d4ed8;
  --brand-blue-dark: #173fae;
  --brand-blue-soft: #e8eefb;

  --brand-blue-deep: #142b63;
  --brand-blue-deeper: #0c1c45;
  --brand-blue-light: #3563e0;
  --brand-blue-tint: #a9c5ee;

  /* Aksen orange — dipakai sedikit saja untuk memberi warna */
  --brand-orange: #e9892b;
  --brand-orange-dark: #c96f1e;

  /* Warna WhatsApp */
  --wa-green: #1da851;
  --wa-green-dark: #137a3d;

  /* Warna netral — putih bersih */
  --color-body: #f6f8fc;
  --color-white: #ffffff;
  --color-text: #33414d;
  --color-text-muted: #6b7684;
  --color-border: #e2e6ee;

  /* Font — serif untuk headline (berkarakter), sans untuk teks */
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Inter", sans-serif;

  /* Ukuran */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;

  /* Bayangan — tajam/tegas, bukan soft-glow generik */
  --shadow-sm: 0 1px 2px rgba(12, 28, 69, 0.08);
  --shadow-md: 0 14px 28px -14px rgba(12, 28, 69, 0.28);
  --shadow-lg: 0 28px 56px -20px rgba(12, 28, 69, 0.35);

  /* Jarak section */
  --section-pad: 5.5rem;

  /* Transisi */
  --transition: all 0.2s ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

/* Offset saat lompat ke section agar tidak tertutup navbar fixed */
section[id] {
  scroll-margin-top: 4.5rem;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-body);
  color: var(--color-text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brand-blue-deep);
  letter-spacing: -0.015em;
  line-height: 1.12;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
}

::selection {
  background: var(--brand-blue);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   3. UTILITY CLASS (REUSABLE)
   -------------------------------------------------------------------------- */
/* Warna teks brand */
.text-brand { color: var(--brand-blue) !important; }
.text-brand-blue-deep { color: var(--brand-blue-deep) !important; }

/* Warna latar brand */
.bg-brand { background-color: var(--brand-blue) !important; }
.bg-brand-blue-deep { background-color: var(--brand-blue-deep) !important; }
.bg-brand-soft { background-color: var(--brand-blue-soft); }

/* Section */
.section {
  padding: var(--section-pad) 0;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Kicker — label kecil di atas judul, gaya editorial "— LAYANAN —" */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-blue-dark);
  margin-bottom: 0.9rem;
}

.section-badge::before,
.section-badge::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand-orange);
  flex-shrink: 0;
}

/* Versi tanpa garis (dipakai di hero) */
.section-badge-plain::before,
.section-badge-plain::after {
  display: none;
}

/* Tombol — gaya "sticker" dengan hard shadow, bukan gradien */
.btn-brand,
.btn-wa,
.btn-outline-brand,
.btn-outline-light {
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.9rem;
  box-shadow: 0 5px 0 var(--btn-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-brand {
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue-dark);
  color: var(--color-white);
  --btn-shadow: var(--brand-blue-dark);
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-blue-dark);
  color: var(--color-white);
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--brand-blue-dark);
}

.btn-wa {
  background: var(--wa-green);
  border: 1px solid var(--wa-green-dark);
  color: var(--color-white);
  --btn-shadow: var(--wa-green-dark);
}

.btn-wa:hover,
.btn-wa:focus {
  background: var(--wa-green-dark);
  color: var(--color-white);
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--wa-green-dark);
}

.btn-outline-brand {
  background: transparent;
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue-dark);
  --btn-shadow: rgba(23, 63, 174, 0.4);
}

.btn-outline-brand:hover {
  background: var(--brand-blue);
  color: var(--color-white);
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--brand-blue-dark);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--color-white);
  --btn-shadow: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--brand-blue-deep);
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(255, 255, 255, 0.4);
}

/* Ikon dalam kotak berwarna */
.icon-box {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
}

.icon-box-lg {
  width: 72px;
  height: 72px;
  font-size: 1.7rem;
}

.icon-box-blue {
  background: var(--brand-blue-soft);
  border: 1px solid rgba(29, 78, 216, 0.25);
  color: var(--brand-blue-dark);
}

.icon-box-blue-deep {
  background: rgba(20, 43, 99, 0.06);
  border: 1px solid rgba(20, 43, 99, 0.15);
  color: var(--brand-blue-deep);
}

/* --------------------------------------------------------------------------
   4. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  background: var(--brand-blue-deeper);
  border-bottom: 3px solid var(--brand-blue);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0.3rem;
  padding: 0.5rem 0.6rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand-blue-tint) !important;
}

.navbar .nav-link.active {
  border-bottom: 2px solid var(--brand-blue);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
}

.navbar-brand .brand-dot {
  color: var(--color-white);
}

.navbar .navbar-brand .text-brand {
  color: var(--brand-orange) !important;
}

.navbar .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
}

.navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.35);
}

.navbar .navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    background: var(--brand-blue-deeper);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-top: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   5. HERO (BERANDA)
   -------------------------------------------------------------------------- */
.hero {
  background-color: var(--brand-blue-deeper);
  background-image:
    radial-gradient(circle at 85% 18%, rgba(29, 78, 216, 0.16), transparent 40%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 22px 22px;
  color: var(--color-white);
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 540px;
}

/* Foto utama dengan bingkai miring ala foto tempel */
.hero-img {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 8px solid var(--color-white);
  box-shadow: 16px 16px 0 rgba(29, 78, 216, 0.4);
  transform: rotate(-2deg);
}

.hero-img-wrap {
  position: relative;
  display: inline-block;
}

/* Stiker kecil di pojok foto hero */
.hero-sticker {
  position: absolute;
  left: -1.25rem;
  bottom: -1.25rem;
  background: var(--brand-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  box-shadow: 5px 5px 0 rgba(12, 28, 69, 0.9);
  transform: rotate(-3deg);
}

/* Statistik / info singkat di hero */
.hero-stats {
  border-top: 2px solid rgba(255, 255, 255, 0.18);
}

.hero-stats .stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brand-blue-tint);
}

.hero-stats .stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   6. LAYANAN (PRODUK)
   -------------------------------------------------------------------------- */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--brand-blue);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0 rgba(29, 78, 216, 0.14);
}

.product-card .product-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: var(--color-white);
  border: 1px solid var(--brand-orange);
  color: var(--brand-orange-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  box-shadow: 4px 4px 0 var(--brand-orange);
}

.product-card .product-img {
  max-width: 200px;
  margin: 0 auto 1.5rem;
}

.product-card .product-name {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.product-card .product-price {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
  margin-bottom: 1rem;
}

.product-card .product-spec {
  text-align: left;
  background: var(--color-body);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  list-style: none;
  padding-left: 1.25rem;
}

.product-card .product-spec li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.product-card .product-spec li:last-child {
  margin-bottom: 0;
}

.product-card .product-spec li i {
  color: var(--brand-blue);
  margin-right: 0.4rem;
}

/* --------------------------------------------------------------------------
   7. TENTANG KAMI
   -------------------------------------------------------------------------- */
.about {
  background: var(--color-white);
}

.about-feature {
  display: flex;
  gap: 1rem;
  background: var(--color-body);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 rgba(29, 78, 216, 0.14);
}

.about-feature h5 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 14px 14px 0 rgba(29, 78, 216, 0.18);
  aspect-ratio: 4 / 3;
  min-height: 340px;
  border: 6px solid var(--color-white);
}

.about-img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-box:hover img {
  transform: scale(1.04);
}

.about-experience {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--brand-blue);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  box-shadow: 6px 6px 0 var(--brand-blue-deeper);
  transform: rotate(-2deg);
}

.about-experience .exp-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience .exp-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   8. BANNER PENGIRIMAN
   -------------------------------------------------------------------------- */
.delivery-banner {
  background: url("../assets/images/list_gas.jpeg") center center / cover no-repeat fixed;
  position: relative;
  padding: var(--section-pad) 0;
  color: var(--color-white);
}

.delivery-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 28, 69, 0.88), rgba(12, 28, 69, 0.8));
}

.delivery-banner-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.delivery-title {
  color: var(--color-white);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.delivery-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 991.98px) {
  .delivery-banner {
    background-attachment: scroll;
  }
}

/* --------------------------------------------------------------------------
   8b. TESTIMONI (ULASAN PELANGGAN)
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 rgba(29, 78, 216, 0.14);
}

.testimonial-card .testimonial-quote {
  color: var(--brand-blue-light);
  font-size: 2.1rem;
  line-height: 1;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.testimonial-card .testimonial-text {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.testimonial-card .testimonial-stars {
  color: var(--brand-orange);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-blue-soft);
  color: var(--brand-blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.testimonial-card .testimonial-name {
  font-size: 1rem;
  margin-bottom: 0;
}

.testimonial-card .testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   8c. GALERI (DOKUMENTASI)
   -------------------------------------------------------------------------- */
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 6px solid var(--color-white);
  background: var(--brand-blue-soft);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 rgba(29, 78, 216, 0.14);
}

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

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(12, 28, 69, 0.88));
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
}

.gallery-item img {
  cursor: zoom-in;
}

/* --------------------------------------------------------------------------
   8d. LIGHTBOX GALERI
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(12, 28, 69, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-figure {
  margin: 0;
  max-width: min(900px, 92vw);
  max-height: 92vh;
  text-align: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  margin-top: 0.85rem;
  color: var(--color-white);
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lightbox-close:hover {
  background: var(--brand-orange);
}

/* --------------------------------------------------------------------------
   9. PEMESANAN (FORM)
   -------------------------------------------------------------------------- */
.order {
  background-color: var(--brand-blue-deeper);
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  color: var(--color-white);
}

.order .section-title,
.order .section-subtitle {
  color: var(--color-white);
}

.order .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.order-card {
  background: var(--color-white);
  border: 4px solid var(--brand-blue-light);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.form-control,
.form-select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background-color: var(--color-white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 0.25rem rgba(29, 78, 216, 0.15);
}

.form-label {
  font-weight: 600;
  color: var(--brand-blue-deep);
  font-size: 0.9rem;
}

/* Info samping form */
.order-info-item {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--brand-blue-tint);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
}

.order-info-item .info-text strong {
  color: var(--color-white);
  display: block;
  font-size: 0.95rem;
}

.order-info-item .info-text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.order-info-item i {
  color: var(--brand-blue-tint);
  font-size: 1.4rem;
  margin-top: 0.1rem;
}

/* --------------------------------------------------------------------------
   10. FAQ (TANYA JAWAB)
   -------------------------------------------------------------------------- */
#faq .accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--color-white);
}

#faq .accordion-item:last-child {
  margin-bottom: 0;
}

#faq .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brand-blue-deep);
  padding: 1.15rem 1.25rem;
  background: var(--color-white);
  box-shadow: none;
}

#faq .accordion-button:not(.collapsed) {
  background: var(--brand-blue-soft);
  color: var(--brand-blue-dark);
}

#faq .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(29, 78, 216, 0.15);
}

#faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231d4ed8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faq .accordion-body {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding: 1.1rem 1.25rem;
}

#faq .accordion-body a {
  color: var(--brand-blue);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. KONTAK
   -------------------------------------------------------------------------- */
.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 rgba(29, 78, 216, 0.14);
}

.contact-card h6 {
  margin-top: 0.9rem;
  font-size: 1rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  word-break: break-word;
}

.map-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--color-white);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--brand-blue-deeper);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 4rem;
}

.footer h6 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer h6::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--brand-blue);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: var(--brand-blue-tint);
}

.footer .footer-links li {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

.footer .footer-links li i {
  color: var(--brand-blue-tint);
  margin-right: 0.4rem;
  font-size: 0.75rem;
}

/* Jam operasional list */
.open-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.open-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 0.92rem;
}

.open-hours li:last-child {
  border-bottom: 0;
}

.open-hours .day {
  font-weight: 600;
  color: var(--color-white);
}

.open-hours .today {
  color: var(--brand-blue-tint);
}

/* Sosial media */
.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-links a:hover {
  background: var(--brand-blue);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* Maps mini di footer */
.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  margin-top: 3rem;
  font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   12b. TEKS & IKON DI LATAR GELAP (kontras tetap nyaman dibaca)
   -------------------------------------------------------------------------- */
.hero .section-badge,
.order .section-badge,
.delivery-banner .section-badge {
  color: var(--brand-blue-tint);
}

.hero .section-badge::before,
.hero .section-badge::after,
.order .section-badge::before,
.order .section-badge::after,
.delivery-banner .section-badge::before,
.delivery-banner .section-badge::after {
  background: var(--brand-blue-tint);
}

.hero .text-brand,
.order .text-brand,
.delivery-banner .text-brand,
.footer .text-brand,
.navbar .text-brand {
  color: var(--brand-blue-tint) !important;
}

/* --------------------------------------------------------------------------
   13. TOMBOL WA MELAYANG (FAB)
   -------------------------------------------------------------------------- */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--color-white);
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 0 var(--wa-green-dark);
  z-index: 1050;
  transition: transform 0.15s ease;
}

.wa-fab:hover {
  transform: translateY(2px);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE & BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  :root {
    --section-pad: 4rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .hero {
    padding-top: 7.5rem;
    text-align: center;
  }

  .hero .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-img {
    margin-top: 2.5rem;
    transform: none;
    box-shadow: 10px 10px 0 rgba(29, 78, 216, 0.3);
    border-width: 6px;
  }

  .hero-sticker {
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
  }

  .about-experience {
    left: 1rem;
    bottom: 1rem;
    transform: none;
    box-shadow: 4px 4px 0 var(--brand-blue-deeper);
  }

  .about-img-box {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.7rem;
  }

  .product-card {
    padding: 1.5rem;
  }
}
