/* ==========================================================================
   Konsultan Pajak Jogja - Premium Stylesheet
   Referensi desain: konsultanpajakcikarang.com (Ashadi & Rekan)
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS & BASE
   ========================================================================== */
:root {
    --primary: #f9961e;
    --gold: #d4af37;
    --dark-slate: #111111;
    --bg-ambient: #fffaf5;
    --accent-red: #dc2626;
    --text-muted: #555555;
    --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);
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--dark-slate);
    background: #ffffff;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

ul { list-style: none; }

::selection { background: var(--primary); color: #ffffff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-ambient); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--accent-red)); border-radius: 10px; }

section { padding: 110px 0; position: relative; scroll-margin-top: 90px; }

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

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

h1, h2, h3, h4, h5 { line-height: 1.25; letter-spacing: -0.5px; }

/* ==========================================================================
   2. HEADINGS & BADGES
   ========================================================================== */
.center-heading { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.center-heading h2 { font-size: 40px; font-weight: 800; }
.center-heading h2 span { color: var(--primary); }

.left-heading h2 { font-size: 36px; font-weight: 800; }
.left-heading h2 span { color: var(--primary); }

.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;
}

.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;
}

.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: translateY(-2px) scale(1.02); }

/* ==========================================================================
   3. 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;
    font-family: var(--font-main);
    cursor: pointer;
}

.btn-lux.primary {
    background: var(--accent-red);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}
.btn-lux.primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(220, 38, 38, 0.35); background: #b91c1c; }

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

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

.btn-lux.btn-gold-accent {
    background: linear-gradient(135deg, var(--gold) 0%, #b8932a 100%);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}
.btn-lux.btn-gold-accent:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5); }

.w-100 { width: 100%; }

/* ==========================================================================
   4. 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 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 84px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.navbar-logo-img { width: 46px; height: 46px; object-fit: contain; }
.navbar-brand-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.navbar-brand-text { font-size: 19px; font-weight: 800; color: var(--dark-slate); letter-spacing: -0.5px; }
.navbar-brand-text span { color: var(--accent-red); }
.navbar-brand-sub { font-size: 10px; font-weight: 700; letter-spacing: 3.5px; color: var(--gold); text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > a, .nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark-slate);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition-smooth);
}
.nav-menu > a:hover, .nav-item > a:hover,
.nav-menu > a.active, .nav-item > a.active { color: var(--primary); background: rgba(249, 150, 30, 0.08); }
.nav-caret { font-size: 10px; color: var(--text-muted); }

.nav-item { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(17, 17, 17, 0.1);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}
.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-slate);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition-smooth);
}
.dropdown-menu li a:hover { background: rgba(249, 150, 30, 0.08); color: var(--primary); }

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 8px 14px;
    border: 1.5px solid rgba(17, 17, 17, 0.12);
    border-radius: 50px;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    font-size: 13.5px;
    flex-shrink: 0;
}
.lang-opt { padding: 2px 6px; border-radius: 50px; color: var(--text-muted); transition: var(--transition-smooth); }
.lang-opt.active { color: #ffffff; background: var(--accent-red); }
.lang-divider { color: rgba(17, 17, 17, 0.25); }

.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; background: var(--bg-ambient); flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 20px; height: 2px; background: var(--dark-slate); border-radius: 2px; transition: var(--transition-smooth); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   5. HERO
   ========================================================================== */
.srv-hero {
    min-height: 780px;
    background: #0d0b08;
    color: #ffffff;
    overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease, visibility 1.1s;
    z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1.1);
    transition: transform 7.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(700px 420px at 75% 0%, rgba(0, 0, 0, 0.9), transparent 72%);
    -webkit-mask-image: radial-gradient(700px 420px at 75% 0%, rgba(0, 0, 0, 0.9), transparent 72%);
}

.hero-slide-bg-1 {
    background-image:
        linear-gradient(rgba(17, 16, 12, 0.55), rgba(13, 11, 7, 0.72)),
        radial-gradient(900px 480px at 88% -12%, rgba(249, 150, 30, 0.18), transparent 62%),
        url('assets/img/hero-jogja.jpeg');
}
.hero-slide-bg-2 {
    background-image:
        linear-gradient(rgba(17, 16, 12, 0.5), rgba(13, 11, 7, 0.72)),
        radial-gradient(900px 480px at 12% -12%, rgba(212, 175, 55, 0.16), transparent 62%),
        url('assets/img/hero-alam-jogja.jpeg');
}

.hero-slide .container { position: relative; z-index: 3; width: 100%; }

