/* ======================================================================
   PERTAHKINDO CUSTOM DESIGN SYSTEM
   Perkumpulan Tenaga Ahli Konsultan Indonesia
   ====================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ── Design Tokens ──────────────────────────────────────── */
:root {
    /* Brand Palette */
    --pk-navy:       #0B2545;
    --pk-navy-dark:  #071A33;
    --pk-royal:      #134074;
    --pk-royal-light:#1A5096;
    --pk-gold:       #EE9B00;
    --pk-gold-light: #F5B632;
    --pk-gold-dark:  #CA8400;

    /* Neutrals */
    --pk-white:      #FFFFFF;
    --pk-off-white:  #F8F9FA;
    --pk-gray-50:    #F5F6F8;
    --pk-gray-100:   #E8EBF0;
    --pk-gray-200:   #D1D5DB;
    --pk-gray-300:   #9CA3AF;
    --pk-gray-400:   #6B7280;
    --pk-gray-500:   #4B5563;
    --pk-gray-600:   #374151;
    --pk-text:       #1E293B;
    --pk-text-muted: #64748B;

    /* Functional */
    --pk-success:    #10B981;
    --pk-danger:     #EF4444;

    /* Spacing */
    --section-py:    100px;
    --section-py-sm: 60px;

    /* Typography */
    --font-primary:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm:     0 1px 3px rgba(11,37,69,.08);
    --shadow-md:     0 4px 16px rgba(11,37,69,.1);
    --shadow-lg:     0 12px 40px rgba(11,37,69,.12);
    --shadow-xl:     0 24px 64px rgba(11,37,69,.14);

    /* Radius */
    --radius-sm:     8px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     28px;

    /* Transitions */
    --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

a { text-decoration: none; color: var(--pk-royal); transition: color 0.25s var(--ease-out); }
a:hover, a:focus { text-decoration: none; color: var(--pk-gold); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--pk-navy);
    margin: 0;
    line-height: 1.25;
}

h1 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 4vw, 42px); letter-spacing: -0.015em; }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 20px; }
h5 { font-size: 18px; font-weight: 600; }
h6 { font-size: 15px; font-weight: 600; }

p { margin: 0; color: var(--pk-gray-500); line-height: 1.75; }

ul { margin: 0; padding: 0; }
li { list-style: none; }

img { max-width: 100%; height: auto; }

/* ── Utility Classes ──────────────────────────────────── */
.pk-section {
    padding: var(--section-py) 0;
}

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

.pk-section-title .pk-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pk-gold);
    margin-bottom: 12px;
}

.pk-section-title .pk-label::before,
.pk-section-title .pk-label::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--pk-gold);
    border-radius: 1px;
}

.pk-section-title h2 {
    margin-bottom: 16px;
}

.pk-section-title p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 17px;
}

.pk-bg-navy { background-color: var(--pk-navy); }
.pk-bg-royal { background-color: var(--pk-royal); }
.pk-bg-gray { background-color: var(--pk-gray-50); }
.pk-bg-gradient {
    background: linear-gradient(135deg, var(--pk-navy) 0%, var(--pk-royal) 100%);
}

.pk-text-gold { color: var(--pk-gold) !important; }
.pk-text-navy { color: var(--pk-navy) !important; }
.pk-text-white { color: var(--pk-white) !important; }

/* ── Buttons ──────────────────────────────────────────── */
.pk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: 2px solid transparent;
    text-decoration: none !important;
    letter-spacing: 0.01em;
}

.pk-btn-primary {
    background: var(--pk-gold);
    color: var(--pk-navy);
    border-color: var(--pk-gold);
}

