/* ===========================================================
   RUMAH BIRU KLINIK — Design System v2
   Primary: #17325A (navy tua), Pastel: #EAF2FB (biru muda)
   Tone: trust-first, warm professional, child healthcare.
   Font: Outfit (display) + Nunito (body) — Google Fonts.
   =========================================================== */

:root {
    /* Navy Primary — heading, button, nav aktif */
    --navy-900: #0f1f38;
    --navy-800: #17325A;
    --navy-700: #1e3f6e;
    --navy-600: #2a5490;

    /* Blue mid — accent links, hover */
    --blue-500: #3b6cb7;
    --blue-400: #5a85c8;
    --blue-soft: #8aaed8;

    /* Pastel backgrounds — section selingan */
    --pastel-100: #EAF2FB;
    --pastel-200: #d4e8f7;
    --pastel-50:  #f3f8fd;

    /* Aksen per kategori — HANYA untuk ikon dalam lingkaran */
    --accent-green:        #2d9e6b;
    --accent-green-tint:   #e6f7f0;
    --accent-orange:       #e07c2a;
    --accent-orange-tint:  #fef0e3;
    --accent-purple:       #7c4db8;
    --accent-purple-tint:  #f2ecfb;
    --accent-teal:         #2899a4;
    --accent-teal-tint:    #e5f5f7;

    /* Warm neutrals */
    --warm-50:  #f7f9fc;
    --warm-100: #eef3f8;

    /* Ink */
    --ink:       #1a2535;
    --ink-soft:  #4a5e72;
    --ink-muted: #8099ae;

    /* Surfaces */
    --bg:       #ffffff;
    --bg-alt:   var(--pastel-50);
    --bg-dark:  var(--navy-900);
    --line:     #cddae8;
    --line-soft: #deeaf4;

    /* Typography — display serif editorial, body sans readable */
    --font-display: 'Playfair Display', 'Outfit', Georgia, serif;
    --font-body:    'Nunito', -apple-system, 'Segoe UI', sans-serif;

    /* Radius — consistent scale */
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   32px;
    --radius-2xl:  40px;
    --radius-pill: 999px;

    /* Shadows — tinted navy */
    --shadow-soft: 0 2px 12px rgba(23, 50, 90, 0.07);
    --shadow-card: 0 6px 28px rgba(23, 50, 90, 0.10);
    --shadow-lift: 0 14px 44px rgba(23, 50, 90, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy-800);
    line-height: 1.2;
    font-weight: 700;
}

a { color: var(--blue-500); }
img { max-width: 100%; display: block; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Eyebrow — max 1 per 3 sections */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-500);
    margin-bottom: 12px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease,
                background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:active { transform: scale(0.98) translateY(1px); }

/* Primary — navy pill */
.btn-primary {
    background: var(--navy-800);
    color: #fff;
    box-shadow: 0 4px 16px rgba(23, 50, 90, 0.28);
}

.btn-primary:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(23, 50, 90, 0.36);
    color: #fff;
}

/* Outline — navy border */
.btn-outline {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--navy-800);
}

.btn-outline:hover {
    background: var(--navy-800);
    color: #fff;
    transform: translateY(-2px);
}

/* Ghost — subtle line */
.btn-ghost {
    background: transparent;
    color: var(--ink-soft);
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--navy-800);
    color: var(--navy-800);
    transform: translateY(-2px);
}

/* White — for dark backgrounds */
.btn-white {
    background: #fff;
    color: var(--navy-800);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    color: var(--navy-800);
}

.btn-block { width: 100%; }

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-soft);
    transition: box-shadow 0.2s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.navbar-brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy-800);
    line-height: 1.15;
}

.navbar-brand-text small {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-soft);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.navbar-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    transition: color 0.15s;
    position: relative;
}

.navbar-links a:hover,
.navbar-links a.active { color: var(--navy-800); }

.navbar-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--navy-800);
    border-radius: 2px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy-800);
    cursor: pointer;
    padding: 4px;
}

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
}

.mobile-nav.open { display: block; }

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 56, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-nav-drawer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 88vw);
    background: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy-800);
    margin-bottom: 20px;
    padding: 4px;
}

.mobile-nav-drawer a:not(.btn) {
    display: block;
    padding: 13px 0;
    color: var(--navy-800);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
    transition: color 0.15s;
}

.mobile-nav-drawer a:not(.btn):hover { color: var(--blue-500); }