.hero-slider-nav {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 5;
}
.hero-slider-arrow {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: var(--transition-smooth);
}
.hero-slider-arrow:hover { background: #ffffff; color: var(--dark-slate); border-color: #ffffff; }
.hero-slider-arrow svg { width: 18px; height: 18px; }
.hero-slider-dots { display: flex; align-items: center; gap: 8px; }
.hero-slider-dots button {
    width: 10px; height: 10px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}
.hero-slider-dots button.active { width: 26px; background: var(--primary); }

.hero-content { max-width: 880px; }
.hero-title-large { font-size: 52px; font-weight: 800; line-height: 1.18; letter-spacing: -1.5px; margin-bottom: 25px; }
.hero-title-large span { color: var(--primary); }
.srv-hero-badge { background: rgba(249, 150, 30, 0.1); border-color: rgba(249, 150, 30, 0.35); color: var(--primary); }
.hero-action-buttons { display: flex; flex-wrap: wrap; gap: 16px; }

/* ==========================================================================
   6. TRUST METRICS
   ========================================================================== */
.trust-metrics-bar { background: #ffffff; padding: 0; position: relative; z-index: 3; }
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.05);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    padding: 42px 45px;
    margin-top: -62px;
    position: relative;
}
.metric-card { text-align: center; }
.metric-card h3 { font-size: 34px; font-weight: 800; color: var(--accent-red); margin-bottom: 5px; letter-spacing: -1px; }
.metric-card p { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================================================
   7. ABOUT
   ========================================================================== */
.about-section { background: var(--bg-ambient); padding-top: 90px; }
.about-layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.about-showcase { position: relative; }
.about-showcase img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-premium);
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25), var(--shadow-premium);
}
.about-showcase::before {
    content: "";
    position: absolute;
    inset: 26px -26px -26px 26px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 28px;
    z-index: -1;
}
.about-desc { color: var(--text-muted); font-size: 16.5px; margin-bottom: 20px; }

/* ==========================================================================
   8. TP DOC (DARK)
   ========================================================================== */
.tpdoc-section {
    background: linear-gradient(160deg, #0c0802 0%, #171310 55%, #0c0802 100%);
    color: #ffffff;
    overflow: hidden;
}
.tpdoc-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(640px 320px at 50% 0%, rgba(212, 175, 55, 0.06), transparent 70%);
    pointer-events: none;
}
.tpdoc-section h2 { font-size: 40px; font-weight: 800; color: #ffffff; }
.tpdoc-section h2 span { color: var(--gold); }
.tpdoc-intro { text-align: center; max-width: 900px; margin: 0 auto 55px; color: rgba(255, 255, 255, 0.72); font-size: 16.5px; }

.tpdoc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 40px; }
.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;
}
.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;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    margin-bottom: 22px;
}
.tpdoc-icon { width: 54px; height: 54px; border-radius: 16px; background: rgba(212, 175, 55, 0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.tpdoc-icon svg { width: 28px; height: 28px; }
.tpdoc-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.tpdoc-card p { color: rgba(255, 255, 255, 0.68); font-size: 14.5px; margin-bottom: 22px; flex: 1; }
.tpdoc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tpdoc-chip {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.tpdoc-risk {
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 22px;
    padding: 36px 38px;
    margin-bottom: 56px;
    backdrop-filter: blur(6px);
}
.tpdoc-risk-head {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 18px;
}
.tpdoc-risk-head svg { width: 24px; height: 24px; flex-shrink: 0; }
.tpdoc-risk ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.tpdoc-risk li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
}
.tpdoc-risk li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.tpdoc-solution { margin-bottom: 48px; }
.tpdoc-solution h3 { text-align: center; font-size: 30px; font-weight: 800; margin-bottom: 40px; }
.tpdoc-solution h3 span { color: var(--gold); }
.tpdoc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.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);
}
.tpdoc-step:hover { border-color: rgba(212, 175, 55, 0.5); transform: translateY(-5px); }
.tpdoc-step-num {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), #b8932a);
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}
.tpdoc-step h5 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.tpdoc-step p { color: rgba(255, 255, 255, 0.65); font-size: 13.5px; }

.tpdoc-cta { text-align: center; }

/* ==========================================================================
   9. SERVICES
   ========================================================================== */
.services-section { background: var(--bg-ambient); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.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);
}
.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: 62px; height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(249, 150, 30, 0.14), rgba(212, 175, 55, 0.14));
    border: 1px solid rgba(249, 150, 30, 0.25);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}
