/* ================================================
   BKK — Bangun Karina Karya
   Main Stylesheet v1.0.0
   Color Palette from Design Brief:
     Navy    #12304A | Blue   #2563A6
     Orange  #F28C28 | BG     #F5F7FA
     Text    #1F2937 | White  #FFFFFF
================================================ */

/* ------------------------------------------------
   1. RESET & CSS CUSTOM PROPERTIES
------------------------------------------------ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy:        #12304A;
    --navy-light:  #1a4060;
    --navy-dark:   #0d2236;
    --blue:        #2563A6;
    --blue-light:  #3b82f6;
    --orange:      #F28C28;
    --orange-dark: #d97a1f;
    --orange-pale: rgba(242, 140, 40, 0.1);
    --bg:          #F5F7FA;
    --bg-2:        #EEF2F7;
    --text:        #1F2937;
    --text-light:  #6B7280;
    --text-muted:  #9CA3AF;
    --white:       #FFFFFF;
    --border:      #E5E7EB;
    --green:       #10B981;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow:    0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 40px -4px rgba(0,0,0,0.12);

    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body:    'Inter', -apple-system, sans-serif;

    --transition: 0.28s ease;
    --radius:     8px;
    --radius-lg:  16px;
    --radius-xl:  24px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

/* ------------------------------------------------
   2. TYPOGRAPHY
------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-title--white { color: var(--white); }

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 580px;
}

.section-desc--white { color: rgba(255,255,255,0.75); }

/* ------------------------------------------------
   3. LAYOUT & CONTAINER
------------------------------------------------ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.section { padding: 88px 0; }
.section--sm { padding: 60px 0; }
.section--bg { background-color: var(--bg); }
.section--navy { background-color: var(--navy); }
.section--dark { background: linear-gradient(135deg, var(--navy) 0%, #164d78 100%); }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-desc { margin: 0 auto; }

/* ------------------------------------------------
   4. BUTTONS
------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background-color: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 140, 40, 0.35);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background-color: var(--bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--navy);
}

.btn-navy {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ------------------------------------------------
   5. HEADER & NAVIGATION
------------------------------------------------ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(18, 48, 74, 0.12);
    border-bottom-color: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    gap: 16px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.header-logo img {
    height: 48px;
    width: auto;
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    background-color: var(--bg);
}

.nav-link .fa-chevron-down {
    font-size: 0.625rem;
    transition: transform var(--transition);
}

.nav-item:hover .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 210px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 200;
    padding: 6px;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.dropdown-item:hover {
    background-color: var(--bg);
    color: var(--navy);
    padding-left: 18px;
}

.dropdown-item i {
    color: var(--orange);
    width: 16px;
    font-size: 0.875rem;
}

/* Header right actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sister-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}

.sister-link:hover {
    color: var(--navy);
    border-color: var(--navy);
    background-color: var(--bg);
}

.sister-link i { font-size: 0.7rem; }

.header-cta { padding: 10px 20px; font-size: 0.875rem; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
    border-radius: 6px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

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

/* ------------------------------------------------
   6. HERO SECTION
------------------------------------------------ */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #154472 55%, #1a5590 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 88px 0 120px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 140, 40, 0.15);
    border: 1px solid rgba(242, 140, 40, 0.3);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge i { font-size: 0.875rem; }

.hero-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 800;
}

.hero-title .highlight {
    color: var(--orange);
    display: inline;
}

.hero-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.78;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

/* Stats row */
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-item { display: flex; flex-direction: column; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-number span { color: var(--orange); }

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    margin-top: 5px;
}

/* Hero visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    width: 100%;
    position: relative;
}

.hero-img-frame {
    width: 100%;
    aspect-ratio: 4/3.2;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    padding: 32px;
}

.img-placeholder i { font-size: 3.5rem; }

.img-placeholder p {
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Floating tag on hero image */
.hero-float-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
}