.pk-btn-primary:hover {
    background: var(--pk-gold-light);
    border-color: var(--pk-gold-light);
    color: var(--pk-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(238,155,0,.3);
}

.pk-btn-outline {
    background: transparent;
    color: var(--pk-white);
    border-color: rgba(255,255,255,0.3);
}

.pk-btn-outline:hover {
    background: var(--pk-white);
    color: var(--pk-navy);
    border-color: var(--pk-white);
}

.pk-btn-navy {
    background: var(--pk-navy);
    color: var(--pk-white);
    border-color: var(--pk-navy);
}

.pk-btn-navy:hover {
    background: var(--pk-royal);
    border-color: var(--pk-royal);
    color: var(--pk-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11,37,69,.3);
}

.pk-btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* ── Top Info Bar ─────────────────────────────────────── */
.pk-topbar {
    position: relative;
    z-index: 10001;
    background: var(--pk-navy-dark);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,.7);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.pk-topbar a {
    color: rgba(255,255,255,.7);
    transition: color .2s;
}

.pk-topbar a:hover {
    color: var(--pk-gold);
}

.pk-topbar .topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pk-topbar .topbar-left i {
    color: var(--pk-gold);
    margin-right: 5px;
    font-size: 12px;
}

.pk-topbar .topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.pk-topbar .social-links {
    display: flex;
    gap: 12px;
}

.pk-topbar .social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    font-size: 12px;
    transition: all .25s var(--ease-out);
}

.pk-topbar .social-links a:hover {
    background: var(--pk-gold);
    color: var(--pk-navy);
    transform: translateY(-1px);
}

.pk-topbar .lang-switch {
    position: relative;
    cursor: pointer;
    z-index: 10002;
}

.pk-topbar .lang-switch .lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    padding: 4px 10px;
    transition: all .2s ease;
}

.pk-topbar .lang-switch:hover .lang-btn,
.pk-topbar .lang-switch.open .lang-btn {
    color: var(--pk-gold);
    border-color: var(--pk-gold);
    background: rgba(238, 155, 0, 0.12);
}

.pk-topbar .lang-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #FFFFFF;
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 35px rgba(7, 26, 51, 0.3), 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 10005;
    border: 1px solid rgba(11, 37, 69, 0.1);
    border-top: 2px solid var(--pk-gold);
    pointer-events: none;
}

/* Invisible hover bridge */
.pk-topbar .lang-dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

.pk-topbar .lang-switch:hover .lang-dropdown,
.pk-topbar .lang-switch.open .lang-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.pk-topbar .lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: var(--pk-navy);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.pk-topbar .lang-dropdown a:hover {
    background: var(--pk-gray-50);
    color: var(--pk-royal);
    padding-left: 20px;
}

/* ── Main Navbar ──────────────────────────────────────── */
.pk-navbar {
    background: var(--pk-white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s, padding .3s;
}

.pk-navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.pk-navbar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 12px 0;
    flex-shrink: 0;
}

.pk-navbar-logo img {
    height: 52px;
    width: auto;
}

.pk-navbar-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pk-navbar-logo .logo-text .org-name {
    font-weight: 800;
    font-size: 15px;
    color: var(--pk-navy);
    letter-spacing: 0.02em;
}

.pk-navbar-logo .logo-text .org-full {
    font-size: 10px;
    font-weight: 500;
    color: var(--pk-gray-300);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Desktop Menu */
.pk-nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.pk-nav-menu > li {
    position: relative;
    flex-shrink: 0;
}

.pk-nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 16px 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pk-navy);
    white-space: nowrap;
    transition: color .2s;
    position: relative;
}

.pk-nav-menu > li > a i {
    font-size: 8px;
    margin-left: 2px;
    transition: transform .25s ease, color .2s ease;
    display: inline-block;
}

.pk-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    height: 3px;
    background: var(--pk-gold);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform .25s var(--ease-out);
}

.pk-nav-menu > li:hover > a,
.pk-nav-menu > li.active > a,
.pk-nav-menu > li.dropdown-open > a {
    color: var(--pk-royal);
}

.pk-nav-menu > li:hover > a::after,
.pk-nav-menu > li.active > a::after,
.pk-nav-menu > li.dropdown-open > a::after {
    transform: scaleX(1);
}