.service-icon-wrap svg { width: 30px; height: 30px; }
.service-card:hover .service-icon-wrap { background: linear-gradient(135deg, var(--primary), var(--accent-red)); color: #ffffff; border-color: transparent; }
.service-card h3 { font-size: 19.5px; font-weight: 800; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 14.5px; }

/* ==========================================================================
   10. WORKFLOW
   ========================================================================== */
.workflow-section { background: #ffffff; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.workflow-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(17, 17, 17, 0.02);
    transition: var(--transition-smooth);
    position: relative;
}
.workflow-card::before {
    content: "";
    position: absolute;
    top: 0; left: 30px; right: 30px;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    opacity: 0;
    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-card:hover::before { opacity: 1; }
.workflow-step-num {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--bg-ambient);
    border: 1.5px solid rgba(249, 150, 30, 0.35);
    color: var(--primary);
    font-weight: 800;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}
.workflow-card:hover .workflow-step-num { background: var(--primary); color: #ffffff; }
.workflow-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.workflow-card p { color: var(--text-muted); font-size: 14px; }

/* ==========================================================================
   11. SOLID CTA
   ========================================================================== */
.premium-solid-cta {
    background:
        linear-gradient(rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.82)),
        radial-gradient(760px 380px at 50% -10%, rgba(249, 150, 30, 0.24), transparent 65%),
        url('assets/img/cta-team.jpeg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    padding: 110px 0;
}
.cta-container { max-width: 820px; }
.cta-container h2 { font-size: 42px; font-weight: 800; margin-bottom: 22px; }
.cta-container h2::after {
    content: "";
    display: block;
    width: 74px; height: 4px;
    margin: 24px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
}
.cta-container p { color: rgba(255, 255, 255, 0.75); font-size: 17px; margin-bottom: 40px; }

/* ==========================================================================
   12. CONSULTANTS
   ========================================================================== */
.consultants-section { background: var(--bg-ambient); }
.consultants-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.consultant-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.consultant-card:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.4); }
.consultant-photo {
    padding: 28px 28px 0;
    background: linear-gradient(180deg, #fff6e9 0%, #fdeadb 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.consultant-photo img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, 0.55);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.12), 0 14px 30px rgba(17, 17, 17, 0.12);
    background: #ffffff;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.consultant-card:hover .consultant-photo img { transform: scale(1.04); box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.18), 0 18px 38px rgba(17, 17, 17, 0.16); }
.consultant-info { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.consultant-info h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.consultant-role {
    align-self: flex-start;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-red);
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.12);
    border-radius: 50px;
    padding: 5px 13px;
    margin-bottom: 20px;
}
.btn-consultant { padding: 12px 24px; font-size: 14px; margin-top: auto; }

/* ==========================================================================
   13. FORM
   ========================================================================== */
.form-section { background: #ffffff; }
.form-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; align-items: start; }
.form-intro h2 { font-size: 38px; font-weight: 800; margin-bottom: 20px; }
.form-intro h2 span { color: var(--primary); }
.form-desc { color: var(--text-muted); font-size: 16.5px; margin-bottom: 28px; }
.form-benefits { display: flex; flex-direction: column; gap: 14px; }
.form-benefits li {
    position: relative;
    padding-left: 26px;
    color: var(--text-muted);
    font-size: 15px;
}
.form-benefits li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 10px; height: 10px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    transform: rotate(45deg);
}
.form-benefits strong { color: var(--dark-slate); }

.consult-form {
    background: var(--bg-ambient);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 700; letter-spacing: 0.3px; margin-bottom: 8px; }
.form-row input:not([type="checkbox"]):not([type="radio"]),
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--dark-slate);
    background: #ffffff;
    border: 1.5px solid rgba(17, 17, 17, 0.1);
    border-radius: 12px;
    transition: var(--transition-smooth);
    appearance: none;
}
.form-row input[type="checkbox"],
.form-row input[type="radio"] {
    appearance: auto;
    -webkit-appearance: checkbox;
    accent-color: var(--primary);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(249, 150, 30, 0.12); }
.form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}
.form-note { margin-top: 18px; font-size: 12.5px; color: var(--text-muted); text-align: center; }
.form-status {
    display: none;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.6;
}
.form-status.err { background: rgba(220, 38, 38, 0.08); color: #b91c1c; border: 1px solid rgba(220, 38, 38, 0.2); }
.form-status.ok { background: rgba(22, 163, 74, 0.08); color: #15803d; border: 1px solid rgba(22, 163, 74, 0.2); }
.form-status.warn { background: rgba(249, 150, 30, 0.1); color: #92600d; border: 1px solid rgba(249, 150, 30, 0.3); }
.form-status a { color: var(--accent-red); font-weight: 800; text-decoration: underline; }
.form-status a:hover { color: var(--primary); }

/* ==========================================================================
   14. ARTICLES
   ========================================================================== */
.articles-section { background: #ffffff; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.article-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.05);
    border-radius: 20px;
    padding: 38px 32px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.article-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1); }
.article-chip {
    align-self: flex-start;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(249, 150, 30, 0.1);
    border: 1px solid rgba(249, 150, 30, 0.25);
    border-radius: 50px;
    margin-bottom: 20px;
}
.article-card h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 12px; }
.article-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 20px; flex: 1; }
.article-meta { display: flex; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--text-muted); margin-bottom: 18px; }
.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-red);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.article-link span:last-child { transition: var(--transition-smooth); }
.article-link:hover { gap: 12px; }

/* ==========================================================================
   15. FAQ
   ========================================================================== */
.faq-section { background: var(--bg-ambient); }
.faq-wrapper { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #ffffff; border-radius: 16px; box-shadow: var(--shadow-premium); overflow: hidden; border: 1px solid rgba(17, 17, 17, 0.03); transition: var(--transition-smooth); }
.faq-item.active { border-color: rgba(249, 150, 30, 0.4); }
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    background: transparent;
    border: none;
    font-family: var(--font-main);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--dark-slate);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.faq-trigger:hover { color: var(--primary); }
.faq-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--bg-ambient);
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.faq-item.active .faq-icon { background: var(--primary); color: #ffffff; transform: rotate(45deg); }
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.45s ease;
    padding: 0 26px;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.8;
}
.faq-item.active .faq-content { max-height: 1000px; padding-bottom: 24px; }

/* ==========================================================================
   16. CLIENTS MARQUEE
   ========================================================================== */
