:root {
    --primary-color: #ff6600;
    /* Orange Action */
    --primary-hover: #e65c00;
    --secondary-color: #003366;
    /* Deep Blue Professional */
    --accent-color: #e9ecef;
    --dark-bg: #f4f6f9;
    /* Light Gray Background */
    --card-bg: #ffffff;
    /* White Cards */
    --text-primary: #1a1a1a;
    /* Almost Black High Contrast */
    --text-secondary: #4a4a4a;
    /* Dark Gray */
    --success: #198754;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #0dcaf0;
    --border-color: #dee2e6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 700;
}

/* Navbar */
/* Navbar Modern */
.navbar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-weight: 800;
    color: var(--secondary-color) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand span.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    /* Smaller, clearer */
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

.navbar-brand span.logo-text .highlight {
    color: var(--primary-color);
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Futuristic Admin Badge */
.badge-admin-futuristic {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(255, 102, 0, 0.3);
    font-size: 0.65rem !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.1);
    backdrop-filter: blur(4px);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(255, 102, 0, 0.05);
}

.nav-item .btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #004080 100%);
    color: white;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Cards */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.card-header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.card-body {
    padding: 1.5rem;
}

/* Forms */
.form-control,
.form-select {
    background-color: white;
    border: 2px solid #e0e0e0;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.form-control:focus,
.form-select:focus {
    background-color: white;
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.15);
}

input::placeholder {
    color: #adb5bd;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.4rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--secondary-color);
}

.btn-outline-danger {
    border-color: var(--danger);
    color: var(--danger);
}

.btn-outline-danger:hover {
    background-color: var(--danger);
    color: white;
}

/* Tables */
.table {
    color: var(--text-primary);
    background-color: white;
}

.table thead th {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border: none;
    padding: 1rem;
}

.table td {
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    padding: 1rem;
    color: var(--text-primary);
}

.table-hover tbody tr:hover {
    background-color: #fff8f0;
    /* Light orange tint */
}

/* Badges */
.badge {
    padding: 0.6em 0.9em;
    font-weight: 700;
    border-radius: 6px;
    font-size: 0.75rem;
}

.badge-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.badge-info {
    background-color: #cff4fc;
    color: #055160;
    border: 1px solid #b6effb;
}

.badge-primary {
    background-color: #cfe2ff;
    color: #084298;
    border: 1px solid #b6d4fe;
}

/* Blue tint */
.badge-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.badge-danger {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.badge-secondary {
    background-color: #e2e3e5;
    color: #41464b;
    border: 1px solid #d3d6d8;
}

/* Timeline */
.tracking-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--border-color);
    z-index: 1;
}

.timeline-item.active::before {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.2);
}

.timeline-date {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.timeline-content {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 60px 0;
    margin-top: 80px;
    color: white;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
}

/* Utilities for Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-dark {
    background-color: var(--secondary-color) !important;
}

/* Map bg-dark to our blue */

.alert-info {
    background-color: #e7f1ff;
    border-color: #b3d7ff;
    color: #004085;
}

/* ===== Modern Tab Navigation ===== */
.modern-tabs-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 6px;
    display: inline-flex;
    position: relative;
    box-shadow:
        0 4px 24px rgba(0, 51, 102, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.modern-tabs {
    display: flex;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

.modern-tab-item {
    position: relative;
}

.modern-tab-btn {
    position: relative;
    padding: 14px 32px;
    border: none;
    background: transparent;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.modern-tab-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.modern-tab-btn:hover {
    color: var(--primary-color);
}

.modern-tab-btn:hover i {
    transform: scale(1.15);
}

.modern-tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8533 100%);
    color: white;
    box-shadow:
        0 8px 24px rgba(255, 102, 0, 0.35),
        0 4px 8px rgba(255, 102, 0, 0.2);
    transform: translateY(-2px);
}

.modern-tab-btn.active i {
    animation: tabIconPulse 1.5s ease-in-out infinite;
}

@keyframes tabIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Tab Content Styling */
.modern-tab-content {
    margin-top: 24px;
}

.modern-tab-pane {
    display: none;
    animation: fadeSlideIn 0.4s ease-out;
}

.modern-tab-pane.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Search Input */
.modern-search-group {
    display: flex;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

.modern-search-group:focus-within {
    border-color: var(--primary-color);
    box-shadow:
        0 8px 24px rgba(255, 102, 0, 0.15),
        0 0 0 4px rgba(255, 102, 0, 0.1);
}

.modern-search-input {
    flex: 1;
    border: none !important;
    padding: 18px 24px !important;
    font-size: 1.05rem !important;
    background: white !important;
    box-shadow: none !important;
}

.modern-search-input:focus {
    box-shadow: none !important;
}

.modern-search-btn {
    padding: 18px 32px !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8533 100%) !important;
    border: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease !important;
}

.modern-search-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #ff6600 100%) !important;
    transform: none !important;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1) !important;
}

.modern-search-btn i {
    font-size: 1.1rem;
}

/* Ongkir Form Modern Grid */
.modern-ongkir-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 100px 120px;
    gap: 12px;
    align-items: end;
}

.modern-form-group {
    position: relative;
}

.modern-form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    padding-left: 4px;
}

.modern-select,
.modern-input {
    width: 100%;
    padding: 14px 16px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    background: white !important;
    transition: all 0.3s ease !important;
    appearance: none;
}

.modern-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23003366' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 40px !important;
}

.modern-select:focus,
.modern-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.12) !important;
}

/* Weight Input with Unit */
.weight-input-wrapper {
    position: relative;
}