.pk-nav-menu > li.has-dropdown:hover > a i.fa-chevron-down,
.pk-nav-menu > li.has-dropdown.dropdown-open > a i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--pk-gold);
}

/* ── Dropdown Menu ───────────────────────────────────── */
.pk-nav-menu li .pk-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #FFFFFF;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 20px 45px rgba(7, 26, 51, 0.16), 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
    z-index: 10000;
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-top: 3px solid var(--pk-gold);
    pointer-events: none;
}

/* Invisible bridge on dropdown to prevent pointer exit gap */
.pk-dropdown::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
    z-index: 5;
}

.pk-nav-menu li.has-dropdown:hover > .pk-dropdown,
.pk-nav-menu li.has-dropdown.dropdown-open > .pk-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.pk-dropdown li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--pk-gray-500);
    transition: all .2s;
    text-decoration: none;
}

.pk-dropdown li a:hover {
    color: var(--pk-royal);
    background: var(--pk-gray-50);
    padding-left: 24px;
}

.pk-dropdown li a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: transparent;
    margin-right: 8px;
    vertical-align: middle;
    transition: background .2s;
}

.pk-dropdown li a:hover::before {
    background: var(--pk-gold);
}

/* ── Mega Menu ───────────────────────────────────────── */
.pk-nav-menu li.has-mega {
    position: static !important;
}

.pk-nav-menu .pk-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 820px;
    max-width: calc(100vw - 40px);
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: 0 20px 45px rgba(7, 26, 51, 0.16), 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-top: 3px solid var(--pk-gold);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
    z-index: 10000;
    pointer-events: none;
}

/* Invisible bridge on mega menu to prevent pointer exit gap */
.pk-mega-menu::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
    z-index: 5;
}

.pk-nav-menu li.has-mega:hover .pk-mega-menu,
.pk-nav-menu li.has-mega.dropdown-open .pk-mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
}

.pk-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pk-mega-col-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--pk-royal);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--pk-gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pk-mega-col-title i {
    color: var(--pk-gold);
    font-size: 13px;
}

.pk-mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pk-mega-link-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all .2s ease;
    text-decoration: none;
}

.pk-mega-link-item:hover {
    background: rgba(11, 37, 69, 0.04);
}

.pk-mega-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(238, 155, 0, 0.12);
    color: var(--pk-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: transform .2s, background .2s, color .2s;
    margin-top: 2px;
}

.pk-mega-link-item:hover .pk-mega-icon {
    background: var(--pk-royal);
    color: #FFFFFF;
    transform: scale(1.08);
}

.pk-mega-text {
    flex: 1;
}

.pk-mega-text h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--pk-navy);
    margin: 0 0 2px;
    line-height: 1.25;
    transition: color .2s;
}

.pk-mega-text p {
    font-size: 11px;
    color: var(--pk-gray-300);
    margin: 0;
    line-height: 1.35;
}

.pk-mega-link-item:hover .pk-mega-text h6 {
    color: var(--pk-royal);
}

/* Mobile Menu Toggle */
.pk-mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--pk-navy);
    font-size: 24px;
}

/* ── Hero Section ─────────────────────────────────────── */
.pk-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #071A33 0%, #0B2545 55%, #134074 100%);
    overflow: hidden;
    border-bottom: 4px solid var(--pk-gold);
}

.pk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 55%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='rgba(238,155,0,0.06)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='130' fill='none' stroke='rgba(238,155,0,0.04)' stroke-width='1'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
}

.pk-hero .container {
    position: relative;
    z-index: 2;
    padding: 70px 15px 80px;
}

.pk-hero-content {
    max-width: 680px;
}

.pk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(238,155,0,.15);
    color: var(--pk-gold);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(238,155,0,.3);
}

.pk-hero-badge i {
    font-size: 10px;
}

.pk-hero h1 {
    color: var(--pk-white);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.18;
}

