:root {
  --gold-main: #d4af37; /* gold klasik */
  --gold-soft: #b8962e; /* gold gelap */
  --gold-glow: rgba(212, 175, 55, 0.45);

  --black-main: #0b0b0b;
  --black-soft: #111111;
  --black-glass: rgba(15, 15, 15, 0.85);

  --text-main: #ffffff;
  --text-muted: #cfcfcf;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--black-main);
  color: #ffffff;
  padding-top: 88px; /* tinggi navbar desktop */
}

/* ============================== */
/* ======== INDEX HTML ========== */
/* ================== */
/* Navbar */

.navbar {
  height: 100px;
  display: grid; /* terbaru */
  grid-template-columns: auto minmax(0, 1fr) auto; /* logo | menu | hamburger */
  align-items: center;
  padding: 0 3%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(
    180deg,
    rgba(32, 28, 2, 0.525),
    rgba(10, 10, 10, 0.85)
  );
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* kondisi normal = tengah */
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  padding-left: 1rem;
}

.navbar-logo img {
  height: 98px;
  width: auto;
  display: flex;
  filter: drop-shadow(0 2px 6px rgba(182, 128, 5, 0.7));
  transition:
    height 0.3s ease,
    filter 0.3s ease;
  flex-shrink: 0;
}

.navbar .navbar-nav a {
  color: #c8d4d7e4;
  display: inline-block;
  font-size: 1.05rem;
  margin: 0 1.2rem;
  font-weight: 500;
  position: relative;
  transition: font-size 0.3s ease;
}

.navbar .navbar-nav a:hover {
  color: var(--gold-main);
}

.navbar .navbar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px; /* sedikit bold */
  background-color: var(--gold-main);

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

/* NAVBAR SHRINK DI SETIAP PAGE - (CSS) */
.navbar.shrink {
  height: 64px;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.navbar.shrink .navbar-nav a::after {
  height: 1px;
}

.navbar.shrink .navbar-logo img {
  height: 58px;
}

.navbar.shrink .navbar-nav a {
  font-size: 0.9rem;
}

/* ACTIVE STATE = sama seperti hover */
.navbar .navbar-nav a.active::after {
  transform: scaleX(0.7);
}

.navbar-extra {
  justify-self: end;
  flex-shrink: 0;
}

.navbar .navbar-extra a {
  color: #c8d4d7e4;
  margin: 0 0.6rem;
}

.navbar .navbar-extra a:hover {
  color: var(--gold-main);
}

.navbar .navbar-nav a:hover::after {
  transform: scaleX(0.5);
}

.navbar.shrink {
  height: 64px;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.navbar.shrink .navbar-nav a::after {
  height: 1px;
}

.navbar.shrink .navbar-logo img {
  height: 58px;
}

.navbar.shrink .navbar-nav a {
  font-size: 0.9rem;
}

.navbar .navbar-nav a.active {
  color: var(--gold-main);
}

#hamburger-menu {
  display: none;
}

/* ================== */
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("../img/header-bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 10rem;
}

.hero .content {
  position: relative;
  z-index: 2; /* WAJIB */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

/* hero content*/
.hero-title {
  font-size: 6rem;
  letter-spacing: 0.35em;
  font-weight: 700;
  color: #fff6d6; /* white-gold lembut */
  /*color: #fffdf2;*/
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.55),
    /* white glow DIKURANGI */ 0 0 18px rgba(212, 175, 55, 0.55),
    0 0 38px rgba(212, 175, 55, 0.35),
    0 0 55px rgba(212, 175, 55, 0.25),
    0 0 25px rgba(220, 193, 104, 0.805);

  -webkit-font-smoothing: antialiased;
}

.hero .content .hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  letter-spacing: 0.35em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.hero .content .cta {
  margin-top: 2.2rem;
  padding: 1.2rem 3.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.hero .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--gold-glow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
}

/* ============================= */
/* SEO TEXT  */

.seo-text {
  background-color: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7));
  color: #080808;
  text-align: center;
}

/* ============================= */
/* About Intro Section (Premium) */

.about-intro {
  padding: 10rem 7% 8rem;
  background-color: #ffffff;
  color: #000;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

.about-label {
  font-size: 1.2rem;
  letter-spacing: 0.45em;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 2rem;
}

.about-title {
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  margin-bottom: 2.5rem;
  color: #000;
}

.about-desc {
  max-width: 720px;
  margin: auto;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #6b7280;
}

.about-desc span {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-main);
}

.about-intro .divider {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold-main);
  margin: 4rem auto 0;
  opacity: 0.8;
}

/* =============================== */
/* Why Apple Repair Section (Premium) */

.why-apple-repair {
  position: relative;
  padding: 10rem 7%;
  background-image: url("../img/why-bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
  z-index: 1;
}

.why-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.why-title {
  font-size: 3.6rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  color: #ffffff;
}

.why-apple-repair .divider {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-main);
  margin: 0 auto 5rem;
  opacity: 0.85;
}

/* Benefit Grid */
.why-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

/* Benefit Card */
.benefit-card {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.benefit-card i {
  width: 40px;
  height: 40px;
  color: var(--gold-main);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.benefit-card p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cfcfcf;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* =============================== */
/* Service Info Section            */

.service-info {
  padding: 10rem 7%;
  background-color: var(--black-main);
  color: #ffffff;
}

.service-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  opacity: 1;
}

.section-title {
  font-size: 3.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--gold-main);
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 6rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* Box */
.service-box {
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}

.service-box h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold-main);
}

.service-box p {
  font-size: 1rem;
  color: #c8d4d7e4;
}

/* Gold bullet */
.service-box ul li::before {
  content: "•";
  color: var(--gold-main);
  margin-right: 8px;
}

/* Hover */
.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
}

/*=== Service Accordion Section ===*/

.service-detail {
  padding: 10rem 7%;
  background-color: var(--black-main);
}

.service-accordion {
  max-width: 800px;
  margin: 5rem auto 0;
}

.service-item {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  margin-bottom: 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

/* Header */
.service-header {
  width: 100%;
  padding: 2rem 2.5rem;
  background: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.service-header span {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-left: 1.5rem;
  flex: 1;
}

.service-header i {
  color: var(--gold-main);
}

/* Chevron */
.service-header .chevron {
  transition: transform 0.35s ease;
}

/* Content */
.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.service-content ul {
  padding: 2rem 2.5rem 3rem;
  list-style: none;
}

.service-content ul li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  align-items: center;
}

.service-content ul li:last-child {
  border-bottom: none;
}

.service-content ul li a {
  color: #ffffff;
}

.service-content ul li a:hover {
  color: var(--gold-main);
}

.service-price {
  color: var(--gold-main);
  font-weight: 600;
}

/* Active */
.service-item.active .service-content {
  max-height: 500px;
}

.service-item.active .chevron {
  transform: rotate(180deg);
}

.badge {
  margin-left: 1.2rem;
  padding: 0.3rem 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #000;
  font-weight: 600;
  white-space: nowrap;
}

.badge.recommended {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-main);
  border: 1px solid var(--gold-main);
}

/* =============================== */
/* Google Review Section */

.google-review-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.google-review-label {
  font-size: 1.5rem;
  letter-spacing: 0.45em;
  color: #cfcfcf;
}

.google-review-title {
  margin-top: 1.5rem;
  font-size: 3.4rem;
  letter-spacing: 0.15em;
  color: #ffffff;
}