.weight-input-wrapper .modern-input {
    padding-right: 45px !important;
}

.weight-unit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.7;
}

/* Modern Cek Button */
.modern-cek-btn {
    padding: 14px 24px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8533 100%) !important;
    border: none !important;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    min-height: 52px;
}

.modern-cek-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.35) !important;
}

.modern-cek-btn i {
    font-size: 1rem;
}

/* Result Cards */
.modern-result-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 51, 102, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Responsive */
/* Responsive */
@media (max-width: 991px) {

    /* Full Screen Mobile Menu */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        width: 100%;
        background-color: white;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        text-align: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        opacity: 0;
        pointer-events: none;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile Menu Items */
    .navbar-nav {
        width: 100%;
        gap: 20px;
    }

    .nav-item {
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items */
    .navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--secondary-color) !important;
        padding: 12px 0;
        display: block;
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--primary-color) !important;
    }

    /* Mobile Buttons */
    .btn-sm {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        margin: 5px 0;
        border-radius: 12px;
    }

    /* Close Button Styling using Toggler */
    .navbar-toggler {
        border: none;
        padding: 0;
        z-index: 10000;
        position: relative;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Custom Hamburger Icon */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 51, 102, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 30px;
        height: 30px;
        transition: all 0.3s ease;
    }

    /* Close Icon state */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 102, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
        transform: rotate(90deg);
    }

    .modern-tabs-container {
        width: 100%;
        justify-content: center;
        background: #f5f5f5;
        border: none;
        box-shadow: none;
        padding: 4px;
    }

    .modern-tabs {
        width: 100%;
        display: flex;
    }

    .modern-tab-item {
        flex: 1;
    }

    .modern-tab-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .modern-tab-btn span {
        display: inline;
    }

    .modern-tab-btn:not(.active) {
        background: transparent;
        color: var(--text-secondary);
    }

    .modern-tab-btn.active {
        background: linear-gradient(135deg, var(--primary-color) 0%, #ff8533 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
        transform: none;
    }

    .modern-ongkir-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .modern-search-btn span {
        display: inline;
    }

    .hero-section {
        padding: 40px 0 80px;
        min-height: 100vh;
        display: block;
        background: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-color) 400px, #f4f6f9 400px, #f4f6f9 100%) !important;
        position: relative;
        overflow: hidden;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 420px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 100%);
        clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
        z-index: 0;
        pointer-events: none;
    }

    .hero-section .container {
        position: relative;
        z-index: 1;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .tracking-card {
        padding: 20px !important;
        margin: 0 8px 30px;
    }

    .feature-badges {
        margin-top: 30px;
        gap: 12px;
    }

    .feature-badge {
        padding: 16px 20px;
        min-width: 85px;
        border-radius: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .feature-icon i {
        font-size: 1.1rem;
    }

    .feature-badge span {
        font-size: 0.75rem;
    }

    .mini-footer {
        margin-top: 30px;
    }
}

/* ===== Mobile-First Design Elements ===== */

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tracking Card */
.tracking-card {
    padding: 24px !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

.tracking-card:hover {
    transform: none !important;
}

.tab-header {
    text-align: center;
    margin-bottom: 20px;
}

/* Mobile Input Group */
.mobile-input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 1rem;
    z-index: 2;
}

.mobile-input,
.mobile-select {
    width: 100%;
    padding: 16px 16px 16px 48px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--text-primary) !important;
    background: #fafafa !important;
    transition: all 0.3s ease !important;
}

.mobile-input:focus,
.mobile-select:focus {
    border-color: var(--primary-color) !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1) !important;
}

.mobile-input::placeholder {
    color: #adb5bd;
}

/* Mobile Submit Button */
.mobile-submit-btn {
    width: 100%;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8533 100%) !important;
    border: none !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.3);
}

.mobile-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 102, 0, 0.4) !important;
    background: linear-gradient(135deg, #e65c00 0%, var(--primary-color) 100%) !important;
}

.mobile-submit-btn i {
    font-size: 1rem;
}

/* Lupa Resi Link */
.lupa-resi-link {
    color: #6c757d;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.lupa-resi-link:hover {
    color: var(--primary-color);
}

.lupa-resi-link i {
    margin-right: 4px;
}

/* Mobile Ongkir Form */
.mobile-ongkir-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-form-group {
    width: 100%;
}

.mobile-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 4px;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-badge {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 100px;
}

.feature-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.feature-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Mini Footer */
.mini-footer {
    margin-top: 40px;
    text-align: center;
}

.mini-footer p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
    font-weight: 500;
}

/* Mobile Footer Positioning */
@media (max-width: 991px) {
    .mini-footer {
        display: none !important;
    }
}

/* --- MOBILE BOTTOM NAV --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    height: 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.nav-item-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #C0C0C0;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    width: 60px;
    text-decoration: none;
}

.nav-item-btn:hover {
    color: var(--primary-color, #FF6B00);
}

.nav-item-btn.active {
    color: var(--primary-color, #FF6B00);
}

.nav-item-btn i {
    font-size: 20px;
    margin-bottom: 2px;
}

.fab-btn {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #FF9F43 0%, #FF6B00 100%);
    border-radius: 50%;
    border: 6px solid #F4F7F9;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: -45px;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    transition: transform 0.2s;
}

.fab-btn:active {
    transform: scale(0.95);
}

@media (min-width: 992px) {
    .bottom-nav {
        display: none !important;
    }
}

/* Ensure body has padding so content isn't hidden behind nav */
@media (max-width: 991px) {
    body {
        padding-bottom: 90px;
    }
}