.pk-hero h1 .highlight {
    background: linear-gradient(135deg, var(--pk-gold), var(--pk-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pk-hero p {
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.pk-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.pk-hero-actions .pk-btn-primary {
    background: #EE9B00 !important;
    color: #0B2545 !important;
    border: 2px solid #EE9B00 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(238,155,0,0.35);
}

.pk-hero-actions .pk-btn-primary:hover,
.pk-hero-actions .pk-btn-primary:focus {
    background: #FFFFFF !important;
    color: #0B2545 !important;
    border-color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.3);
    outline: none !important;
}

.pk-hero-actions .pk-btn-outline {
    background: rgba(255,255,255,0.08) !important;
    color: #FFFFFF !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    font-weight: 600 !important;
}

.pk-hero-actions .pk-btn-outline:hover,
.pk-hero-actions .pk-btn-outline:focus {
    background: #FFFFFF !important;
    color: #0B2545 !important;
    border-color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.25);
    outline: none !important;
}

.pk-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.pk-hero-stats .stat-item {
    text-align: left;
}

.pk-hero-stats .stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--pk-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.pk-hero-stats .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

/* ── Hero Automatic Slider ────────────────────────────── */
.pk-hero-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(238,155,0,0.65);
    background: #071A33;
}

.pk-hero-slider {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.pk-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: scale(1.02);
}

.pk-hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.pk-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.pk-hero-slide .slide-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11,37,69,0.92);
    backdrop-filter: blur(8px);
    color: var(--pk-gold);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(238,155,0,0.5);
    letter-spacing: 0.03em;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pk-hero-slide .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 20px 18px;
    background: linear-gradient(to top, rgba(7,26,51,0.96) 0%, rgba(7,26,51,0.65) 60%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.pk-hero-slide .slide-caption h5 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}

.pk-hero-slide .slide-caption p {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    margin: 0;
}

.pk-slider-controls {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.pk-slide-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(11,37,69,0.85);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--pk-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pk-slide-arrow:hover {
    background: var(--pk-gold);
    color: var(--pk-navy);
    border-color: var(--pk-gold);
}

.pk-slider-dots {
    display: flex;
    align-items: center;
}

.pk-slider-dots .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    margin: 0 3px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pk-slider-dots .dot.active {
    width: 18px;
    border-radius: 4px;
    background: var(--pk-gold);
}

@keyframes pk-pulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ── Quick Services / Features Strip ──────────────────── */
.pk-features-strip {
    background: var(--pk-white);
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.pk-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pk-feature-card {
    background: var(--pk-white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transition: all .35s var(--ease-out);
    cursor: pointer;
    border: 1px solid var(--pk-gray-100);
}

.pk-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pk-gold);
}

.pk-feature-card .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(19,64,116,.08), rgba(19,64,116,.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
}

.pk-feature-card .feature-icon i {
    font-size: 22px;
    color: var(--pk-royal);
    transition: color .3s;
}

.pk-feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--pk-navy), var(--pk-royal));
}

.pk-feature-card:hover .feature-icon i {
    color: var(--pk-gold);
}

.pk-feature-card h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pk-feature-card p {
    font-size: 13px;
    color: var(--pk-gray-300);
    line-height: 1.5;
}

/* ── About / Visi Misi Section ────────────────────────── */
.pk-about {
    padding: var(--section-py) 0;
}

.pk-about-content h3 {
    margin-bottom: 20px;
}

.pk-about-content p {
    margin-bottom: 16px;
    font-size: 16px;
}

.pk-about-content .pk-list-check {
    margin-top: 24px;
}

.pk-list-check li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--pk-gray-500);
}

.pk-list-check li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(238,155,0,.1);
    color: var(--pk-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 3px;
}

.pk-about-image {
    position: relative;
}

.pk-about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.pk-about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--pk-gold);
    color: var(--pk-navy);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 24px rgba(238,155,0,.3);
}

.pk-about-image .experience-badge .number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.pk-about-image .experience-badge .text {
    font-size: 13px;
    font-weight: 600;
}

/* ── Programs / Services Section ──────────────────────── */
.pk-programs {
    background: var(--pk-gray-50);
    padding: var(--section-py) 0;
}