.google-review-title span {
  color: var(--gold-main);
}

.google-review-summary {
  margin-top: 2rem;
  font-size: 1.6rem;
  color: var(--gold-main);
  letter-spacing: 0.1em;
}

.google-review-section {
  position: relative;
  padding: 6rem 7% 7rem; /* lebih rapat dari section lain */
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(180deg, #0b0b0b, #111);
  overflow: hidden;
}

.google-review-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/google-review-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.04; /* JANGAN lebih dari ini */
  z-index: 0;
}

/* Verified Badge */
.verified-badge {
  margin-left: 1rem;
  font-size: 1.1rem;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gold-main);
  color: var(--gold-main);
}

/* Google Review Item Slider (Premium)  */

.review-slider-wrapper {
  margin-top: 5rem;
  overflow: hidden;
  position: relative;
}

.review-slider {
  display: flex;
  gap: 3rem;
  animation: reviewScroll 65s linear infinite;
  width: max-content;
}

/* Card */
.review-card {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  min-height: 260px;
  cursor: grab;
}

.review-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 28px 65px rgba(212, 175, 55, 0.45);
  z-index: 2;
}

/* Header */
.review-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}

.review-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-main);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

.review-header h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

.review-header span {
  font-size: 1.1rem;
  color: var(--gold-main);
}

/* Text */
.review-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-height: 19em;
  overflow: hidden;
}

/* Rating */
.review-rating {
  color: var(--gold-main);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

/* Animation */
@keyframes reviewScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.review-slider-wrapper:hover .review-slider {
  animation-play-state: running;
}

.review-card:hover ~ .review-card {
  pointer-events: none;
}

/* Footer */
footer {
  background-color: var(--gold-main);
  text-align: center;
  padding: 1rem 0 3rem;
  margin-top: 3rem;
}

footer .socials {
  padding: 1rem 0;
}

footer .socials a {
  color: #fff;
  margin: 1rem;
}

footer .socials a:hover,
footer .links a:hover {
  color: var(--black-main);
}

footer .links {
  margin-bottom: 1.4rem;
}

footer .links a {
  color: #fff;
  padding: 0.7rem 1rem;
}

footer .credit {
  font-size: 0.8rem;
}

footer .credit a {
  color: var(--black-main);
  font-weight: 700;
}

footer .credit a {
  color: var(--black-main);
  font-weight: 700;
}

.credit p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
}

.credit p strong {
  font-size: 15px;
  color: rgb(42, 82, 116);
}

.creator-logo {
  width: auto;
  vertical-align: middle;
  height: 40px;
  position: relative;
  top: 2px;
  background: #4f4f42;
  padding: 4px 6px;
  border-radius: 8px;
}

/* =============================== */
/* SERVICE IPHONE / IPAD PAGE (SCOPED) */
/* =============================== */

.service-page {
  position: relative;
  padding: 3rem 7% 8rem; /* atas | kiri-kanan | bawah */
  background: radial-gradient(
    circle at top,
    rgba(180, 180, 180, 0.12),
    rgba(10, 10, 10, 0.92) 70%
  );
}

.service-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.service-header-ip {
  max-width: 760px;
  margin: 0 auto 5rem;
  text-align: center;
}

.service-title {
  font-size: 2.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.service-title span {
  color: var(--gold-main);
}

.service-page .divider {
  display: block;
  width: 120px;
  height: 3px;
  background: var(--gold-main);
  margin: 0 auto 1rem;
}

.service-subtitle {
  max-width: 620px;
  margin: 0 auto 6rem;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 2rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* =============================== */
/* Premium Closing Subtitle Box   */
/* =============================== */

.service-page .subtitle {
  margin: 7rem auto 0;
  max-width: 1500px;
  padding: 2rem 2.5rem;

  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.75),
    rgba(10, 10, 10, 0.9)
  );

  border-radius: 20px;

  border: 1px solid rgba(82, 132, 33, 0.35);

  box-shadow:
    0 0 5px rgba(208, 108, 31, 0),
    0 0 20px rgba(212, 175, 55, 0.15);

  text-align: center;
  backdrop-filter: blur(10px);
}

/* Headline sentence */
.service-page .subtitle p:first-child {
  font-size: 1.5rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
  color: var(--gold-main);
}

/* Body sentence */
.service-page .subtitle p:last-child {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/***************/ /***************/

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(212, 175, 55, 0.35);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-body {
  padding: 2.4rem;
}

.service-card-body h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.service-card-body p {
  font-size: 1.35rem;
  line-height: 1.7;
  color: #cfcfcf;
  margin-bottom: 2.2rem;
}

.service-card-cta {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  border-radius: 999px;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;
  transition: all 0.35s ease;
}

.service-card:hover .service-card-cta {
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ================== */
/* SERVICE APPLE WATCH PAGE */
/* ================== */

/* ================== */
/* Hero Apple Watch Section */

.hero-apple-watch {
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../img/apple-watch-hero-bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 10rem;
}

.content-apple-watch {
  position: relative;
  z-index: 2; /* WAJIB */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.hero-title-apple-watch {
  font-size: 3.3rem;
  letter-spacing: 0.25em;
  font-weight: 650;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow:
    0 0 50px #ffffffe3,
    0 0 40px #9fab1e,
    0 0 45px #e77150;
}

.hero-title-apple-watch span {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 2.4rem; /* BARIS KEDUA LEBIH KECIL */
  letter-spacing: 0.28em; /* Lebih rapat */
  opacity: 0.9;
}

.hero-apple-watch .hero-subtitle {
  position: relative;
  display: inline-block;

  margin: 1.5rem auto 3rem;

  max-width: 1200px;

  font-size: 1.3rem;
  line-height: 1.9;
  letter-spacing: 0.11em;
  font-weight: 400;
  color: #f4e9da;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 14px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-apple-watch .cta {
  padding: 1rem 2rem;
  border-radius: 999px;

  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;

  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;

  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.hero-apple-watch .cta:hover {
  color: #f1e6c0;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(194, 159, 45, 0.577);
  filter: brightness(1.1);
  color: var(--gold-glow);
}

/* ================== */
/* TOC Navigation Section */

#service-toc {
  scroll-margin-top: 120px; /* sesuaikan tinggi navbar */
}

.service-toc {
  max-width: 900px;
  margin: 6rem auto;
  padding: 2.5rem 3rem;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
}

.service-toc h3 {
  margin-bottom: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--gold-main);
}

.service-toc ol li {
  margin-bottom: 1rem;
}

.service-toc a {
  color: var(--text-muted);
}

.service-toc a:hover {
  color: var(--gold-main);
}

/* ================== */
/* Service Apple Watch Intro Section */

#service-intro.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10rem 7%;
  position: relative;
  background:
    linear-gradient(
      0deg,
      rgba(11, 11, 11, 0.95) 0%,
      rgba(11, 11, 11, 0.75) 45%,
      rgba(11, 11, 11, 0.75) 15%
    ),
    url("../img/service-split-bg.webp");

  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

/* Paksa konten ke kolom KANAN */
#service-intro .split-text {
  grid-column: 2 / 3; /* ⬅️ INI KUNCINYA */
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.split-text h2 {
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: #ede0af;
}

.split-text h3 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: #6cb9af 1px 1px 2px;
}

.split-text p {
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.split-text h4 {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #ede0af;
}

.split-text span {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #e67a62e6;
}

/* ================== */
/* ================== */
/* Process Time Section */
.service-time {
  padding: 26rem 4%;
  background: url("../img/process-bg.webp") center/cover;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  word-break: normal;
  line-height: 1.6;
  margin: auto;
  text-align: left;
  color: #ffffff;
}

.service-time h2 {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-time h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gold-soft);
}

.service-time p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 0.6rem;
}

