/*
Theme Name:  Arabia Tour & Travel
Theme URI:   https://arabiatour.co.id
Author:      PT Arabia Nusantama Raya
Author URI:  https://arabiatour.co.id
Description: WordPress theme resmi Arabia Tour & Travel — Digital Trust & Conversion Platform. Paket Umrah, Haji Khusus, dan Tour Mancanegara di Sumatera Barat.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     Proprietary
License URI: https://arabiatour.co.id
Text Domain: arabia-tour
Tags:        travel, umrah, haji, indonesia, rtl-language-support
*/

/* =====================================================================
   ARABIA TOUR & TRAVEL — DESIGN SYSTEM
   Brand Guidelines PT. Arabia Nusantama Raya (ANR 2026)
   Gradient utama: #264A9C → #34BEE8
   ===================================================================== */

:root {
  /* --- Warna resmi brand Arabia --- */
  --color-primary:       #264A9C;
  --color-primary-dark:  #0D1539;
  --color-primary-light: #34BEE8;
  --color-accent:        #34BEE8;
  --color-accent-dark:   #1FA8D4;
  --color-brand-light:   #BFD9F1;
  --color-danger:        #E2013D;
  --color-white:         #FFFFFF;
  --color-ink:           #0D1539;
  --color-grey-50:       #F0F4F7;
  --color-grey-100:      #E4EBF2;
  --color-grey-200:      #D0DCE8;
  --color-grey-300:      #B0C2D4;
  --color-grey-500:      #6B7E90;
  --color-grey-600:      #4E6070;
  --color-success:       #1A7A4A;
  --color-success-bg:    #E4F5ED;
  --color-flag-bg:       #E0EFFA;

  /* --- Tipografi --- */
  --font-heading:   "Montserrat", "Segoe UI", sans-serif;
  --font-secondary: "Exo 2", "Segoe UI", sans-serif;
  --font-body:      "Lato", "Segoe UI", sans-serif;

  /* --- Layout --- */
  --max-width:   1180px;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 8px rgba(11,31,51,.06);
  --shadow:      0 10px 30px rgba(11,31,51,.10);
  --shadow-lg:   0 20px 50px rgba(11,31,51,.16);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-primary-dark);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { color: var(--color-grey-600); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
.section-tight { padding: 40px 0; }

/* =====================================================================
   HEADER & NAVIGASI
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-grey-200);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: var(--max-width); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem;
  color: var(--color-primary-dark);
}
.brand .logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(160deg, var(--color-primary-light), var(--color-primary));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.brand .logo-mark img { width: 28px; height: 28px; object-fit: contain; }
.brand small {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: .62rem; letter-spacing: .12em; color: var(--color-grey-500);
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a,
.main-nav > .has-dropdown > a {
  font-size: .92rem; font-weight: 500; color: var(--color-ink);
  position: relative; padding: 6px 0;
}
.main-nav > a.current-menu-item,
.main-nav > .has-dropdown.current-menu-parent > a {
  color: var(--color-primary); font-weight: 700;
}
.main-nav > a.current-menu-item::after,
.main-nav > .has-dropdown.current-menu-parent > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--color-accent); border-radius: 2px;
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 130%; left: 0; min-width: 220px;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .18s ease; border: 1px solid var(--color-grey-200); z-index: 100;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 9px 12px; border-radius: 8px; font-weight: 500;
  font-size: .88rem; color: var(--color-ink);
}
.dropdown a:hover { background: var(--color-grey-100); color: var(--color-primary); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--color-primary-dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { margin-bottom: 5px; }
.nav-toggle span:nth-child(2) { margin-bottom: 5px; }
.nav-toggle span:nth-child(3) { margin-bottom: 0; }
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(13,21,57,.45); z-index: 200;
}
.nav-overlay.open { display: block; }
.mobile-nav-header, .mobile-nav-footer { display: none; }

/* =====================================================================
   BUTTON & BADGE
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: .92rem;
  padding: 13px 26px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff; box-shadow: 0 8px 20px rgba(38,74,156,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  box-shadow: 0 10px 24px rgba(38,74,156,.45);
}
.btn-outline {
  background: transparent; border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-ghost-white {
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.6); color: #fff;
}
.btn-ghost-white:hover { background: #fff; color: var(--color-primary-dark); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-block { width: 100%; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-grey-100); color: var(--color-primary-dark);
  font-size: .76rem; font-weight: 600; padding: 7px 14px; border-radius: 999px;
}
.badge-accent { background: var(--color-flag-bg); color: var(--color-primary); }
.badge-success { background: var(--color-success-bg); color: var(--color-success); }
.badge-outline { background: transparent; border: 1px solid var(--color-grey-300); color: var(--color-grey-600); }
.eyebrow {
  display: inline-block; font-family: var(--font-secondary); font-weight: 700;
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-primary-light); margin-bottom: 10px;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  background: linear-gradient(155deg, var(--color-primary-light) 0%, var(--color-primary) 48%, var(--color-primary-dark) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.16), transparent 55%);
}
.hero-inner {
  position: relative; z-index: 1; padding: 72px 0 60px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero p.lead {
  color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 480px; margin-bottom: 26px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trustline { display: flex; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-trustline div { font-family: var(--font-heading); }
.hero-trustline strong { display: block; font-size: 1.4rem; color: #fff; }
.hero-trustline span { font-size: .78rem; color: rgba(255,255,255,.78); }
.hero-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1/1; object-fit: cover; width: 100%;
}

.page-hero {
  background: linear-gradient(150deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff; padding: 56px 0 64px; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.breadcrumb a { color: #fff; font-weight: 600; }
.breadcrumb a:hover { color: var(--color-accent); }

/* =====================================================================
   TRUST BAR
   ===================================================================== */
.trust-bar { background: var(--color-grey-50); border-bottom: 1px solid var(--color-grey-200); }
.trust-bar .container {
  display: flex; flex-wrap: wrap; gap: 14px; padding: 18px 20px; justify-content: center;
}

/* =====================================================================
   SECTION HEADER
   ===================================================================== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head.align-left { text-align: left; margin: 0 0 36px; }

/* =====================================================================
   GRID & CARDS
   ===================================================================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--color-grey-200); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-body { padding: 20px; }
.card-tag {
  font-size: .72rem; font-weight: 700; color: var(--color-primary);
  text-transform: uppercase; letter-spacing: .06em;
}

/* Package card */
.package-card .price {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--color-primary-dark);
}
.package-card .price small { font-size: .72rem; font-weight: 500; color: var(--color-grey-500); }
.package-card ul { margin: 12px 0; display: flex; flex-direction: column; gap: 6px; }
.package-card ul li {
  font-size: .84rem; color: var(--color-grey-600);
  display: flex; gap: 8px; align-items: flex-start;
}
.package-card ul li svg {
  width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--color-success);
}
.package-card .card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* Testimoni card */
.testi-card { padding: 22px; }
.testi-card .stars { color: #F5B731; font-size: .85rem; margin-bottom: 10px; letter-spacing: 2px; }
.testi-card > p { font-size: .92rem; color: var(--color-ink); font-style: italic; margin-bottom: 14px; }
.testi-person { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--color-grey-100);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--color-primary); font-family: var(--font-heading); font-size: .85rem;
  flex-shrink: 0; overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-person strong { display: block; font-size: .86rem; }
