/* =================================================================
   GALANG & ASSOCIATES LAW OFFICE — STYLE.CSS
   Palet: Navy, Gold, Putih, Hitam, Abu-abu elegan.
   Catatan edit cepat: ubah warna pada blok :root di bawah ini.
   ================================================================= */

/* ---------- VARIABEL WARNA & DESAIN ---------- */
:root {
  --navy-900: #07172f;   /* navy paling gelap (header/footer) */
  --navy-800: #0a1f3c;   /* navy utama */
  --navy-700: #122c52;   /* navy lebih terang */
  --gold-500: #c9a24b;   /* emas utama */
  --gold-400: #d8b765;   /* emas terang */
  --gold-300: #e8cf8f;   /* emas lembut */
  --black:    #0c0d10;
  --white:    #ffffff;
  --gray-50:  #f6f7f9;   /* background lembut */
  --gray-100: #eef0f4;
  --gray-200: #dfe3ea;
  --gray-400: #9aa3b2;
  --gray-600: #5b6473;   /* teks sekunder */
  --ink:      #1c2533;   /* teks utama di latar terang */

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(7, 23, 47, .08);
  --shadow-md: 0 14px 38px rgba(7, 23, 47, .14);
  --shadow-gold: 0 12px 30px rgba(201, 162, 75, .28);
  --maxw: 1280px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- RESET DASAR ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -60px;
  z-index: 2100;
  padding: .65rem 1rem;
  border-radius: 10px;
  background: var(--gold-400);
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: top .2s var(--ease);
}

.skip-link:focus-visible {
  top: 14px;
}

.noscript-banner {
  margin: 100px auto 0;
  max-width: var(--maxw);
  padding: .8rem 24px;
  color: var(--navy-900);
  background: #fff1cc;
  border-top: 1px solid #e5cb85;
  border-bottom: 1px solid #e5cb85;
}

img { max-width: 100%; display: block; }
svg { max-width: 100%; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid rgba(201, 162, 75, .55);
  outline-offset: 2px;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.18; margin: 0; color: var(--navy-900); }

p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.gold { color: var(--gold-500); }

/* ---------- TOMBOL / CTA ---------- */
.btn {
  --btn-pad: .8rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: var(--btn-pad);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .2px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  min-height: 44px;
}
.btn-lg { --btn-pad: 1rem 1.9rem; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201, 162, 75, .42); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}
.btn-outline:hover { background: rgba(255, 255, 255, .1); border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }

/* =================================================================
   HEADER & NAVBAR
   ================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(7, 23, 47, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 75, .18);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled { background: rgba(7, 23, 47, .97); box-shadow: 0 6px 24px rgba(0, 0, 0, .25); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo {
  width: 46px; height: 46px;
  border-radius: 50%;                 /* potong sudut hitam logo jadi lingkaran emas */
  object-fit: cover;
  border: 1.5px solid rgba(201, 162, 75, .55);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, .12);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); color: var(--white); font-size: 1.06rem; }
.brand-text span { color: var(--gold-400); font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-menu > li > a {
  position: relative;
  display: inline-block;
  padding: .5rem .7rem;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color .2s var(--ease);
}
.nav-menu > li > a::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .28rem;
  height: 2px; background: var(--gold-400); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav-menu > li > a:hover { color: var(--white); }
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }
.nav-menu > li > a.active { color: var(--gold-300); }

.nav-menu .mobile-only { display: none; }

/* Tombol hamburger (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(201, 162, 75, .35);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; width: 100%; background: var(--gold-400); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  padding: 150px 0 90px;
  color: var(--white);
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(201, 162, 75, .22), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(18, 44, 82, .9), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, #050f20 100%);
  overflow: hidden;
}
.hero::before {  /* tekstur garis halus elegan */
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 100% 56px; opacity: .5; pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}

/* Prevent grid children from forcing horizontal overflow on small screens. */
.hero-inner > *,
.about-grid > *,
.counsel-grid > *,
.video-grid > *,
.location-grid > *,
.contact-layout > * {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--white); font-weight: 800; margin-bottom: 1.2rem; }

.tagline-box {
  display: inline-flex; align-items: center; gap: .9rem;
  padding: .7rem 1.1rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(201, 162, 75, .35);
  border-left: 4px solid var(--gold-500);
  border-radius: 12px;
  margin-bottom: 1.4rem;
}
.tagline-box .mark { font-size: 1.6rem; line-height: 1; }
.tagline-box strong { display: block; color: var(--gold-300); font-family: var(--font-body); font-weight: 700; font-size: 1rem; }
.tagline-box span { color: rgba(255, 255, 255, .8); font-size: .88rem; }