.pk-program-card {
    background: var(--pk-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s var(--ease-out);
    border: 1px solid var(--pk-gray-100);
    height: 100%;
}

.pk-program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pk-program-card .card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.pk-program-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}

.pk-program-card:hover .card-image img {
    transform: scale(1.08);
}

.pk-program-card .card-image .category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--pk-gold);
    color: var(--pk-navy);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pk-program-card .card-body {
    padding: 24px;
}

.pk-program-card .card-body h4 {
    font-size: 18px;
    margin-bottom: 10px;
    transition: color .2s;
}

.pk-program-card:hover .card-body h4 {
    color: var(--pk-royal);
}

.pk-program-card .card-body p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.65;
}

.pk-program-card .card-body .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pk-royal);
}

.pk-program-card .card-body .card-link:hover {
    color: var(--pk-gold);
    gap: 10px;
}

/* ── Stats / Counter Section ──────────────────────────── */
.pk-stats {
    background: linear-gradient(135deg, var(--pk-navy) 0%, var(--pk-royal) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pk-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(238,155,0,.06);
    pointer-events: none;
}

.pk-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.pk-stat-item .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(238,155,0,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pk-stat-item .stat-icon i {
    font-size: 24px;
    color: var(--pk-gold);
}

.pk-stat-item .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--pk-white);
    line-height: 1;
    margin-bottom: 8px;
}

.pk-stat-item .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

/* ── News / Berita Section ────────────────────────────── */
.pk-news {
    padding: var(--section-py) 0;
}

.pk-news-card {
    background: var(--pk-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s var(--ease-out);
    border: 1px solid var(--pk-gray-100);
    height: 100%;
}

.pk-news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pk-news-card .news-image {
    height: 220px;
    overflow: hidden;
}

.pk-news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}

.pk-news-card:hover .news-image img {
    transform: scale(1.08);
}

.pk-news-card .news-body {
    padding: 24px;
}

.pk-news-card .news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--pk-gray-300);
}

.pk-news-card .news-meta i {
    color: var(--pk-gold);
    margin-right: 4px;
}

.pk-news-card .news-body h4 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.45;
}

.pk-news-card .news-body h4 a {
    color: var(--pk-navy);
}

.pk-news-card .news-body h4 a:hover {
    color: var(--pk-royal);
}

.pk-news-card .news-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--pk-gray-400);
}

/* ── CTA / Call to Action ─────────────────────────────── */
.pk-cta {
    background: linear-gradient(135deg, var(--pk-navy) 0%, var(--pk-royal) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pk-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.pk-cta h2 {
    color: var(--pk-white);
    margin-bottom: 16px;
}

.pk-cta p {
    color: rgba(255,255,255,.7);
    font-size: 18px;
    max-width: 580px;
    margin: 0 auto 32px;
}

.pk-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────── */
.pk-footer {
    background: linear-gradient(180deg, var(--pk-navy-dark) 0%, #051329 100%) !important;
    color: var(--pk-gray-300) !important;
    padding-top: 70px;
    border-top: 4px solid var(--pk-gold);
    position: relative;
}

.pk-footer h5 {
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 700 !important;
    margin-bottom: 22px;
    position: relative;
    letter-spacing: 0.02em;
}

.pk-footer h5::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--pk-gold) !important;
    border-radius: 2px;
    margin-top: 8px;
}

.pk-footer p {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

.pk-footer .footer-logo {
    margin-bottom: 16px;
    display: inline-block;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.pk-footer .footer-logo img {
    height: 44px;
    width: auto;
}

.pk-footer-links li {
    margin-bottom: 10px;
}

.pk-footer-links li a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s ease;
}

.pk-footer-links li a::before {
    content: '›';
    color: var(--pk-gold) !important;
    font-weight: 800;
    font-size: 16px;
    transition: transform .2s;
}

.pk-footer-links li a:hover {
    color: var(--pk-gold) !important;
    padding-left: 6px;
}

.pk-footer-links li a:hover::before {
    color: var(--pk-gold) !important;
    transform: translateX(3px);
}

.pk-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 400;
}

.pk-footer .footer-contact li i {
    color: var(--pk-gold) !important;
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    font-size: 15px;
}

.pk-footer .footer-contact li span {
    color: rgba(255, 255, 255, 0.78) !important;
}

.pk-footer .footer-newsletter p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72) !important;
}