.clients-section { padding: 90px 0; background: #ffffff; }
.carousel-container { overflow: hidden; position: relative; }
.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.carousel-container::before { left: 0; background: linear-gradient(90deg, #ffffff, transparent); }
.carousel-container::after { right: 0; background: linear-gradient(-90deg, #ffffff, transparent); }
.carousel-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marquee 32s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-item { height: 52px; width: auto; max-width: 150px; object-fit: contain; opacity: 1; transition: var(--transition-smooth); }
.carousel-item:hover { transform: scale(1.05); }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .carousel-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.lux-footer {
    background:
        linear-gradient(rgba(12, 8, 2, 0.82), rgba(12, 8, 2, 0.9)),
        url('assets/img/footer-office.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: rgba(255, 255, 255, 0.73);
    padding: 100px 0 30px;
    font-size: 15.5px;
    border-top: 3px solid var(--primary);
    position: relative;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 1fr 1fr; gap: 50px; }
.footer-col h3 { color: #ffffff; font-size: 18px; font-weight: 800; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col h3::after { content: ""; position: absolute; bottom: 0; left: 0; width: 42px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--primary)); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.73); text-decoration: none; transition: var(--transition-smooth); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.contact-list li { margin-bottom: 10px; display: flex; gap: 8px; }
.contact-list a { color: var(--primary); text-decoration: none; }
.contact-list a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 70px; padding-top: 30px; text-align: center; font-size: 13.5px; color: rgba(255, 255, 255, 0.5); }

/* ==========================================================================
   18. FLOATING WA + SCROLL TOP
   ========================================================================== */
.wa-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.wa-popup {
    position: relative;
    width: 310px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.18), 0 8px 20px rgba(17, 17, 17, 0.08);
    padding: 20px 18px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.92);
    transform-origin: bottom right;
    transition: var(--transition-smooth);
    pointer-events: none;
    overflow: hidden;
}
.wa-popup::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25D366, var(--primary), var(--accent-red));
}
.wa-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: wapopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes wapopIn {
    0% { transform: translateY(18px) scale(0.92); opacity: 0; }
    60% { transform: translateY(-4px) scale(1.02); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

.wa-popup-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 28px; height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.06);
    color: var(--dark-slate);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.wa-popup-close:hover { background: var(--accent-red); color: #ffffff; transform: rotate(90deg); }
.wa-popup-close svg { width: 13px; height: 13px; }

.wa-popup-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-right: 34px;
}
.wa-popup-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(37, 211, 102, 0.5);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.18);
    flex-shrink: 0;
}
.wa-popup-ident { display: flex; flex-direction: column; line-height: 1.35; }
.wa-popup-ident strong { font-size: 14px; font-weight: 800; color: var(--dark-slate); }
.wa-popup-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #1b8f46;
}
.wa-popup-status i {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #25D366;
    position: relative;
    display: inline-block;
}
.wa-popup-status i::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(37, 211, 102, 0.55);
    animation: waPulse 2s ease-out infinite;
}
.wa-popup-status .lang-toggle ~ * { align-self: flex-start; }

.wa-popup-bubble {
    background: var(--bg-ambient);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px 14px 14px 4px;
    padding: 13px 15px;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--dark-slate);
    margin-bottom: 14px;
}
.wa-popup-bubble strong { color: var(--primary); }

.wa-popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 13px;
    background: linear-gradient(135deg, #25D366 0%, #1faf53 100%);
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
    transition: var(--transition-smooth);
}
.wa-popup-cta svg { width: 19px; height: 19px; fill: #ffffff; }
.wa-popup-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42); }

.wa-float {
    position: relative;
    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 svg { width: 30px; height: 30px; fill: #ffffff; }
.wa-float .wa-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: waPulse 2.4s ease-out infinite;
    border: 2px solid rgba(249, 150, 30, 0.5);
}
.wa-float .wa-tip {
    position: absolute;
    right: 74px;
    background: var(--dark-slate);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: var(--transition-smooth);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }
.wa-float:hover .wa-btn { transform: scale(1.06); }
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.45); opacity: 0; }
}

.scroll-top {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: #ffffff;
    color: var(--dark-slate);
    box-shadow: 0 10px 25px rgba(17, 17, 17, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--dark-slate); color: #ffffff; }

/* ==========================================================================
   19. SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.reveal-left { transform: translateX(-45px); }
.reveal-right { transform: translateX(45px); }
.reveal-up { transform: translateY(45px); }
.reveal-scale { transform: scale(0.92); }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   19.5 ABOUT PAGE STYLES
   ========================================================================== */
.page-hero {
    padding: 200px 0 90px;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(rgba(13, 11, 7, 0.6), rgba(13, 11, 7, 0.8)),
        radial-gradient(900px 480px at 80% -10%, rgba(249, 150, 30, 0.2), transparent 62%),
        url('assets/img/hero-alam-jogja.jpeg') center center;
    background-size: cover;
    overflow: hidden;
}
.page-hero h1 { font-size: 46px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; }
.page-hero h1 span { color: var(--primary); }
.page-hero .page-hero-sub { max-width: 760px; margin: 0 auto; color: rgba(255, 255, 255, 0.8); font-size: 17.5px; }
.page-hero .srv-hero-badge { background: rgba(249, 150, 30, 0.1); border-color: rgba(249, 150, 30, 0.35); color: var(--primary); }

.story-media { position: relative; }
.story-media img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 28px;
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25), var(--shadow-premium);
}
.story-media::before {
    content: "";
    position: absolute;
    inset: 26px -26px -26px 26px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 28px;
    z-index: -1;
}
.story-desc { color: var(--text-muted); font-size: 16.5px; margin-bottom: 20px; }

.story-milestones { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.story-milestone {
    padding: 10px 18px;
    border-radius: 14px;
    background: var(--bg-ambient);
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark-slate);
}
.story-milestone strong { color: var(--accent-red); font-size: 15px; }