/* =============================== */
/* WE FIX – Premium Section */
/* =============================== */

.we-fix {
  position: relative;
  padding: 10rem 7%;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 11, 1) 0%,
    rgba(20, 20, 20, 0.95) 40%,
    rgba(20, 20, 20, 0.95) 60%,
    rgba(11, 11, 11, 1) 100%
  );
}

.we-fix-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 6rem;
  max-width: 1200px;
  margin: auto;
}

.we-fix-text {
  position: relative;
}

.we-fix-eyebrow {
  display: block;
  font-size: 3rem;
  font-weight: 450;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.327);
  margin-bottom: 1rem;
}

.we-fix-text h2 {
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: #ffffff;
}

.we-fix-text p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.we-fix-text span {
  color: var(--gold-main);
  font-weight: 600;
}

.we-fix-image {
  position: relative;
}

.we-fix-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* ================== */
/* Why Apple Repair - Apple Watch Section */

.why-apple-repair-watch {
  position: relative;
  padding: 10rem 7%;
  background-image: url("../img/why-apple-watch-bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.why-overlay-watch {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
  z-index: 1;
}
.why-container-watch {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.why-title-watch {
  font-size: 3.6rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  color: #ffffff;
}

.why-apple-repair-watch .divider-watch {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-main);
  margin: 0 auto 5rem;
  opacity: 0.85;
}

/* Benefit Grid */
.why-benefits-watch {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

/* Benefit Card */
.benefit-card-watch {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.benefit-card-watch i {
  width: 40px;
  height: 40px;
  color: var(--gold-main);
  margin-bottom: 1.5rem;
}

.benefit-card-watch h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.benefit-card-watch p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #cfcfcf;
}

.benefit-card-watch:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

/* ================================= */
/* PREMIUM PRICING LIST (SCROLLABLE) */

.premium-pricing {
  padding: 8rem 5%;
  background-color: var(--black-main);
  position: relative;
  overflow: hidden;
}

/* Header Section */
.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-header h2 {
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

.pricing-header h2 span {
  color: var(--gold-main);
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

/* Scroll Wrapper */
.pricing-slider-wrapper {
  position: relative;
  width: 100%;
  padding: 1rem 0 3rem; /* Ruang untuk shadow bawah */
}

/* The Slider Track */
.pricing-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox hide scrollbar */
  padding: 0 2rem; /* Agar card pertama & terakhir tidak mepet layar */
  -webkit-overflow-scrolling: touch;
}

.pricing-slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari hide scrollbar */
}

/* Individual Card Design */
.pricing-card {
  flex: 0 0 300px; /* Lebar fix seperti kartu di referensi */
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.03); /* Glass dark */
  border: 1px solid rgba(212, 175, 55, 0.2); /* Border gold tipis */
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align kiri seperti referensi */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

/* Hover Effect - Premium Glow */
.pricing-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-main);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.8),
    0 0 25px rgba(212, 175, 55, 0.15);
}

/* Tag (NEW / BEST SELLER) */
.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-main); /* Warna text gold seperti referensi */
  margin-bottom: 1rem;
  display: inline-block;
  text-transform: uppercase;
}

.card-tag.new {
  color: #e67a62; /* Opsional: warna orange/merah untuk 'New' */
}

/* Image Container */
.card-image-box {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.pricing-card:hover .card-image-box img {
  transform: scale(1.1);
}

/* Typography Details */
.card-details {
  width: 100%;
}

.card-details h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-desc {
  font-size: 1rem;
  color: #a0a0a0; /* Abu-abu seperti referensi */
  line-height: 1.5;
  margin-bottom: 2rem;
  min-height: 3em; /* Menjaga tinggi deskripsi seragam */
}

/* Price Section */
.card-price {
  margin-top: auto; /* Push ke bawah */
}

.card-price .label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.2rem;
}

.card-price .amount {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}

/* =============================== */
/* FAQ - Service Apple Watch */

.faq-aw {
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 60%),
    linear-gradient(180deg, #0b0b0b, #111);
  padding-top: 5rem;
}

.faq-aw-container {
  margin: auto;
  text-align: center;
}

.faq-aw-title {
  font-size: 3rem;
  letter-spacing: 0.25em;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

.faq-aw-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-main);
  margin: 2rem auto 5rem;
  opacity: 0.85;
}

/* List */
.faq-aw-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Item */
.faq-aw-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: box-shadow 0.35s ease;
  transform: translateZ(0);
}

.faq-aw-item:hover {
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
}

/* Question */
.faq-aw-question {
  width: 100%;
  padding: 2rem 2.5rem;
  background: transparent;
  color: #3da5ff;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-aw-question .icon {
  font-size: 2rem;
  color: var(--gold-main);
  transition: transform 0.35s ease;
}

/* Answer */
.faq-aw-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  will-change: max-height;
}

.faq-aw-answer p {
  padding: 0 2.5rem 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.faq-aw .fade-up {
  transform: none !important;
}

/* Active */
.faq-aw-item.active .faq-aw-answer {
  max-height: 8000px; /* aman untuk artikel panjang */
}

.faq-aw-item.active .faq-aw-question .icon {
  transform: rotate(90deg);
}

/* ================== */
/* CTA Section */
.service-cta h2 {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.service-cta .cta {
  margin-top: 5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.service-cta .cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--gold-glow);
}

/* =============================== */
/* CTA Apple Watch - Premium Split */

.cta-aw {
  padding: 9rem 7%;
  background:
    radial-gradient(circle at left, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(180deg, #0b0b0b, #111);
  position: relative;
  overflow: hidden;
}

.cta-aw-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 6rem;
}

/* TEXT SIDE */
.cta-aw-eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.35em;
  color: #cfcfcf;
}

.cta-aw-text h2 strong {
  color: #ede0af;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.cta-aw-points {
  list-style: none;
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}

.cta-aw-points li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

/* BUTTON */
.cta-aw-button {
  display: inline-block;
  padding: 1.1rem 3.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;
  font-weight: 600;
  letter-spacing: 0.15em;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
  transition: all 0.35s ease;
}

.cta-aw-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--gold-glow);
}

/* VISUAL SIDE */
.cta-aw-visual {
  position: relative;
  text-align: center;
}

.cta-aw-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.35),
    transparent 70%
  );
  z-index: 1;
}

/* ====================================================== */
/* ================== SERVICE MACBOOK PAGE ================== */
/* ====================================================== */

/* ================== */
/* Hero MAC Section */

.hero-mac {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../img/apple-mac-bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 10rem;
}