.testi-person span { font-size: .76rem; color: var(--color-grey-500); }

/* Team card */
.team-card .card-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.team-card .social-row { margin-top: 12px; }

/* =====================================================================
   TIMELINE (itinerary)
   ===================================================================== */
.timeline {
  display: flex; flex-direction: column; gap: 0;
  border-left: 2px solid var(--color-grey-200); margin-left: 12px;
}
.timeline-item { position: relative; padding: 0 0 28px 28px; }
.timeline-item::before {
  content: ""; position: absolute; left: -7px; top: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-primary-light); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-primary-light);
}
.timeline-item h4 { margin-bottom: 4px; font-size: 1rem; }
.timeline-item p { font-size: .86rem; margin: 0; }
.timeline-item .day-tag {
  font-size: .74rem; font-weight: 700; color: var(--color-primary);
  text-transform: uppercase; letter-spacing: .05em;
}

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.faq-item {
  border: 1px solid var(--color-grey-200); border-radius: var(--radius-sm);
  margin-bottom: 10px; overflow: hidden; background: #fff;
}
.faq-item summary {
  cursor: pointer; padding: 16px 18px; font-weight: 600;
  font-family: var(--font-heading); font-size: .95rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.3rem; color: var(--color-primary);
  transition: transform .2s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 18px 18px; font-size: .9rem; color: var(--color-grey-600); }

/* =====================================================================
   STICKY WHATSAPP CTA
   ===================================================================== */