.vm-section { background: var(--bg-ambient); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 24px;
    padding: 45px 42px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}
.vm-card:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.45); }
.vm-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent-red));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 12px 26px rgba(249, 150, 30, 0.3);
}
.vm-icon svg { width: 28px; height: 28px; }
.vm-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.vm-card h3 span { color: var(--primary); }
.vm-card p { color: var(--text-muted); font-size: 15.5px; }
.vm-misi-list { margin-top: 16px; }
.vm-misi-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 15px;
}
.vm-misi-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 10px; height: 10px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    transform: rotate(45deg);
}

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    background: var(--bg-ambient);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
}
.value-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 22px 45px rgba(212, 175, 55, 0.12); }
.value-icon {
    width: 54px; height: 54px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 14px; }

@media (max-width: 991px) {
    .page-hero { padding: 160px 0 70px; }
    .page-hero h1 { font-size: 36px; }
    .story-layout { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .story-desc { margin-left: auto; margin-right: auto; }
    .story-milestones { justify-content: center; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .page-hero h1 { font-size: 30px; }
    .values-grid { grid-template-columns: 1fr; }
    .vm-card { padding: 34px 26px; }
}

/* ==========================================================================
   19.8 SERVICES PAGE STYLES
   ========================================================================== */
.svc-detail-section {
    background: linear-gradient(160deg, #0c0802 0%, #171310 55%, #0c0802 100%);
    color: #ffffff;
    overflow: hidden;
}
.svc-detail-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 380px at 8% 10%, rgba(249, 150, 30, 0.07), transparent 65%);
    pointer-events: none;
}
.svc-detail-section h2 { font-size: 40px; font-weight: 800; color: #ffffff; }
.svc-detail-section h2 span { color: var(--gold); }

.svc-detail-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    padding: 70px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.svc-detail-row:last-child { border-bottom: none; }
.svc-detail-row.reverse { grid-template-columns: 0.9fr 1.1fr; }
.svc-detail-row.reverse .svc-detail-body { order: 2; }
.svc-detail-row.reverse .svc-detail-visual { order: 1; }

.svc-detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.svc-detail-tag .svc-detail-num {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), #b8932a);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.28);
}
.svc-detail-body h3 { font-size: 30px; font-weight: 800; margin-bottom: 16px; }
.svc-detail-body > p { color: rgba(255, 255, 255, 0.72); font-size: 16px; margin-bottom: 24px; max-width: 520px; }

.svc-detail-features { margin-bottom: 30px; }
.svc-detail-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}
.svc-detail-features li::before {
    content: "";
    position: absolute;
    left: 0; top: 5px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.5);
}
.svc-detail-features li::after {
    content: "";
    position: absolute;
    left: 4px; top: 8px;
    width: 8px; height: 5px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(-45deg);
}

/* Panel foto halaman layanan (pengganti kotak ikon layanan) */
.svc-media {
    position: relative;
    min-height: 420px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12), var(--shadow-premium);
    display: flex;
    align-items: flex-end;
    transition: var(--transition-smooth);
}
.svc-media:hover { border-color: rgba(212, 175, 55, 0.55); box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 24px 50px rgba(212, 175, 55, 0.14); }
.svc-media > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-media:hover > img { transform: scale(1.05); }
.svc-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 11, 7, 0) 35%, rgba(13, 11, 7, 0.82) 100%);
}
.svc-media-body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 26px 28px;
    color: #ffffff;
}
.svc-media-eyebrow {
    display: block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.svc-media-body h3 { font-size: 23px; font-weight: 800; color: #ffffff; }

@media (max-width: 991px) {
    .svc-media { min-height: 300px; }
}

/* Cakupan Layanan (halaman layanan terpisah): pill orange + teks putih */
.about-section .svc-detail-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 28px;
}
.about-section .svc-detail-features li {
    position: relative;
    margin: 0;
    padding: 13px 18px 13px 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f9961e 0%, #f07d00 100%);
    color: #ffffff;
    font-weight: 650;
    font-size: 14.5px;
    box-shadow: 0 10px 24px rgba(249, 150, 30, 0.22);
    transition: var(--transition-smooth);
}
.about-section .svc-detail-features li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #e23428 0%, #b91c1c 100%);
}
.about-section .svc-detail-features li::before {
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.65);
}
.about-section .svc-detail-features li::after {
    left: 17px;
    top: calc(50% - 5px);
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}
.svc-detail-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.svc-detail-cta-link:hover { gap: 14px; color: var(--primary); }

.svc-detail-visual {
    position: relative;
    min-height: 330px;
    border-radius: 26px;
    background:
        radial-gradient(420px 260px at 80% -10%, rgba(249, 150, 30, 0.16), transparent 60%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.svc-detail-visual:hover { border-color: rgba(212, 175, 55, 0.45); transform: translateY(-5px); }
.svc-detail-visual::after {
    content: attr(data-num);
    position: absolute;
    right: -8px; bottom: -46px;
    font-size: 220px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.035);
    letter-spacing: -10px;
    pointer-events: none;
}
.svc-detail-visual .svc-visual-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
}
.svc-detail-visual .svc-visual-icon svg { width: 36px; height: 36px; }
.svc-visual-title { font-size: 21px; font-weight: 800; color: #ffffff; }
.svc-visual-title span { color: var(--gold); display: block; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }

.legal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.legal-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
    padding: 38px 30px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}
