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

:root {
    --primary-navy: #0A0F1D;      /* Deeper space navy */
    --secondary-navy: #151D30;    /* Dark slate blue */
    --accent-red: #F43F5E;        /* Vibrant Hot Rose Red */
    --accent-purple: #8B5CF6;     /* Electric Purple */
    --accent-cyan: #06B6D4;       /* Neon Cyan */
    --accent-red-hover: #E11D48;
    --accent-red-light: rgba(244, 63, 94, 0.1);
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    --border-color: #E2E8F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F43F5E 0%, #8B5CF6 100%);
    --gradient-cyan-purple: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    --gradient-dark: linear-gradient(135deg, #0A0F1D 0%, #172033 100%);
    
    /* Shadows & Glows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px -1px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 15px 30px -5px rgba(0, 0, 0, 0.1), 0 8px 16px -5px rgba(0, 0, 0, 0.05);
    --glow-primary: 0 0 20px rgba(244, 63, 94, 0.3), 0 0 35px rgba(139, 92, 246, 0.2);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-title: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--primary-navy);
}

a {
    color: inherit;
    text-decoration: none;
}

/* Common Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header & Navigation */
header {
    background-color: rgba(10, 15, 29, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--bg-white);
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-red);
}

.cta-btn {
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.4), 0 0 10px rgba(139, 92, 246, 0.3);
    filter: brightness(1.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* 
 * PREMIUM CAPSULE FLOATING BOTTOM NAVIGATION DOCK 
 */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(4rem + env(safe-area-inset-bottom));
    background: rgba(10, 15, 29, 0.96); /* Translucent sleek space navy */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    z-index: 999;
    padding: 0 10px;
    padding-bottom: env(safe-area-inset-bottom);
    justify-content: space-around;
    align-items: center;
    overflow: visible;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
}

.mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45); /* Muted inactive */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-grow: 1;
    height: 100%;
    position: relative;
}

.mobile-bottom-nav-item i {
    font-size: 1.2rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
}

.mobile-bottom-nav-item span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 2px;
}

/* Micro-interactions & Tactile feedback */
.mobile-bottom-nav-item:active {
    transform: scale(0.92);
}

/* Active iOS liquid circular pop-up states */
.mobile-bottom-nav-item.active {
    color: #FFFFFF;
}

.mobile-bottom-nav-item.active i {
    background: var(--gradient-primary); /* Rose Red to Purple active indicator */
    color: #FFFFFF !important;
    font-size: 1.25rem;
    width: 2.85rem;
    height: 2.85rem;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.4), 0 0 10px rgba(139, 92, 246, 0.25);
    animation: activeCirclePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.mobile-bottom-nav-item.active span {
    color: #FFFFFF;
    font-weight: 700;
    transform: translateY(-4px); /* Shifts up to follow the popped icon */
    opacity: 1;
}

@keyframes activeCirclePop {
    0% {
        transform: translateY(0) scale(0.85);
    }
    60% {
        transform: translateY(-16px) scale(1.12);
    }
    100% {
        transform: translateY(-13px) scale(1);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--text-light);
    padding: 6rem 0 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    background-color: rgba(229, 62, 62, 0.15);
    color: var(--accent-red);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(229, 62, 62, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--accent-red);
    background: linear-gradient(to right, #ff7e7e, var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-red);
    background-color: rgba(229, 62, 62, 0.1);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow-lg);
}

.hero-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-red);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Sections General */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

.section-subtitle {
    color: var(--accent-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
}

/* Service Catalog Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.25rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 25px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
}

.service-name {
    font-size: 1.4rem;
    margin-bottom: 0.875rem;
    color: var(--primary-navy);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.service-price {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    border-top: 1px dashed var(--border-color);
    padding-top: 1.5rem;
}

.service-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.925rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-purple);
    font-weight: 800;
}

/* Workflow Section with colorful tags */
.workflow {
    background-color: var(--bg-white);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.workflow-card {
    text-align: center;
    position: relative;
}

.workflow-step {
    width: 3.75rem;
    height: 3.75rem;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.25);
    position: relative;
    z-index: 2;
}

.workflow-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-navy);
}

