/* ==========================================================================
   SIKASPUK Eduwisata - Custom Design System & Core Stylesheet
   ========================================================================== */

/* 1. Reset & Variables */
:root {
    /* Colors */
    --hijau: #2E7D32;
    --hijau-tua: #1B5E20;
    --hijau-muda: #E8F5E9;
    --hijau-terang: #43A047;
    --krem: #F7F5EF;
    --krem-tua: #EFECE2;
    --teks: #2D3748;
    --teks-muda: #718096;
    --putih: #FFFFFF;
    --border: #E2E8F0;
    --bg: #F8FAFC;
    
    /* Status Colors */
    --kuning: #D97706;
    --kuning-bg: #FEF3C7;
    --biru: #2563EB;
    --biru-bg: #DBEAFE;
    --merah: #DC2626;
    --merah-bg: #FEE2E2;

    /* Spacing & Sizes */
    --radius: 16px;
    --radius-lg: 24px;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-title: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px rgba(46, 125, 50, 0.06);
    --shadow-focus: 0 0 0 4px rgba(46, 125, 50, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--teks);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, .font-title {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--hijau-tua);
    line-height: 1.25;
}

/* Utilities */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

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

.hidden {
    display: none !important;
}

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

/* ==========================================================================
   PUBLIC INTERFACE
   ========================================================================== */

/* Floating Navbar */
.nav-floating-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.nav-floating {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius);
    padding: 12px 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-logo span {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--hijau-tua);
}

/* Navigation Menu Links style matching reference image */
.nav-links-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    padding: 10px 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--teks);
    font-size: 0.94rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--hijau);
}

.nav-links li.active a {
    color: var(--hijau);
    font-weight: 700;
    border-bottom-color: var(--hijau);
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    margin-left: 2px;
    transition: transform 0.2s;
}

.nav-links li.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--putih);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 8px;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--teks);
    white-space: nowrap;
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--krem);
    color: var(--hijau);
}

.nav-links li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Toggle Menu button */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--teks);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
    align-items: center;
    justify-content: center;
}

.nav-toggle:hover {
    background-color: var(--krem);
}

/* Buttons */
.btn-core {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--hijau);
    color: var(--putih);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.2);
}

.btn-primary:hover {
    background-color: var(--hijau-tua);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--teks);
}

.btn-outline:hover {
    background-color: var(--krem-tua);
    border-color: var(--teks-muda);
}

.btn-ghost {
    background: transparent;
    color: var(--hijau);
}

.btn-ghost:hover {
    background: var(--hijau-muda);
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    background: linear-gradient(180deg, rgba(16, 44, 20, 0.75) 0%, rgba(10, 28, 12, 0.85) 100%),
                url('hero-bg.webp') no-repeat center center;
    background-size: cover;
    padding: 180px 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
}

.hero {
    color: var(--putih);
    z-index: 2;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #81C784;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.tagline-dot {
    width: 8px;
    height: 8px;
    background-color: #81C784;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.tagline-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #81C784;
    animation: tagline-pulse 1.8s infinite ease-in-out;
}

@keyframes tagline-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Typography styles matching reference mockup */
.hero-title-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-small {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-title);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.title-huge {
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    font-family: var(--font-title);
}