.pk-footer .newsletter-form {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: border-color .25s ease;
}

.pk-footer .newsletter-form:focus-within {
    border-color: var(--pk-gold);
}

.pk-footer .newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #FFFFFF !important;
    font-size: 14px;
    font-family: var(--font-primary);
    font-weight: 500;
    outline: none;
}

.pk-footer .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.pk-footer .newsletter-form button {
    padding: 12px 22px;
    background: var(--pk-gold) !important;
    border: none;
    color: #071A33 !important;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: background .25s ease, color .25s ease;
}

.pk-footer .newsletter-form button:hover {
    background: var(--pk-gold-light) !important;
    color: #051329 !important;
}

.pk-footer-bottom {
    margin-top: 48px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(0, 0, 0, 0.25) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.pk-footer-bottom p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500;
    margin: 0;
}

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

.pk-footer-bottom .footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    transition: all .25s var(--ease-out);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pk-footer-bottom .footer-socials a:hover {
    background: var(--pk-gold) !important;
    color: #071A33 !important;
    border-color: var(--pk-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 155, 0, 0.35);
}

/* ── Breadcrumb ───────────────────────────────────────── */
.pk-breadcrumb {
    background: linear-gradient(135deg, var(--pk-navy), var(--pk-royal));
    padding: 80px 0 50px;
    position: relative;
}

.pk-breadcrumb h1 {
    color: var(--pk-white);
    font-size: 32px;
    margin-bottom: 12px;
}

.pk-breadcrumb .breadcrumb-list {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pk-breadcrumb .breadcrumb-list li {
    font-size: 14px;
    color: rgba(255,255,255,.6);
}

.pk-breadcrumb .breadcrumb-list li a {
    color: var(--pk-gold);
}

.pk-breadcrumb .breadcrumb-list li + li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255,255,255,.3);
}

/* ── Partners / Logos ─────────────────────────────────── */
.pk-partners {
    background: var(--pk-gray-50);
    padding: 60px 0;
}

.pk-partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.pk-partners-grid img {
    height: 48px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all .3s;
}

.pk-partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ── LMS Section & Course Cards ─────────────────────── */
.pk-lms-section {
    background: #F8FAFC;
    position: relative;
}

.pk-lms-stats-bar {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    background: #FFFFFF;
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.pk-lms-stats-bar .stat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 160px;
}

.pk-lms-stats-bar .stat-pill i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(238, 155, 0, 0.12);
    color: var(--pk-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.pk-lms-stats-bar .stat-pill div {
    display: flex;
    flex-direction: column;
}

.pk-lms-stats-bar .stat-pill strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--pk-navy);
    line-height: 1.2;
}

.pk-lms-stats-bar .stat-pill span {
    font-size: 11px;
    color: var(--pk-gray-300);
    font-weight: 500;
}

.pk-course-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid rgba(11, 37, 69, 0.08);
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
}

.pk-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11, 37, 69, 0.12);
    border-color: rgba(238, 155, 0, 0.4);
}

.pk-course-card .course-thumb-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #0B2545;
}

.pk-course-card .course-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.pk-course-card:hover .course-thumb {
    transform: scale(1.05);
}

.pk-course-card .course-thumb-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #071A33 0%, #134074 100%);
    color: rgba(238, 155, 0, 0.4);
    font-size: 44px;
}

.pk-course-card .course-badge-live {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #DC2626;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
    z-index: 2;
}

.pk-course-card .course-badge-live .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFFFFF;
    animation: pkPulse 1.5s infinite;
}