.workflow-desc {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
}

/* Floating WA & Support */
.floating-wa {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #25D366;
    color: white;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    z-index: 99;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa:hover {
    transform: scale(1.12) rotate(8deg);
}

/* Forms (Order Page Checkout) */
.card-form {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    max-width: 680px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.form-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px 12px;
}

/* Invoice Page */
.invoice-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    max-width: 760px;
    margin: 2rem auto;
    overflow: hidden;
}

.invoice-header {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.invoice-title {
    font-size: 1.65rem;
    color: var(--bg-white);
    font-weight: 800;
}

.invoice-num {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.invoice-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-unpaid {
    background-color: rgba(217, 119, 6, 0.1);
    color: #F59E0B;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.badge-pending {
    background-color: rgba(37, 99, 235, 0.1);
    color: #3B82F6;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-paid {
    background-color: rgba(5, 150, 105, 0.1);
    color: #10B981;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.badge-cancelled {
    background-color: rgba(220, 38, 38, 0.1);
    color: #EF4444;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.invoice-body {
    padding: 2.5rem;
}

.invoice-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.invoice-meta-item {
    font-size: 0.925rem;
}

.invoice-meta-label {
    color: var(--text-muted);
    font-weight: 600;
}

.invoice-meta-val {
    font-weight: 700;
    color: var(--primary-navy);
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2.5rem;
}

.invoice-table th, .invoice-table td {
    padding: 1rem 0;
    text-align: left;
}

.invoice-table th {
    border-bottom: 2px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.invoice-table td {
    border-bottom: 1px solid var(--border-color);
}

.invoice-table .price-col {
    text-align: right;
}

.invoice-total-row {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.invoice-total-row td {
    border-bottom: none;
    padding-top: 2rem;
}

.invoice-transfer-details {
    background-color: var(--bg-light);
    border: 1.5px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
}

.bank-account-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.bank-number {
    font-family: var(--font-title);
    font-weight: 800;
    color: var(--primary-navy);
    font-size: 1.25rem;
}

.copy-btn {
    background: none;
    border: 1.5px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background-color: var(--accent-purple);
    color: white;
}

.payment-proof-box {
    border-top: 1px dashed var(--border-color);
    padding-top: 2rem;
}

/* Admin Dashboard Elements */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: var(--primary-navy);
    color: var(--text-light);
    padding: 2rem 1rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.admin-sidebar-header {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--bg-white);
    margin-bottom: 2.5rem;
    padding-left: 0.5rem;
}

.admin-sidebar-header span {
    color: var(--accent-red);
}

.admin-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.admin-menu-link:hover, .admin-menu-link.active {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--bg-white);
}

.admin-menu-link.active {
    border-left: 4px solid var(--accent-red);
}

.admin-content {
    flex-grow: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    overflow-y: auto;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.admin-userinfo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--secondary-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: var(--font-title);
}

/* Stat Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
    font-family: var(--font-title);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Admin Table styles */
.admin-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.admin-card-title {
    font-size: 1.15rem;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.925rem;
}

.admin-table th, .admin-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background-color: var(--bg-light);
    color: var(--text-muted);
    font-weight: 600;
}

.admin-table tr:hover {
    background-color: rgba(248, 250, 252, 0.7);
}

/* Tracking Timeline & Progress */
.tracking-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 650px;
    margin: 2rem auto;
    padding: 2rem;
}