.text-white {
    color: var(--putih);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.text-accent-green {
    color: #81C784;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.title-subtitle {
    font-size: clamp(1rem, 3vw, 1.35rem);
    font-weight: 700;
    color: var(--putih);
    margin-top: 16px;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
}

.hero p.hero-desc {
    max-width: 680px;
    margin: 0 auto 36px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.2s;
}

.btn-theme-primary {
    background-color: #66BB6A;
    color: #112A14;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(102, 187, 106, 0.4);
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-theme-primary:hover {
    background-color: #81C784;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.6);
    color: #112A14;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--putih);
    font-weight: 700;
    padding: 12px 30px;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    border-color: var(--putih);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--putih);
    transform: translateY(-2px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-outline-white:hover {
    border-color: var(--putih);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--putih);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    margin-top: 48px;
    animation: float-bounce 2s infinite ease-in-out;
}

.hero-scroll-indicator a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.hero-scroll-indicator a:hover {
    color: #A3E635;
    transform: scale(1.1);
}

.hero-scroll-indicator i {
    width: 36px;
    height: 36px;
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--hijau-tua);
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background: var(--hijau);
    margin: 12px auto 16px;
    border-radius: 4px;
}

.section-header p {
    color: var(--teks-muda);
    max-width: 600px;
    margin: 0 auto;
}

/* Card Paket Section */
.paket-section {
    padding: 80px 0;
}

.card-paket {
    background: var(--putih);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

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

/* Selected Highlight State */
.card-paket.selected {
    border: 2.5px solid var(--hijau);
    box-shadow: 0 16px 40px rgba(46, 125, 50, 0.12);
}

.card-paket.selected::after {
    content: "\e156"; /* Lucide check icon proxy */
    font-family: 'lucide';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 28px;
    height: 28px;
    background: var(--hijau);
    color: var(--putih);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: bold;
}

/* Popular Badge */
.badge-populer {
    position: absolute;
    top: -14px;
    left: 32px;
    background: var(--hijau-tua);
    color: var(--putih);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(27, 94, 32, 0.25);
}

.card-paket-top {
    margin-bottom: 24px;
}

.card-paket-kode {
    display: inline-block;
    background: var(--hijau-muda);
    color: var(--hijau-tua);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.card-paket h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-paket-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.card-paket-price .amount {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--hijau);
    font-family: var(--font-title);
}

.card-paket-price .per {
    font-size: 0.85rem;
    color: var(--teks-muda);
}

.card-paket-meta {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teks-muda);
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.card-paket-desc {
    font-size: 0.9rem;
    color: var(--teks-muda);
    line-height: 1.65;
    background: var(--bg);
    padding: 16px;
    border-radius: 12px;
    border: 1px dashed var(--border);
    margin-bottom: 24px;
}

/* Benefit List */
.benefit-title {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--teks-muda);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.benefit-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-block {
    background: var(--putih);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 12px;
    padding: 12px 16px;
}

.benefit-block-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.benefit-block-badge {
    background: var(--hijau);
    color: var(--putih);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.benefit-block-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teks);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefit-list li {
    font-size: 0.78rem;
    color: var(--teks-muda);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.benefit-list li svg {
    color: var(--hijau);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-select-paket {
    width: 100%;
    margin-top: 24px;
}

/* Form Reservasi Section */
.booking-section {
    padding: 40px 0 100px;
    scroll-margin-top: 100px;
}

.form-wrap {
    background: var(--putih);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--hijau-tua), var(--hijau));
    padding: 32px 40px;
    color: var(--putih);
    position: relative;
}

.form-header h2 {
    color: var(--putih);
    font-size: 1.85rem;
    margin-bottom: 6px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.form-body {
    padding: 40px;
}

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

.form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--teks);
    display: flex;
    align-items: center;
    gap: 4px;
}

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

/* Input Fields styling */
.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrap svg {
    position: absolute;
    left: 16px;
    color: var(--teks-muda);
    opacity: 0.7;
    pointer-events: none;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.98rem;
    color: var(--teks);
    background: var(--putih);
    transition: all 0.2s;
    min-height: 48px;
}

.input-icon-wrap .form-input, 
.input-icon-wrap .form-select {
    padding-left: 48px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--hijau);
    box-shadow: var(--shadow-focus);
}

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

/* Form Helper & Error */
.form-error {
    font-size: 0.75rem;
    color: var(--merah);
    font-weight: 600;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Sticky Summary Card */
.summary-card {
    background: var(--hijau-muda);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: var(--radius);
    padding: 24px;
    margin: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: all 0.3s;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-details .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    color: var(--teks-muda);
}

.summary-details .formula {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--teks);
}

.summary-total {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-total .total-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--teks-muda);
}

.summary-total .price {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--hijau-tua);
    font-family: var(--font-title);
    transition: transform 0.2s;
}

.btn-whatsapp-submit {
    width: 100%;
    background-color: #25D366;
    color: var(--putih);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
    font-size: 1.1rem;
    padding: 14px 28px;
    border-radius: 12px;
}

.btn-whatsapp-submit:hover {
    background-color: #1ebd57;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.form-microcopy {
    font-size: 0.78rem;
    color: var(--teks-muda);
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

/* Footer Section */
.footer-wrap {
    background: var(--putih);
    border-top: 1px solid var(--border);
    padding: 60px 0;
    text-align: center;
}

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

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

.footer-logo span {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--hijau-tua);
}

.footer-wrap p {
    font-size: 0.82rem;
    color: var(--teks-muda);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hijau);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}