.float-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-badge-icon i { color: var(--orange); font-size: 1.125rem; }

.float-badge-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 2px;
}

.float-badge-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ------------------------------------------------
   7. INDUSTRIES STRIP
------------------------------------------------ */
.industries-strip {
    background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.industries-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.industry-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.industry-chip i {
    color: var(--orange);
    font-size: 0.875rem;
}

.industries-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.12);
}

/* ------------------------------------------------
   8. COMPANY INTRODUCTION
------------------------------------------------ */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-img-wrap { position: relative; }

.img-frame {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-2);
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-ph {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
}

.img-ph i { font-size: 3rem; }
.img-ph span { font-size: 0.875rem; }

.intro-badge-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 24px rgba(242, 140, 40, 0.4);
}

.intro-badge-box .num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.intro-badge-box .lbl {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

.intro-content .section-tag { margin-bottom: 10px; }

.intro-content .section-title { margin-bottom: 20px; }

.intro-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.intro-bullets {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 36px;
}

.intro-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
}

.intro-bullet i { color: var(--orange); font-size: 0.9375rem; flex-shrink: 0; }

/* ------------------------------------------------
   9. MAIN SERVICES
------------------------------------------------ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(242, 140, 40, 0.2);
}

.service-img {
    aspect-ratio: 16/8;
    overflow: hidden;
    background: var(--bg);
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img { transform: scale(1.04); }

.service-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
}

.service-img-ph i { font-size: 2.5rem; }
.service-img-ph span { font-size: 0.8125rem; }

.service-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-box i { font-size: 1.375rem; color: var(--orange); }

.service-name {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.72;
    margin-bottom: 22px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    flex: 1;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.875rem;
    color: var(--text);
}

.service-list-item i { color: var(--blue); font-size: 0.8125rem; flex-shrink: 0; }

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    transition: all var(--transition);
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.service-cta:hover {
    color: var(--orange);
    gap: 10px;
}

/* ------------------------------------------------
   10. WHY CHOOSE BKK
------------------------------------------------ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.why-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-icon-wrap i { font-size: 1.25rem; color: var(--orange); }

.why-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 9px;
    line-height: 1.35;
}

.why-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.68;
    margin: 0;
}

/* ------------------------------------------------
   11. SERVICE PROCESS
------------------------------------------------ */
.process-wrap {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.process-connector {
    position: absolute;
    top: 32px;
    left: calc(10% + 32px);
    right: calc(10% + 32px);
    height: 2px;
    background: linear-gradient(to right, var(--orange), var(--blue), var(--orange));
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}

.process-icon-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    transition: all var(--transition);
}

.process-step:hover .process-icon-ring {
    border-color: var(--orange);
    background: var(--navy);
    box-shadow: 0 0 0 8px rgba(242, 140, 40, 0.08);
}

.process-icon-ring i {
    font-size: 1.375rem;
    color: var(--navy);
    transition: color var(--transition);
}

.process-step:hover .process-icon-ring i { color: var(--orange); }

.process-step-num {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.process-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
}

.process-desc {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ------------------------------------------------
   12. SISTER COMPANY
------------------------------------------------ */
.sister-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sister-content .section-tag { margin-bottom: 10px; }
.sister-content .section-title { margin-bottom: 16px; }

.sister-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.78;
    margin-bottom: 28px;
}

.sister-visual { display: flex; justify-content: center; }

.sister-card-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    max-width: 340px;
    width: 100%;
}

.sister-card-box img {
    height: 80px;
    width: auto;
    margin: 0 auto 20px;
}

.sister-card-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.sister-card-tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ------------------------------------------------
   13. TESTIMONIALS