.mobile-nav-drawer .btn {
    margin-top: 20px;
    justify-content: center;
}

/* ===== Hero ===== */
.hero {
    padding-top: 72px;
    padding-bottom: 0;
    overflow: hidden;
    min-height: 92dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, var(--pastel-50) 55%, var(--pastel-100) 100%);
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero h1 {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    color: var(--navy-900);
}

.hero h1 em {
    font-style: normal;
    color: var(--navy-700);
    position: relative;
}

.hero p.lead {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 44ch;
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    align-items: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--ink-muted);
    font-weight: 700;
}

.hero-trust-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--pastel-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-trust-icon svg {
    width: 14px;
    height: 14px;
    color: var(--navy-800);
}

/* Hero art */
.hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.hero-art-blob {
    position: absolute;
    inset: 0;
    background: var(--pastel-100);
    border-radius: 62% 38% 46% 54% / 48% 52% 48% 52%;
    z-index: 0;
}

.hero-art img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lift);
}

/* Float badges */
.hero-float {
    position: absolute;
    z-index: 2;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 10px 16px;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--navy-800);
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--line-soft);
}

.hero-float-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-1 { top: 14%; left: -4%; }
.hero-float-2 { bottom: 16%; right: -6%; }

/* Wave divider */
.wave { display: block; width: 100%; line-height: 0; margin-top: 64px; }
.wave svg { width: 100%; height: auto; display: block; }

/* ===== Sections ===== */
section { padding: 96px 0; }

.section-alt   { background: var(--pastel-50); }
.section-pastel { background: var(--pastel-100); }
.section-dark  { background: var(--bg-dark); color: rgba(255,255,255,0.85); }

.section-head { max-width: 580px; margin-bottom: 56px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: 2.1rem; margin-bottom: 12px; line-height: 1.2; }
.section-head p { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.section-head.dark h2 { color: #fff; }
.section-head.dark p { color: rgba(255,255,255,0.72); }

/* Icon circle — aksen per kategori */
.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg { width: 24px; height: 24px; }
.icon-circle.green   { background: var(--accent-green-tint);  color: var(--accent-green); }
.icon-circle.orange  { background: var(--accent-orange-tint); color: var(--accent-orange); }
.icon-circle.purple  { background: var(--accent-purple-tint); color: var(--accent-purple); }
.icon-circle.teal    { background: var(--accent-teal-tint);   color: var(--accent-teal); }
.icon-circle.blue    { background: var(--pastel-100);         color: var(--navy-800); }

/* ===== Layanan — card grid ===== */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-top: 4px;
}

.service-card p {
    color: var(--ink-soft);
    font-size: 0.93rem;
    line-height: 1.72;
    flex: 1;
}

.service-link {
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy-800);
    align-self: flex-start;
    transition: gap 0.15s;
    margin-top: 4px;
}

.service-link:hover { gap: 10px; color: var(--blue-500); }

/* ===== Layanan zigzag (tetap tersedia untuk halaman lain) ===== */
.service-list { display: flex; flex-direction: column; gap: 0; }

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease;
}

.service-row:hover { box-shadow: var(--shadow-lift); }

.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-visual {
    background: var(--pastel-100);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.85;
}

.service-visual-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    box-shadow: var(--shadow-card);
}

.service-visual-icon svg { width: 40px; height: 40px; }

.service-visual.v-green  { background: var(--accent-green-tint); }
.service-visual.v-green .service-visual-icon { color: var(--accent-green); }
.service-visual.v-orange { background: var(--accent-orange-tint); }
.service-visual.v-orange .service-visual-icon { color: var(--accent-orange); }
.service-visual.v-purple { background: var(--accent-purple-tint); }
.service-visual.v-purple .service-visual-icon { color: var(--accent-purple); }
.service-visual.v-teal   { background: var(--accent-teal-tint); }
.service-visual.v-teal .service-visual-icon   { color: var(--accent-teal); }
.service-visual.v-blue   { background: var(--pastel-100); }
.service-visual.v-blue .service-visual-icon   { color: var(--navy-800); }

/* Legacy aliases (backward compat) */
.service-visual.v-terracotta { background: var(--accent-orange-tint); }
.service-visual.v-terracotta .service-visual-icon { color: var(--accent-orange); }
.service-visual.v-sky { background: var(--pastel-100); }
.service-visual.v-sky .service-visual-icon { color: var(--navy-800); }