.hero-mac .content-mac {
  position: relative;
  z-index: 2; /* WAJIB */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.hero-title-mac {
  font-size: 3.3rem;
  letter-spacing: 0.25em;
  font-weight: 650;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow:
    0 0 50px #ffffffe3,
    0 0 40px #9fab1e,
    0 0 45px #e77150;

  -webkit-font-smoothing: antialiased;
}

.hero-title-mac span {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 2.2rem; /* BARIS KEDUA LEBIH KECIL */
  letter-spacing: 0.28em; /* Lebih rapat */
  opacity: 0.9;
  margin-bottom: 2.5rem;
}
.hero-mac .cta {
  padding: 1rem 2rem;
  border-radius: 999px;

  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;

  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;

  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.hero-mac .cta:hover {
  color: #f1e6c0;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(194, 159, 45, 0.577);
  filter: brightness(1.1);
  color: var(--gold-glow);
}

/* =============================== */
/* SUB HERO – SERVICE MACBOOK */

.sub-hero-mac {
  max-width: 1000px;
  margin: 7rem auto 6rem;
  padding: 3.8rem 4.2rem;

  /* Dark cinematic background */
  background: linear-gradient(
    180deg,
    rgba(18, 20, 35, 0.85),
    rgba(10, 12, 25, 0.95)
  );

  border-radius: 28px;

  /* Subtle neon edge */
  border: 1px solid rgba(120, 90, 255, 0.25);

  /* Deep premium shadow */
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.75),
    inset 0 0 40px rgba(90, 80, 255, 0.08);

  position: relative;
  overflow: hidden;
}
/* glow lembut */
.sub-hero-mac::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.12),
    transparent 65%
  );
  z-index: 0;
  pointer-events: none;
}

.sub-hero-mac > * {
  position: relative;
  z-index: 1;
}

/* Headline utama */
.sub-hero-mac h2 {
  font-size: 1.5rem;
  line-height: 1.85;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #ffffff;
  max-width: 760px;
  margin-bottom: 2.8rem;
}

/* List CTA */
.sub-hero-mac ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0;
  margin-bottom: 3rem;
}

/* CTA utama */
.sub-hero-mac ol li:first-child a {
  padding: 1.2rem 3.4rem;
  border-radius: 999px;

  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;

  font-weight: 600;
  letter-spacing: 0.15em;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);

  transition: all 0.35s ease;
}

.service-toc ol li:first-child a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px var(--gold-glow);
}

/* CTA sekunder */
.sub-hero-mac ol li:last-child a {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
}

.sub-hero-mac ol li:last-child a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-main);
  opacity: 0.4;
}

.sub-hero-mac ol li:last-child a:hover {
  color: var(--gold-main);
}

/* Punchline */
.sub-hero-mac h3 {
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--gold-main);
  opacity: 0.9;
}

/* BUTTON */
.cta-mac-button {
  display: inline-block;
  padding: 1.1rem 3.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;
  font-weight: 600;
  letter-spacing: 0.15em;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
  transition: all 0.35s ease;
}

.cta-mac-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--gold-glow);
}

/* Fade Up – Sub Hero Only */
.fade-sub-hero {
  opacity: 0;
  transform: translateY(40px);
  animation: subHeroFadeUp 1.1s ease-out forwards;
  animation-delay: 0.25s;
}

@keyframes subHeroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub-hero-mac ol {
  animation: subHeroFadeUp 1.1s ease-out forwards;
  animation-delay: 0.45s;
  opacity: 0;
}
.sub-hero-mac h3 {
  animation: subHeroFadeUp 1.1s ease-out forwards;
  animation-delay: 0.65s;
  opacity: 0;
}

/* =============================== */
/* PROBLEM AWARENESS – SERVICE MACBOOK */

.problem-awareness {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  padding: 10rem 7%;
  align-items: center;

  background:
    radial-gradient(circle at left, rgba(212, 175, 55, 0.08), transparent 55%),
    linear-gradient(180deg, #0b0b0b, #111);
}

/* TEXT SIDE */
.problem-awareness .split-text {
  max-width: 680px;
}

.problem-awareness h2 {
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  color: #ede0af;
  margin-bottom: 2rem;
}

.problem-awareness .intro {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.problem-awareness .label {
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--gold-main);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* LIST */
.problem-list {
  list-style: none;
  margin-bottom: 3rem;
}

.problem-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1.1rem;
  font-size: 1.15rem;
  color: #ffffff;
}

.problem-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-main);
  opacity: 0.8;
}

/* HIGHLIGHT STATEMENT */
.problem-awareness h4 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #ffffff;
}

.problem-awareness h4 span {
  color: var(--gold-main);
  font-weight: 600;
}

/* VISUAL SIDE */

.problem-awareness .split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.problem-awareness .image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.55);
  z-index: 1;
}

/* ================== */
/* Why Apple Repair - Mac Section */

.why-apple-repair-mac {
  position: relative;
  padding: 10rem 7%;
  background-image: url("../img/why-mac-bg.webp");
  background-size: 50%;
  background-position: center;
  overflow: hidden;
}

.why-overlay-mac {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
  z-index: 1;
}
.why-container-mac {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.why-title-mac {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.why-subtitle-mac {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 3rem;
}

.divider-mac {
  display: block;
  width: 98px; /* sebelumnya terlalu pendek → ini sweet spot */
  height: 2px; /* tetap tipis & premium */
  margin: 0.7rem auto 2.8rem;

  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.25),
    rgba(212, 175, 55, 0.95),
    rgba(212, 175, 55, 0.25)
  );

  border-radius: 999px;
}

/* Benefit Grid */
.why-benefits-mac {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

/* Benefit Card */
.benefit-card-mac {
  display: flex;
  align-items: center;
  gap: 1.4rem;

  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  backdrop-filter: blur(8px);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.benefit-card-mac i {
  font-size: 1.55rem; /* sebelumnya ±1.4 */
  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1; /* WAJIB: hilangkan offset font */
  color: var(--gold-main);
}

.benefit-card-mac h3 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin: 0;
}

.benefit-card-mac:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.22);
}

/* =============================== */
/* SERVICE SCOPE – MACBOOK (SPLIT) */

.service-scope-mac-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 12rem 5%;
  align-items: center;

  background: linear-gradient(180deg, #0b0b0b, #111);
  position: relative;
  overflow: hidden;
}

/* ===== LEFT IMAGE ===== */
.service-scope-visual {
  position: relative;
}

.service-scope-visual img {
  width: 115%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(212, 175, 55, 0.15);
}

/* Overlay atas & bawah agar nyatu antar section */
.scope-image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  height: 25%;
  pointer-events: none;
  z-index: 2;
}

.scope-image-overlay.top {
  top: 0;
  background: linear-gradient(to bottom, rgba(11, 11, 11, 0.95), transparent);
}

.scope-image-overlay.bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.95), transparent);
}

/* ===== RIGHT TEXT ===== */
.service-scope-text {
  max-width: 640px;
}

.scope-eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--gold-main);
}

.scope-title {
  font-size: 2.6rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.scope-title span {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  opacity: 0.85;
}

.scope-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* List */
.scope-list {
  list-style: none;
  margin-bottom: 3rem;
}

.scope-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  color: #ffffff;
}

.scope-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-main);
}

/* Closing line */
.scope-closing {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--gold-main);
}

/* Fade slide from left */
.fade-slide-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s ease;
}

.fade-slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* =============================== */
/* MACBOOK SERIES COVERAGE */

.mac-coverage {
  padding: 6rem 5% 6.5rem;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 11, 1),
    rgba(16, 16, 16, 0.95)
  );
}

.mac-coverage-inner {
  max-width: 980px;
  margin: auto;
  text-align: center;
}

