﻿/* =========================================================
   KONSULTAN PAJAK BANTEN - MASTER STYLESHEET
   Tema: Premium Corporate (Oranye / Merah / Emas / Hitam)
   ========================================================= */

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

:root {
    --primary: #f9961e;
    --accent-red: #dc2626;
    --gold: #d4af37;
    --dark-slate: #111111;
    --text-muted: #555555;
    --bg-ambient: #fffaf5;

    --shadow-premium:
        0 15px 30px rgba(17, 17, 17, 0.02),
        0 35px 70px rgba(17, 17, 17, 0.04),
        0 65px 100px rgba(249, 150, 30, 0.03);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-slate);
    background: #ffffff;
    line-height: 1.75;
    overflow-x: hidden;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 30px; }

section { padding: 110px 0; position: relative; }

img { width: 100%; display: block; height: auto; }

[id] { scroll-margin-top: 130px; }

/* ---------- Badges & Headings ---------- */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.left-heading h2, .center-heading h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.left-heading h2 span, .center-heading h2 span { color: var(--accent-red); }

.center-heading { text-align: center; max-width: 800px; margin: 0 auto 60px; }

/* ---------- Buttons ---------- */
.btn-lux {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-lux.primary { background: var(--accent-red); color: #fff; box-shadow: 0 10px 25px rgba(220,38,38,0.2); }
.btn-lux.primary:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(249,150,30,0.3); }

.btn-lux.outline { border: 2px solid var(--dark-slate); color: var(--dark-slate); background: transparent; }
.btn-lux.outline:hover { background: var(--dark-slate); color: #fff; transform: translateY(-3px); }

.btn-lux.btn-gold-accent { background: var(--gold); color: var(--dark-slate); font-weight: 800; position: relative; overflow: hidden; }
.btn-lux.btn-gold-accent:hover { background: #ffffff; color: var(--dark-slate); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255,255,255,0.15); }

/* =========================================================
   NAVBAR
   ========================================================= */
.main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(17, 17, 17, 0.03);
    transition: var(--transition-smooth);
}

.main-header.scrolled { background: #ffffff; box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06); }

.navbar { height: 90px; display: flex; justify-content: space-between; align-items: center; }
.main-header.scrolled .navbar { height: 75px; }

.navbar-brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.navbar-brand-wrap { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.navbar-logo-img { height: 50px; width: auto; object-fit: contain; transition: var(--transition-smooth); }
.main-header.scrolled .navbar-logo-img { height: 42px; }

.navbar-brand-text { font-size: 19px; font-weight: 800; color: var(--dark-slate); letter-spacing: -0.5px; white-space: nowrap; }
.navbar-brand-text span { color: var(--accent-red); }

.navbar-brand-sub {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 3px;
}

.nav-menu { display: flex; align-items: center; gap: 32px; }

.nav-menu a { font-size: 15px; font-weight: 600; color: var(--dark-slate); text-decoration: none; position: relative; transition: 0.3s; }

.nav-menu > a::after,
.nav-item > a::after {
    content: "";
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--accent-red);
    transition: 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent-red); }

.nav-item { position: relative; list-style: none; }

.nav-caret { display: inline-block; font-size: 10px; margin-left: 4px; color: var(--gold); transition: transform 0.3s ease; vertical-align: middle; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }

.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%; left: 50%;
    min-width: 285px;
    padding: 10px;
    margin: 18px 0 0 -142.5px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.14), 0 40px 90px rgba(249, 150, 30, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
    z-index: 100;
}

.dropdown-menu::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }

.nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.dropdown-menu li { margin: 0; }

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-slate);
    transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}

.dropdown-menu a::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
    transition: opacity 0.25s ease;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover { background: rgba(249, 150, 30, 0.1); color: var(--accent-red); padding-left: 20px; }
.dropdown-menu a:hover::before { opacity: 1; }

/* Language Toggle ID / EN */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.06);
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.lang-toggle:hover { border-color: var(--gold); box-shadow: 0 0 18px rgba(212, 175, 55, 0.25); transform: translateY(-1px); }

.lang-opt { color: rgba(17, 17, 17, 0.35); transition: color 0.3s ease; }
.lang-opt.active { color: var(--accent-red); }
.lang-divider { color: rgba(17, 17, 17, 0.25); font-weight: 500; }

.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 10000; }
.menu-toggle span { display: block; width: 26px; height: 2.5px; background: var(--dark-slate); border-radius: 2px; transition: var(--transition-smooth); }

/* =========================================================
   HERO (DARK)
   ========================================================= */
.srv-hero {
    padding: 210px 0 120px;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.srv-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(21, 21, 21, 0.55), rgba(21, 21, 21, 0.55)),
                url('pabrik-banten.webp') no-repeat center center;
    background-size: cover;
}

.srv-hero::before, .srv-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 1;
}

.srv-hero::before {
    width: 420px; height: 420px;
    background: rgba(212, 175, 55, 0.3);
    top: -140px; right: -120px;
    animation: glowDrift 12s ease-in-out infinite alternate;
}

.srv-hero::after {
    width: 380px; height: 380px;
    background: rgba(220, 38, 38, 0.28);
    bottom: -140px; left: -120px;
}

.srv-hero .container, .srv-hero-content { position: relative; z-index: 2; }
.srv-hero-content { max-width: 800px; }

.srv-hero-badge {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

.srv-hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.srv-hero-content h1 span {
    background: linear-gradient(90deg, var(--gold), var(--primary) 60%);
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 7s linear infinite;
    display: inline-block;
}

.hero-subtitle-text { font-size: 19px; color: rgba(255, 255, 255, 0.85); margin-bottom: 40px; max-width: 660px; }

.hero-action-buttons { display: flex; gap: 15px; }

.srv-hero .btn-lux.outline { border-color: rgba(255, 255, 255, 0.85); color: #ffffff; }
.srv-hero .btn-lux.outline:hover { background: #ffffff; color: var(--dark-slate); border-color: #ffffff; }

.breadcrumb-nav { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.65); margin-bottom: 18px; letter-spacing: 0.5px; }
.breadcrumb-nav a { color: var(--gold); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--primary); }

/* =========================================================
   TRUST METRICS BAR
   ========================================================= */
.trust-metrics-bar {
    background: #ffffff;
    padding: 35px 0;
    border-top: 1px solid rgba(17,17,17,0.05);
    border-bottom: 1px solid rgba(17,17,17,0.05);
}

.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }

.metric-card h3 { font-size: 34px; font-weight: 900; color: var(--accent-red); margin-bottom: 5px; animation: metricGlow 3s ease-in-out infinite; }

.metric-card p {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================================
   TENTANG KAMI SECTION
   ========================================================= */
.about-section { background: var(--bg-ambient); }

.about-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: center; }

.about-showcase { position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-premium); border: 1px solid rgba(249,150,30,0.12); }

.about-desc { color: var(--text-muted); margin-bottom: 25px; font-size: 18px; }

/* =========================================================
   TP DOC SECTION (DARK PREMIUM)
   ========================================================= */
.tpdoc-section {
    background: linear-gradient(160deg, #0c0802 0%, #171310 55%, #0c0802 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.tpdoc-section::before, .tpdoc-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    pointer-events: none;
}

.tpdoc-section::before {
    width: 420px; height: 420px;
    background: rgba(212, 175, 55, 0.35);
    top: -120px; right: -120px;
    animation: glowDrift 12s ease-in-out infinite alternate;
}

.tpdoc-section::after {
    width: 380px; height: 380px;
    background: rgba(220, 38, 38, 0.3);
    bottom: -140px; left: -120px;
}

.tpdoc-section .container { position: relative; z-index: 2; }
.tpdoc-section .center-heading h2 { color: #ffffff; }

.tpdoc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.tpdoc-intro {
    max-width: 820px;
    margin: -30px auto 55px;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.85;
}

.tpdoc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.tpdoc-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 22px;
    padding: 40px 32px;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tpdoc-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.08);
}

.tpdoc-tier {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    padding: 6px 14px;
    margin-bottom: 22px;
}

.tpdoc-icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(249,150,30,0.12));
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 22px;
    animation: iconPulse 3s ease-in-out infinite;
}

.tpdoc-icon svg { width: 27px; height: 27px; }

.tpdoc-card h3 { font-size: 21px; font-weight: 800; color: #ffffff; margin-bottom: 12px; }

.tpdoc-card p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.75; flex: 1; }

.tpdoc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.tpdoc-chip {
    font-size: 12px;
    font-weight: 600;
    color: #f9a24a;
    background: rgba(249, 150, 30, 0.1);
    border: 1px solid rgba(249, 150, 30, 0.28);
    border-radius: 50px;
    padding: 6px 13px;
}

.tpdoc-risk {
    margin-top: 55px;
    background: rgba(220, 38, 38, 0.07);
    border: 1px solid rgba(220, 38, 38, 0.28);
    border-left: 4px solid var(--accent-red);
    border-radius: 16px;
    padding: 28px 34px;
}

.tpdoc-risk-head {
    display: flex; align-items: center; gap: 12px;
    font-size: 18px; font-weight: 800; color: #ffffff;
}

.tpdoc-risk-head svg { width: 22px; height: 22px; color: var(--accent-red); flex-shrink: 0; }

.tpdoc-risk ul {
    list-style: none;
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
}

.tpdoc-risk li {
    position: relative;
    padding-left: 22px;
    color: rgba(255,255,255,0.78);
    font-size: 14.5px;
    line-height: 1.7;
}

.tpdoc-risk li::before {
    content: "";
    position: absolute;
    left: 0; top: 10px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 10px rgba(220,38,38,0.8);
    animation: beacon 1.5s ease-in-out infinite;
}

.tpdoc-solution { margin-top: 70px; }

.tpdoc-solution h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.tpdoc-solution h3 span { color: var(--gold); }

.tpdoc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.tpdoc-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 30px 26px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tpdoc-step:hover { border-color: rgba(212,175,55,0.5); transform: translateY(-5px); }

.tpdoc-step-num {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
    margin-bottom: 18px;
}

.tpdoc-step h5 { font-size: 17px; font-weight: 800; color: #ffffff; margin-bottom: 10px; }

.tpdoc-step p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.7; }

.tpdoc-cta { margin-top: 65px; text-align: center; }

/* =========================================================
   SERVICES GRID (HOME)
   ========================================================= */
.services-section { background: #ffffff; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.service-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(249,150,30,0.08); }

.service-icon-wrap {
    width: 60px; height: 60px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-icon-wrap svg { width: 28px; height: 28px; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }

.service-card:hover .service-icon-wrap { background: rgba(220, 38, 38, 0.08); border-color: rgba(220, 38, 38, 0.2); color: var(--accent-red); transform: scale(1.05); }
.service-card:hover .service-icon-wrap svg { transform: rotate(-12deg) scale(1.15); }

.service-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 15px; color: var(--dark-slate); line-height: 1.3; }

.service-card p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }

.service-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-red);
    text-decoration: none;
    transition: 0.3s;
}

.service-link:hover { color: var(--primary); letter-spacing: 0.5px; }

/* =========================================================
   WORKFLOW SECTION
   ========================================================= */
.workflow-section { background: var(--bg-ambient); position: relative; overflow: hidden; }

.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }

.workflow-grid::before {
    content: "";
    position: absolute;
    top: 35px; left: 40px; right: 40px;
    height: 3px;
    background: repeating-linear-gradient(90deg, rgba(220, 38, 38, 0.9) 0 16px, rgba(249, 150, 30, 0.3) 16px 18px, transparent 18px 34px);
    background-size: 34px 3px;
    animation: lineMarch 1.1s linear infinite;
    z-index: 1;
}

.workflow-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(17,17,17,0.02);
    transition: var(--transition-smooth);
}

.workflow-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 25px 50px rgba(249,150,30,0.1); }

.workflow-step-num {
    width: 54px; height: 54px;
    background: var(--dark-slate);
    color: #ffffff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 25px;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 2px var(--accent-red);
    transition: var(--transition-smooth);
    animation: ringPulse 2.4s ease-in-out infinite;
}

.workflow-card:hover .workflow-step-num { background: var(--accent-red); }