------------------------------------------------ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testi-stars i { color: #FBBF24; font-size: 0.875rem; }

.testi-quote {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-avatar i { color: var(--text-muted); font-size: 1.25rem; }

.testi-name {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.testi-role {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* Testimonial placeholder notice */
.testi-coming {
    text-align: center;
    padding: 48px 24px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}

.testi-coming i { font-size: 2.5rem; color: var(--text-muted); margin-bottom: 12px; display: block; }
.testi-coming p { color: var(--text-light); margin: 0; }

/* ------------------------------------------------
   14. FINAL CTA
------------------------------------------------ */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a5590 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 48px 48px;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(242, 140, 40, 0.06);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 96px 0;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ------------------------------------------------
   15. FOOTER
------------------------------------------------ */
.site-footer {
    background-color: var(--navy-dark);
    color: rgba(255,255,255,0.7);
}

.footer-main {
    padding: 72px 0 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

/* Brand column */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-wrap img {
    height: 44px;
    width: auto;
    opacity: 0.9;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-about {
    font-size: 0.875rem;
    line-height: 1.72;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer columns */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-link {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: var(--orange);
    padding-left: 5px;
}

/* Contact items */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-row {
    display: flex;
    gap: 10px;
    font-size: 0.875rem;
}

.footer-contact-row i {
    color: var(--orange);
    font-size: 0.9375rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-row a,
.footer-contact-row span {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
    line-height: 1.5;
}

.footer-contact-row a:hover { color: var(--orange); }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-inner a {
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}

.footer-bottom-inner a:hover { color: var(--orange); }

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* ------------------------------------------------
   16. WHATSAPP FAB
------------------------------------------------ */
.wa-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: all var(--transition);
    z-index: 990;
    text-decoration: none;
}

.wa-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
    color: var(--white);
}

/* ------------------------------------------------
   17. UTILITIES
------------------------------------------------ */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }

/* Fade-in animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ------------------------------------------------
   18. RESPONSIVE — TABLET (max 1024px)
------------------------------------------------ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .why-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-inner { gap: 40px; }
}

/* ------------------------------------------------
   19. RESPONSIVE — MOBILE (max 768px)
------------------------------------------------ */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .container { padding: 0 20px; }

    /* Header */
    .main-nav { display: none; }
    .sister-link { display: none; }
    .menu-toggle { display: flex; }

    .main-nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 12px 16px 20px;
        box-shadow: var(--shadow-lg);
        gap: 2px;
        z-index: 999;
    }

    .nav-link { width: 100%; padding: 12px 14px; }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--border);
        margin-left: 20px;
        border-radius: 0;
        padding: 0;
    }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 88px;
    }

    .hero-visual { order: -1; }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-float-badge { left: 16px; }

    /* Sections: 2-col → 1-col */
    .intro-grid,
    .sister-grid { grid-template-columns: 1fr; gap: 40px; }

    .intro-badge-box { bottom: -16px; right: 16px; }

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

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

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

    /* Process */
    .process-wrap { flex-direction: column; gap: 28px; }
    .process-connector { display: none; }
    .process-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
    }
    .process-icon-ring { margin: 0; flex-shrink: 0; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }

    .sister-card-box { max-width: 100%; }
}

/* ------------------------------------------------
   20. RESPONSIVE — SMALL MOBILE (max 480px)
------------------------------------------------ */
@media (max-width: 480px) {
    .hero-ctas,
    .cta-buttons { flex-direction: column; align-items: flex-start; }
    .cta-buttons { align-items: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .btn { width: 100%; justify-content: center; }
    .hero-ctas .btn,
    .cta-buttons .btn { width: auto; min-width: 220px; justify-content: center; }

}
}

/* ================================================
   INNER PAGES — Shared & Page-Specific Styles
================================================ */