.sticky-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  display: flex; align-items: center; gap: 10px;
  background: #21BD61; color: #fff; padding: 14px 20px; border-radius: 999px;
  box-shadow: var(--shadow-lg); font-family: var(--font-heading);
  font-weight: 600; font-size: .88rem; transition: transform .2s ease;
}
.sticky-wa svg { width: 20px; height: 20px; flex-shrink: 0; }
.sticky-wa:hover { transform: translateY(-2px); }

/* =====================================================================
   FORM
   ===================================================================== */
.form-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 32px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--color-ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--color-grey-200);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .92rem;
  color: var(--color-ink); background: var(--color-grey-50);
  transition: border-color .15s ease, background .15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--color-primary); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .78rem; color: var(--color-grey-500); margin-top: 4px; }

/* =====================================================================
   ORG CHART
   ===================================================================== */
.org-chart { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.org-node {
  background: #fff; border: 1.5px solid var(--color-grey-200);
  border-radius: var(--radius-sm); padding: 10px 22px;
  font-family: var(--font-heading); font-size: .88rem; font-weight: 700;
  color: var(--color-primary-dark); box-shadow: var(--shadow-sm);
}
.org-top { background: var(--color-primary); color: #fff; border-color: var(--color-primary); font-size: .96rem; }
.org-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.org-arrow { font-size: 1.2rem; color: var(--color-grey-300); line-height: 1; }

/* =====================================================================
   CABANG & PARTNER
   ===================================================================== */
.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.branch-card {
  background: #fff; border: 1px solid var(--color-grey-200); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.branch-name { font-family: var(--font-heading); font-weight: 700; font-size: .92rem; color: var(--color-primary-dark); }
.branch-location { font-size: .78rem; color: var(--color-grey-500); margin-top: 2px; }
.branch-address { font-size: .84rem; color: var(--color-grey-600); line-height: 1.5; }
.partner-slot {
  border: 1.5px dashed var(--color-grey-300); border-radius: var(--radius);
  min-height: 80px; display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: var(--color-grey-500); font-weight: 600; text-align: center;
  background: var(--color-grey-50); padding: 16px;
}

/* =====================================================================
   CTA NAVY
   ===================================================================== */
.cta-navy {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 72px 0;
}
.cta-navy h2 { color: #fff; }
.cta-navy p { color: rgba(255,255,255,.82); }

/* =====================================================================
   GALERI GRID
   ===================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(13,21,57,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 32px; height: 32px; color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,.1);
  border: none; color: #fff; font-size: 1.6rem; cursor: pointer;
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* =====================================================================
   JADWAL TABLE
   ===================================================================== */
.jadwal-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.jadwal-table th {
  background: var(--color-primary); color: #fff; padding: 12px 16px; text-align: left;
  font-family: var(--font-heading); font-size: .82rem; font-weight: 700; letter-spacing: .04em;
}
.jadwal-table td { padding: 12px 16px; border-bottom: 1px solid var(--color-grey-100); vertical-align: middle; }
.jadwal-table tr:last-child td { border-bottom: none; }
.jadwal-table tr:hover td { background: var(--color-grey-50); }
.status-badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: .72rem; font-weight: 700;
}
.status-open { background: var(--color-success-bg); color: var(--color-success); }
.status-full { background: #FEE2E2; color: #B91C1C; }
.status-limited { background: #FEF3C7; color: #92400E; }

/* =====================================================================
   BLOG
   ===================================================================== */
.blog-card .card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card .card-body { padding: 20px; }
.blog-meta { font-size: .76rem; color: var(--color-grey-500); margin-bottom: 8px; display: flex; gap: 12px; flex-wrap: wrap; }
.blog-meta time, .blog-meta .cat-link { color: var(--color-primary); font-weight: 600; }
.post-content { line-height: 1.8; }
.post-content h2, .post-content h3 { margin: 28px 0 14px; }
.post-content p { margin-bottom: 16px; }
.post-content ul, .post-content ol { margin: 0 0 16px 20px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content a { color: var(--color-primary); text-decoration: underline; }
.post-content blockquote {
  border-left: 3px solid var(--color-primary-light); margin: 20px 0;
  padding: 12px 20px; background: var(--color-flag-bg); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--color-primary-dark);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--color-primary-dark); color: rgba(255,255,255,.82); padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 40px;
}
.footer-grid h4 { color: #fff; font-size: .88rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul,
.footer-nav-list { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-grid a, .footer-grid p { font-size: .84rem; color: rgba(255,255,255,.68); line-height: 1.5; }
.footer-grid a:hover { color: var(--color-accent); }
/* Pastikan link di footer nav tidak inherit warna h4 */
.footer-nav-list li a { display: block; font-size: .84rem; color: rgba(255,255,255,.68); transition: color .15s ease; padding: 1px 0; }
.footer-nav-list li a:hover { color: var(--color-accent); }
.footer-legal-line { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding: 18px 0;
  text-align: center; font-size: .78rem; color: rgba(255,255,255,.6);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo-mark { background: rgba(255,255,255,.12); }
.footer-brand .brand-name {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: #fff;
}
.footer-brand .brand-name small {
  display: block; font-family: var(--font-body); font-size: .62rem;
  letter-spacing: .12em; color: rgba(255,255,255,.6); font-weight: 500;
}
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; transition: background .15s ease;
}
.social-row a:hover { background: var(--color-accent); }
.social-row svg { width: 16px; height: 16px; }
.social-row.light a { background: var(--color-grey-100); }
.social-row.light svg { color: var(--color-primary-dark); }

/* =====================================================================
   FADE-IN ON SCROLL
   ===================================================================== */
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* =====================================================================
   UTILITIES
   ===================================================================== */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.bg-grey { background: var(--color-grey-50); }
.bg-navy { background: var(--color-primary-dark); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.wp-block-image { margin: 0; }
.wp-caption { margin: 0; }
.screen-reader-text { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* =====================================================================
   RESPONSIVE — 980px (tablet)
   ===================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

/* =====================================================================
   RESPONSIVE — 760px (mobile)
   ===================================================================== */
@media (max-width: 760px) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .main-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 490;
    flex-direction: column; align-items: flex-start;
    padding: 80px 0 40px; gap: 0;
    transform: translateX(110%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,.12);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a,
  .main-nav > .has-dropdown > a {
    display: flex; align-items: center; justify-content: space-between; width: 100%;
    padding: 15px 20px; font-size: 1rem; font-weight: 600;
    border-bottom: 1px solid var(--color-grey-100); color: var(--color-ink);
  }
  .has-dropdown > a::after { content: " ›"; font-size: 1.1rem; float: right; transition: transform .2s; }
  .has-dropdown.open > a::after { transform: rotate(90deg); }
  .nav-cta .btn { font-size: .72rem; padding: 7px 12px; }
  .nav-toggle { display: flex; z-index: 600; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0 16px; display: none; background: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown a { padding: 12px 24px; font-size: .93rem; border-bottom: 1px solid var(--color-grey-100); }
  .mobile-nav-header {
    display: flex; align-items: center; gap: 10px; padding: 20px 20px 16px;
    border-bottom: 1px solid var(--color-grey-200); margin-bottom: 4px;
  }
  .mobile-nav-header .brand-name {
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 800; color: var(--color-primary-dark);
  }
  .mobile-nav-header .brand-name small {
    display: block; font-size: .7rem; font-weight: 500;
    color: var(--color-grey-500); letter-spacing: 1px; text-transform: uppercase;
  }
  .mobile-nav-footer {
    display: flex; flex-direction: column; margin-top: auto;
    padding: 20px 20px 32px; border-top: 1px solid var(--color-grey-100); background: #f7f8fc;
  }
  .mobile-nav-footer .btn { display: block; width: 100%; text-align: center; border-radius: 8px; }
  .mobile-nav-contact {
    margin-top: 14px; display: flex; flex-direction: column;
    gap: 6px; font-size: .82rem; color: var(--color-grey-600);
  }
  .mobile-nav-contact a { color: var(--color-grey-600); display: flex; align-items: center; gap: 6px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 44px 0; }
  .branch-grid { grid-template-columns: 1fr; }
  .jadwal-table { font-size: .8rem; }
  .jadwal-table thead { display: none; }
  .jadwal-table tr { display: block; border: 1px solid var(--color-grey-200); border-radius: 8px; margin-bottom: 10px; padding: 10px; }
  .jadwal-table td { display: block; padding: 4px 6px; }
  .jadwal-table td::before { content: attr(data-label); font-weight: 700; margin-right: 6px; }
  .timeline-item { padding-left: 20px; }
  .sticky-wa { bottom: 16px; right: 16px; }
  .sticky-wa-btn { padding: 10px 14px; font-size: .82rem; }
}