.workflow-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 12px; color: var(--dark-slate); }

.workflow-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* =========================================================
   SOLID CTA (PARALLAX)
   ========================================================= */
.premium-solid-cta {
    background: linear-gradient(rgba(17, 17, 17, 0.68), rgba(17, 17, 17, 0.68)),
                url('ikhwan-konsultan.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.cta-container h2 { font-size: 40px; font-weight: 900; margin-bottom: 20px; color: #ffffff; letter-spacing: -0.5px; }

.cta-container p { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 650px; margin: 0 auto 35px; line-height: 1.8; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-section { background: var(--bg-ambient); }

.faq-wrapper { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(17, 17, 17, 0.04);
    box-shadow: 0 10px 28px rgba(17, 17, 17, 0.07), 0 28px 70px rgba(17, 17, 17, 0.05);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--gold), var(--accent-red));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.faq-item:hover { border-color: var(--primary); background: linear-gradient(180deg, #ffffff, #fff7ec); transform: translateY(-5px) scale(1.005); }

.faq-item.active { border-color: var(--gold); background: linear-gradient(180deg, #ffffff, #fffaf0); }

.faq-item:hover::before, .faq-item.active::before { transform: scaleY(1); }

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    text-align: left;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    color: var(--dark-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.35s ease;
}

.faq-trigger:hover, .faq-item.active .faq-trigger { color: var(--accent-red); }

.faq-icon { font-size: 20px; color: var(--accent-red); transition: var(--transition-smooth); }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    padding: 0 30px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-content { max-height: 1000px; padding-bottom: 24px; }

.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }

/* =========================================================
   CLIENTS MARQUEE
   ========================================================= */
.clients-section { background: #ffffff; padding: 80px 0; border-bottom: 1px solid rgba(17,17,17,0.05); }

.carousel-container { width: 100%; overflow: hidden; position: relative; }

.carousel-track { display: flex; gap: 60px; width: max-content; animation: scrollInfinite 25s linear infinite; align-items: center; }

.carousel-track:hover { animation-play-state: paused; }

.carousel-item {
    width: 170px; height: 64px;
    object-fit: contain;
    filter: saturate(1.1) contrast(1.02);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.carousel-item:hover { transform: scale(1.1); filter: saturate(1.3) drop-shadow(0 0 14px rgba(249, 150, 30, 0.45)); }

@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.lux-footer {
    background: linear-gradient(rgba(12, 8, 2, 0.82), rgba(12, 8, 2, 0.88)),
                url('gedung.jpg') no-repeat center center;
    background-size: cover;
    color: rgba(255, 255, 255, 0.73);
    padding: 100px 0 30px;
    font-size: 16px;
    border-top: 3px solid var(--primary);
    position: relative;
}

.footer-grid { display: grid; grid-template-columns: 1.35fr 0.75fr 1.9fr 1fr; gap: 60px; position: relative; z-index: 2; }

.footer-col h3 { color: #ffffff; font-size: 18px; font-weight: 700; margin-bottom: 25px; position: relative; }

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: -8px; left: 0;
    width: 40px; height: 2px;
    background: var(--primary);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 14px; }

.footer-links a { color: rgba(255, 255, 255, 0.73); text-decoration: none; transition: 0.3s; position: relative; }

.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.contact-list { list-style: none; }
.contact-list li { margin-bottom: 15px; display: flex; gap: 10px; line-height: 1.6; }

.contact-list a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
.contact-list a:hover { color: var(--primary); }

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 13px;
    position: relative;
    z-index: 2;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 999; display: flex; align-items: center; text-decoration: none; }

.wa-float .wa-btn {
    position: relative;
    width: 62px; height: 62px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-red) 100%);
    box-shadow: 0 10px 30px rgba(249, 150, 30, 0.4);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    animation: waFloat 3.5s ease-in-out infinite;
}

.wa-float .wa-btn::before, .wa-float .wa-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(249, 150, 30, 0.55);
    animation: waRing 2.4s ease-out infinite;
}

.wa-float .wa-btn::after { animation-delay: 1.2s; }

.wa-float .wa-btn svg { width: 32px; height: 32px; fill: #ffffff; position: relative; z-index: 1; }

.wa-float:hover .wa-btn, .wa-float:focus-visible .wa-btn {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 14px 40px rgba(220, 38, 38, 0.5);
}

.wa-float .wa-tip {
    position: relative;
    margin-right: 12px;
    background: #ffffff;
    color: #1c1c1c;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateX(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.wa-float .wa-tip::after {
    content: "";
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: #ffffff;
}

.wa-float:hover .wa-tip, .wa-float:focus-visible .wa-tip { opacity: 1; transform: translateX(0); }

/* =========================================================
   HALAMAN DETAIL LAYANAN
   ========================================================= */

/* Intro Split: teks + panel cakupan */
.intro-split { background: #ffffff; }

.intro-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: start; }

.intro-layout h2 { font-size: 32px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 22px; }
.intro-layout h2 span { color: var(--accent-red); }

.intro-layout p { color: var(--text-muted); font-size: 16.5px; margin-bottom: 18px; }

.scope-panel {
    background: var(--bg-ambient);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: var(--shadow-premium);
}

.scope-panel h3 { font-size: 19px; font-weight: 800; margin-bottom: 22px; }

.scope-panel ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.scope-panel li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-slate);
    line-height: 1.55;
}

.scope-panel li svg { width: 20px; height: 20px; color: var(--accent-red); flex-shrink: 0; margin-top: 2px; }

/* Katalog kartu layanan (services.html & scope grid di halaman detail) */
.catalog-section { background: #ffffff; }
.catalog-section .center-heading p { margin-top: 15px; font-size: 16px; color: var(--text-muted); }

.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.srv-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 42px 34px;
    border: 1px solid rgba(17, 17, 17, 0.04);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.srv-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.srv-card:hover { transform: translateY(-8px); border-color: rgba(249, 150, 30, 0.25); box-shadow: 0 25px 50px rgba(249, 150, 30, 0.1); }
.srv-card:hover::before { transform: scaleX(1); }

.srv-icon-wrap {
    width: 62px; height: 62px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 26px;
    transition: var(--transition-smooth);
}

.srv-card:hover .srv-icon-wrap { background: rgba(220, 38, 38, 0.08); border-color: rgba(220, 38, 38, 0.2); color: var(--accent-red); transform: scale(1.06); }

.srv-icon-wrap svg { width: 28px; height: 28px; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
.srv-card:hover .srv-icon-wrap svg { transform: rotate(-10deg) scale(1.12); }

.srv-card h3 { font-size: 21px; font-weight: 800; color: var(--dark-slate); margin-bottom: 14px; letter-spacing: -0.3px; }

.srv-card .srv-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 8px; }

.srv-output-list {
    list-style: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.srv-output-list li { font-size: 13.5px; font-weight: 600; color: var(--dark-slate); display: flex; align-items: center; gap: 10px; }
.srv-output-list li::before { content: "\2726"; color: var(--accent-red); flex-shrink: 0; }

.srv-card .btn-lux { width: 100%; margin-top: auto; }

/* Metodologi */
.methodology-section { background: var(--bg-ambient); }

.methodology-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }

.method-card {
    position: relative;
    background: #ffffff;
    padding: 38px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(17, 17, 17, 0.02);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.method-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--accent-red));
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition-smooth);
}