/* Typography */
.mac-eyebrow {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.327);
  margin-bottom: 1.2rem;
}

.mac-title {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.mac-title span {
  color: var(--gold-main);
}

.mac-subtitle {
  font-size: 1.35rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.mac-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* IMAGE GRID */
.mac-series-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}

/* IMAGE ITEM */
.mac-series-grid img {
  width: 100%;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

/* ACTIVE STATE (JS) */
.mac-series-grid img.show {
  opacity: 1;
  transform: translateY(0);
}

/* =============================== */
/* HOW WE WORK – MACBOOK (Premium) */

.how-we-work-mac {
  position: relative;
  padding: 6rem 6% 5.5rem;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.85), rgba(11, 11, 11, 0.95)),
    url("../img/How-we-work-bg.webp") center / cover no-repeat;
  overflow: hidden;
}

/* Overlay lembut agar nyatu dengan section atas & bawah */
.how-we-work-mac::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.08),
    transparent 65%
  );
  z-index: 0;
}

.how-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: auto;
  text-align: center;
}

.how-eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  color: rgba(255, 255, 255, 0.45);
}

.how-inner h2 {
  font-size: 2.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  color: #ffffff;
}

.how-inner h3 {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}
.how-steps {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.8rem;
  padding: 0;
}

.how-steps li {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: #e5e5e5;
  padding: 0.6rem 1rem;
  border-left: 2px solid rgba(212, 175, 55, 0.45);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}
.neon-flicker {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--gold-main);
  text-shadow:
    0 0 6px rgba(212, 175, 55, 0.7),
    0 0 18px rgba(212, 175, 55, 0.45);
  animation: neonFlicker 3.5s infinite;
}

@keyframes neonFlicker {
  0%,
  100% {
    opacity: 1;
  }
  3% {
    opacity: 0.6;
  }
  6% {
    opacity: 1;
  }
  9% {
    opacity: 0.4;
  }
  12% {
    opacity: 1;
  }
  60% {
    opacity: 0.95;
  }
}
/* ==================================================== */
/* CTA Service Mac (BUTTON) */

.cta-aw-button-mac {
  display: inline-block;
  padding: 1.1rem 3.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;
  font-weight: 600;
  letter-spacing: 0.15em;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
  transition: all 0.35s ease;
  margin-bottom: 5rem;
}

.cta-aw-button-mac:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--gold-glow);
}

/* ============================================================== */
/* ================== Jual Beli Page ================== */
/* ============================================================== */
/* ===================================================== */
/* ================== HERO SECTION ================== */

.hero-jb-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../img/hero-jb-iphone-bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-jb-bg .content-jb {
  position: relative;
  z-index: 2; /* WAJIB */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}

.hero-jb-bg::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 11, 0) 0%,
    rgba(11, 11, 11, 0.6) 50%,
    rgba(11, 11, 11, 1) 100%
  );
}

.hero-title-jb {
  font-size: clamp(26px, 6vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 40px;
  color: bisque;
}

.hero-subtitle-jb {
  font-weight: 650;
  font-size: 20px;
  color: #cbd1dfee;
  max-width: 700px;
  margin-bottom: 3rem;
}

.hero-jb-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
}

.btn-primary {
  background: #111;
  color: #fff;
  border-color: #666;
  border: 2px solid #666;
}

.btn-secondary {
  border: 2px solid #111;
  border-color: #cfdab4;
  color: #b2c18f;
}

/* =============================== */
/* PROSES SECTION – PREMIUM APPLE */

.section-process-jb {
  background:
    radial-gradient(circle at right, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(180deg, #0b0b0b, #111);
  margin-bottom: 4rem;
  padding-bottom: 10rem;
}

.section-process-jb .container {
  max-width: 1100px;
  margin-left: auto; /* ⬅️ RATA KANAN */
  text-align: center;
  padding: 5% 5%;
}

/* === TITLE === */
.section-process-jb .section-title {
  text-align: right;
  font-size: 2.6rem;
  letter-spacing: 0.15em;
  margin-bottom: 4rem;
  color: #ffffff;
  position: relative;
}

/* divider apple-style */
.section-process-jb .section-title::after {
  content: "";
  display: block;

  height: 2px;
  margin: 1.4rem 0 0 auto;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.25),
    rgba(212, 175, 55, 0.95),
    rgba(212, 175, 55, 0.25)
  );
  border-radius: 999px;
}

/* === STEPS WRAPPER === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

/* === STEP BOX === */
.process-steps .step {
  padding: 2.8rem 2.6rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.35s ease;
}

/* subtle glow */
.process-steps .step::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.18),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.process-steps .step > * {
  position: relative;
  z-index: 1;
}

/* hover */
.process-steps .step:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(212, 175, 55, 0.28);
}

.process-steps .step:hover::before {
  opacity: 1;
}

/* === H3 === */
.step-title {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* === PARAGRAPH === */
.process-steps p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ================================================= */
/* JUAL iPHONE SECTION – PREMIUM BACKGROUND VERSION  */

.section.sell-iphone {
  position: relative;
  padding: 5rem 6%;
  overflow: hidden;
  margin-bottom: 10rem;

  /* Background image */
  background: url("../img/jual-beli/sell-iphone-bg.webp") center / cover
    no-repeat;
}

/* Dark overlay layer */
.section.sell-iphone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.72) 45%,
    rgba(10, 10, 10, 0.4) 100%
  );
  z-index: 1;
}

/* Container */
.section.sell-iphone .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: left; /* ⬅️ teks kiri */
}

/* Title */
.section.sell-iphone h2.section-title {
  font-size: 2.8rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin-bottom: 1.8rem;
  color: #ffffff;
}

/* Paragraph */
.section.sell-iphone p {
  max-width: 620px;
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* CTA Button */
.section.sell-iphone .btn {
  padding: 1rem 3rem;
  border-radius: 999px;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  font-weight: 600;

  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;

  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
  transition: all 0.35s ease;
}

.section.sell-iphone .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--gold-glow);
}

/* ===================================================== */
/* ================== BELI SECTION ================== */

.beli-ip .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.beli-ip .section-header h2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #ffffff;
}

.beli-ip .section-header h2 span {
  color: var(--gold-main);
  font-weight: 700;
}

.beli-ip .section-header p {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 300;
  color: #cfcfcf;
  letter-spacing: 0.05em;
}

/* ===== Sub Group ===== */
.beli-group {
  margin-bottom: 4rem;
}

.beli-group-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 3rem;
  letter-spacing: 0.15em;
  color: #cfcfcf;
}
/* ===== Sub Group ===== */

.beli-ip .section-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold-main);
  margin: 1.8rem auto 0;
  opacity: 0.7;
}

.beli-ip .row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 2rem;
}

.beli-ip .row::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.product-card {
  flex: 0 0 280px; /* lebar tetap, tidak mengecil */
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2rem;
  width: 280px;
  text-align: center;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.product-image {
  height: 300px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
}

.product-image img {
  width: 105%;
  height: 105%;
  object-fit: contain;
  /* INI KUNCI ZOOM */
  transform: scale(1.5); /* zoom default */
  transform-origin: center;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.65));
}

.product-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-size: 1.4rem;
  color: var(--gold-main);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.35);
}

/* =============================== */
/* Micro Icon Hover Animation     */