.hero .lead { color: rgba(255, 255, 255, .85); font-size: 1.1rem; max-width: 46ch; margin-bottom: 1.8rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }

.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.metric {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}
.metric strong { display: block; color: var(--gold-400); font-family: var(--font-body); font-weight: 700; margin-bottom: .25rem; }
.metric span { font-size: .82rem; color: rgba(255, 255, 255, .72); line-height: 1.5; }

/* Kartu logo di hero */
.hero-card {
  position: relative;
  padding: 2.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(201, 162, 75, .3);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
.hero-logo-wrap {
  display: grid; place-items: center;
  padding: 1.6rem;
  background: radial-gradient(circle at 50% 40%, rgba(201, 162, 75, .18), transparent 70%);
  border-radius: 20px;
  margin-bottom: 1.4rem;
}
.hero-logo-wrap img {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 162, 75, .5);
  box-shadow: 0 0 0 8px rgba(201, 162, 75, .08), var(--shadow-md);
}
.hero-card-caption { display: flex; align-items: center; gap: .9rem; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .12); }
.mini-seal {
  display: grid; place-items: center;
  width: 44px; height: 44px; flex-shrink: 0;
  font-size: 1.3rem;
  background: rgba(201, 162, 75, .15);
  border: 1px solid rgba(201, 162, 75, .4);
  border-radius: 12px;
}
.hero-card-caption strong { display: block; color: var(--white); font-family: var(--font-body); font-size: .95rem; }
.hero-card-caption span { color: rgba(255, 255, 255, .72); font-size: .82rem; }

/* =================================================================
   TRUST STRIP
   ================================================================= */
.trust-strip { background: var(--navy-900); border-top: 1px solid rgba(201, 162, 75, .2); }
.trust-grid {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.1rem;
}
.trust-title { margin: 0; color: rgba(255, 255, 255, .85); font-size: .95rem; font-weight: 500; }
.trust-item { color: var(--gold-300); font-weight: 600; font-size: .92rem; letter-spacing: .5px; }
.trust-item .icon { color: var(--gold-500); margin-right: .35rem; font-size: .7rem; }

/* =================================================================
   SECTION DASAR
   ================================================================= */
.section { padding: 88px 0; }
.section-soft { background: var(--gray-50); }
.section-dark { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: var(--white); }

.section-title { max-width: 760px; margin-bottom: 2.6rem; }
.section-title.center { text-align: center; margin-inline: auto; }
.section-title .eyebrow { color: var(--gold-500); }
.section-title h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: .9rem; }
.section-title p { color: var(--gray-600); font-size: 1.05rem; margin: 0; }
.section-dark .section-title h2,
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-title p { color: rgba(255, 255, 255, .78); }

/* =================================================================
   TENTANG
   ================================================================= */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about-media {
  padding: 2.4rem;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 75, .25);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.office-card-logo {
  width: 88px; height: 88px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(201, 162, 75, .5);
  box-shadow: 0 0 0 6px rgba(201, 162, 75, .1);
  margin-bottom: 1.4rem;
}
.about-media h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 1rem; }
.about-media p { color: rgba(255, 255, 255, .8); }
.check-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .85rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; color: rgba(255, 255, 255, .85); font-size: .92rem; }
.check {
  flex-shrink: 0; display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-900); font-weight: 700; font-size: .8rem;
}
.about-copy p { color: var(--gray-600); }
.quote-panel {
  margin-top: 1.6rem; padding: 1.4rem 1.6rem;
  background: var(--gray-50); border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-sm);
}
.quote-panel strong { display: block; font-family: var(--font-head); color: var(--navy-900); font-size: 1.2rem; margin-bottom: .4rem; }
.quote-panel span { color: var(--gray-600); font-size: .92rem; }

/* =================================================================
   CARD GRID (Layanan & Keunggulan)
   ================================================================= */
.cards-grid { display: grid; gap: 1.4rem; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.advantages-grid { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  padding: 1.9rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 75, .45); }
.card:hover::before { transform: scaleX(1); }

.icon-box {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  font-size: 1.55rem;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--gold-400);
  border-radius: 14px;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(201, 162, 75, .3);
}
.card h3 { font-size: 1.18rem; margin-bottom: .55rem; }
.card p { color: var(--gray-600); font-size: .93rem; margin: 0; }

