/* =====================================================
   GUARDIAN 168 — Website Styles
   PT. Perisai Kharisma Sakti
   Theme: Maroon + Gold | Futuristic | Modern
   ===================================================== */

/* ----- CSS Variables ----- */
:root {
    --primary: #6B0F0F;
    --primary-dark: #3A0000;
    --primary-light: #8B1A1A;
    --primary-rgb: 107, 15, 15;

    --gold: #E8961A;
    --gold-light: #F0B84D;
    --gold-dark: #C47A12;
    --gold-rgb: 232, 150, 26;

    --dark: #111111;
    --dark-2: #1A1A1A;
    --dark-3: #222222;

    --light: #FBF9F6;
    --white: #FFFFFF;

    --text: #333333;
    --text-light: #666666;
    --text-lighter: #999999;

    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(200, 146, 44, 0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background: var(--light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

.text-gold { color: var(--gold); }

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 146, 44, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: var(--transition-slow);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.08);
}

.navbar.scrolled .nav-link {
    color: var(--dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
}

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

.logo-text strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo-text strong {
    color: var(--primary);
}

.logo-text small {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link svg {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    min-width: 220px;
    padding: 8px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(107, 15, 15, 0.06);
    color: var(--primary);
    padding-left: 22px;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar.scrolled .nav-toggle.active span {
    background: var(--dark);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0505 0%, #1a0505 30%, #0d0303 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(107, 15, 15, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 146, 44, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(107, 15, 15, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.4; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    margin-top: -40px;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 146, 44, 0.12);
    border: 1px solid rgba(200, 146, 44, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-content p strong {
    color: var(--white);
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.tagline-item {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(232, 150, 26, 0.3);
}

.tagline-dot {
    color: rgba(255, 255, 255, 0.3);
    font-size: 8px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-slow);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    box-shadow: 0 8px 30px rgba(200, 146, 44, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 146, 44, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid #F5A623;
}

.btn-outline:hover {
    border-color: #F5A623;
    color: #F5A623;
    background: rgba(245, 166, 35, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-secondary);
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease 1.4s both;
}

.hero-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

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

/* =====================================================
   TENTANG
   ===================================================== */
.tentang {
    background: var(--white);
}

.tentang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tentang-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
}

.tentang-circles {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.circle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(200, 146, 44, 0.08);
    border: 1px solid rgba(200, 146, 44, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.circle-item:hover .circle-icon {
    background: rgba(200, 146, 44, 0.15);
    transform: translateY(-4px);
}

.circle-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tentang-visi-misi {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vm-card {
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

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

.vm-visi {
    background: linear-gradient(135deg, rgba(200, 146, 44, 0.05), rgba(200, 146, 44, 0.02));
    border-color: rgba(200, 146, 44, 0.15);
}

.vm-misi {
    background: linear-gradient(135deg, rgba(107, 15, 15, 0.04), rgba(107, 15, 15, 0.01));
    border-color: rgba(107, 15, 15, 0.1);
}

.vm-icon {
    margin-bottom: 12px;
}

.vm-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.vm-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

.vm-misi ul {
    padding-left: 20px;
}

.vm-misi ul li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    list-style: disc;
    margin-bottom: 6px;
}

.vm-misi ul li::marker {
    color: var(--gold);
}

/* =====================================================
   STATS
   ===================================================== */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1f0505 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(200, 146, 44, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(200, 146, 44, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-secondary);
    letter-spacing: -2px;
    line-height: 1;
}

.stat-plus {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 8px;
}

/* =====================================================
   KEUNGGULAN
   ===================================================== */
.keunggulan {
    background: var(--light);
}

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

.keunggulan-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.keunggulan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.keunggulan-card:hover::before {
    transform: scaleX(1);
}

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

.card-icon {
    margin-bottom: 20px;
}

.keunggulan-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary);
}

.keunggulan-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* =====================================================
   LAYANAN
   ===================================================== */
.layanan {
    background: var(--white);
}

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

.layanan-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-slow);
}

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

.layanan-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.layanan-card:hover .layanan-img {
    height: 110px;
}

.layanan-img svg {
    transition: var(--transition);
}

.layanan-card:hover .layanan-img svg {
    transform: scale(1.1);
}

.layanan-body {
    padding: 24px 28px 28px;
}

.layanan-body h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--primary);
}

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

/* =====================================================
   KLIEN
   ===================================================== */
.klien {
    background: var(--light);
}

.klien-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.klien-item {
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.klien-item:hover {
    border-color: var(--gold);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

/* =====================================================
   LEGALITAS
   ===================================================== */
.legalitas {
    background: var(--white);
}

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

.legal-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: var(--transition);
}

.legal-card:hover {
    border-color: rgba(200, 146, 44, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.legal-icon {
    margin-bottom: 16px;
}

.legal-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--primary);
}

.legal-card p {
    font-size: 13px;
    color: var(--text-lighter);
    line-height: 1.6;
}

/* =====================================================
   KARIR
   ===================================================== */
.karir {
    background: var(--light);
}

.karir-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--white);
    padding: 36px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.04);
}

.karir-intro-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}