.product-card i {
  transition:
    transform 0.35s ease,
    filter 0.35s ease,
    color 0.35s ease;
  transform-origin: center;
}

/* Hover effect */
.product-card:hover i {
  transform: translateY(-6px) scale(1.08);
  filter: drop-shadow(0 0 10px var(--gold-glow));
  color: var(--gold-main);
}

/* Text follow-up (very subtle) */
.product-card:hover h3 {
  color: var(--gold-main);
  transition: color 0.35s ease;
}

/* Card breathing effect */

@keyframes goldPulse {
  0% {
    filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.35));
  }
  100% {
    filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  }
}

@keyframes badgeGlow {
  0% {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
  50% {
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
  }
  100% {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
}

.highlight .badge {
  animation: badgeGlow 2.2s ease-in-out infinite;
}

/* Aktif saat hover saja */
.product-card:hover i {
  animation: goldPulse 1.4s ease-in-out infinite;
}

/* =====================================
   TRUST SECTION – JUAL / BELI (APPLE STYLE)
   ===================================== */

.section.trust {
  position: relative;
}

.section.trust .container {
  max-width: 880px; /* lebih fokus & trusted */
}

/* Title tetap premium & rapi */
.section.trust .section-title {
  margin-bottom: 3rem;
  text-align: left;
  margin-left: 3rem;
}

/* List wrapper */
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 3rem;
}

/* List item */
.trust-list li {
  position: relative;
  padding-left: 52px;
  margin-bottom: 1.6rem;

  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: left;
}

/* Thumbs-up icon (same for all li) */
.trust-list li::before {
  content: "👍";
  position: absolute;
  left: 0;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.05rem;

  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.18),
    rgba(212, 175, 55, 0.05)
  );

  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 10px;

  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
}

/* =============================== */
/* CTA SECTION - JUAL / BELI PAGE */
/* =============================== */

.section-cta {
  position: relative;
  padding: 9rem 7% 8rem;
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(212, 175, 55, 0.15),
      transparent 55%
    ),
    linear-gradient(180deg, #0b0b0b, #111);
  overflow: hidden;
}

/* glow ambience */
.section-cta::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.25),
    transparent 70%
  );
  opacity: 0.4;
  z-index: 0;
}

.section-cta .container {
  position: relative;
  z-index: 2;
}

/* ================= */
/* CTA TITLE */
.cta-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 3.5rem;
  text-shadow:
    0 0 15px rgba(212, 175, 55, 0.45),
    0 0 35px rgba(212, 175, 55, 0.25);
  animation: ctaPulse 3.2s ease-in-out infinite;
}

/* subtle kedap-kedip */
@keyframes ctaPulse {
  0% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
  }
  50% {
    text-shadow: 0 0 28px rgba(212, 175, 55, 0.75);
  }
  100% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
  }
}

/* ================= */
/* CTA BUTTON - WHATSAPP */
.section-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 3.2rem;
  border-radius: 999px;

  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;
  font-weight: 650;
  letter-spacing: 0.15em;

  box-shadow:
    0 10px 30px rgba(212, 175, 55, 0.45),
    inset 0 0 0 rgba(255, 255, 255, 0);

  transition: all 0.35s ease;
  position: relative;
}

/* WhatsApp icon */
.section-cta .btn-primary::before {
  content: "";
  font-family: "Font Awesome 6 Brands";
  font-size: 1.4rem;
}

/* arrow */
.section-cta .btn-primary::after {
  content: "→";
  font-size: 1.4rem;
  transition: transform 0.35s ease;
}

/* hover effect */
.section-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 35px rgba(212, 175, 55, 0.75),
    0 0 70px rgba(212, 175, 55, 0.35);
}

.section-cta .btn-primary:hover::after {
  transform: translateX(6px);
}

/* =============================== */
/* ========= BLOG PAGE =========== */
/* =============================== */

.blog {
  padding: 8rem 7% 6rem;
  background: linear-gradient(180deg, #0b0b0b, #111);
  text-align: center;
}

.blog h2 {
  font-size: 3.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 4rem;
}

.blog h2 span {
  color: var(--gold-main);
}

/* Slider Wrapper */
.blog-slider-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
}

.blog-slider-wrapper::-webkit-scrollbar {
  display: none;
}

/* Slider */
.blog-slider {
  display: flex;
  gap: 3rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
}

/* Card */
.blog-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: left;

  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(10px);

  transition: all 0.35s ease;
}

.blog-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.blog-card p {
  font-size: 1.35rem;
  line-height: 1.7;
  color: #cfcfcf;
  margin-bottom: 2rem;
}

.blog-card a {
  font-size: 1.2rem;
  color: var(--gold-main);
  letter-spacing: 0.1em;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.35);
}

/* ===============  =============== */
/* ===============  =============== */
/* =============================== */
/* LOCATION PAGE */

.location-hero {
  padding: 10rem 7% 6rem;
  text-align: center;
}

.location-hero h1 {
  font-size: 3.4rem;
  letter-spacing: 0.2em;
}

.location-hero h1 span {
  color: var(--gold-main);
}

.location-hero p {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: var(--text-muted);
}

.location-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.btn-primary {
  padding: 1rem 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-soft));
  color: #111;
  font-weight: 600;
}

.btn-outline {
  padding: 1rem 3rem;
  border-radius: 999px;
  border: 1px solid var(--gold-main);
  color: var(--gold-main);
}