.legal-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 22px 45px rgba(212, 175, 55, 0.12); }
.legal-card .service-icon-wrap { margin-bottom: 20px; }
.legal-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.legal-card p { color: var(--text-muted); font-size: 14px; }

@media (max-width: 991px) {
    .svc-detail-row, .svc-detail-row.reverse { grid-template-columns: 1fr; gap: 40px; }
    .svc-detail-row.reverse .svc-detail-body { order: 1; }
    .svc-detail-row.reverse .svc-detail-visual { order: 2; }
    .svc-detail-body { text-align: left; }
    .svc-detail-visual { min-height: 260px; }
    .legal-grid { grid-template-columns: 1fr 1fr; }
    .svc-detail-section h2 { font-size: 32px; }
}
@media (max-width: 640px) {
    .legal-grid { grid-template-columns: 1fr; }
    .svc-detail-body h3 { font-size: 24px; }
}

/* ==========================================================================
   19.9 TP DOC PAGE STYLES
   ========================================================================== */
.tpd-intro-panel {
    background: var(--bg-ambient);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 22px;
    padding: 40px 38px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    box-shadow: var(--shadow-premium);
}
.tpd-fact { text-align: center; }
.tpd-fact h4 { font-size: 21px; font-weight: 800; color: var(--accent-red); margin-bottom: 6px; }
.tpd-fact p { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; line-height: 1.5; }

.th-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.th-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-top: 4px solid var(--gold);
    position: relative;
    transition: var(--transition-smooth);
}
.th-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(212, 175, 55, 0.14); }
.th-card .th-num {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), #b8932a);
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.3);
}
.th-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.th-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 18px; }
.th-threshold {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(220, 38, 38, 0.07);
    border: 1px solid rgba(220, 38, 38, 0.15);
    color: var(--accent-red);
    font-size: 12.5px;
    font-weight: 800;
}

.tpd-dlv-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 26px;
    max-width: 900px;
    margin: 0 auto;
}
.tpd-dlv-item {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--bg-ambient);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: 15px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark-slate);
    transition: var(--transition-smooth);
}
.tpd-dlv-item:hover { transform: translateX(4px); border-color: var(--gold); }
.tpd-dlv-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent-red); }

@media (max-width: 991px) {
    .tpd-intro-panel { grid-template-columns: 1fr; gap: 22px; }
    .th-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .tpd-dlv-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   19.95 CONSULTANTS PAGE STYLES
   ========================================================================== */
.spot-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}
.spot-photo-wrap { position: relative; }
.spot-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    border-radius: 30px;
    border: 6px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), var(--shadow-premium);
    background: var(--bg-ambient);
}
.spot-photo-wrap::before {
    content: "";
    position: absolute;
    inset: 30px -30px -30px 30px;
    border: 2px solid rgba(212, 175, 55, 0.45);
    border-radius: 30px;
    z-index: -1;
}
.spot-name-card {
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.16);
    padding: 14px 26px;
    text-align: center;
    white-space: nowrap;
    max-width: calc(100% - 40px);
}
.spot-name-card strong { display: block; font-size: 15px; font-weight: 800; }
.spot-name-card span { font-size: 12px; font-weight: 700; color: var(--accent-red); letter-spacing: 1.2px; text-transform: uppercase; }

.spot-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.spot-cred-chip {
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.32);
    color: #9a7b1e;
    font-size: 12.5px;
    font-weight: 800;
    transition: var(--transition-smooth);
}
.spot-cred-chip:hover { transform: translateY(-2px); background: rgba(212, 175, 55, 0.18); }

.spot-expert { margin: 0 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.spot-expert li {
    position: relative;
    padding-left: 28px;
    color: var(--text-muted);
    font-size: 15px;
}
.spot-expert li::before {
    content: "";
    position: absolute;
    left: 0; top: 5px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.5);
}
.spot-expert li::after {
    content: "";
    position: absolute;
    left: 4px; top: 8px;
    width: 8px; height: 5px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(-45deg);
}
.spot-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.cred-band { background: var(--bg-ambient); padding: 40px 0; border-top: 1px solid rgba(212, 175, 55, 0.15); border-bottom: 1px solid rgba(212, 175, 55, 0.15); }
.cred-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cred-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    font-size: 13.5px;
    font-weight: 800;
    color: var(--dark-slate);
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.04);
    transition: var(--transition-smooth);
}
.cred-chip:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 14px 30px rgba(212, 175, 55, 0.14); }
.cred-chip svg { width: 16px; height: 16px; color: var(--gold); }