/* ==========================================================================
   SUCCESS REDIRECT INTERFACE
   ========================================================================== */
.sukses-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-h: 100vh;
    padding: 24px;
}

.card-sukses {
    background: var(--putih);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    text-align: center;
}

.sukses-icon {
    width: 72px;
    height: 72px;
    background: var(--hijau-muda);
    color: var(--hijau);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.sukses-icon svg {
    width: 36px;
    height: 36px;
}

.card-sukses h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.card-sukses p {
    color: var(--teks-muda);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.sukses-summary-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: left;
    margin-bottom: 30px;
}

.sukses-summary-box h3 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    color: var(--teks);
}

.sukses-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.sukses-row:last-child {
    margin-bottom: 0;
}

.sukses-row .label {
    color: var(--teks-muda);
    font-weight: 500;
}

.sukses-row .val {
    font-weight: 700;
    color: var(--teks);
}

.sukses-row .val.price {
    color: var(--hijau);
}


/* ==========================================================================
   ADMIN DASHBOARD SYSTEM
   ========================================================================== */

/* Layout */
.admin-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

/* Sidebar Drawer style */
.admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}

.admin-sidebar {
    background: var(--putih);
    border-right: 1px solid var(--border);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-sidebar-logo {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.admin-sidebar-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.admin-sidebar-logo span.tag {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teks-muda);
}

.admin-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--teks-muda);
    text-decoration: none;
    transition: all 0.2s;
}

.admin-menu a:hover, 
.admin-menu li.active a {
    background-color: var(--hijau-muda);
    color: var(--hijau-tua);
}

.admin-sidebar-footer {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 40px;
    height: 40px;
    background: var(--hijau);
    color: var(--putih);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.admin-user-info {
    display: flex;
    flex-direction: column;
}

.admin-user-info .name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--teks);
}

.admin-user-info .role {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--teks-muda);
    text-transform: uppercase;
}

.btn-logout {
    border: 1px solid var(--merah);
    color: var(--merah);
    background: transparent;
}

.btn-logout:hover {
    background: var(--merah-bg);
}

/* Main Dashboard Panel */
.admin-main {
    padding: 40px;
    background-color: var(--bg);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.admin-title h1 {
    font-size: 2rem;
}

.admin-title p {
    font-size: 0.88rem;
    color: var(--teks-muda);
    margin-top: 4px;
}

/* KPI Grid Stats */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.kpi-card {
    background: var(--putih);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.kpi-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kpi-details .label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teks-muda);
}

.kpi-details .val {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--teks);
    font-family: var(--font-title);
    line-height: 1.1;
}

.kpi-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kpi-card.total .kpi-icon { background: var(--hijau-muda); color: var(--hijau); }
.kpi-card.menunggu .kpi-icon { background: var(--kuning-bg); color: var(--kuning); }
.kpi-card.dikonfirmasi .kpi-icon { background: var(--biru-bg); color: var(--biru); }
.kpi-card.selesai .kpi-icon { background: var(--hijau-muda); color: var(--hijau-terang); }
.kpi-card.pendapatan .kpi-icon { background: var(--hijau-muda); color: var(--hijau-tua); }
.kpi-card.pendapatan .kpi-details .val { font-size: 1.35rem; }