.progress-container {
    margin: 2rem 0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.progress-bar-bg {
    width: 100%;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-cyan-purple);
    border-radius: 50px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.timeline {
    position: relative;
    padding-left: 2rem;
    list-style: none;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.25rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--accent-purple);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

.timeline-item.active .timeline-marker {
    background: var(--gradient-primary);
    border-color: var(--accent-red-light);
    box-shadow: 0 0 12px var(--accent-red), 0 0 20px var(--accent-red);
}

.timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* UI Badges & Buttons */
.badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge-info {
    background-color: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
}

.btn-danger {
    background-color: var(--accent-red);
    color: white;
    border: none;
}

.btn-danger:hover {
    background-color: var(--accent-red-hover);
}

/* Accordion FAQs */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 1.35rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-navy);
}

.faq-question::after {
    content: '+';
    font-size: 1.35rem;
    color: var(--accent-purple);
    font-weight: 800;
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.05);
}

.faq-item.active .faq-question::after {
    content: '−';
    color: var(--accent-red);
}

.faq-answer {
    padding: 0 1.35rem 1.35rem 1.35rem;
    color: var(--text-muted);
    display: none;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* 
 * BOTTOM SHEET MENU LAINNYA 
 */
.bottom-sheet-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 15, 29, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-sheet-overlay.active {
    display: block;
    opacity: 1;
}

.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0F172A;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}

.bottom-sheet.active {
    transform: translateY(0);
}

.bottom-sheet-handle {
    width: 44px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 0 auto 1.5rem auto;
}

.bottom-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
}

.bottom-sheet-header h3 {
    color: white;
    font-size: 1.25rem;
    font-family: var(--font-title);
    font-weight: 700;
}

.bottom-sheet-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.75rem;
    cursor: pointer;
    transition: color 0.2s;
}

.bottom-sheet-close:hover {
    color: white;
}

.bottom-sheet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.bottom-sheet-link {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    text-align: center;
    transition: all 0.2s ease;
}

.bottom-sheet-link:hover, .bottom-sheet-link:active {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.bottom-sheet-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bottom-sheet-link span {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Responsive Overrides (Mobile First / App-like Enhancements) */
@media (max-width: 768px) {
    body {
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom)) !important; /* Prevent bottom nav bar overlap */
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4.5rem 0;
    }

    /* Floating WA position above bottom nav bar */
    .floating-wa {
        bottom: calc(5.25rem + env(safe-area-inset-bottom)) !important;
        right: 1.25rem;
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.65rem;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    /* Top navbar customization for app-like feeling */
    header {
        position: sticky;
        top: 0;
        height: 3.75rem;
    }

    .nav-container {
        height: 3.75rem;
        justify-content: center; /* Center logo like a native app */
    }

    .nav-menu {
        display: none !important; /* Move all links to bottom tab bar */
    }

    .menu-toggle {
        display: none !important; /* No hamburger needed */
    }

    .mobile-bottom-nav {
        display: flex;
    }

    .hero {
        padding: 4.5rem 0 3.5rem 0;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .cta-btn, .hero-buttons .btn-secondary {
        width: 100%;
        padding: 0.8rem;
    }

    .hero-card {
        padding: 1.5rem;
    }

    .hero-stat-row {
        gap: 0.75rem;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Admin Workspace responsive styles */
    .admin-wrapper {
        flex-direction: column;
    }

    .admin-sidebar {
        display: none !important; /* Completely hide sidebar, use bottom navigation */
    }

    .admin-content {
        padding: 1rem;
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom)) !important;
    }

    .admin-topbar {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .admin-topbar h2 {
        font-size: 1.25rem;
    }

    .admin-userinfo {
        gap: 0.5rem;
    }

    .admin-avatar {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.85rem;
    }

    /* Transform Admin Tables into tactile cards */
    .table-responsive {
        border: none;
        overflow: visible;
    }

    .admin-table, 
    .admin-table thead, 
    .admin-table tbody, 
    .admin-table th, 
    .admin-table td, 
    .admin-table tr {
        display: block;
    }

    .admin-table thead {
        display: none; /* Hide header rows */
    }

    .admin-table tr {
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        margin-bottom: 1.25rem;
        padding: 1.25rem;
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .admin-table tr::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 4px;
        background: var(--gradient-primary);
        border-top-left-radius: var(--radius-lg);
        border-bottom-left-radius: var(--radius-lg);
    }

    .admin-table td {
        border-bottom: 1px dashed var(--border-color);
        padding: 0.625rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        font-size: 0.85rem;
    }

    .admin-table td:last-child {
        border-bottom: none;
        padding-bottom: 0;
        padding-top: 0.875rem;
        justify-content: flex-end;
    }

    /* Print Label from data-label tag */
    .admin-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-muted);
        text-align: left;
        font-size: 0.75rem;
        text-transform: uppercase;
        margin-right: 1.25rem;
    }

    .admin-table td[style*="text-align: right"], 
    .admin-table td[style*="text-align:right"] {
        text-align: right;
        width: auto;
        padding-left: 0;
    }

    .admin-card-header {
        padding: 1rem 1.25rem;
    }

    .card-form {
        padding: 1.5rem;
    }
}