/* ── Page Hero (reusable across all inner pages) ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #154472 60%, #1a5590 100%);
    padding: 64px 0 52px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 40px 40px;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 40px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(242,140,40,0.15);
    border: 1px solid rgba(242,140,40,0.3);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.page-hero-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.page-hero-title span { color: var(--orange); }

.page-hero-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.72;
    max-width: 600px;
    margin-bottom: 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    margin-top: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 0.625rem; }

/* ── Stats Row ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 0;
}

.stat-box {
    background: var(--white);
    padding: 28px 24px;
    text-align: center;
}

.stat-box-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-box-num span { color: var(--orange); }

.stat-box-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ── TENTANG KAMI ── */
.visi-misi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vm-card {
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}

.vm-card--visi::before { background: var(--orange); }
.vm-card--misi::before { background: var(--blue); }

.vm-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.vm-icon--visi { background: rgba(242,140,40,0.1); }
.vm-icon--misi { background: rgba(37,99,166,0.1); }

.vm-icon--visi i { color: var(--orange); font-size: 1.375rem; }
.vm-icon--misi i { color: var(--blue);   font-size: 1.375rem; }

.vm-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.vm-text {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.78;
    margin: 0;
}

.vm-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.55;
}

.vm-list li::before {
    content: '›';
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1rem;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-emoji {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.value-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
}

.value-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* About intro split */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ── PELATIHAN ── */
.programs-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

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

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(242,140,40,0.25);
}

.program-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.program-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-icon i { font-size: 1.25rem; color: var(--orange); }

.program-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(242,140,40,0.2);
    color: var(--orange);
    white-space: nowrap;
    border: 1px solid rgba(242,140,40,0.3);
}

.program-badge.popular {
    background: rgba(242,140,40,0.9);
    color: var(--white);
    border-color: transparent;
}

.program-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }

.program-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}

.program-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.35;
}

.program-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.program-meta {
    display: flex;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-bottom: 16px;
}

.program-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.program-meta-item i { color: var(--orange); font-size: 0.875rem; }

.program-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* ── PERPANJANGAN ── */
.renewal-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.renewal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    gap: 18px;
}

.renewal-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.renewal-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.renewal-icon-wrap i { font-size: 1.25rem; color: var(--orange); }

.renewal-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
    line-height: 1.3;
}

.renewal-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.req-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
}

.req-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.req-title i { color: var(--orange); }

.req-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.req-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.req-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    margin-top: 7px;
}

/* ── JADWAL ── */
.schedule-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.schedule-table thead th {
    background: var(--navy);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.schedule-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:nth-child(even) { background: var(--bg); }
.schedule-table tbody tr:hover { background: rgba(242,140,40,0.05); }

.schedule-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.schedule-status.open {
    background: rgba(16,185,129,0.1);
    color: #059669;
}

.schedule-status.soon {
    background: rgba(242,140,40,0.1);
    color: var(--orange);
}

.schedule-status.full {
    background: rgba(239,68,68,0.1);
    color: #DC2626;
}

.schedule-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-light);
}

.schedule-empty i { font-size: 3rem; color: var(--text-muted); display: block; margin-bottom: 14px; }

/* ── KONTAK ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i { font-size: 1.125rem; color: var(--orange); }

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-card-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
}

.contact-card-value a {
    color: var(--navy);
    transition: color var(--transition);
}

.contact-card-value a:hover { color: var(--orange); }

.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 9px 18px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.contact-wa-btn:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-1px);
}

/* Map */
.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 16px;
}

.map-embed iframe {
    width: 100%;
    height: 220px;
    display: block;
    border: none;
}

.map-placeholder {
    height: 220px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
}

.map-placeholder i { font-size: 2.5rem; }
.map-placeholder span { font-size: 0.875rem; }

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.form-group label span { color: var(--orange); }

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242,140,40,0.12);
}

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

.form-submit { width: 100%; justify-content: center; margin-top: 4px; }

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
}

.form-success {
    display: none;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: var(--radius);
    padding: 16px;
    color: #059669;
    font-weight: 500;
    text-align: center;
    margin-top: 16px;
}

/* ── ARTIKEL (archive + single) ── */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(242,140,40,0.2);
}