/* Admin Table Card */
.admin-card {
    background: var(--putih);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.admin-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-card-header h3 {
    font-size: 1.1rem;
    color: var(--teks);
}

.admin-card-header .badge {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 4px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 8px;
}

/* Table Style */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th, 
.admin-table td {
    padding: 16px 24px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table th {
    background-color: #F8FAFC;
    color: var(--teks-muda);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}

.admin-table tr:hover td {
    background-color: #F8FAFC;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.td-kode {
    font-family: monospace;
    font-weight: 700;
    color: var(--hijau-tua);
}

.td-pelanggan {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.td-pelanggan .name {
    font-weight: 700;
    color: var(--teks);
}

.td-pelanggan .meta {
    font-size: 0.76rem;
    color: var(--teks-muda);
    display: flex;
    gap: 12px;
}

.td-pelanggan .meta a {
    color: var(--hijau-terang);
    text-decoration: none;
}

.td-pelanggan .meta a:hover {
    text-decoration: underline;
}

.td-paket {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.td-paket .title {
    font-weight: 600;
    color: var(--teks);
}

.td-paket .variant {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--hijau);
    border: 1px solid var(--hijau-muda);
    background: var(--hijau-muda);
    padding: 2px 6px;
    border-radius: 4px;
    align-self: flex-start;
}

.td-paket .novariant {
    font-size: 0.72rem;
    font-style: italic;
    color: var(--teks-muda);
}

.td-pax {
    font-weight: 700;
}

.td-harga {
    font-weight: 800;
    color: var(--hijau);
}

/* Badges */
.badge-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-radius: 8px;
}

.badge-status.menunggu { background: var(--kuning-bg); color: var(--kuning); }
.badge-status.dikonfirmasi { background: var(--biru-bg); color: var(--biru); }
.badge-status.selesai { background: var(--hijau-muda); color: var(--hijau); }
.badge-status.batal { background: var(--merah-bg); color: var(--merah); }

/* Table Actions */
.table-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-action {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--putih);
    color: var(--teks-muda);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-action:hover {
    background-color: var(--bg);
    color: var(--teks);
    border-color: var(--teks-muda);
}

.btn-action.confirm:hover { color: var(--biru); background-color: var(--biru-bg); }
.btn-action.complete:hover { color: var(--hijau); background-color: var(--hijau-muda); }
.btn-action.cancel:hover { color: var(--kuning); background-color: var(--kuning-bg); }
.btn-action.delete:hover { color: var(--merah); background-color: var(--merah-bg); }

/* Dual Panel Kelola Paket */
.admin-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: start;
}

.admin-form-card {
    background: var(--putih);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.admin-form-card h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: 12px;
    margin-top: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--hijau);
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
}


/* ==========================================================================
   PORTAL LOGIN ADMIN
   ========================================================================== */
.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg);
    padding: 24px;
}

.login-card {
    background: var(--putih);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, var(--hijau-tua), var(--hijau));
    padding: 32px;
    color: var(--putih);
    text-align: center;
}

.login-logo-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: var(--radius);
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.login-logo-container img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.login-header h1 {
    color: var(--putih);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.login-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.login-body-form {
    padding: 32px;
}

.alert-error {
    background-color: var(--merah-bg);
    color: var(--merah);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.btn-login {
    width: 100%;
    margin-top: 24px;
}

.login-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hijau);
    text-decoration: none;
    margin-top: 20px;
}

.login-back-link:hover {
    text-decoration: underline;
}


/* ==========================================================================
   ANIMATIONS & PULSE EFFECT
   ========================================================================== */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(67, 160, 71, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(67, 160, 71, 0);
    }
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE-FIRST)
   ========================================================================== */

/* 1. Mobile (default / max 767px) */
@media (max-width: 767px) {
    .nav-toggle {
        display: inline-flex;
    }
    
    .nav-links-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--putih);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        margin-top: 8px;
        box-shadow: var(--shadow-lg);
        padding: 16px;
        z-index: 99;
    }
    
    .nav-links-container.open {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .nav-links li {
        padding: 4px 0;
    }
    
    .nav-links li.active a {
        border-bottom-color: transparent;
        border-left: 3px solid var(--hijau);
        padding-left: 8px;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding-left: 16px;
        display: none;
        margin-top: 4px;
        min-width: unset;
    }
    
    .nav-links li.has-dropdown.open .dropdown-menu {
        display: flex;
    }

    .grid-3, .grid-2, .admin-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .admin-wrapper {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        display: none; /* Collapsed on mobile unless toggled */
    }
    
    .admin-sidebar.open {
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 999;
        height: 100vh;
        box-shadow: 0 0 100px rgba(0,0,0,0.4);
    }
    
    .admin-sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 998;
    }
    
    .admin-sidebar-overlay.open {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p.hero-desc {
        font-size: 0.98rem;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn-core {
        width: 100%;
    }
    
    .form-body {
        padding: 24px;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }
    
    .summary-total {
        text-align: center;
    }
    
    .kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .kpi-card.pendapatan {
        grid-column: span 2;
    }
    
    .admin-main {
        padding: 20px;
    }
}

/* 2. Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .kpi-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

/* 3. Desktop (1024px and above) */
@media (min-width: 1024px) {
    /* Large styles handled by defaults */
}

/* Floating WhatsApp FAB */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--putih);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    background-color: #20BA5A;
}

.fab-icon {
    width: 28px;
    height: 28px;
}