.method-card:hover { transform: translateY(-6px); }
.method-card:hover::before { transform: scaleY(1); }

.method-step { font-size: 13px; font-weight: 900; color: var(--accent-red); margin-bottom: 10px; display: block; letter-spacing: 1.5px; }

.method-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--dark-slate); }

.method-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Strip harga transparan */
.price-note {
    background: linear-gradient(120deg, #14100a, #1d160c);
    color: #ffffff;
    text-align: center;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.price-note h3 { font-size: 26px; font-weight: 900; margin-bottom: 14px; }
.price-note h3 span { color: var(--gold); }
.price-note p { color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto 28px; font-size: 15.5px; }

/* =========================================================
   FORMULIR (form.html)
   ========================================================= */
.form-section { background: var(--bg-ambient); }

.form-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: start; }

.form-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 50px 44px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--dark-slate);
    margin-bottom: 8px;
}

.form-group label em { color: var(--accent-red); font-style: normal; }

.form-control {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid rgba(17, 17, 17, 0.12);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark-slate);
    background: #fffdfa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(249, 150, 30, 0.12);
}

textarea.form-control { resize: vertical; min-height: 130px; }

select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f9961e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 18px; }

.form-hint { font-size: 13px; color: var(--text-muted); margin-top: 16px; }

.form-status {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.18);
    color: var(--accent-red);
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.form-status.show { display: block; }

.info-stack { display: flex; flex-direction: column; gap: 24px; }

.info-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.05);
    border-radius: 20px;
    padding: 32px 30px;
    box-shadow: var(--shadow-premium);
}

.info-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 16px; }

.info-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

.info-card .contact-list li { font-size: 14.5px; }

.info-card.dark-info { background: linear-gradient(150deg, #14100a, #20180d); border: 1px solid rgba(212, 175, 55, 0.25); }
.info-card.dark-info h4 { color: #ffffff; }
.info-card.dark-info p { color: rgba(255,255,255,0.72); }

/* =========================================================
   KONSULTAN (consultants.html)
   ========================================================= */
.team-section { background: #ffffff; }

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

.consultant-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.consultant-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 25px 50px rgba(249, 150, 30, 0.12); }

.consultant-photo { aspect-ratio: 4 / 4.4; overflow: hidden; background: #f4ede2; }
.consultant-photo img { width: 100%; height: 100%; object-fit: cover; }

.consultant-body { padding: 30px 28px 34px; display: flex; flex-direction: column; flex: 1; }

.consultant-role {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-red);
    background: rgba(220, 38, 38, 0.07);
    border: 1px solid rgba(220, 38, 38, 0.16);
    border-radius: 50px;
    padding: 5px 13px;
    margin-bottom: 14px;
}

.consultant-body h3 { font-size: 18px; font-weight: 800; line-height: 1.4; margin-bottom: 4px; }

.consultant-body .cons-cred { font-size: 12.5px; font-weight: 700; color: var(--gold); letter-spacing: 0.4px; margin-bottom: 14px; }

.consultant-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.leader-section { background: var(--bg-ambient); }

.leader-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }

.leader-photo { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-premium); border: 1px solid rgba(249,150,30,0.12); }

.leader-content h2 { font-size: 30px; font-weight: 900; line-height: 1.35; letter-spacing: -0.4px; margin-bottom: 8px; }

.leader-content .leader-title { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }

.leader-content p { color: var(--text-muted); font-size: 16.5px; margin-bottom: 18px; }

.cred-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 30px; }

.cred-list li {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dark-slate);
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    padding: 7px 15px;
}

/* =========================================================
   ARTIKEL (articles.html)
   ========================================================= */