.service-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service-content p  { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.72; margin-bottom: 24px; }

/* ===== About / keluarga ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image { position: relative; }

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lift);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy-800);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-lift);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
}

.about-badge strong { display: block; font-size: 1.6rem; }

.about-copy h2 { font-size: 2rem; margin-bottom: 16px; }
.about-copy p  { color: var(--ink-soft); margin-bottom: 20px; line-height: 1.75; }

.family-cards { display: grid; gap: 12px; margin-top: 28px; }

.family-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--pastel-50);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    text-decoration: none;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.family-card:hover {
    transform: translateX(4px);
    border-color: var(--navy-800);
    box-shadow: var(--shadow-soft);
}

.family-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--pastel-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.family-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.family-card-title { font-weight: 800; color: var(--navy-800); font-size: 0.92rem; display: block; }
.family-card-sub   { font-size: 0.8rem; color: var(--ink-muted); }

/* ===== Value props — card grid ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.value-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy-800); }
.value-card p  { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.65; }

/* Legacy strip (tetap tersedia) */
.values-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.value-tile {
    background: #fff;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-tile-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--pastel-100);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-tile-icon svg { width: 24px; height: 24px; }
.value-tile h4 { font-size: 1rem; font-weight: 700; }
.value-tile p  { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.6; }

/* ===== CTA Banner ===== */
.cta-banner {
    background: var(--pastel-100);
    border-radius: var(--radius-2xl);
    padding: 72px 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--pastel-200);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: 60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--pastel-200);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 240px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(23, 50, 90, 0.05);
    pointer-events: none;
}

.cta-copy h2 { color: var(--navy-800); font-size: 2rem; margin-bottom: 10px; }
.cta-copy p  { color: var(--ink-soft); font-size: 1rem; max-width: 48ch; line-height: 1.72; }

/* Dark variant */
.cta-banner.dark {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border: none;
}

.cta-banner.dark::before { background: rgba(255,255,255,0.04); }
.cta-banner.dark::after  { background: rgba(255,255,255,0.03); }
.cta-banner.dark .cta-copy h2 { color: #fff; }
.cta-banner.dark .cta-copy p  { color: rgba(255,255,255,0.8); }

/* ===== Footer ===== */
footer.site-footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.65);
    padding: 72px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: contain;
}
.footer-brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
}
.footer-brand-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-soft);
    font-weight: 700;
}

footer.site-footer p { font-size: 0.87rem; line-height: 1.72; }

footer.site-footer h5 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

footer.site-footer ul { list-style: none; }
footer.site-footer ul li { margin-bottom: 10px; }
footer.site-footer ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.15s;
}
footer.site-footer ul li a:hover { color: #fff; }
footer.site-footer ul li:not(:has(a)) { font-size: 0.87rem; line-height: 1.65; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--navy-700); color: #fff; }

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ===== Booking & Admin pages ===== */
.page-header {
    padding: 72px 0 56px;
    text-align: center;
    background: var(--pastel-50);
    border-bottom: 1px solid var(--line-soft);
}

.page-header .eyebrow { margin-bottom: 10px; }
.page-header h1 { font-size: 2.3rem; margin-bottom: 12px; }
.page-header p  { color: var(--ink-soft); font-size: 1.05rem; }

.form-wrap {
    max-width: 640px;
    margin: 52px auto 96px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-card);
}

.form-group { margin-bottom: 22px; }

label {
    display: block;
    margin-bottom: 7px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--navy-800);
}

input, select, textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

input::placeholder, textarea::placeholder { color: var(--ink-muted); }

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--navy-800);
    box-shadow: 0 0 0 3px var(--pastel-100);
}

textarea { resize: vertical; min-height: 96px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.5;
}

.alert-success {
    background: var(--accent-green-tint);
    color: #1a6b47;
    border: 1px solid rgba(45, 158, 107, 0.3);
}
.alert-error {
    background: var(--accent-orange-tint);
    color: #8f3a1e;
    border: 1px solid rgba(224, 124, 42, 0.3);
}
.alert-error ul { margin-left: 18px; margin-top: 8px; font-weight: 600; }

/* ===== Admin ===== */
.admin-wrap { max-width: 1160px; margin: 40px auto 80px; padding: 0 24px; }

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line-soft);
}

th, td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.9rem;
}