/* Tooltip for FAB */
.fab-tooltip {
    position: absolute;
    right: 75px;
    background: #333333;
    color: var(--putih);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.fab-whatsapp:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   2-COLUMN BOOKING INTERFACE (APP-STYLE CHECKOUT)
   ========================================================================== */

.booking-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 32px;
}

@media (max-width: 991px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.booking-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Step Card Layout */
.step-card {
    background: var(--putih);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step-card.hidden {
    display: none;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1.5px dashed var(--border);
    padding-bottom: 16px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--hijau);
    color: var(--putih);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
}

.step-header h3 {
    font-size: 1.25rem;
    color: var(--teks);
    font-weight: 700;
    margin: 0;
}

/* Package Cards Grid & Radio Cards */
.package-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.package-radio-card {
    position: relative;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    background: var(--putih);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.package-radio-card:hover {
    border-color: var(--hijau-terang);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.package-radio-card.selected {
    border-color: var(--hijau);
    background: var(--hijau-muda);
}

.package-radio-card.popular {
    border-color: #D97706; /* gold/orange for popular */
}

.package-radio-card.popular.selected {
    border-color: var(--hijau);
    background: var(--hijau-muda);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #D97706;
    color: var(--putih);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
}

.card-radio-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.package-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teks);
}

.package-card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--hijau);
}

.package-card-price .pax {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--teks-muda);
}

.package-card-desc {
    font-size: 0.85rem;
    color: var(--teks-muda);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.package-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-code-badge {
    background: var(--krem-tua);
    color: var(--teks-muda);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.check-indicator {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    background: var(--putih);
    transition: all 0.2s;
}

.package-radio-card.selected .check-indicator {
    background: var(--hijau);
    border-color: var(--hijau);
}

.check-indicator svg {
    width: 12px;
    height: 12px;
    stroke-width: 3;
}

/* Stepper +/- Wrap */
.stepper-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    background: var(--putih);
    overflow: hidden;
    height: 48px;
    transition: border-color 0.2s;
}

.stepper-wrap:focus-within {
    border-color: var(--hijau);
    box-shadow: var(--shadow-focus);
}

.btn-stepper {
    border: none;
    background: #F8FAFC;
    color: var(--teks);
    width: 48px;
    height: 100%;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-stepper:hover {
    background: #F1F5F9;
}

/* Booking Hero Ringkas */
.booking-hero {
    background: linear-gradient(180deg, var(--hijau-tua) 0%, var(--hijau) 100%);
    color: var(--putih);
    padding: 140px 0 48px;
    text-align: center;
}

.booking-hero h1 {
    font-size: 2.2rem;
    font-family: var(--font-title);
    font-weight: 800;
    color: var(--putih);
    margin-bottom: 8px;
}

.booking-hero .subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 24px;
}

.trust-info-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: #81C784;
}

@media (max-width: 767px) {
    .booking-hero {
        padding: 120px 0 32px;
    }
    .trust-info-grid {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
}

/* Sidebar Checkout Sticky Card */
.booking-sidebar {
    position: sticky;
    top: 100px;
}

.summary-checkout-card {
    background: var(--putih);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.summary-checkout-card .card-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.summary-checkout-card .card-header h3 {
    font-size: 1.2rem;
    color: var(--teks);
    font-weight: 700;
    margin: 0;
}

.summary-line-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.summary-item.hidden {
    display: none;
}

.summary-item .item-label {
    color: var(--teks-muda);
    font-weight: 500;
}

.summary-item .item-value {
    color: var(--teks);
    font-weight: 700;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 20px;
}

.summary-total-row .total-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teks);
}

.summary-total-row .total-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--hijau-tua);
    font-family: var(--font-title);
    transition: transform 0.15s ease;
}


/* ==========================================================================
   ADMIN PANEL — PREMIUM DESIGN SYSTEM
   Matches the botanical theme of the public-facing landing page.
   ========================================================================== */

/* ---- Login Page ---- */
.admin-login-body {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 920px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(27, 94, 32, 0.12);
    min-height: 560px;
}

.admin-login-brand {
    background: linear-gradient(160deg, var(--hijau-tua) 0%, var(--hijau) 60%, var(--hijau-terang) 100%);
    color: var(--putih);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-logo img {
    height: 56px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.admin-login-brand h1 {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--putih);
    margin-bottom: 8px;
}

.brand-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.brand-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.brand-feature-item svg {
    width: 18px;
    height: 18px;
    color: #81C784;
    flex-shrink: 0;
}

.brand-footer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-top: 32px;
}