.blog-section { background: #ffffff; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.blog-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.04);
    border-radius: 24px;
    padding: 42px 34px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.blog-card:hover { transform: translateY(-8px); border-color: rgba(249, 150, 30, 0.3); box-shadow: 0 25px 50px rgba(249, 150, 30, 0.12); }

.blog-thumb { margin: -42px -34px 24px; }
.blog-thumb img { width: 100%; height: 190px; object-fit: cover; display: block; }

.blog-date {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
.blog-card h3 a:hover { color: var(--primary); }

.blog-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.blog-more { margin-top: auto; font-size: 14px; font-weight: 700; color: var(--accent-red); text-decoration: none; transition: 0.3s; }
.blog-more:hover { color: var(--primary); letter-spacing: 0.5px; }

.blog-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 60px; }

.page-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 6px;
    border-radius: 12px;
    border: 1px solid #e6ddcd;
    background: #ffffff;
    color: #4a463d;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: #ffffff; border-color: transparent; box-shadow: 0 6px 18px rgba(249, 150, 30, 0.35); }
.page-btn.disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.page-ellipsis { color: #9b9487; font-size: 15px; padding: 0 4px; user-select: none; }

/* =========================================================
   ANIMASI & MICRO-EFFECTS
   ========================================================= */

/* Gradient text bergerak */
.left-heading h2 span, .center-heading h2 span {
    background: linear-gradient(90deg, var(--accent-red), var(--gold) 30%, var(--primary) 55%, var(--accent-red) 80%);
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 7s linear infinite;
    display: inline-block;
}

@keyframes gradientShift { to { background-position: 280% 0; } }

@keyframes glowDrift { to { transform: translate(-30px, 30px) scale(1.15); } }

.main-header { animation: navbarSlide 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes navbarSlide { from { transform: translateY(-110%); } to { transform: translateY(0); } }

.btn-lux.primary { animation: btnGlow 2.6s ease-in-out infinite; }
@keyframes btnGlow {
    0%, 100% { box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2); }
    50% { box-shadow: 0 12px 40px rgba(249, 150, 30, 0.45); transform: translateY(-2px); }
}

@keyframes metricGlow {
    0%, 100% { text-shadow: 0 0 0 rgba(220, 38, 38, 0); }
    50% { text-shadow: 0 0 18px rgba(249, 150, 30, 0.45), 0 6px 30px rgba(220, 38, 38, 0.3); }
}

.premium-badge, .tpdoc-badge { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease; }
.premium-badge:hover, .tpdoc-badge:hover { transform: scale(1.06); box-shadow: 0 8px 25px rgba(249, 150, 30, 0.25); }

/* Sheen sweep pada kartu */
.service-card::after, .tpdoc-card::after, .tpdoc-step::after, .srv-card::after, .blog-card::after, .consultant-card::after {
    content: "";
    position: absolute;
    top: 0; left: -130%;
    width: 55%; height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.service-card:hover::after, .tpdoc-card:hover::after, .tpdoc-step:hover::after, .srv-card:hover::after, .blog-card:hover::after, .consultant-card:hover::after { left: 140%; }

@keyframes lineMarch { to { background-position: 34px 0; } }

@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 2px var(--accent-red); }
    50% { box-shadow: 0 0 0 2px var(--accent-red), 0 0 22px rgba(220, 38, 38, 0.5); }
}

.btn-gold-accent::after {
    content: "";
    position: absolute;
    top: 0; left: -130%;
    width: 50%; height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.75), transparent);
    transform: skewX(-18deg);
    animation: sheenSweep 3.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sheenSweep {
    0% { transform: translateX(-120%); }
    55%, 100% { transform: translateX(120%); }
}

.premium-solid-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.07) 50%, transparent 80%);
    background-size: 250% 250%;
    animation: bgSweep 9s linear infinite;
    pointer-events: none;
}

@keyframes bgSweep { 0% { background-position: 0% 50%; } 100% { background-position: 250% 50%; } }

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 0 26px rgba(212, 175, 55, 0.4); }
}

@keyframes beacon {
    0%, 100% { box-shadow: 0 0 6px rgba(220, 38, 38, 0.6); }
    50% { box-shadow: 0 0 18px rgba(220, 38, 38, 1); }
}

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

@keyframes waRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* Scroll Reveal System */
.reveal { opacity: 0; will-change: transform, opacity; }
.reveal.reveal-up { transform: translateY(45px); }
.reveal.reveal-down { transform: translateY(-45px); }
.reveal.reveal-left { transform: translateX(-55px); }
.reveal.reveal-right { transform: translateX(55px); }
.reveal.reveal-scale { transform: scale(0.85); }
.reveal.reveal-blur { filter: blur(10px); transform: translateY(30px); }

.reveal.in-view {
    opacity: 1;
    transform: none;
    filter: none;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199px) {
    .services-grid, .srv-grid, .blog-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .tpdoc-steps { grid-template-columns: repeat(2, 1fr); }

    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; left: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: #ffffff;
        box-shadow: 20px 0 60px rgba(0,0,0,0.08);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px;
        gap: 25px;
        transition: var(--transition-smooth);
    }
    .nav-menu.active { left: 0; }

    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    .lang-toggle { padding: 7px 12px; font-size: 12px; margin-right: 12px; }

    .nav-item { width: 100%; }
    .nav-caret { margin-left: 8px; }

    .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        border: 0;
        transition: max-height 0.35s ease, opacity 0.35s ease, margin 0.35s ease, padding 0.35s ease, visibility 0.35s;
    }

    .nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu { opacity: 0; visibility: hidden; max-height: 0; }

    .nav-item.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 480px;
        margin: 10px 0 0 0;
        padding: 8px;
        background: rgba(249, 150, 30, 0.04);
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .nav-item.open .nav-caret { transform: rotate(180deg); }
    .dropdown-menu a { padding: 9px 12px; }
}

@media (max-width: 991px) {
    section { padding: 90px 0; }

    .about-layout, .leader-layout { grid-template-columns: 1fr; text-align: center; }
    .leader-content .cred-list, .hero-action-buttons { justify-content: center; }

    .intro-layout, .form-layout { grid-template-columns: 1fr; }

    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }

    .workflow-grid, .methodology-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .workflow-grid::before { display: none; }

    .tpdoc-grid { grid-template-columns: 1fr; }
    .tpdoc-risk ul { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    section { padding: 70px 0; }
    .container { padding: 0 20px; }

    .srv-hero { padding: 160px 0 80px; }
    .srv-hero-content h1 { font-size: 34px; }
    .left-heading h2, .center-heading h2, .cta-container h2 { font-size: 28px; }

    .hero-action-buttons { flex-direction: column; align-items: stretch; }
    .services-grid, .srv-grid, .workflow-grid, .methodology-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
    .tpdoc-steps { grid-template-columns: 1fr; }
    .tpdoc-solution h3 { font-size: 24px; }
    .tpdoc-intro { font-size: 15.5px; }

    .form-card { padding: 36px 26px; }
    .form-row { grid-template-columns: 1fr; }

    .navbar-brand-text { font-size: 16px; }
    .navbar-brand-sub { font-size: 8.5px; letter-spacing: 2.5px; }
    .navbar-logo-img { height: 40px; }

    .wa-float { right: 16px; bottom: 16px; }
    .wa-float .wa-btn { width: 56px; height: 56px; }
    .wa-float .wa-btn svg { width: 28px; height: 28px; }
    .wa-float .wa-tip { display: none; }
}