@keyframes pkPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.pk-course-card .course-badge-level {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(4px);
    color: var(--pk-navy);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    z-index: 2;
}

.pk-course-card .course-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pk-course-card .course-cat {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--pk-royal);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.pk-course-card .course-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--pk-navy);
    margin-bottom: 8px;
    line-height: 1.35;
}

.pk-course-card .course-title a {
    color: var(--pk-navy);
    transition: color 0.2s;
}

.pk-course-card .course-title a:hover {
    color: var(--pk-royal);
}

.pk-course-card .course-desc {
    font-size: 12.5px;
    color: var(--pk-gray-300);
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pk-course-card .course-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--pk-gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pk-course-card .course-price .price-free {
    font-size: 14px;
    font-weight: 800;
    color: #059669;
}

.pk-course-card .course-price .price-val {
    font-size: 15px;
    font-weight: 800;
    color: var(--pk-navy);
}

.pk-course-card .course-link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--pk-royal);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s, color 0.2s;
}

.pk-course-card .course-link:hover {
    color: var(--pk-gold);
    gap: 8px;
}

.pk-lms-cta-box {
    background: linear-gradient(135deg, #071A33 0%, #0B2545 60%, #134074 100%);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    border: 2px solid rgba(238, 155, 0, 0.4);
    box-shadow: 0 8px 24px rgba(7, 26, 51, 0.15);
}

/* ── Scroll-to-top ────────────────────────────────────── */
.pk-scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pk-navy);
    color: var(--pk-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .3s var(--ease-out);
    z-index: 9990;
    border: none;
    font-size: 16px;
    box-shadow: var(--shadow-md);
}

.pk-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pk-scroll-top:hover {
    background: var(--pk-gold);
    color: var(--pk-navy);
}

/* ── Responsive ──────────────────────────────────────── */
@media (min-width: 1200px) and (max-width: 1399px) {
    .pk-nav-menu > li > a {
        padding: 14px 6px;
        font-size: 12.5px;
    }
}

/* Tablet Landscape (992px to 1199px): Mega Menu on Tablet */
@media (min-width: 992px) and (max-width: 1199px) {
    .pk-navbar-logo img {
        height: 38px !important;
        max-width: 190px !important;
    }
    .pk-nav-menu > li > a {
        padding: 16px 5px;
        font-size: 12px;
    }
    .pk-nav-menu .pk-mega-menu {
        width: 720px;
        padding: 20px 22px;
    }
    .pk-mega-grid {
        gap: 16px;
    }
    .pk-nav-actions .pk-btn {
        padding: 6px 12px;
        font-size: 11.5px;
    }
}

/* Smartphone & Small Tablet (max-width: 991px): Smooth Touch-Scrollable Drawer */
@media (max-width: 991px) {
    :root {
        --section-py: 70px;
    }

    .pk-topbar {
        display: none;
    }

    .pk-mobile-toggle {
        display: block !important;
    }

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

    .pk-nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--pk-white);
        flex-direction: column;
        padding: 20px 20px 140px;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        z-index: 10001;
        gap: 0;
    }

    .pk-nav-menu.mobile-open {
        display: flex;
    }

    .pk-nav-menu > li > a {
        padding: 14px 0;
        font-size: 15px;
        font-weight: 700;
        border-bottom: 1px solid var(--pk-gray-100);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .pk-nav-menu > li > a::after {
        display: none;
    }

    .pk-nav-menu li .pk-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-top: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 8px 12px;
        display: none !important;
        background: var(--pk-gray-50);
        border-radius: 8px;
        margin: 6px 0 10px;
        pointer-events: auto !important;
    }

    .pk-nav-menu .pk-mega-menu {
        position: static;
        transform: none !important;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 8px;
        padding: 10px 12px;
        background: var(--pk-gray-50);
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        pointer-events: auto !important;
        margin: 6px 0 12px;
    }

    .pk-nav-menu li.dropdown-open > .pk-dropdown,
    .pk-nav-menu li.dropdown-open > .pk-mega-menu {
        display: block !important;
    }

    .pk-mega-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pk-dropdown li a {
        padding: 8px 0;
        font-size: 13.5px;
    }

    .pk-close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--pk-navy);
        cursor: pointer;
    }

    .pk-hero {
        min-height: auto;
    }

    .pk-hero .container {
        padding: 60px 15px 100px;
    }

    .pk-hero h1 {
        font-size: 28px;
    }

    .pk-hero p {
        font-size: 15px;
    }

    .pk-hero-stats {
        gap: 24px;
    }

    .pk-hero-stats .stat-number {
        font-size: 24px;
    }

    .pk-hero-media {
        display: none;
    }

    .pk-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .pk-footer-bottom {
        justify-content: center;
        text-align: center;
    }

    /* Space for bottom bar */
    body {
        padding-bottom: 70px !important;
    }

    .pk-scroll-top {
        bottom: 80px;
    }
}