.admin-login-form-panel {
    background: var(--putih);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
}

.login-form-inner {
    width: 100%;
    max-width: 340px;
}

.login-form-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-icon-circle {
    width: 56px;
    height: 56px;
    background: var(--hijau-muda);
    color: var(--hijau);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.login-icon-circle svg {
    width: 24px;
    height: 24px;
}

.login-form-header h2 {
    font-size: 1.35rem;
    color: var(--teks);
    margin-bottom: 6px;
}

.login-form-header p {
    font-size: 0.85rem;
    color: var(--teks-muda);
    line-height: 1.5;
}

.admin-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.admin-alert svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.admin-alert-danger {
    background: var(--merah-bg);
    color: var(--merah);
    border: 1px solid rgba(220, 38, 38, 0.15);
}

/* Shared Admin Field Group (login + forms) */
.admin-field-group {
    margin-bottom: 18px;
}

.admin-field-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teks);
    margin-bottom: 6px;
}

.admin-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.admin-input-wrap svg {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--teks-muda);
    opacity: 0.65;
    pointer-events: none;
}

.admin-input-wrap input {
    width: 100%;
    padding: 11px 14px 11px 44px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--teks);
    background: var(--putih);
    transition: all 0.2s;
}

.admin-input-wrap input:focus {
    outline: none;
    border-color: var(--hijau);
    box-shadow: var(--shadow-focus);
}

.admin-login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--hijau) 0%, var(--hijau-tua) 100%);
    color: var(--putih);
    border: none;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s;
    margin-top: 4px;
}

.admin-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.admin-login-btn svg {
    width: 18px;
    height: 18px;
}

.login-form-footer {
    text-align: center;
    margin-top: 24px;
}

.login-form-footer a {
    font-size: 0.85rem;
    color: var(--teks-muda);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.login-form-footer a:hover {
    color: var(--hijau);
}

.login-form-footer a svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 767px) {
    .admin-login-container {
        grid-template-columns: 1fr;
    }
    .admin-login-brand {
        padding: 32px 28px;
    }
    .admin-login-brand h1 {
        font-size: 1.5rem;
    }
    .brand-features {
        display: none;
    }
    .admin-login-form-panel {
        padding: 32px 28px;
    }
}

/* ---- Admin Body & Content Layout ---- */
.admin-body {
    background: var(--bg);
    min-height: 100vh;
}

/* ---- Admin Top Bar ---- */
.admin-topbar {
    background: var(--putih);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.admin-brand img {
    height: 32px;
    width: auto;
}

.admin-brand span {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--hijau-tua);
}

.admin-badge {
    background: var(--hijau-muda);
    color: var(--hijau-tua);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-topbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teks-muda);
    text-decoration: none;
    transition: all 0.2s;
}

.admin-nav-link svg {
    width: 16px;
    height: 16px;
}

.admin-nav-link:hover {
    background: var(--bg);
    color: var(--teks);
}

.admin-nav-link.active {
    background: var(--hijau-muda);
    color: var(--hijau-tua);
}

.admin-logout-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--merah);
    background: var(--merah-bg);
    text-decoration: none;
    transition: all 0.2s;
}

.admin-logout-btn svg {
    width: 15px;
    height: 15px;
}

.admin-logout-btn:hover {
    background: var(--merah);
    color: var(--putih);
}

@media (max-width: 767px) {
    .admin-topbar-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 0;
        gap: 10px;
    }
    .admin-topbar-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .admin-nav-link {
        white-space: nowrap;
        font-size: 0.82rem;
        padding: 6px 10px;
    }
}

/* ---- Admin Content Area ---- */
.admin-content {
    padding: 32px 0 60px;
}

.admin-page-header {
    margin-bottom: 28px;
}

.admin-page-header h1 {
    font-size: 1.75rem;
    color: var(--teks);
    margin-bottom: 4px;
}

.admin-page-header p {
    font-size: 0.92rem;
    color: var(--teks-muda);
}

/* ---- KPI Cards ---- */
.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.admin-kpi-card {
    background: var(--putih);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
}

.admin-kpi-card:hover {
    box-shadow: var(--shadow-md);
}