.mteam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mteam-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}
.mteam-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(17, 17, 17, 0.18); border-color: rgba(212, 175, 55, 0.5); }
.mteam-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background: linear-gradient(180deg, #fff6e9 0%, #fdeadb 100%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.mteam-card:hover .mteam-photo { transform: scale(1.07); }
.mteam-overlay {
    position: relative;
    margin-top: auto;
    width: 100%;
    background: linear-gradient(180deg, rgba(13, 11, 7, 0) 0%, rgba(13, 11, 7, 0.72) 30%, rgba(13, 11, 7, 0.92) 100%);
    padding: 90px 26px 26px;
    color: #ffffff;
    z-index: 2;
}
.mteam-overlay h3 { font-size: 19px; font-weight: 800; color: #ffffff; margin-bottom: 8px; }
.mteam-role {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 50px;
    background: rgba(249, 150, 30, 0.16);
    border: 1px solid rgba(249, 150, 30, 0.45);
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.mteam-btn-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), margin 0.45s ease;
    margin-bottom: 0;
}
.mteam-card:hover .mteam-btn-wrap { max-height: 90px; margin-top: 16px; }
.mteam-chip-card {
    background: linear-gradient(135deg, #17130c 0%, #0c0802 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.mteam-chip-card::after {
    content: "";
    position: absolute;
    right: -40px; bottom: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 150, 30, 0.25), transparent 70%);
}
.mteam-chip-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(212, 175, 55, 0.16); }
.mteam-chip-card h3 { font-size: 23px; font-weight: 800; margin-bottom: 10px; position: relative; z-index: 1; }
.mteam-chip-card p { color: rgba(255, 255, 255, 0.7); font-size: 14.5px; margin-bottom: 24px; position: relative; z-index: 1; }
.mteam-chip-card .btn-lux { position: relative; z-index: 1; }

@media (max-width: 991px) {
    .spot-layout { grid-template-columns: 1fr; gap: 70px; text-align: left; }
    .spot-photo { max-width: 460px; margin: 0 auto; }
    .spot-name-card { white-space: normal; }
    .mteam-grid { grid-template-columns: 1fr 1fr; }
    .mteam-btn-wrap { max-height: 90px; margin-top: 16px; }
}
@media (max-width: 640px) {
    .spot-expert { grid-template-columns: 1fr; }
    .mteam-grid { grid-template-columns: 1fr; }
    .mteam-card { min-height: 380px; }
    .spot-actions { flex-direction: column; align-items: stretch; }
    .spot-actions .btn-lux { text-align: center; }
}

/* ==========================================================================
   19.97 FORM WIZARD PAGE STYLES
   ========================================================================== */
.fwl-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 44px;
    align-items: start;
}

.fwl-sidebar {
    position: sticky;
    top: 108px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    padding: 28px 22px;
    border-top: 4px solid var(--gold);
}
.fwl-progress-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.fwl-progress-head strong { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--dark-slate); }
.fwl-progress-head span { font-size: 13px; font-weight: 800; color: var(--primary); }
.fwl-progress-bar { height: 6px; border-radius: 6px; background: rgba(17, 17, 17, 0.07); overflow: hidden; margin-bottom: 20px; }
.fwl-progress-fill {
    height: 100%;
    width: 25%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.fw-step {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding: 13px 13px;
    border: none;
    background: transparent;
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}
.fw-step:hover { background: var(--bg-ambient); }
.fw-step.active { background: rgba(249, 150, 30, 0.08); }
.fw-step-num {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 12px;
    background: var(--bg-ambient);
    border: 1.5px solid rgba(249, 150, 30, 0.35);
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.fw-step.active .fw-step-num { background: linear-gradient(135deg, var(--primary), var(--accent-red)); color: #ffffff; border-color: transparent; }
.fw-step.done .fw-step-num { background: #15803d; color: #ffffff; border-color: transparent; }
.fw-step-label strong { display: block; font-size: 14.5px; font-weight: 800; color: var(--dark-slate); line-height: 1.3; }
.fw-step-label span { font-size: 11.5px; color: var(--text-muted); font-weight: 600; }

.fwl-panel {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 26px;
    padding: 48px 50px;
    box-shadow: var(--shadow-premium);
}
.fw-panel { display: none; }
.fw-panel.active { display: block; animation: fwPanelIn 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes fwPanelIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
.fw-panel-head { margin-bottom: 30px; }
.fw-panel-head .premium-badge { margin-bottom: 14px; }
.fw-panel-head h2 { font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.fw-panel-head h2 span { color: var(--primary); }
.fw-panel-head p { color: var(--text-muted); font-size: 15px; }

.fw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.fw-full { grid-column: 1 / -1; }

.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 12px; }
.choice-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1.5px solid rgba(17, 17, 17, 0.1);
    border-radius: 13px;
    background: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-slate);
    transition: var(--transition-smooth);
}
.choice-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card .choice-dot {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(17, 17, 17, 0.2);
    transition: var(--transition-smooth);
}
.choice-card.active { border-color: var(--primary); background: rgba(249, 150, 30, 0.07); box-shadow: 0 10px 24px rgba(249, 150, 30, 0.1); }
.choice-card.active .choice-dot { border-color: var(--primary); background: radial-gradient(circle, var(--primary) 0 45%, transparent 50%); }
.choice-card.active input { opacity: 1; }

.fw-service-group {
    border: 1.5px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    padding: 4px 20px;
    margin-bottom: 14px;
    background: #ffffff;
    transition: var(--transition-smooth);
}
.fw-service-group.active { border-color: var(--primary); background: rgba(249, 150, 30, 0.03); }
.fw-service-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    color: var(--dark-slate);
}
.fw-service-head input { width: 20px; height: 20px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
.fw-service-head strong { flex: 1; }
.fw-service-head .fw-svc-note { font-size: 11.5px; font-weight: 700; color: var(--accent-red); letter-spacing: 1px; text-transform: uppercase; }
.fw-subopts {
    display: none;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 0 0 16px 32px;
}
.fw-service-group.active .fw-subopts { display: flex; }
.fw-subopts label { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--text-muted); cursor: pointer; }
.fw-subopts input { width: 17px; height: 17px; accent-color: var(--primary); cursor: pointer; }
.fw-other-input { display: none; }
.fw-other-input.show { display: block; }

.fw-note {
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;
    padding: 16px 20px;
    color: #7a6215;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.7;
}

.fw-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid rgba(17, 17, 17, 0.06);
    position: relative;
    z-index: 5000;
}
.fw-controls .btn-lux,
.fw-step { position: relative; z-index: 5001; pointer-events: auto; }
.fw-controls .btn-lux { min-width: 150px; }
.fw-controls-right { margin-left: auto; }

.fw-error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #b91c1c;
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 13.5px;
    font-weight: 600;
    margin-top: 16px;
    display: none;
}
.fw-error.show { display: block; }