@media (max-width: 767px) {
    .pk-features-grid {
        grid-template-columns: 1fr;
    }

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

    .pk-hero-stats .stat-item {
        min-width: 100px;
    }

    .pk-footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .pk-hero h1 {
        font-size: 24px;
    }

    .pk-hero-actions {
        flex-direction: column;
    }

    .pk-hero-actions .pk-btn {
        width: 100%;
        justify-content: center;
    }

    .pk-stat-item .stat-number {
        font-size: 32px;
    }
}

/* ── Floating WhatsApp Chat Widget ───────────────────── */
/* Highest priority on all pages, floating above all content */
#WAButton, 
.floating-wpp {
    position: fixed !important;
    z-index: 99990 !important; /* Above all content, footers, carousels, etc. */
    right: 20px !important;
    left: auto !important;
    bottom: 24px !important;
    transition: bottom .25s ease, transform .2s ease !important;
}

#WAButton .floating-wpp-button,
.floating-wpp .floating-wpp-button {
    position: relative !important;
    bottom: 0 !important;
    right: 0 !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45) !important;
}

#WAButton:hover,
.floating-wpp:hover {
    bottom: 26px !important;
    transform: scale(1.04);
}

#WAButton .floating-wpp-popup,
.floating-wpp .floating-wpp-popup {
    z-index: 99992 !important;
}

#WAButton .floating-wpp-popup.active,
.floating-wpp .floating-wpp-popup.active {
    bottom: 82px !important;
    right: 0 !important;
    max-width: calc(100vw - 32px) !important;
}

/* ── Mobile & Smartphone (< 992px) with Bottom Nav Bar ── */
@media (max-width: 991px) {
    /* Mobile Bottom Navigation Bar is the absolute topmost layer at the bottom */
    .pertahkindo-mobile-bottom-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 64px !important;
        z-index: 99999 !important; /* Highest layer, cannot be overlapped by WhatsApp */
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12) !important;
    }

    /* WhatsApp Button floats strictly ABOVE the 64px bottom nav bar */
    #WAButton, 
    .floating-wpp {
        bottom: 78px !important; /* 64px + 14px margin */
        right: 14px !important;
        left: auto !important;
        z-index: 99990 !important; /* Under bottom bar (99999), but above all other page content */
    }

    /* Prevent hover jumping down into bottom nav bar */
    #WAButton:hover,
    .floating-wpp:hover {
        bottom: 78px !important;
        transform: scale(1.05);
    }

    #WAButton .floating-wpp-button,
    .floating-wpp .floating-wpp-button {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        width: 58px !important;
        height: 58px !important;
    }

    #WAButton .floating-wpp-popup.active,
    .floating-wpp .floating-wpp-popup.active {
        bottom: 72px !important; /* Above the 58px button */
        right: 0 !important;
        max-width: calc(100vw - 28px) !important;
    }

    /* Scroll to top button also stays above bottom bar on bottom-left */
    .back-to-top, 
    .pk-scroll-top {
        bottom: 78px !important;
        left: 14px !important;
        right: auto !important;
        z-index: 99980 !important;
    }
}