@media (max-width: 575px) {
    .metrics-grid { grid-template-columns: 1fr 1fr; }
    .blog-pagination { gap: 6px; margin-top: 40px; }
    .page-btn { min-width: 40px; height: 40px; font-size: 13px; border-radius: 10px; }
}

/* Aksesibilitas: matikan animasi bila diminta pengguna */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001s !important;
    }
    html { scroll-behavior: auto; }
}

/* Footer office flex + map */
.office-flex { display: flex; align-items: stretch; gap: 24px; }
.office-flex .contact-list { flex: 1 1 46%; min-width: 0; }
.footer-map {
    flex: 1 1 54%;
    min-width: 230px;
    min-height: 185px;
    border: 0;
    border-radius: 16px;
}
@media (max-width: 992px) {
    .office-flex { flex-direction: column; }
    .footer-map { flex-basis: auto; width: 100%; height: 210px; }
}
/* =========================================================
   POPUP UNDANGAN WHATSAPP (PREMIUM)
   ========================================================= */
.wa-popup {
    position: fixed;
    right: 104px;
    bottom: 30px;
    width: min(348px, calc(100vw - 32px));
    z-index: 9998;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(26,22,15,0.97), rgba(14,12,9,0.99));
    border: 1px solid rgba(212,175,55,0.30);
    box-shadow: 0 28px 70px rgba(0,0,0,0.50), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.94);
    transform-origin: bottom right;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0s linear 0.5s;
}
.wa-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.wa-popup-glow {
    position: absolute;
    top: -70px; right: -60px;
    width: 190px; height: 190px;
    background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 65%);
    pointer-events: none;
}
.wa-popup-close {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    display: grid; place-items: center;
    font-size: 20px;
    line-height: 1;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.wa-popup-close:hover { color: #ffffff; background: rgba(220,38,38,0.55); transform: rotate(90deg); }
.wa-popup-head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.wa-popup-head img {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}
.wa-popup-id strong { display: block; color: #ffffff; font-size: 15.5px; letter-spacing: 0.2px; }
.wa-popup-status { display: inline-flex; align-items: center; gap: 7px; margin-top: 3px; }
.wa-popup-status i {
    width: 8px; height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: waPulseDot 1.8s ease-out infinite;
}
@keyframes waPulseDot {
    0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.55); }
    100% { box-shadow: 0 0 0 9px rgba(46,204,113,0); }
}
.wa-popup-status em { font-style: normal; font-size: 12.5px; color: #2ecc71; }
.wa-popup-msg {
    position: relative;
    margin: 0 0 18px;
    padding: 13px 16px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px 16px 16px 16px;
}
.wa-popup-msg::before {
    content: "";
    position: absolute;
    left: -6px; top: 0;
    width: 12px; height: 12px;
    background: inherit;
    border-left: inherit;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.wa-popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    color: #171310 !important;
    text-decoration: none;
    background: linear-gradient(120deg, var(--gold), var(--primary));
    box-shadow: 0 12px 28px rgba(249,150,30,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.wa-popup-cta svg { width: 19px; height: 19px; flex: 0 0 auto; }
.wa-popup-cta:hover {
    transform: translateY(-3px);
    filter: brightness(1.07);
    box-shadow: 0 18px 38px rgba(249,150,30,0.45);
}
@media (max-width: 576px) {
    .wa-popup {
        right: 16px;
        left: 16px;
        bottom: 96px;
        width: auto;
        transform-origin: bottom center;
    }
}
@media (prefers-reduced-motion: reduce) {
    .wa-popup,
    .wa-popup.show,
    .wa-popup-cta,
    .wa-popup-close { transition: none; animation: none; }
}

/* =========================================================
   TIM INTI - ELITE CARDS (PREMIUM)
   ========================================================= */
.elite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}
.elite-card {
    position: relative;
    padding: 0 28px 32px;
    text-align: center;
    border-radius: 26px;
    background: linear-gradient(168deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012));
    border: 1px solid rgba(212,175,55,0.16);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
                border-color 0.4s ease,
                box-shadow 0.5s ease,
                background 0.4s ease;
}
.elite-card::before {
    content: "";
    position: absolute;
    top: 0; left: 18%;
    width: 64%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--primary), transparent);
    opacity: 0.55;
}
.elite-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212,175,55,0.45);
    background: linear-gradient(168deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,175,55,0.08) inset;
}
.elite-num {
    position: absolute;
    top: 14px; left: 20px;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,175,55,0.30);
    letter-spacing: 2px;
    pointer-events: none;
}
.elite-photo-wrap {
    position: relative;
    width: 158px; height: 158px;
    margin: 46px auto 20px;
}
.elite-photo-wrap::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    background: conic-gradient(from 140deg,
        transparent 0deg,
        var(--gold) 80deg,
        var(--primary) 170deg,
        transparent 290deg,
        transparent 360deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
            mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.elite-photo-wrap::after {
    content: "";
    position: absolute;
    inset: -34px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 62%);
    pointer-events: none;
}
.elite-card:hover .elite-photo-wrap::before { transform: rotate(160deg); }
.elite-photo {
    position: relative;
    z-index: 1;
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    background:
        radial-gradient(circle at 50% 22%, rgba(212,175,55,0.14), transparent 58%),
        #171310;
    border: 3px solid rgba(212,175,55,0.38);
    box-shadow: 0 16px 36px rgba(0,0,0,0.42);
}
.elite-role {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.30);
}
.elite-card h4 {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 12px;
}
.elite-card p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.62);
    margin-bottom: 18px;
}
.elite-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.elite-tags span {
    padding: 5px 13px;
    border-radius: 999px;
    font-size: 12px;
    color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.elite-card:hover .elite-tags span {
    color: var(--gold);
    border-color: rgba(212,175,55,0.35);
    background: rgba(212,175,55,0.06);
}
@media (max-width: 992px) { .elite-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .elite-grid { grid-template-columns: 1fr; } }

.elite-card p.elite-quote {
    display: block;
    visibility: visible;
    opacity: 1;
    font-style: italic;
    font-size: 13.5px;
    line-height: 1.75;
    letter-spacing: 0.2px;
    color: #e8c96a;
    margin: -2px auto 16px;
    max-width: 250px;
    position: relative;
    z-index: 1;
}

/* Jaminan: seluruh teks dalam kartu Tim Inti selalu terlihat */
.elite-card h4,
.elite-card p,
.elite-card span:not(.elite-num) {
    display: revert;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
    filter: none;
}
.elite-card h4 { display: block; }
.elite-card p { display: block; }
/* Fallback nomor kartu bila browser tak dukung text-stroke */
@supports not (-webkit-text-stroke: 1px black) {
    .elite-num { color: rgba(212,175,55,0.28); }
}

/* =========================================================
   TIM INTI - KARTU TEMA TERANG (FONT HITAM)
   ========================================================= */
.elite-card {
    background: linear-gradient(168deg, #ffffff 0%, #faf6ec 100%);
    border-color: rgba(23,19,16,0.10);
    box-shadow: 0 18px 44px rgba(23,19,16,0.10);
}
.elite-card:hover {
    background: linear-gradient(168deg, #ffffff 0%, #fffdf7 100%);
    border-color: rgba(212,175,55,0.55);
    box-shadow: 0 30px 60px rgba(23,19,16,0.16);
}
.elite-card::before {
    opacity: 1;
    left: 12%;
    width: 76%;
}
.elite-num {
    color: transparent;
    -webkit-text-stroke: 1px rgba(212,175,55,0.55);
}
@supports not (-webkit-text-stroke: 1px black) {
    .elite-num { color: rgba(212,175,55,0.40); }
}
.elite-photo-wrap::after {
    background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 62%);
}
.elite-photo {
    border-color: rgba(212,175,55,0.55);
    background:
        radial-gradient(circle at 50% 22%, rgba(212,175,55,0.20), transparent 58%),
        #f2ead8;
    box-shadow: 0 14px 30px rgba(23,19,16,0.18);
}
.elite-role {
    color: #7c6118;
    background: rgba(212,175,55,0.13);
    border-color: rgba(212,175,55,0.42);
}
.elite-card h4 {
    color: #171310;
}
.elite-card p {
    color: #3c362c;
}
.elite-card p.elite-quote {
    color: #7c6118;
}
.elite-tags span {
    color: #55492e;
    background: #f5efe1;
    border-color: rgba(23,19,16,0.10);
}
.elite-card:hover .elite-tags span {
    color: #7c6118;
    border-color: rgba(212,175,55,0.50);
    background: rgba(212,175,55,0.12);
}

/* =========================================================
   FORMULIR KONSULTASI - PREMIUM LUXURY UPGRADE
   ========================================================= */
.form-layout {
    position: relative;
    padding: 38px 34px;
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
    border: 1px solid rgba(212,175,55,0.20);
    box-shadow: 0 30px 70px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}
.form-layout::before {
    content: "";
    position: absolute;
    top: 0; left: 15%;
    width: 70%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--primary), transparent);
    opacity: 0.7;
}
.form-layout > h3 {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
}
.form-layout > h3::after {
    content: "";
    display: block;
    width: 58px; height: 2px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}
#consultForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    margin-top: 22px;
}
#consultForm > *:nth-child(n+9) { grid-column: 1 / -1; }
#consultForm label {
    align-self: end;
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #cbb26a !important;
    margin-bottom: 2px !important;
}
#consultForm input,
#consultForm select,
#consultForm textarea {
    width: 100%;
    padding: 13px 16px;
    font-size: 14.5px;
    color: #ffffff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
#consultForm input::placeholder,
#consultForm textarea::placeholder { color: rgba(255,255,255,0.32); }
#consultForm input:hover,
#consultForm select:hover,
#consultForm textarea:hover { border-color: rgba(212,175,55,0.40); }
#consultForm input:focus,
#consultForm select:focus,
#consultForm textarea:focus {
    border-color: var(--gold);
    background: rgba(212,175,55,0.06);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
    transform: translateY(-1px);
}
#consultForm select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23d4af37' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}
#consultForm select option { background: #1a1610; color: #ffffff; }
#consultForm input:-webkit-autofill,
#consultForm input:-webkit-autofill:hover,
#consultForm input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0 1000px #201a12 inset;
    transition: background-color 9999s ease-in-out 0s;
}
#consultForm textarea { resize: vertical; min-height: 120px; }
#consultForm button[type="submit"] {
    margin-top: 6px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(212,175,55,0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
#consultForm button[type="submit"]:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 20px 44px rgba(212,175,55,0.32);
}
#consultForm button[type="submit"]:active { transform: translateY(0); }
#consultForm .form-note {
    text-align: center;
    font-size: 12.5px;
    font-style: italic;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}
@media (max-width: 760px) {
    .form-layout { padding: 28px 20px; }
    #consultForm { grid-template-columns: 1fr; gap: 14px; }
    #consultForm > *:nth-child(n+9) { grid-column: auto; }
}

/* Koreksi struktur form: pasangan label-input vertikal per kolom */
#consultForm { display: block; }
.fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    margin-top: 22px;
}
.fg {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}
.fg-full { margin-top: 16px; }
@media (max-width: 760px) {
    .fgrid { grid-template-columns: 1fr; gap: 14px; }
    .fg-full { margin-top: 14px; }
}