.karir-lokasi {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-left: 32px;
    border-left: 2px solid rgba(232, 150, 26, 0.15);
}

.karir-lokasi-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(232, 150, 26, 0.08);
    border: 1px solid rgba(232, 150, 26, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.karir-lokasi h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 8px;
}

.karir-lokasi-alamat {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.karir-subtitle {
    font-size: 24px;
    text-align: center;
    margin-bottom: 36px;
    color: var(--primary);
}

.tahapan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.tahap-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.tahap-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.tahap-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-secondary);
}

.tahap-body h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 8px;
}

.tahap-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Tahap connector line */
.tahapan-grid {
    position: relative;
}

@media (min-width: 1025px) {
    .tahapan-grid::before {
        content: '';
        position: absolute;
        top: 22px;
        left: calc(12.5% + 22px);
        right: calc(12.5% + 22px);
        height: 2px;
        background: linear-gradient(90deg, var(--gold), rgba(232, 150, 26, 0.2), var(--gold));
        z-index: 0;
    }
    .tahap-card { position: relative; z-index: 1; }
}

/* Syarat */
.syarat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.syarat-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: var(--transition);
}

.syarat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(232, 150, 26, 0.2);
}

.syarat-icon {
    margin-bottom: 12px;
}

.syarat-card h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 6px;
}

.syarat-card p {
    font-size: 13px;
    color: var(--text-lighter);
    line-height: 1.5;
}

/* Karir CTA */
.karir-cta {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm);
}

.karir-cta-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

.karir-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

/* Honeypot — invisible to humans, visible to bots */
.honeypot {
    position: absolute !important;
    left: -99999px !important;
    top: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.karir-form input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 14px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    background: var(--light);
    color: var(--text);
    transition: var(--transition);
    outline: none;
}

.karir-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 146, 44, 0.08);
    background: var(--white);
}

.karir-form input::placeholder {
    color: var(--text-lighter);
}

/* =====================================================
   KONTAK
   ===================================================== */
.kontak {
    background: var(--light);
}

.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

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

.kontak-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200, 146, 44, 0.08);
    border: 1px solid rgba(200, 146, 44, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontak-item h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 4px;
}

.kontak-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.kontak-item a {
    color: var(--text-light);
}

.kontak-item a:hover {
    color: var(--gold);
}

.kontak-sosmed {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.sosmed-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.sosmed-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 15, 15, 0.2);
}

.sosmed-link.sosmed-wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Kontak Form (Maps + Form) */
.kontak-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kontak-maps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kontak-maps iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 12px;
}

.kontak-maps-labels {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.maps-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.maps-label-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.maps-label-a .maps-label-marker {
    background: #4285F4;
}
.maps-label-b .maps-label-marker {
    background: #EA4335;
}

.kontak-maps-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.maps-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary);
    background: rgba(107, 15, 15, 0.06);
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
}
.maps-link:hover {
    background: var(--primary);
    color: var(--white);
}

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