.service-card.featured {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-color: rgba(201, 162, 75, .45);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255, 255, 255, .78); }
.service-card.featured .icon-box { background: rgba(201, 162, 75, .15); }

/* =================================================================
   CORPORATE LEGAL COUNSEL
   ================================================================= */
.counsel-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.counsel-panel .eyebrow { color: var(--gold-400); }
.counsel-panel h3 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.counsel-panel > p { color: rgba(255, 255, 255, .8); margin-bottom: 1.4rem; }
.counsel-list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .8rem; }
.counsel-list li { position: relative; padding-left: 1.7rem; color: rgba(255, 255, 255, .85); font-size: .95rem; }
.counsel-list li::before { content: "\9878"; position: absolute; left: 0; top: 0; color: var(--gold-400); }

.counsel-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.stat-card {
  padding: 1.5rem 1.3rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(201, 162, 75, .25);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .08); }
.stat-card strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold-400); margin-bottom: .5rem; }
.stat-card span { color: rgba(255, 255, 255, .78); font-size: .88rem; }

/* =================================================================
   VIDEO PROFIL
   ================================================================= */
.video-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 75, .3);
  box-shadow: var(--shadow-md);
  background: var(--navy-900);
}
.video-frame video { width: 100%; aspect-ratio: 16 / 9; height: auto; display: block; object-fit: cover; background: var(--navy-900); }
.video-note .eyebrow { color: var(--gold-500); }
.video-note h3 { font-size: 1.6rem; margin-bottom: .9rem; }
.video-note > p { color: var(--gray-600); }
.mini-list { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .75rem; }
.mini-list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--gray-600); font-size: .93rem; }
.mini-list .dot, .video-note .dot {
  flex-shrink: 0; width: 9px; height: 9px; margin-top: .55rem;
  background: var(--gold-500); border-radius: 50%;
}

/* =================================================================
   LOKASI & MAPS
   ================================================================= */
.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; }
.address-card {
  padding: 2.2rem;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 75, .25);
  box-shadow: var(--shadow-md);
  align-self: start;
}
.address-card h3 { color: var(--white); margin-bottom: 1rem; }
.address-card address { font-style: normal; color: rgba(255, 255, 255, .82); line-height: 1.9; margin-bottom: 1.6rem; }
.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  min-height: 380px;
}
.map-box iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* =================================================================
   KONTAK
   ================================================================= */
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: start; }
.contact-panel {
  padding: 2.2rem;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 75, .25);
  box-shadow: var(--shadow-md);
}
.contact-panel h3 { color: var(--white); margin-bottom: .6rem; }
.contact-panel > p { color: rgba(255, 255, 255, .78); font-size: .92rem; }
.contact-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-icon {
  flex-shrink: 0; display: grid; place-items: center;
  width: 42px; height: 42px; font-size: 1.1rem;
  background: rgba(201, 162, 75, .15); border: 1px solid rgba(201, 162, 75, .35);
  border-radius: 11px;
}
.contact-list li span { display: block; font-size: .74rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-400); margin-bottom: .15rem; }
.contact-list li strong, .contact-list li a { color: rgba(255, 255, 255, .92); font-weight: 500; font-size: .92rem; word-break: break-word; }
.contact-list li a { transition: color .2s var(--ease); }
.contact-list li a:hover { color: var(--gold-300); }
.footer-links li { overflow-wrap: anywhere; }

.contact-form {
  padding: 2.2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: .5rem; }
.contact-form > p { color: var(--gray-600); font-size: .9rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin: 1.4rem 0; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .92rem; color: var(--ink);
  padding: .75rem .9rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, .18);
}
.form-note { color: var(--gray-600); font-size: .82rem; margin-bottom: 1.2rem; }
.form-status {
  min-height: 1.2em;
  margin-top: -.4rem;
  margin-bottom: 1rem;
  color: var(--navy-700);
  font-size: .85rem;
  font-weight: 600;
}

.form-status.error {
  color: #8f2a2a;
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .8); padding-top: 64px; border-top: 3px solid var(--gold-500); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.footer-brand img {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(201, 162, 75, .5);
}
.footer-brand strong { display: block; font-family: var(--font-head); color: var(--white); font-size: 1.1rem; }
.footer-brand span { color: var(--gold-400); font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; }
.footer-col > p { font-size: .9rem; color: rgba(255, 255, 255, .68); }
.footer-col h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 600; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer-links li, .footer-links a { font-size: .89rem; color: rgba(255, 255, 255, .68); transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--gold-300); }