.post-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-thumb img { transform: scale(1.04); }

.post-thumb-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
}

.post-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.post-meta .cat {
    background: var(--orange-pale);
    color: var(--orange);
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
}

.post-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 10px;
    flex: 1;
}

.post-title a { color: inherit; transition: color var(--transition); }
.post-title a:hover { color: var(--orange); }

.post-excerpt {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    transition: all var(--transition);
}

.post-read-more:hover { color: var(--orange); gap: 9px; }

/* Single article */
.single-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.single-content {
    font-size: 1.0625rem;
    line-height: 1.82;
    color: var(--text);
}

.single-content h2 { font-size: 1.5rem; margin: 28px 0 14px; }
.single-content h3 { font-size: 1.25rem; margin: 24px 0 12px; }
.single-content p  { margin-bottom: 1.25rem; }
.single-content ul, .single-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.single-content li { margin-bottom: 0.4rem; }
.single-content img { border-radius: var(--radius-lg); margin: 24px 0; }
.single-content blockquote {
    border-left: 4px solid var(--orange);
    padding: 16px 24px;
    background: var(--bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-light);
}

.single-sidebar { position: sticky; top: 90px; }

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-card-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

/* Pagination */
.pagination-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    color: var(--text);
    transition: all var(--transition);
    text-decoration: none;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

/* ── 404 ── */
.not-found-wrap {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

.not-found-code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    opacity: 0.08;
    margin-bottom: -20px;
    display: block;
}

.not-found-icon { font-size: 4rem; color: var(--orange); margin-bottom: 20px; display: block; }
.not-found-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: 14px; }
.not-found-desc { color: var(--text-light); font-size: 1.0625rem; margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ── Inner page responsive ── */
@media (max-width: 1024px) {
    .single-wrap { grid-template-columns: 1fr; }
    .single-sidebar { position: static; }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .visi-misi-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .renewal-types-grid { grid-template-columns: 1fr; }
    .requirements-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .values-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ================================================
   CLIENT LOGOS — grid & marquee
================================================ */

/* Grid tampil di homepage */
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.client-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    min-height: 88px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.client-logo-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(242, 140, 40, 0.18);
    background: rgba(242, 140, 40, 0.03);
    transform: translateY(-3px);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.client-logo-text {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
}

/* Placeholder state */
.client-logo-card--ph {
    background: var(--bg);
    border-style: dashed;
}

.client-logo-ph-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.client-logo-ph-inner i { font-size: 1.5rem; }
.client-logo-ph-inner span { font-size: 0.75rem; }

/* ── Marquee (scrolling) ── */
.client-marquee-wrap {
    overflow: hidden;
    padding: 8px 0;
    position: relative;
}

/* Fade edges */
.client-marquee-wrap::before,
.client-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.client-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.client-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.client-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: bkk-marquee 36s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

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

@keyframes bkk-marquee {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

.marquee-logo-item {
    width: 160px;
    height: 84px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.marquee-logo-item:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(242, 140, 40, 0.18);
    background: rgba(242, 140, 40, 0.03);
    transform: translateY(-2px);
}

.marquee-logo-item img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.marquee-logo-text {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
}

@media (max-width: 768px) {
    .clients-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }
    .client-marquee-wrap::before,
    .client-marquee-wrap::after { width: 40px; }
}

/* ================================================
   INNER PAGES — Visual Enhancement v1.1
   Berdasarkan brief: Modern Corporate Training,
   palette Navy/Blue/Orange, referensi Lima Prima
================================================ */

/* ──────────────────────────────────────────────
   1. SECTION HEADER — orange accent line
────────────────────────────────────────────── */
.section-header .section-tag,
.section-tag {
    position: relative;
    padding-left: 18px;
}

.section-header .section-tag::before,
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

/* Center alignment — no left accent */
.section-header .section-tag {
    padding-left: 0;
}
.section-header .section-tag::before { display: none; }

/* Orange underline on section titles inside section-header */
.section-header .section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--orange), rgba(242,140,40,0.3));
    border-radius: 2px;
    margin: 12px auto 0;
}