/* =========================================================
   FORM V2 - SUPER PREMIUM (FLOATING LABEL + BORDER HIDUP)
   ========================================================= */
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.form-layout {
    background: linear-gradient(165deg, #16110b, #0d0a06) padding-box;
    border: 1px solid rgba(212,175,55,0.32);
}
.form-layout::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: conic-gradient(from var(--ang, 0deg),
        transparent 0deg 295deg,
        rgba(212,175,55,0.25) 320deg,
        #d4af37 340deg,
        #f9d976 352deg,
        transparent 360deg);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask-composite: exclude;
    animation: spinBorder 6s linear infinite;
    pointer-events: none;
}
@keyframes spinBorder { to { --ang: 360deg; } }
.form-layout > h3 { position: relative; z-index: 1; }
.fg.fl { position: relative; }
.fg.fl input { padding: 24px 16px 9px; }
.fg.fl label {
    position: absolute;
    left: 17px;
    top: 16px;
    margin: 0 !important;
    font-size: 14px !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
    color: rgba(255,255,255,0.42) !important;
    transition: top 0.22s ease, font-size 0.22s ease, letter-spacing 0.22s ease, color 0.22s ease;
    pointer-events: none;
}
.fg.fl input:focus ~ label,
.fg.fl input:not(:placeholder-shown) ~ label {
    top: 8px;
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #d4af37 !important;
}
.fg.fl input:focus {
    border-color: #d4af37;
    background: rgba(212,175,55,0.05);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.13);
}
.fg-full > label { margin-bottom: 8px !important; }
#consultForm select:hover,
#consultForm textarea:hover { transform: translateY(-1px); }
#consultForm button[type="submit"] {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f6dc82, #d4af37 48%, #b8912e);
    color: #171310 !important;
}
#consultForm button[type="submit"]::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-20deg);
    transition: left 0.65s ease;
    pointer-events: none;
}
#consultForm button[type="submit"]:hover::after { left: 130%; }
@media (prefers-reduced-motion: reduce) {
    .form-layout::before { animation: none; }
}

/* Override spesifisitas ID untuk floating label */
#consultForm .fg.fl label {
    position: absolute;
    left: 17px;
    top: 16px;
    margin: 0 !important;
    font-size: 14px !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
    color: rgba(255,255,255,0.42) !important;
}
#consultForm .fg.fl input:focus ~ label,
#consultForm .fg.fl input:not(:placeholder-shown) ~ label {
    top: 8px;
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #d4af37 !important;
}

/* =========================================================
   FORM V3 - KOLOM TERLIHAT JELAS (CELL BOXED)
   ========================================================= */
.fgrid { gap: 18px; }
#consultForm .fg,
#consultForm .fg-full {
    background: rgba(255,255,255,0.030);
    border: 1px solid rgba(212,175,55,0.16);
    border-radius: 14px;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
#consultForm .fg { padding: 10px 12px 12px; }
#consultForm .fg-full { padding: 14px 14px 14px; margin-top: 18px; }
#consultForm .fg:hover,
#consultForm .fg-full:hover { border-color: rgba(212,175,55,0.42); background: rgba(255,255,255,0.045); }
#consultForm .fg:focus-within,
#consultForm .fg-full:focus-within {
    border-color: #d4af37;
    background: rgba(212,175,55,0.05);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.10);
}
#consultForm .fg.fl input,
#consultForm .fg-full select,
#consultForm .fg-full textarea {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}
#consultForm .fg.fl input { padding: 23px 16px 7px; }
#consultForm .fg.fl input:focus { transform: none; }
#consultForm .fg-full select { padding-right: 40px; }
#consultForm .fg.fl label { left: 29px; top: 27px; }
#consultForm .fg.fl input:focus ~ label,
#consultForm .fg.fl input:not(:placeholder-shown) ~ label { top: 19px; }

/* =========================================================
   FORM V4 - SEDERHANA MEMANJANG PENUH
   ========================================================= */
.form-split .form-single { display: block; }
.form-split .intro-layout > div:first-child { margin-bottom: 30px; }
.form-split .fgrid { grid-template-columns: 1fr; gap: 14px; }
.form-split #consultForm .fg { padding: 8px 10px 10px; }
.form-split #consultForm input,
.form-split #consultForm select,
.form-split #consultForm textarea {
    font-size: 15.5px;
}
.form-split #consultForm .fg.fl input { padding: 24px 16px 8px; }
@media (max-width: 760px) {
    .form-split .intro-layout > div:first-child { margin-bottom: 22px; }
}

/* =========================================================
   FORM V5 - KOLOM DUA SISI + INPUT PERSEGI PANJANG KLASIK
   ========================================================= */
#consultForm .fg,
#consultForm .fg-full {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
}
#consultForm .fg.fl { position: static; }
#consultForm .fg.fl label {
    position: static !important;
    display: block;
    font-size: 11px !important;
    letter-spacing: 1.6px !important;
    text-transform: uppercase !important;
    color: #cbb26a !important;
    margin-bottom: 7px !important;
    transition: none;
}
#consultForm input,
#consultForm select,
#consultForm textarea {
    border: 1px solid rgba(212,175,55,0.28) !important;
    background: rgba(255,255,255,0.045) !important;
    border-radius: 12px;
    padding: 15px 16px !important;
    width: 100%;
}
#consultForm input::placeholder { color: rgba(255,255,255,0.30); }
#consultForm input:focus,
#consultForm select:focus,
#consultForm textarea:focus {
    border-color: #d4af37 !important;
    background: rgba(212,175,55,0.06) !important;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.12) !important;
    transform: none;
}
.fgrid { gap: 18px 20px; }

/* =========================================================
   FORM V6 - KOMPISI SIMETRIS (TEKS | FORM LEBAR SAMA)
   ========================================================= */
.form-eq .form-eq-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 48px !important;
    align-items: center;
}
.form-eq .intro-layout h2 { font-size: 30px; }
@media (max-width: 991px) {
    .form-eq .form-eq-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
}

/* =========================================================
   FIX AKHIR: panel form satu alur penuh (matikan grid lama)
   ========================================================= */
.form-layout { display: block !important; }

/* Label kembali di ATAS kotak isian */
#consultForm .fg.fl { display: flex; flex-direction: column; }
#consultForm .fg.fl label { order: -1; }

/* CTA pertanyaan rata kiri (khusus halaman formulir) */
.cta-left .cta-container {
    text-align: left;
    align-items: flex-start;
}
.cta-left .cta-container .btn-lux { margin-left: 0; margin-right: auto; }

/* Semua label formulir rata KIRI (matikan align-self:end lama) */
#consultForm label {
    align-self: flex-start !important;
    text-align: left !important;
}

/* Border tipis namun jelas pada kolom isian */
#consultForm input,
#consultForm select,
#consultForm textarea {
    border: 1px solid rgba(212,175,55,0.55) !important;
}

/* Perbaikan: border tipis vs rule border:none spesifik */
#consultForm .fg.fl input,
#consultForm .fg-full select,
#consultForm .fg-full textarea {
    border: 1px solid rgba(212,175,55,0.55) !important;
}