.social-links { display: flex; gap: .7rem; margin-top: 1.3rem; }
.social-links a {
  display: grid; place-items: center; width: 42px; height: 42px; font-size: 1.05rem;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(201, 162, 75, .3);
  border-radius: 11px; transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease);
}
.social-links a:hover { transform: translateY(-3px); background: rgba(201, 162, 75, .18); border-color: var(--gold-400); }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem;
  padding: 22px 0; margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-bottom p { margin: 0; font-size: .82rem; color: rgba(255, 255, 255, .6); }
.footer-tagline { color: var(--gold-400) !important; }

/* =================================================================
   FLOATING WHATSAPP CTA
   ================================================================= */
.floating-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  display: grid; place-items: center;
  width: 58px; height: 58px; font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  animation: pulse 2.6s var(--ease) infinite;
  transition: transform .25s var(--ease);
}
.floating-cta:hover { transform: scale(1.08); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(201, 162, 75, .35), 0 0 0 0 rgba(201, 162, 75, .45); }
  50%      { box-shadow: 0 10px 26px rgba(201, 162, 75, .35), 0 0 0 14px rgba(201, 162, 75, 0); }
}

/* =================================================================
   RESPONSIVE — DESKTOP LARGE
   ================================================================= */
@media (min-width: 1280px) {
  .hero-inner { grid-template-columns: 1.2fr .8fr; }
  .hero-card { padding: 2.4rem; }
  .services-grid, .advantages-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* =================================================================
   ANIMASI REVEAL (fade-in saat scroll)
   ================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE — TABLET & MOBILE
   ================================================================= */
@media (max-width: 1100px) {
  .container { padding-inline: 20px; }
  .nav-menu > li > a { padding: .45rem .55rem; font-size: .86rem; }
  .hero { padding: 136px 0 80px; }
  .hero-inner { gap: 42px; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 460px; margin-inline: auto; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .counsel-grid, .video-grid, .location-grid, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  /* Navbar mobile: menu meluncur */
  .nav-actions { display: none; }
  .menu-toggle { display: flex; }
  .nav {
    min-width: 0;
  }
  .brand {
    min-width: 0;
    max-width: calc(100% - 60px);
  }
  .brand-text strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-menu {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 24px 1.6rem;
    background: rgba(7, 23, 47, .99);
    border-bottom: 1px solid rgba(201, 162, 75, .25);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
    max-height: 0; overflow: hidden;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: max-height .4s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav-menu.open { max-height: 90vh; overflow-y: auto; opacity: 1; transform: none; pointer-events: auto; }
  .nav-menu > li > a { display: block; padding: .85rem .4rem; font-size: 1rem; border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .nav-menu > li > a::after { display: none; }
  .nav-menu > li > a.active { color: var(--gold-400); }
  .nav-menu .mobile-only { display: block; margin-top: 1rem; }
  .nav-menu .mobile-only a { width: 100%; }

  .section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
  .hero h1 { font-size: clamp(1.95rem, 8.2vw, 2.7rem); }
  .hero .lead { font-size: 1rem; }
  .tagline-box { width: 100%; }
  .hero-actions .btn {
    white-space: normal;
    text-align: center;
  }
  .hero-logo-wrap img { width: 170px; height: 170px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .map-box, .map-box iframe { min-height: 320px; }
  .floating-cta { width: 54px; height: 54px; font-size: 1.35rem; right: 16px; bottom: 16px; }
  .services-grid, .advantages-grid, .counsel-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-grid { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  html { font-size: 15px; }
  .container { padding-inline: 16px; }
  .brand-text span { display: none; }
  .site-header .nav { min-height: 68px; }
  .nav-menu { inset: 68px 0 auto 0; }
  .btn {
    width: 100%;
    white-space: normal;
    text-wrap: balance;
    line-height: 1.35;
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .brand-text strong { font-size: .98rem; }
  .hero-card { padding: 1.5rem; }
  .hero-logo-wrap { padding: 1rem; }
  .hero-logo-wrap img { width: 144px; height: 144px; }
  .address-card, .contact-panel, .contact-form, .about-media { padding: 1.4rem; }
  .map-box, .map-box iframe { min-height: 280px; }
}

@media (max-width: 360px) {
  .nav-menu { padding: .85rem 16px 1.2rem; }
  .brand-text strong { font-size: .9rem; }
  .eyebrow { letter-spacing: 1.8px; }
  .hero h1 { font-size: 1.85rem; }
  .floating-cta { width: 50px; height: 50px; }
}

/* Aksesibilitas: hormati preferensi reduce-motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