th {
    background: var(--pastel-50);
    color: var(--navy-800);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status { padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.76rem; font-weight: 800; display: inline-block; }
.status-pending   { background: #FEF3D6; color: #7A5810; }
.status-confirmed { background: var(--accent-green-tint); color: #1a6b47; }
.status-cancelled { background: var(--accent-orange-tint); color: #8f3a1e; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.6rem; }
    .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 56px 44px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .service-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-art { order: -1; max-width: 360px; margin: 0 auto; padding: 20px; }
    .hero-float-1 { top: 4%; left: 2%; }
    .hero-float-2 { bottom: 4%; right: 2%; }
    .service-row { grid-template-columns: 1fr; }
    .service-row.reverse { direction: ltr; }
    .service-visual { min-height: 200px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { right: 16px; bottom: -16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
    .navbar-links, .navbar-actions { display: none; }
    .navbar-toggle { display: flex; }
    .hero { padding-top: 48px; min-height: auto; }
    .hero h1 { font-size: 2.1rem; }
    .hero p.lead { font-size: 0.97rem; }
    section { padding: 72px 0; }
    .service-cards { grid-template-columns: 1fr; }
    .service-content { padding: 32px 24px; }
    .values-strip { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 44px 24px; border-radius: var(--radius-xl); }
    .cta-banner h2 { font-size: 1.65rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .form-wrap { padding: 32px 22px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
}

:focus-visible { outline: 3px solid var(--blue-soft); outline-offset: 3px; }

/* ===========================================================
   SCROLL ANIMATIONS
   =========================================================== */

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
    from { opacity: 0; transform: translateX(36px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideRight {
    from { opacity: 0; transform: translateX(-36px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes floatBob {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.hero-copy {
    animation: fadeSlideRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-art {
    animation: fadeSlideLeft 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-art img {
    animation: floatBob 5s 1s ease-in-out infinite;
}
.hero-float-1 {
    animation: fadeSlideUp 0.7s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-float-2 {
    animation: fadeSlideUp 0.7s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.scale-in   { transform: scale(0.95) translateY(16px); }
.reveal.visible    { opacity: 1; transform: translate(0, 0) scale(1); }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

@keyframes revealFallback {
    to { opacity: 1; transform: translate(0,0) scale(1); }
}
.reveal, .reveal-stagger > * {
    animation: revealFallback 0s 3s forwards;
}

.navbar.scrolled {
    box-shadow: 0 4px 28px rgba(15, 31, 56, 0.10);
}

/* ===========================================================
   HOME v2 — mengikuti mockup beranda.jpg
   =========================================================== */

/* Squiggle underline pada kata hero */
.wiggle {
    position: relative;
    display: inline-block;
    padding-bottom: 0.12em;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20120%2014'%20preserveAspectRatio='none'%3E%3Cpath%20d='M2%208%20Q%208%202%2014%208%20T%2026%208%20T%2038%208%20T%2050%208%20T%2062%208%20T%2074%208%20T%2086%208%20T%2098%208%20T%20110%208'%20fill='none'%20stroke='%234a90c4'%20stroke-width='5'%20stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 0.2em;
}

/* Hero versi beranda (bg putih, tanpa min-height kaku) */
.hero-home {
    background: #ffffff;
}

.hero-home .hero-copy h1 {
    font-size: 2.9rem;
    max-width: 13ch;
}

.hero-home .hero-art img {
    max-width: 460px;
    border-radius: var(--radius-2xl);
}

/* ===== Feature strip (4 nilai di bawah hero) ===== */
.feature-band {
    padding: 72px 0 88px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    border-top: 1px solid var(--line-soft);
    padding-top: 48px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--navy-700);
    color: var(--navy-800);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.feature-item p {
    font-size: 0.84rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ===== Service cards 4 kolom (mockup beranda) ===== */
.service-cards--4 {
    grid-template-columns: repeat(4, 1fr);
}

.service-cards--4 .service-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
}

.service-card .svc-badge {
    align-self: flex-start;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: var(--pastel-100);
    color: var(--navy-700);
}

.service-card .svc-badge.b-purple {
    background: var(--accent-purple-tint);
    color: var(--accent-purple);
}

.svc-icon-tile {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy-800);
    margin-top: 4px;
}

.svc-icon-tile svg { width: 28px; height: 28px; }
.svc-icon-tile.t-blue   { background: var(--pastel-100); }
.svc-icon-tile.t-green  { background: var(--accent-green-tint); }
.svc-icon-tile.t-orange { background: var(--accent-orange-tint); }
.svc-icon-tile.t-purple { background: var(--accent-purple-tint); }

.service-cards--4 .service-card h3 {
    font-size: 1.08rem;
    line-height: 1.35;
}

/* ===== Why us (grid 2x2 + item lebar) ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 56px;
    max-width: 940px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 46ch;
}

.why-item--wide {
    grid-column: 1 / -1;
}

.why-item--wide p {
    max-width: 62ch;
}

/* ===== Kolaborasi (6 pihak) ===== */
.collab-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 36px 24px;
}

.collab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--navy-800);
}

.collab-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collab-icon svg { width: 24px; height: 24px; }
.collab-icon.c-blue   { background: var(--pastel-100);       color: var(--navy-700); }
.collab-icon.c-teal   { background: var(--accent-teal-tint); color: var(--accent-teal); }
.collab-icon.c-purple { background: var(--accent-purple-tint); color: var(--accent-purple); }
.collab-icon.c-green  { background: var(--accent-green-tint); color: var(--accent-green); }
.collab-icon.c-orange { background: var(--accent-orange-tint); color: var(--accent-orange); }

/* ===== Lokasi (2 kartu) ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.location-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.location-photo { min-height: 0; }
.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.location-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.loc-address {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

.loc-wa {
    margin-top: 14px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--accent-green);
    color: #147a48;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, transform 0.15s;
}

.loc-wa:hover {
    background: var(--accent-green);
    color: #fff;
    transform: translateY(-1px);
}

/* ===== CTA band (pastel full-width, centered) ===== */
.cta-band {
    background: var(--pastel-100);
    text-align: center;
}

.cta-band .container {
    display: flex;
    justify-content: center;
}

.cta-band-inner {
    max-width: 680px;
}

.cta-band-inner h2 {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.cta-band-inner p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ===== Responsive tambahan (home v2) ===== */
@media (max-width: 1024px) {
    .hero-home .hero-copy h1 { font-size: 2.5rem; }
    .service-cards--4 { grid-template-columns: 1fr 1fr; }
    .feature-strip { grid-template-columns: 1fr 1fr; }
    .collab-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .hero-home .hero-art { order: 0; max-width: 420px; }
    .why-grid { gap: 26px 36px; }
}

@media (max-width: 640px) {
    .hero-home .hero-copy h1 { font-size: 2.15rem; }
    .feature-band { padding-top: 48px; }
    .feature-strip { grid-template-columns: 1fr; gap: 22px; padding-top: 36px; }
    .service-cards--4 { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 24px; }
    .collab-list { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: 1fr; }
    .location-card { grid-template-columns: 1fr; }
    .location-photo { aspect-ratio: 16/10; }
    .cta-band-inner h2 { font-size: 1.75rem; }
}

/* ===========================================================
   TENTANG KAMI — mengikuti mockup tentang-kami.jpg
   =========================================================== */

/* Page hero 2 kolom: teks kiri, foto lingkaran kanan */
.about-hero {
    padding-top: 88px;
    min-height: auto;
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.about-hero h1 {
    font-size: 2.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy-900);
    margin-bottom: 22px;
    line-height: 1.18;
}

.about-hero p.lead {
    color: var(--ink-soft);
    font-size: 1.03rem;
    line-height: 1.78;
    max-width: 52ch;
    margin-bottom: 0;
}

.about-hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.about-hero-art::before {
    content: '';
    position: absolute;
    top: 6%;
    right: 0;
    width: 78%;
    height: 86%;
    background: var(--pastel-100);
    border-radius: 50%;
    z-index: 0;
}

.about-hero-art::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42%;
    height: 38%;
    background: var(--pastel-200);
    border-radius: 50%;
    opacity: 0.55;
    z-index: 0;
}

.about-hero-art img {
    position: relative;
    z-index: 1;
    width: min(400px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #fff;
    box-shadow: var(--shadow-lift);
}

/* ===== Aspek pendekatan holistik (grid 6) ===== */
.aspect-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 24px;
}

.aspect-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.aspect-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pastel-100);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aspect-icon svg { width: 28px; height: 28px; }
.aspect-icon.a-green   { background: var(--accent-green-tint);  color: var(--accent-green); }
.aspect-icon.a-orange  { background: var(--accent-orange-tint); color: var(--accent-orange); }
.aspect-icon.a-purple  { background: var(--accent-purple-tint); color: var(--accent-purple); }
.aspect-icon.a-teal    { background: var(--accent-teal-tint);   color: var(--accent-teal); }

.aspect-item span:last-child {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--navy-800);
    line-height: 1.4;
}

.center-action {
    text-align: center;
    margin-top: 52px;
}

/* ===== Lima nilai (grid 5) ===== */
.values-grid--5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.values-grid--5 .value-card {
    padding: 30px 22px;
    align-items: center;
    text-align: center;
    gap: 13px;
}

.values-grid--5 .value-card h4 { font-size: 0.98rem; }
.values-grid--5 .value-card p  { font-size: 0.84rem; }

/* ===== Untuk siapa kami hadir (4 kelompok usia) ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.audience-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    padding: 40px 28px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.audience-card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-4px);
}

.audience-avatar {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-800);
    background: var(--pastel-100);
    margin-bottom: 4px;
}

.audience-avatar svg { width: 46px; height: 46px; }
.audience-avatar.av-green   { background: var(--accent-green-tint); }
.audience-avatar.av-orange  { background: var(--accent-orange-tint); }
.audience-avatar.av-purple  { background: var(--accent-purple-tint); }
.audience-avatar.av-teal    { background: var(--accent-teal-tint); }

.audience-card h4 {
    font-size: 1.08rem;
    font-weight: 700;
}

.audience-card p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ===== Responsive tentang ===== */
@media (max-width: 1024px) {
    .about-hero h1 { font-size: 2.4rem; }
    .aspect-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
    .values-grid--5 { grid-template-columns: repeat(3, 1fr); }
    .audience-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .about-hero .container { grid-template-columns: 1fr; gap: 56px; }
    .about-hero-art { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .about-hero { padding-top: 56px; }
    .about-hero h1 { font-size: 2rem; }
    .about-hero p.lead { font-size: 0.97rem; }
    .aspect-grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
    .aspect-icon { width: 56px; height: 56px; }
    .values-grid--5 { grid-template-columns: 1fr 1fr; }
    .values-grid--5 .value-card { padding: 24px 16px; }
    .audience-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   LAYANAN — mengikuti mockup layanan.jpg
   =========================================================== */

/* Anchor scroll: beri ruang di bawah navbar sticky */
[id] { scroll-margin-top: 96px; }

/* Hero layanan: teks kiri + feature strip di bawahnya */
.svc-hero {
    padding-top: 88px;
    min-height: auto;
}

.svc-hero-copy { max-width: 760px; }

.svc-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy-900);
    margin-bottom: 20px;
    line-height: 1.18;
    max-width: 15ch;
}

.svc-hero p.lead {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.78;
    max-width: 60ch;
    margin-bottom: 56px;
}

.svc-hero .feature-strip {
    border-top: 1px solid var(--line-soft);
    padding-top: 44px;
}

/* ===== Hero layanan: teks kiri + foto kanan + feature 2x2 ===== */
.svc-hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.svc-hero-copy { max-width: none; }

.svc-hero-copy .feature-strip { border-top: none; padding-top: 0; }

.svc-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
    margin-top: 8px;
}

.svc-hero-features .feature-icon {
    width: 40px;
    height: 40px;
}

.svc-hero-features .feature-icon svg { width: 18px; height: 18px; }

.svc-hero-features .feature-item h4 { font-size: 0.9rem; }
.svc-hero-features .feature-item p  { font-size: 0.8rem; }

.svc-hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.svc-hero-blob {
    position: absolute;
    inset: 10% 0 8% 22%;
    background: var(--pastel-100);
    border-radius: 62% 38% 46% 54% / 55% 48% 52% 45%;
    z-index: 0;
}

.svc-hero-art img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lift);
}

/* ===== Banner bantuan memilih layanan ===== */
.consult-strip {
    margin-top: 64px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-2xl);
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.consult-strip h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.consult-strip p {
    color: var(--ink-soft);
    font-size: 0.97rem;
    line-height: 1.7;
    max-width: 56ch;
}

/* ===== Proses layanan (6 langkah) ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.process-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.process-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pastel-100);
    color: var(--navy-800);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-card:nth-child(2n) .step-num { background: var(--accent-green-tint);  color: var(--accent-green); }
.process-card:nth-child(3n) .step-num { background: var(--accent-orange-tint); color: var(--accent-orange); }
.process-card:nth-child(4n) .step-num { background: var(--accent-purple-tint); color: var(--accent-purple); }

.process-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.68;
}

/* ===== Responsive layanan ===== */
@media (max-width: 1024px) {
    .svc-hero h1 { font-size: 2.4rem; }
    .consult-strip { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .svc-hero { padding-top: 64px; }
    .svc-hero .container { grid-template-columns: 1fr; gap: 48px; }
    .svc-hero-art { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .svc-hero h1 { font-size: 2rem; }
    .svc-hero p.lead { margin-bottom: 40px; font-size: 0.97rem; }
    .svc-hero .feature-strip { padding-top: 32px; }
    .consult-strip { padding: 36px 24px; }
    .process-grid { grid-template-columns: 1fr; }
}

/* ===== Kartu layanan bergambar (media cover) ===== */
.svc-media-card {
    padding: 0;
    overflow: hidden;
    gap: 0;
}

.svc-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.svc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.svc-media-card:hover .svc-media img {
    transform: scale(1.06);
}

.svc-media-body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.svc-media-body .svc-badge {
    margin-bottom: 2px;
}

/* ===========================================================
   PENDEKATAN KAMI — mengikuti mockup pendekatan-kami.jpg
   =========================================================== */

/* Hero pendekatan (pola sama dgn layanan: teks + foto) */
.approach-hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.approach-hero h1 {
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.approach-hero p.lead {
    color: var(--ink-soft);
    font-size: 1.03rem;
    line-height: 1.78;
    margin-bottom: 0;
}

/* ===== 6 kartu pendekatan holistik ===== */
.holistic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.holistic-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.holistic-card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-4px);
}

.holistic-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
}

.holistic-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.68;
}

/* ===== Prinsip utama (gambar + 4 poin) ===== */
.prinsip-list {
    display: grid;
    gap: 20px;
    margin-top: 8px;
}

.prinsip-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.prinsip-check {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-green-tint);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prinsip-check svg { width: 20px; height: 20px; }

.prinsip-item strong {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.55;
    padding-top: 8px;
}

/* ===== Bagaimana kami bekerja (6 langkah bernomor) ===== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.work-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.work-card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-4px);
}

.work-num {
    position: absolute;
    top: 18px;
    right: 24px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1;
    color: var(--pastel-200);
    user-select: none;
    pointer-events: none;
}

.work-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    padding-right: 52px;
}

.work-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.68;
    position: relative;
    z-index: 1;
}

/* ===== Responsive pendekatan ===== */
@media (max-width: 1024px) {
    .approach-hero h1 { font-size: 2.35rem; }
    .holistic-grid { grid-template-columns: 1fr 1fr; }
    .work-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .approach-hero .container { grid-template-columns: 1fr; gap: 48px; }
    .approach-hero-art { max-width: 420px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .approach-hero h1 { font-size: 2rem; }
    .approach-hero p.lead { font-size: 0.97rem; }
    .holistic-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .prinsip-list { gap: 16px; }
}

/* ===========================================================
   TIM KAMI — mengikuti mockup tim-kami.jpg
   =========================================================== */
.team-hero {
    padding-top: 88px;
    min-height: auto;
}

.team-hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.team-hero-copy { max-width: none; }

.team-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy-900);
    margin-bottom: 20px;
    line-height: 1.18;
}

.team-hero p.lead {
    color: var(--ink-soft);
    font-size: 1.03rem;
    line-height: 1.78;
    margin-bottom: 0;
}

.team-hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.team-hero-art::before {
    content: '';
    position: absolute;
    inset: 10% 0 8% 22%;
    background: var(--pastel-100);
    border-radius: 62% 38% 46% 54% / 55% 48% 52% 45%;
    z-index: 0;
}

.team-hero-art img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lift);
}

.art-caption {
    position: absolute;
    z-index: 2;
    left: 8%;
    bottom: 6%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    color: var(--navy-800);
    box-shadow: var(--shadow-card);
}

/* Kelompok kategori */
.team-cat {
    margin-top: 64px;
}

.team-cat:first-of-type { margin-top: 0; }

.team-cat-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.team-cat-head .cat-ic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pastel-100);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-cat-head .cat-ic svg { width: 20px; height: 20px; }

.team-cat-head h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.team-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
}

.team-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-4px);
}