.admin-kpi-card.kpi-wide {
    grid-column: span 4;
}

.kpi-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kpi-icon svg {
    width: 20px;
    height: 20px;
}

.kpi-warning {
    background: var(--kuning-bg);
    color: var(--kuning);
}

.kpi-info-blue {
    background: var(--biru-bg);
    color: var(--biru);
}

.kpi-success {
    background: var(--hijau-muda);
    color: var(--hijau);
}

.kpi-danger {
    background: var(--merah-bg);
    color: var(--merah);
}

.kpi-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kpi-number {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--teks);
}

.kpi-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teks-muda);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

@media (max-width: 767px) {
    .admin-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .admin-kpi-card.kpi-wide {
        grid-column: span 2;
    }
}

/* ---- Admin Table Card ---- */
.admin-table-card {
    background: var(--putih);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
}

.admin-table-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.admin-table-header h3 {
    font-size: 1.05rem;
    color: var(--teks);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.admin-table-header h3 svg {
    width: 18px;
    height: 18px;
    color: var(--hijau);
}

.admin-table-scroll {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead th {
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--teks-muda);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    text-align: left;
    white-space: nowrap;
}

.admin-table tbody td {
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--teks);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr:hover td {
    background: #F8FAF8;
}

.empty-state {
    text-align: center !important;
    padding: 40px 16px !important;
    color: var(--teks-muda) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.empty-state svg {
    width: 32px;
    height: 32px;
    opacity: 0.4;
}

.wa-link {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
}

.wa-link:hover {
    text-decoration: underline;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

/* ---- Admin Status Badges ---- */
.admin-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
    white-space: nowrap;
}

.admin-status-menunggu {
    background: var(--kuning-bg);
    color: var(--kuning);
}

.admin-status-dikonfirmasi {
    background: var(--biru-bg);
    color: var(--biru);
}

.admin-status-selesai {
    background: var(--hijau-muda);
    color: var(--hijau-tua);
}

.admin-status-batal {
    background: var(--merah-bg);
    color: var(--merah);
}

/* ---- Admin Action Buttons (icon-only) ---- */
.aksi-col {
    display: flex;
    gap: 6px;
    white-space: nowrap;
}

.admin-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.admin-btn svg {
    width: 15px;
    height: 15px;
}

.admin-btn-blue {
    background: var(--biru-bg);
    color: var(--biru);
}
.admin-btn-blue:hover {
    background: var(--biru);
    color: var(--putih);
}

.admin-btn-green {
    background: var(--hijau-muda);
    color: var(--hijau);
}
.admin-btn-green:hover {
    background: var(--hijau);
    color: var(--putih);
}

.admin-btn-gray {
    background: #F1F5F9;
    color: var(--teks-muda);
}
.admin-btn-gray:hover {
    background: #CBD5E1;
    color: var(--teks);
}

.admin-btn-red {
    background: var(--merah-bg);
    color: var(--merah);
}
.admin-btn-red:hover {
    background: var(--merah);
    color: var(--putih);
}

/* ---- Admin Form Card (paket.php) ---- */
.admin-form-card {
    background: var(--putih);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
}

.admin-form-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.admin-form-card-header h3 {
    font-size: 1.05rem;
    color: var(--teks);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.admin-form-card-header h3 svg {
    width: 18px;
    height: 18px;
    color: var(--hijau);
}

.admin-form-body {
    padding: 24px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 18px;
}

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

.admin-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--teks);
    background: var(--putih);
    resize: vertical;
    min-height: 80px;
    transition: all 0.2s;
}

.admin-textarea:focus {
    outline: none;
    border-color: var(--hijau);
    box-shadow: var(--shadow-focus);
}

.admin-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
}

.admin-checkbox-wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--hijau);
    cursor: pointer;
}

.admin-checkbox-wrap label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--teks);
    cursor: pointer;
    margin: 0;
}

.admin-form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.admin-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--hijau), var(--hijau-tua));
    color: var(--putih);
    border: none;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}

.admin-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
}

.admin-btn-submit svg {
    width: 16px;
    height: 16px;
}

.admin-btn-cancel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #F1F5F9;
    color: var(--teks-muda);
    border: none;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.admin-btn-cancel:hover {
    background: #CBD5E1;
    color: var(--teks);
}

.admin-btn-cancel svg {
    width: 16px;
    height: 16px;
}