@media (max-width: 991px) {
    .fwl-layout { grid-template-columns: 1fr; gap: 28px; }
    .fwl-sidebar { position: static; padding: 20px 18px; }
    .fwl-panel { padding: 34px 26px; }
    .fw-grid { grid-template-columns: 1fr; }
    .fw-controls .btn-lux { min-width: 120px; }
}
@media (max-width: 640px) {
    .fwl-panel { padding: 26px 18px; border-radius: 20px; }
    .fw-panel-head h2 { font-size: 24px; }
    .fw-controls { flex-direction: column-reverse; align-items: stretch; }
    .fw-controls .btn-lux { width: 100%; }
}

/* ==========================================================================
   19.96 BLOG PAGE STYLES
   ========================================================================== */
.blog-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 44px; }
.blog-filter {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    background: #ffffff;
    color: var(--dark-slate);
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.blog-filter:hover { border-color: var(--gold); transform: translateY(-2px); }
.blog-filter.active {
    background: linear-gradient(135deg, var(--primary), var(--accent-red));
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(249, 150, 30, 0.3);
}

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

.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; }
.blog-page-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1.5px solid rgba(17, 17, 17, 0.1);
    background: #ffffff;
    color: var(--dark-slate);
    font-family: var(--font-main);
    font-size: 14.5px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-smooth);
}
.blog-page-btn:hover { border-color: var(--primary); color: var(--primary); }
.blog-page-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent-red));
    color: #ffffff;
    border-color: transparent;
}
.blog-page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.blog-page-btn:disabled:hover { border-color: rgba(17, 17, 17, 0.1); color: var(--dark-slate); }
.blog-page-btn svg { width: 16px; height: 16px; }
.blog-page-ellipsis { padding: 0 4px; color: var(--text-muted); font-weight: 800; }

@media (max-width: 1199px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-filters { gap: 8px; }
    .blog-filter { padding: 9px 16px; font-size: 12.5px; }
}

/* ==========================================================================
   20. RESPONSIVE
   ========================================================================== */
@media (max-width: 1199px) {
    .hero-title-large { font-size: 44px; }
    .nav-menu > a, .nav-item > a { padding: 10px 10px; font-size: 13.5px; }
}

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

    .navbar { height: 72px; }

    .menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #ffffff;
        padding: 18px 24px 26px;
        box-shadow: 0 30px 60px rgba(17, 17, 17, 0.12);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        border-radius: 0 0 24px 24px;
    }
    .nav-menu.active { max-height: 86vh; opacity: 1; visibility: visible; overflow-y: auto; }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0 0 8px 14px;
        display: none;
        min-width: 0;
    }
    .nav-item.open .dropdown-menu { display: block; transform: none; }

    .srv-hero { min-height: 680px; }
    .hero-content { margin: 0 auto; text-align: center; }
    .hero-action-buttons { justify-content: center; }

    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 36px 30px; margin-top: -56px; }

    .about-layout { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .about-showcase img { height: 420px; }
    .about-desc { margin-left: auto; margin-right: auto; }
    .about-section .btn-lux { margin-top: 6px; }

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

    .services-grid { grid-template-columns: 1fr 1fr; }
    .consultants-grid { grid-template-columns: 1fr 1fr; }
    .workflow-grid { grid-template-columns: 1fr 1fr; }

    .form-layout { grid-template-columns: 1fr; gap: 50px; }

    .articles-grid { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }

    .cta-container h2 { font-size: 32px; }
    .center-heading h2 { font-size: 32px; }
    .left-heading h2 { font-size: 30px; }
}

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

    .srv-hero { min-height: 600px; }

    .hero-title-large { font-size: 34px; }
    .hero-subtitle-text { font-size: 16px; }
    .btn-lux { padding: 14px 28px; font-size: 15px; }

    .hero-slider-nav { bottom: 24px; gap: 12px; }
    .hero-slider-arrow { width: 38px; height: 38px; }

    .metrics-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
    .metric-card h3 { font-size: 28px; }

    .services-grid { grid-template-columns: 1fr; }
    .consultants-grid { grid-template-columns: 1fr; }
    .workflow-grid { grid-template-columns: 1fr; }
    .tpdoc-steps { grid-template-columns: 1fr; }

    .articles-grid { grid-template-columns: 1fr; }

    .footer-grid { gap: 32px; }
    .footer-bottom { margin-top: 54px; }

    .wa-widget { right: 16px; bottom: 16px; }
    .wa-popup { width: min(310px, calc(100vw - 32px)); }
    .scroll-top { left: 16px; bottom: 16px; }
}