/* 
 * APP-LIKE SLIDER, CAROUSEL, AND ANIMATION COMPONENT STYLES 
 */
.hero-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hero-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}
.hero-slide {
    width: 100%;
    flex-shrink: 0;
}
.hero-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}
.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.hero-slider-dot.active {
    background: var(--accent-red);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--accent-red);
}

/* Animations */
@keyframes slideUpFade {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-slide-up {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Interactive Workflow Roadmap */
.workflow-roadmap-container {
    position: relative;
    padding: 2rem 0;
}
.workflow-roadmap-line {
    position: absolute;
    top: 3.5rem;
    left: 10%;
    right: 10%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
    border-radius: 2px;
}
.workflow-roadmap-progress {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--accent-red);
}
.workflow-roadmap-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.workflow-roadmap-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    cursor: pointer;
}
.workflow-roadmap-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1.25rem auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.workflow-roadmap-step.active .workflow-roadmap-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
}
.workflow-roadmap-step.completed .workflow-roadmap-icon {
    background: #10B981;
    border-color: #10B981;
    color: white;
}
.workflow-roadmap-content {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    margin-top: 2.5rem;
    box-shadow: var(--shadow-md);
    display: none;
    transition: all 0.4s ease;
}
.workflow-roadmap-content.active {
    display: block;
    animation: slideUpFade 0.5s ease forwards;
}

/* Mobile App Footer */
.app-footer-mobile {
    display: none;
}

/* Mobile styles for Roadmap and Sliders */
@media (max-width: 768px) {
    footer {
        display: none !important;
    }
    .app-footer-mobile {
        display: block !important;
        background: #0A0F1D;
        color: rgba(255, 255, 255, 0.5);
        text-align: center;
        padding: 3rem 1.5rem calc(6rem + env(safe-area-inset-bottom)) 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.8rem;
    }
    .workflow-roadmap-line {
        display: none;
    }
    .workflow-roadmap-steps {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-top: 0.75rem;
        padding-bottom: 1rem;
        margin-top: -0.75rem;
        gap: 1rem;
        scrollbar-width: none;
    }
    .workflow-roadmap-steps::-webkit-scrollbar {
        display: none;
    }
    .workflow-roadmap-step {
        flex: 0 0 130px;
        scroll-snap-align: center;
        padding: 0;
    }
    .workflow-roadmap-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.15rem;
    }
    .workflow-roadmap-step h4 {
        font-size: 0.85rem;
    }
    .header-wa-btn {
        display: flex;
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.45rem;
        color: #25D366;
        text-shadow: 0 0 8px rgba(37, 211, 102, 0.25);
        transition: transform 0.2s;
        z-index: 10;
    }
    .header-wa-btn:active {
        transform: translateY(-50%) scale(0.9);
    }
}

.header-wa-btn {
    display: none;
}