/* MAP SECTION */
.location-map {
  padding: 8rem 7%;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.map {
  width: 100%;
  height: 420px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.location-info {
  background: rgba(255, 255, 255, 0.04);
  padding: 3rem;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.location-info strong {
  color: #f0d296;
}

/* WHY VISIT */
.location-why {
  padding: 9rem 7%;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.why-card {
  position: relative;
  padding: 3.2rem 2.6rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(10px);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  opacity: 0;
  transform: translateY(40px);
}
.why-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ICON */
.why-card i {
  width: 42px;
  height: 42px;
  margin-bottom: 1.8rem;
  color: var(--gold-main);
  stroke-width: 1.6;
  transition: transform 0.45s ease;
}

/* TEXT */
.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.why-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* HOVER ANIMATION */
.why-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.28);
  border-color: var(--gold-main);
}

.why-card:hover i {
  transform: scale(1.25) rotate(-4deg);
}

/* GLOW EFFECT */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top,
    rgba(212, 175, 55, 0.18),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

/* ================== */
/* ================== */
/* ================== */
/* MAINTENANCE PAGE */
/* ================= DEVELOPER CREDIT ================= */

.developer-credit {
  margin-top: 3rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.developer-credit img {
  width: 85px;
  margin-bottom: 0.8rem;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.4s ease;
}

.developer-credit p {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #888;
}

.developer-credit strong {
  color: #d4af37;
  font-weight: 600;
}

.developer-credit:hover img {
  filter: grayscale(0%) brightness(1);
  transform: translateY(-2px);
}

.developer-credit:hover {
  opacity: 1;
}

/* ================= COPYRIGHT ================= */

.copyright {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #666;
}

/* =============== MEDIA QUERIES =============== */
/* =============== MEDIA QUERIES =============== */
/* =============== MEDIA QUERIES =============== */
/* Laptop */
/* Laptop */
/* Laptop */
@media (max-width: 1366px) {
  html {
    font-size: 75%;
  }
}

/* ================== */
/* Tablet */
/* Tablet */
/* Tablet */
/* ================== */
@media (max-width: 1024px) {
  .service-scope-mac-split {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 8rem 6%;
  }

  .service-scope-text {
    max-width: 100%;
  }

  html {
    font-size: 62.5%;
  }
  body {
    padding-top: 85px; /* tinggi navbar Tablet */
  }

  #hamburger-menu {
    display: inline-block;
  }

  .navbar {
    padding: 0 5%;
  }

  .hero-title {
    font-size: 4.5rem;
    letter-spacing: 0.23em;
  }

  .hero-title-apple-watch {
    font-size: 4.5rem;
    letter-spacing: 0.23em;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-title-apple-watch span {
    font-size: 2rem;
  }

  .navbar .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 30rem;
    height: 100vh;

    background: #6257189b;
    padding: 8rem 2rem 2rem;

    display: flex;
    flex-direction: column;

    overflow-y: auto;
    z-index: 9998;

    transition: right 0.4s ease;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    color: #c8d4d7e4;
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
  }

  .navbar .navbar-nav a.active {
    color: var(--gold-main);
    font-weight: 700;
  }

  .navbar .navbar-nav a::after {
    content: "";
    position: absolute;
    left: -18%;
    bottom: 0;

    width: 135%;
    height: 2px; /* sedikit bold */
    background-color: var(--gold-main);

    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }

  .navbar .navbar-nav a:hover::after {
    transform: scaleX(0.3);
  }

  .navbar-extra {
    display: flex;
    align-items: center;
  }

  #hamburger-menu {
    display: inline-flex;
  }

  .about-title {
    font-size: 3rem;
    letter-spacing: 0.1em;
  }

  .about-desc {
    font-size: 1.5rem;
  }

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

  .why-title {
    font-size: 3rem;
  }

  .navbar-logo img {
    height: 90px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-card img {
    margin-bottom: 1rem;
  }
  .service-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-card {
    flex: 0 0 260px; /* Sedikit lebih kecil di mobile */
    padding: 2rem 1.5rem;
  }

  .pricing-header h2 {
    font-size: 2.2rem;
  }

  /* RESPONSIVE CTA APPLE WATCH */
  .cta-aw-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-aw-points {
    display: inline-block;
    text-align: left;
  }
  .problem-awareness {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .problem-awareness .split-visual {
    order: -1;
  }

  /* =============================== */
  /* PROBLEM AWARENESS – TABLET FIX */

  .problem-awareness {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 7rem 6%;
  }

  .problem-awareness .split-visual {
    height: 320px;
    border-radius: 26px;
    overflow: hidden;
  }

  .problem-awareness .split-text {
    max-width: 100%;
  }

  .problem-awareness h2 {
    font-size: 1.9rem;
  }

  .problem-awareness ol li {
    font-size: 1.05rem;
  }
  .why-title-mac {
    font-size: 2.2rem;
  }

  .why-subtitle-mac {
    font-size: 1.15rem;
  }

  .why-benefits-mac {
    grid-template-columns: 1fr;
  }
  .how-inner {
    max-width: 700px;
  }

  /* ===================================== */
  /* RESPONSIVE FOOTER - CREDIT SECTION   */
  footer {
    padding: 2rem 2rem 3rem;
  }

  .credit p {
    flex-wrap: wrap;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    gap: 6px;
  }

  .creator-logo {
    height: 34px;
  }

  .credit p strong {
    font-size: 14px;
  }

  /* ====== JB Page (Tablet View) ====== */
  /* ---------- HERO SECTION ----------*/

  .hero-jb-bg {
    padding: 6rem 0 5.5rem;
  }

  .hero-title-jb {
    font-size: 2.4rem;
    line-height: 1.25;
  }

  .hero-subtitle-jb {
    font-size: 1.05rem;
    max-width: 520px;
  }

  .hero-jb-actions {
    gap: 14px;
  }

  /* ============ Trust Section Tablet Fix ============= */
  .section.trust .container {
    max-width: 720px;
  }

  .trust-list li {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding-left: 0; /* matikan padding lama */
  }

  .trust-list li::before {
    position: relative;
    top: 0;

    flex-shrink: 0;
    margin-top: -10px; /* fine-tuning sejajar teks */
  }
  /* ============ LOCATION PAGE TABLET FIX ============ */
  .map-wrapper {
    grid-template-columns: 1fr;
  }

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

/* ================ ======================== */
/* ================ Mobile Phone ================*/
/* ================ ================ */
/* =========== POTRAIT =========== */
@media (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .navbar {
    height: 100px; /* WAJIB */
    padding: 0 6%;
  }

  .navbar-logo {
    justify-content: center;
  }

  .navbar-logo img {
    height: 98px; /* teks di gambar terbaca */
    min-height: 65px; /* jangan biarkan lebih kecil */
  }

  .hero {
    text-align: center;
    min-height: calc(100vh - 110px); /* kompensasi navbar */
    padding: 0 2.5rem;
  }

  .hero .content {
    transform: translateY(-2.5rem);
  }

  .hero .cta {
    margin-top: 1.8rem;
    padding: 1rem 2.8rem;
    font-size: 1.2rem;
  }

  .about-intro {
    padding: 8rem 6% 6rem;
  }

  .about-title {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
  }

  .about-desc {
    font-size: 1.4rem;
  }

  .why-benefits {
    grid-template-columns: 1fr;
  }

  .why-benefits-watch {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
  }
  .why-title-watch {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
  }

  .jual-beli .section-header h2 {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }

  .jual-beli .section-header p {
    font-size: 1.2rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .google-review-title {
    font-size: 2.6rem;
  }
  .review-card {
    flex: 0 0 280px;
  }

  .hero-apple-watch {
    align-items: flex-start;
    padding-top: 30rem;
    min-height: 88vh;
    padding-bottom: 6rem;
  }

  .content-apple-watch {
    margin-top: 0;
    transform: translateY(-60px);
  }
  .service-toc {
    padding: 2rem;
  }

  .service-split {
    padding: 6rem 6%;
  }

  .service-time {
    padding: 8rem 6%;
  }
  .why-title-mac {
    font-size: 1.85rem;
    letter-spacing: 0.05em;
  }

  .why-subtitle-mac {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .benefit-card-mac {
    padding: 1.4rem 1.4rem;
    gap: 1rem;
  }

  .benefit-card-mac h3 {
    font-size: 0.95rem;
  }
  .divider-mac {
    width: 56px;
    height: 2px;
  }

  /* ===================================== */
  /* RESPONSIVE FOOTER - CREDIT SECTION   */
  footer {
    padding: 2.5rem 1.5rem 3rem;
  }

  .credit p {
    flex-direction: column;
    gap: 10px;
    font-size: 12.5px;
  }

  .creator-logo {
    height: 32px;
    top: 0;
  }

  .credit p strong {
    font-size: 14px;
  }

  /* ========== JB Page (Mobile View) ================ */
  /* ========== HERO SECTION ====================*/
  .hero-jb-bg {
    background-size: 60%;
    padding: 5rem 0 5rem;
  }

  .hero-title-jb {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 2rem;
  }
  .content-jb {
    margin-top: -40%;
  }

  .hero-subtitle-jb {
    margin-top: 0;
    margin-bottom: 1.6rem;
    font-size: 1.2rem;
    flex-direction: inline;
    line-height: 1.55;
    max-width: 92%;
  }

  .hero-jb-actions {
    flex-direction: inline;
    padding: 0.7rem 1.2rem;
    width: 65%;
  }

  .hero-jb-actions .btn {
    width: 65%;
    text-align: center;
    font-size: 1.3rem;
  }

  /* =====================================
JB SELL IPHONE SECTION – MOBILE VIEW
   ===================================== */

  .section.sell-iphone {
    padding: 5rem 15%;
    margin-bottom: 20rem;
  }

  /* =====================================
SUB HERO SECTION – JB - MOBILE VIEW
   ===================================== */

  .section-process-jb .container {
    padding: 5% 1%;
  }

  /* =====================================
   TRUST SECTTION MOBILE VIEW 
   ===================================== */
  .section.trust .container {
    text-align: left;
  }

  .section.trust .section-title {
    text-align: left;
    margin-bottom: 2.5rem;
    padding-left: 3rem; /* matikan padding lama */
  }

  .trust-list li {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding-left: 3rem; /* matikan padding lama */
  }

  .trust-list li::before {
    position: relative;
    top: 0;

    flex-shrink: 0;
    margin-top: -10px; /* fine-tuning sejajar teks */
  }
  /* ========= ========== */
  /* JB product img */

  .product-image {
    height: 150px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* INI KUNCI ZOOM */
    transform: scale(1.2); /* zoom default */
  }
  /* =============================== */
  /* CTA JB - Mobile  */
  .cta-title {
    font-size: 2.1rem;
    letter-spacing: 0.16em;
  }

  .section-cta .btn-primary {
    padding: 1rem 2.4rem;
    font-size: 0.95rem;
  }

  /* =============================== */
  /*  Artikel Blog Page  */
  .faq-aw-question {
    font-size: 1rem;
    padding: 1.4rem 1.6rem;
  }

  .faq-aw-answer p {
    font-size: 0.95rem;
    padding: 0 1.6rem 1.6rem;
  }

  .faq-aw-question .icon {
    font-size: 1.6rem;
  }
  .faq-aw-item.active .faq-aw-answer {
    max-height: 2000px; /* aman untuk artikel panjang */
  }
  /* =============================== */
  /* CTA Apple Watch - Mobile Ultra */

  .cta-aw {
    padding: 5rem 6% 6rem; /* start dari sini yang settingan sebelumnya max width 768px */
  }

  .cta-aw-eyebrow {
    font-size: 1.4rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
  }

  .cta-aw-button {
    width: 100%;
    text-align: center;
    padding: 1.1rem 0;
    font-size: 1rem;
    letter-spacing: 0.18em;
  }

  .cta-aw-visual {
    margin-top: 3rem;
  }

  .sub-hero-mac {
    margin: 4.5rem 1.2rem 4rem;
    padding: 2.8rem 2.2rem;

    border-radius: 34px;

    box-shadow:
      0 22px 55px rgba(0, 0, 0, 0.8),
      inset 0 0 30px rgba(110, 100, 255, 0.12);
  }

  /* Reduce glow area */
  .sub-hero-mac::before {
    inset: -55%;
    opacity: 0.65;
  }

  /* =============================== */
  /* PROBLEM AWARENESS – MOBILE FIX */

  .problem-awareness {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 5rem 1.4rem 6rem;
  }

  /* VISUAL → jadi background card */
  .problem-awareness .split-visual {
    order: -1;
    height: 220px;
    margin-bottom: 2.5rem;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  }

  .problem-awareness .split-visual img {
    height: 100%;
    object-fit: cover;
  }

  .problem-awareness .image-overlay {
    background: rgba(5, 5, 5, 0.65);
  }

  /* TEXT CARD */
  .problem-awareness .split-text {
    max-width: 100%;
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(8px);
    padding: 2.4rem 2rem;
    border-radius: 22px;
    border: 1px solid rgba(212, 175, 55, 0.18);
  }

  .problem-awareness h2 {
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.4rem;
  }

  .problem-awareness .intro {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
  }

  .problem-awareness .label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.2rem;
  }

  /* LIST – DIRAPATKAN */
  .problem-awareness ol {
    margin-bottom: 2rem;
  }

  .problem-awareness ol li {
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .problem-awareness ol li::before {
    left: 0;
    font-size: 0.9rem;
  }

  .problem-awareness h4 {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .scope-title {
    font-size: 2.1rem;
  }

  .scope-title span {
    font-size: 1.3rem;
  }

  .scope-subtitle {
    font-size: 1.1rem;
  }

  .scope-list li {
    font-size: 1.05rem;
  } /* end di-sini yang settingan sebelumnya max width 768px */

  .how-we-work-mac {
    padding: 4.5rem 6% 4rem; /* start dari sini yang settingan sebelumnya max width 600px */
  }

  .how-inner h2 {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }

  .how-inner h3 {
    font-size: 1rem;
  }

  .how-steps li {
    font-size: 0.95rem;
  }

  .neon-flicker {
    font-size: 1rem; /* end disini yang settingan sebelumnya max width 600px */
  }

  .service-scope-mac-split {
    padding: 6rem 5%; /* start dari sini yang settingan sebelumnya max width 400px */
  }

  .scope-eyebrow {
    font-size: 0.8rem;
  }

  .scope-title {
    font-size: 1.8rem;
    letter-spacing: 0.05em; /* end di-sini yang settingan sebelumnya max width 400px */
  }

  .mac-series-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* start dari sini yang settingan sebelumnya max width 900px */
    gap: 1.8rem;
  }

  .mac-title {
    font-size: 2.2rem; /* start dari sini yang settingan sebelumnya max width 900px */
  }

  /* ============================== */
  /* Mobile Tambahan */

  .mac-coverage {
    padding: 4.5rem 6% 5rem; /* start dari sini yang settingan sebelumnya (mobile tambahan) max width 600px */
  }

  .mac-series-grid {
    grid-template-columns: 1fr;
  }

  .mac-title {
    font-size: 1.9rem;
    letter-spacing: 0.05em;
  }

  .mac-subtitle {
    font-size: 1.15rem; /* end di-sini yang settingan sebelumnya (mobile tambahan) max width 600px */
  }
  /* =============================== */
  /* ============ LOCATION PAGE MOBILE FIX ============ */
  .location-hero h1 {
    font-size: 2.4rem;
  }

  .location-cta {
    flex-direction: column;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
  .location-info {
    font-size: 1.5rem;
  }

  /* MAINTENANCE PAGE */
  /* MAINTENANCE PAGE */
  .developer-credit img {
    width: 60px;
    margin-bottom: 0.7rem;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.4s ease;
  }
}

/* SMALL MOBILE */
/* SMALL MOBILE */
/* SMALL MOBILE */

@media (max-width: 576px) {
  footer {
    padding: 2rem 1rem 2.5rem;
  }

  .credit p {
    font-size: 11.5px;
    gap: 8px;
  }

  .creator-logo {
    height: 28px;
    padding: 3px 5px;
  }

  .credit p strong {
    font-size: 13px;
  }
  /* MAINTENANCE PAGE */
  /* MAINTENANCE PAGE */
  .developer-credit img {
    width: 50px;
    margin-bottom: 0.6rem;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.4s ease;
  }
}

/* SMALL MOBILE */
/* LANDSCAPE */

@media (max-width: 576px) and (orientation: landscape) {
  .hero {
    min-height: 120vh;
  }
}