/* Left-aligned section titles (inside content) */
.section-title-left {
    position: relative;
    padding-left: 18px;
}
.section-title-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 32px;
    background: linear-gradient(to bottom, var(--orange), rgba(242,140,40,0.3));
    border-radius: 2px;
}

/* ──────────────────────────────────────────────
   2. PAGE HERO — enhancements
────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(140deg, var(--navy) 0%, #164470 50%, #0f3356 100%);
}

/* Orange glowing circle decoration top-right */
.page-hero::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,140,40,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Orange bar left-accent on hero title */
.page-hero-title {
    position: relative;
    padding-left: 20px;
}
.page-hero-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: linear-gradient(to bottom, var(--orange), rgba(242,140,40,0.4));
    border-radius: 2px;
}

/* Better breadcrumb style */
.breadcrumb {
    margin-top: 24px;
    background: rgba(255,255,255,0.06);
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ──────────────────────────────────────────────
   3. SECTION VARIANT — navy feature strip
────────────────────────────────────────────── */
.section--navy-soft {
    background: linear-gradient(135deg, var(--navy) 0%, #164470 100%);
    position: relative;
    overflow: hidden;
}

.section--navy-soft::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 36px 36px;
    pointer-events: none;
}

/* Orange-tinted section */
.section--orange-pale {
    background: linear-gradient(135deg, #fff9f3 0%, #fff5eb 100%);
    border-top: 1px solid rgba(242,140,40,0.12);
    border-bottom: 1px solid rgba(242,140,40,0.12);
}

/* Pattern background for alternating sections */
.section--bg {
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(18,48,74,0.04) 1px, transparent 0);
    background-size: 28px 28px;
}

/* ──────────────────────────────────────────────
   4. WHY-CARD — numbered variant
────────────────────────────────────────────── */
.why-card {
    position: relative;
    overflow: hidden;
}

/* Subtle orange glint on top-right */
.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right, rgba(242,140,40,0.08), transparent 70%);
    border-radius: 0 var(--radius-lg) 0 0;
    pointer-events: none;
}

.why-card:hover::after {
    background: radial-gradient(circle at top right, rgba(242,140,40,0.15), transparent 70%);
}

/* Numbered why-card variant */
.why-card--numbered {
    counter-increment: why-counter;
    padding-top: 36px;
}

.why-card--numbered .why-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(18,48,74,0.06);
    line-height: 1;
    pointer-events: none;
}

/* ──────────────────────────────────────────────
   5. FEATURE HIGHLIGHT BOX
────────────────────────────────────────────── */
.feature-highlight {
    background: linear-gradient(135deg, var(--navy) 0%, #1a4f7a 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(242,140,40,0.2);
    pointer-events: none;
}

.feature-highlight::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px solid rgba(242,140,40,0.1);
    pointer-events: none;
}

.feature-highlight .section-tag {
    color: var(--orange);
}

.feature-highlight .section-title { color: var(--white); }
.feature-highlight .section-title::after {
    margin: 10px 0 0;
}

/* ──────────────────────────────────────────────
   6. STAT BOX VARIANTS
────────────────────────────────────────────── */

/* Orange accent on stat boxes */
.stat-box {
    position: relative;
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    opacity: 0;
    transition: opacity var(--transition);
}

.stat-box:hover::after { opacity: 1; }