.kontak-form input,
.kontak-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 14px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    background: var(--light);
    color: var(--text);
    transition: var(--transition);
    outline: none;
}

.kontak-form input:focus,
.kontak-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 146, 44, 0.08);
    background: var(--white);
}

.kontak-form input::placeholder,
.kontak-form textarea::placeholder {
    color: var(--text-lighter);
}

.kontak-form .form-row input,
.kontak-form input,
.kontak-form textarea {
    margin-bottom: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =====================================================
   MOTTO SECTION
   ===================================================== */
.motto-section {
    background: linear-gradient(135deg, var(--primary-dark), #1f0505);
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid rgba(232, 150, 26, 0.1);
    border-bottom: 1px solid rgba(232, 150, 26, 0.1);
}

.motto-content {
    max-width: 700px;
    margin: 0 auto;
}

.motto-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.motto-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo div strong {
    display: block;
    font-size: 18px;
    color: var(--white);
}

.footer-logo div small {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-sosmed {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-sosmed a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-sosmed a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact p strong {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-powered strong {
    color: var(--gold);
    font-weight: 700;
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.float-wa {
    position: fixed;
    bottom: 96px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    animation: pulseWA 2s ease-in-out infinite;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    color: white;
}

.float-wa-tooltip {
    position: absolute;
    right: 66px;
    background: var(--dark);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.float-wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.float-wa:hover .float-wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 74px;
}

@keyframes pulseWA {
    0% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.55); }
    100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .section-header h2 { font-size: 32px; }

    .tentang-grid { grid-template-columns: 1fr; gap: 40px; }
    .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
    .layanan-grid { grid-template-columns: repeat(2, 1fr); }
    .legalitas-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

    .hero-content h1 { font-size: 42px; }
    .tahapan-grid { grid-template-columns: repeat(2, 1fr); }
    .syarat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 8px;
        transition: var(--transition-slow);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--dark);
        font-size: 16px;
        padding: 12px 0;
    }

    .nav-toggle { display: flex; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .hero-badge { font-size: 10px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 22px; }

    .section-header h2 { font-size: 28px; }
    .section-header p { font-size: 15px; }

    .keunggulan-grid { grid-template-columns: 1fr; }
    .layanan-grid { grid-template-columns: 1fr; }
    .legalitas-grid { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stat-number { font-size: 40px; }

    .kontak-grid { grid-template-columns: 1fr; gap: 40px; }
    .kontak-form { padding: 28px; }
    .kontak-maps iframe { height: 200px; }
    .kontak-maps-links { flex-direction: column; align-items: stretch; }
    .maps-link { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .tentang-circles { gap: 16px; flex-wrap: wrap; }
    .circle-icon { width: 50px; height: 50px; }

    .klien-item { font-size: 12px; padding: 10px 18px; }

    .karir-intro { grid-template-columns: 1fr; padding: 24px; }
    .karir-lokasi { padding-left: 0; border-left: none; padding-top: 20px; border-top: 2px solid rgba(232, 150, 26, 0.15); }
    .tahapan-grid { grid-template-columns: repeat(2, 1fr); }
    .syarat-grid { grid-template-columns: repeat(2, 1fr); }
    .karir-subtitle { font-size: 20px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 16px; }
    .hero-stat-divider { display: none; }
    .float-wa { bottom: 80px; right: 16px; width: 48px; height: 48px; }
    .float-wa-tooltip { display: none; }
    .tahapan-grid { grid-template-columns: 1fr; }
    .syarat-grid { grid-template-columns: 1fr; }
    .karir-cta { padding: 28px 20px; }
    .karir-form-row { grid-template-columns: 1fr; }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 420px;
}
.toast-notification.toast-visible {
    transform: translateX(0);
}
.toast-success {
    background: linear-gradient(135deg, #16a34a, #15803d);
}
.toast-error {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.toast-text {
    flex: 1;
    line-height: 1.4;
}
.toast-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
}
.toast-close:hover {
    color: #fff;
}

@media (max-width: 480px) {
    .toast-notification {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        font-size: 13px;
        padding: 14px 16px;
    }
}