.team-photo {
    aspect-ratio: 1 / 1;
    background: var(--pastel-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo .team-initials {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.4rem;
    color: var(--navy-800);
    letter-spacing: 0.02em;
    user-select: none;
}

.team-photo .team-initials small {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-soft);
    display: block;
    text-align: center;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 2px;
}

.team-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-body h3 {
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.35;
}

.team-role {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-700);
    background: var(--pastel-100);
    padding: 5px 11px;
    border-radius: var(--radius-pill);
    margin: 6px 0 8px;
}

.team-body p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.68;
    flex: 1;
}

.team-body .service-link {
    margin-top: 10px;
}

/* ===== Responsive tim ===== */
@media (max-width: 1024px) {
    .team-hero h1 { font-size: 2.4rem; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .team-grid--3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .team-hero .container { grid-template-columns: 1fr; gap: 48px; }
    .team-hero-art { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .team-hero { padding-top: 56px; }
    .team-hero h1 { font-size: 2rem; }
    .team-hero p.lead { font-size: 0.97rem; }
    .team-grid, .team-grid--3, .team-grid--2 { grid-template-columns: 1fr; }
    .team-cat-head h2 { font-size: 1.35rem; }
}

/* ===========================================================
   KONTAK — mengikuti mockup kontak.jpg
   =========================================================== */
.contact-hero {
    padding-top: 88px;
    padding-bottom: 0;
    min-height: auto;
    text-align: center;
}

.contact-hero .container {
    max-width: 780px;
}

.contact-hero h1 {
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy-900);
    margin-bottom: 18px;
    line-height: 1.2;
}

.contact-hero p.lead {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.78;
    margin-bottom: 0;
}

/* Kartu info kontak */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.88rem;
    color: var(--ink-soft);
    text-decoration: none;
    line-height: 1.6;
    word-break: break-word;
}