.stat-box-num {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ──────────────────────────────────────────────
   7. PROCESS STEP ENHANCEMENT
────────────────────────────────────────────── */
.process-step {
    position: relative;
}

/* Active/hover: icon ring glows orange */
.process-step:hover .process-icon-ring {
    background: linear-gradient(135deg, var(--navy), #164470);
    box-shadow: 0 0 0 8px rgba(242,140,40,0.1), 0 4px 16px rgba(18,48,74,0.2);
}

/* ──────────────────────────────────────────────
   8. VM-CARD (Visi Misi) ENHANCEMENT
────────────────────────────────────────────── */
.vm-card {
    position: relative;
    overflow: hidden;
}

.vm-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    pointer-events: none;
}

.vm-card--visi::after {
    background: radial-gradient(circle, rgba(242,140,40,0.08) 0%, transparent 70%);
}

.vm-card--misi::after {
    background: radial-gradient(circle, rgba(37,99,166,0.08) 0%, transparent 70%);
}

/* ──────────────────────────────────────────────
   9. CONTACT PAGE ENHANCEMENT
────────────────────────────────────────────── */
.contact-card-icon {
    background: linear-gradient(135deg, var(--orange-pale), rgba(242,140,40,0.05));
    border: 1px solid rgba(242,140,40,0.15);
}

.contact-form-wrap {
    background: linear-gradient(145deg, var(--white) 0%, #fafbff 100%);
    border-left: 4px solid var(--orange);
}

.form-title {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 6px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

/* ──────────────────────────────────────────────
   10. PROGRAM CARD ENHANCEMENT
────────────────────────────────────────────── */
.program-card-header {
    background: linear-gradient(140deg, var(--navy) 0%, #1a4f7a 100%);
    position: relative;
    overflow: hidden;
}

.program-card-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.program-card:hover .program-card-header {
    background: linear-gradient(140deg, #1a4f7a 0%, var(--navy) 100%);
}

/* ──────────────────────────────────────────────
   11. RENEWAL CARD ENHANCEMENT
────────────────────────────────────────────── */
.renewal-card {
    position: relative;
    overflow: hidden;
}

.renewal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--orange), rgba(242,140,40,0.3));
    border-radius: 0 0 2px 2px;
    transition: height 0.35s ease;
}

.renewal-card:hover::before { height: 100%; }

/* ──────────────────────────────────────────────
   12. REQUIREMENT SECTION ENHANCEMENT
────────────────────────────────────────────── */
.req-section {
    position: relative;
    overflow: hidden;
}

.req-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--blue));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ──────────────────────────────────────────────
   13. SERVICE CARD ENHANCEMENT
────────────────────────────────────────────── */
.service-card {
    border-top: 3px solid transparent;
    transition: all var(--transition), border-color var(--transition);
}

.service-card:hover {
    border-top-color: var(--orange);
}

/* ──────────────────────────────────────────────
   14. INFO NOTE BOX
────────────────────────────────────────────── */
.info-note {
    background: rgba(37,99,166,0.05);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text);
}

.info-note i { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

.info-note--orange {
    background: rgba(242,140,40,0.06);
    border-color: var(--orange);
}

.info-note--orange i { color: var(--orange); }

/* ──────────────────────────────────────────────
   15. ORANGE DIVIDER STRIP
────────────────────────────────────────────── */
.section-divider-orange {
    height: 3px;
    background: linear-gradient(to right, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
    margin: 0;
    border: none;
}

/* ──────────────────────────────────────────────
   16. SCHEDULE TABLE ENHANCEMENT
────────────────────────────────────────────── */
.schedule-table thead th {
    background: linear-gradient(135deg, var(--navy) 0%, #164470 100%);
    letter-spacing: 0.05em;
}

.schedule-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.schedule-table thead th:last-child  { border-radius: 0 var(--radius) 0 0; }

.schedule-table tbody tr:hover td:first-child {
    border-left: 3px solid var(--orange);
}

/* ──────────────────────────────────────────────
   17. PAGE CONTENT TYPOGRAPHY (single.php)
────────────────────────────────────────────── */
.single-content h2,
.single-content h3 {
    position: relative;
    padding-bottom: 10px;
}

.single-content h2::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    margin-top: 8px;
}

/* ──────────────────────────────────────────────
   18. RESPONSIVE INNER PAGES
────────────────────────────────────────────── */
@media (max-width: 768px) {
    .page-hero-title { padding-left: 14px; }
    .page-hero-title::before { width: 3px; }
    .feature-highlight { padding: 28px 24px; }
    .section--navy-soft .container { position: relative; z-index: 1; }
}

/* ================================================
   GROUP SWITCHER — BKK Header
================================================ */

.group-switcher {
    position: relative;
}

.group-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.group-switcher-btn:hover,
.group-switcher-btn[aria-expanded="true"] {
    border-color: var(--navy);
    background: var(--white);
    color: var(--navy);
}

.group-switcher-chevron {
    font-size: 0.625rem;
    transition: transform var(--transition);
}

.group-switcher-btn[aria-expanded="true"] .group-switcher-chevron {
    transform: rotate(180deg);
}

.group-switcher-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--transition);
}