.contact-info-card a:hover { color: var(--navy-800); }

/* Form + panel kontak */
.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.contact-side h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-side > p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-loc-list {
    display: grid;
    gap: 16px;
}

.contact-loc {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
}

.contact-loc .icon-circle { width: 46px; height: 46px; }
.contact-loc .icon-circle svg { width: 20px; height: 20px; }

.contact-loc h4 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-loc p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-loc .loc-wa { margin-top: 2px; }

.contact-form-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    padding: 40px 40px 44px;
    box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-form-card > p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin-bottom: 26px;
}

/* Peta */
.map-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    background: var(--pastel-100);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
}

.map-frame .icon-circle { width: 64px; height: 64px; margin: 0 auto 16px; }
.map-frame .icon-circle svg { width: 28px; height: 28px; }
.map-frame h4 { font-size: 1.1rem; margin-bottom: 6px; }
.map-frame p { color: var(--ink-soft); font-size: 0.9rem; max-width: 46ch; }

/* ===== Responsive kontak ===== */
@media (max-width: 1024px) {
    .contact-hero h1 { font-size: 2.4rem; }
    .contact-info-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .contact-hero { padding-top: 56px; }
    .contact-hero h1 { font-size: 2rem; }
    .contact-hero p.lead { font-size: 0.97rem; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px 22px; }
    .map-frame { min-height: 260px; }
}

/* Hubungi langsung — daftar baris ikon */
.direct-list {
    display: grid;
    gap: 12px;
}

.direct-row {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

a.direct-row:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.direct-row .icon-circle { width: 44px; height: 44px; }
.direct-row .icon-circle svg { width: 19px; height: 19px; }

.direct-row small {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.direct-row strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-800);
}

.direct-row > svg {
    margin-left: auto;
    color: var(--ink-muted);
    flex-shrink: 0;
}

/* Form: checkbox jangan full width */
input[type="checkbox"] { width: auto; accent-color: var(--navy-800); }

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.form-consent input { margin-top: 3px; }

.form-consent a { color: var(--navy-800); font-weight: 700; }

/* Kartu lokasi + embed peta */
.map-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.map-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.map-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--pastel-100);
    overflow: hidden;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-card-body {
    padding: 30px 30px 34px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.map-card-body .icon-circle { margin-bottom: 6px; }

.map-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.map-card-body p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.65;
    flex: 1;
}

@media (max-width: 640px) {
    .map-cards { grid-template-columns: 1fr; }
    .map-embed { aspect-ratio: 16 / 10; }
    .map-card-body { padding: 24px 22px 28px; }
}