.group-switcher-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.group-switcher-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 4px 10px 8px;
}

.group-switcher-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: background var(--transition);
    cursor: default;
}

a.group-switcher-item {
    cursor: pointer;
}

a.group-switcher-item:hover {
    background: var(--bg);
}

.group-switcher-item--active {
    background: rgba(18, 48, 74, 0.04);
}

.group-item-avatar {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.group-item-avatar--bkk {
    background: linear-gradient(135deg, var(--navy), #1a4f7a);
    color: var(--white);
}

.group-item-avatar--bkn {
    background: linear-gradient(135deg, #1a6b3a, #22873f);
    color: var(--white);
}

.group-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.group-item-name {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.group-item-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.group-item-current {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--orange);
    background: rgba(242, 140, 40, 0.1);
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
}

.group-item-arrow {
    color: var(--text-muted);
    font-size: 0.6875rem;
    flex-shrink: 0;
}

.group-switcher-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

/* Mobile: hide grup label, keep icon only */
@media (max-width: 768px) {
    .group-switcher-btn span { display: none; }
    .group-switcher-menu { right: -8px; }
}

/* ── Dokumentasi Kegiatan Grid ──────────────────────────────── */
.dok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.dok-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dok-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.dok-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dok-item:hover .dok-img-wrap img {
    transform: scale(1.04);
}

.dok-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 28px 14px 12px;
}

@media (max-width: 768px) {
    .dok-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .dok-grid { grid-template-columns: 1fr; }
}

/* ── Dokumentasi — zoom icon on hover ──────────────────────────── */
.dok-zoom-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.dok-item:hover .dok-zoom-icon {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

/* ── Lightbox Overlay ───────────────────────────────────────────── */
#dok-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

#dok-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.dlb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.dlb-img {
    max-width: 88vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s ease;
}

.dlb-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    margin-top: 14px;
    text-align: center;
    font-weight: 500;
    max-width: 600px;
}

/* Close button */
.dlb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.dlb-close:hover { background: rgba(255, 255, 255, 0.25); }

/* Prev / Next buttons */
.dlb-prev,
.dlb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.dlb-prev { left: 20px; }
.dlb-next { right: 20px; }
.dlb-prev:hover,
.dlb-next:hover { background: rgba(255, 255, 255, 0.25); }

@media (max-width: 600px) {
    .dlb-prev { left: 8px; }
    .dlb-next { right: 8px; }
    .dlb-close { top: 12px; right: 12px; }
}

/* ── Dokumentasi — show more button ────────────────────────────── */
.dok-more-wrap {
    text-align: center;
    margin-top: 28px;
}

.dok-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dok-more-count {
    font-size: 0.8125rem;
    font-weight: 400;
    opacity: 0.75;
}

/* ── Dokumentasi — reveal animation (applied via JS) ───────────── */
@keyframes dokFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dok-item.dok-revealing {
    animation: dokFadeUp 0.38s ease forwards;
}
