:root {
    --primary: #0b1f3a;
    --primary-2: #12345b;
    --accent: #0ea5b7;
    --accent-dark: #0b8797;
    --success-green: #10b981;
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-2: #f8fbff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
    --radius: 22px;
    --container-width: 1180px;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    margin: 0;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    text-decoration: none;
}

.container {
    max-width: var(--container-width);
}

.page-full-width {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================
   NAVBAR
========================= */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.75);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.site-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar-brand {
    color: #fff !important;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.3px;
    display: inline-flex;
    align-items: center;
}

.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 600;
    transition: 0.25s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: #10b981 !important;
}

.custom-toggler {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.custom-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(14, 165, 183, 0.15);
}

.main-nav-links .nav-link {
    font-weight: 700;
}

.nav-btn {
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 700;
}

.small-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75) !important;
}

.small-link:hover {
    color: #fff !important;
}

.admin-dropdown-menu {
    border: 1px solid #e7edf5;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
}

.admin-dropdown-menu .dropdown-item {
    border-radius: 12px;
    font-weight: 600;
    padding: 10px 14px;
}

.admin-dropdown-menu .dropdown-item:hover {
    background: rgba(14, 165, 183, 0.10);
    color: var(--accent-dark);
}

/* =========================
   BUTTONS
========================= */
.btn {
    border-radius: 16px;
    font-weight: 700;
    padding: 12px 18px;
    transition: all 0.22s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #12b8a3);
    color: #fff;
    border: none;
    box-shadow: 0 12px 24px rgba(14, 165, 183, 0.22);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-dark), #0fa88f);
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: #1fb458;
    color: #fff;
}

/* =========================
   HERO
========================= */
.hero-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #081b3d;
}

.world-class-hero {
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 20, 49, 0.94) 0%, rgba(7, 24, 58, 0.82) 45%, rgba(9, 28, 66, 0.64) 100%),
        url('/assets/images/hero-shipping.jpg') center center / cover no-repeat;
}

.hero-overlay-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.08), transparent 24%),
        radial-gradient(circle at 80% 15%, rgba(14, 165, 183, 0.10), transparent 20%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 84px 30px 60px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    max-width: 780px;
}

.hero-accent-text {
    color: #19c37d;
}

.hero-text {
    max-width: 680px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
    font-size: 1.14rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    min-width: 190px;
    min-height: 58px;
    font-size: 1rem;
}

.hero-mini-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.brand-strip-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-strip-logos span {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    padding: 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-stat-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
    font-weight: 600;
}

.hero-stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
}

.hero-side-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-side-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
}

.hero-side-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-side-feature:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.hero-side-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-bottom-cards {
    position: relative;
    z-index: 2;
}

.hero-bottom-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    padding: 20px;
    color: #fff;
    backdrop-filter: blur(8px);
}

.hero-bottom-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}

.hero-bottom-card h6 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-bottom-card p {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
}

/* =========================
   SECTIONS
========================= */
.section-space {
    padding: 78px 0;
}

.premium-section {
    position: relative;
}

.alt-section {
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7fc 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #101828;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.8;
    font-size: 1.04rem;
}

.section-kicker {
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

/* =========================
   CARDS
========================= */
.feature-card,
.service-card,
.page-card,
.table-card,
.form-card,
.auth-card,
.stat-card {
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-hover {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.icon-pill {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(14, 165, 183, 0.12);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
}

.feature-card,
.service-card,
.stat-card {
    text-align: center;
}

.feature-card h5,
.service-card h5 {
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-card p,
.service-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.premium-step-card {
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(16, 24, 40, 0.12);
}

.premium-service-card {
    overflow: hidden;
}

.service-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    height: 200px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   INFO / TRUST
========================= */
.world-class-info-box {
    background: linear-gradient(135deg, #ffffff, #f7fbff);
    border: 1px solid #e8eef5;
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--shadow-md);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trust-card {
    background: #ffffff;
    border: 1px solid #e9eef5;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.trust-title {
    font-size: 1rem;
    font-weight: 800;
    color: #101828;
    margin-bottom: 8px;
}

.trust-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =========================
   TRUSTED BANNER
========================= */
.trusted-banner {
    background: linear-gradient(135deg, #0f1f3d, #12345b);
    border-radius: 28px;
    padding: 30px;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.trusted-banner-label {
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
}

.trusted-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trusted-banner-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}

.trusted-banner-item strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.trusted-banner-item span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.93rem;
}

/* =========================
   CTA
========================= */
.cta-box {
    background: linear-gradient(135deg, #0d2445, #143a67);
    color: #fff;
    border-radius: 34px;
    padding: 52px 28px;
    box-shadow: var(--shadow-lg);
}

.world-class-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* =========================
   FORM
========================= */
.form-control,
.form-select,
textarea {
    border-radius: 16px !important;
    border: 1px solid var(--border) !important;
    min-height: 56px;
    padding: 12px 16px !important;
}

textarea.form-control {
    min-height: 120px;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 0.18rem rgba(14, 165, 183, 0.12) !important;
}

.form-card,
.table-card,
.page-card {
    box-shadow: var(--shadow-md);
}

.page-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.page-subtitle,
.small-muted {
    color: var(--muted);
}

.table-card table {
    margin-bottom: 0;
}

.table thead th {
    background: #eff5fb;
    border-bottom: none;
}

/* =========================
   ADDRESS + STATUS
========================= */
.address-box {
    background: var(--surface-2);
    border: 1px dashed #c8d5e5;
    border-radius: 18px;
    padding: 18px;
    line-height: 1.9;
}

.badge-soft {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.status-received_request {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #cfe2ff;
    color: #084298;
}

.status-shipped {
    background: #d3d3d4;
    color: #41464b;
}

.status-delivered {
    background: #d1e7dd;
    color: #0f5132;
}

/* =========================
   DASHBOARD
========================= */
.dashboard-hero {
    background: linear-gradient(135deg, #0b1f3a, #12345b);
    color: #fff;
    border-radius: 28px;
    padding: 40px;
}

.dashboard-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 14px;
}

.dashboard-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.dashboard-text {
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.dashboard-code-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.dashboard-code {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(14, 165, 183, 0.12);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}

.stat-label {
    color: var(--muted);
    font-size: 14px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 8px;
}

.mini-pill {
    background: #eef7f8;
    color: #0d7480;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
}

/* =========================
   AUTH
========================= */
.auth-card {
    max-width: 560px;
    margin: 20px auto;
}

.auth-page-wrap {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 50px;
    background: linear-gradient(135deg, #0b1f3a 0%, #12345b 100%);
    border-radius: 28px;
}

.auth-page-shell {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.auth-page-card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    padding: 30px 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.auth-page-card.compact-card {
    max-width: 620px;
    margin: 0 auto;
}

.auth-head-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(14, 165, 183, 0.10);
    color: var(--accent-dark);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 16px;
}

.auth-page-title {
    font-size: 2.7rem;
    line-height: 1.08;
    font-weight: 800;
    color: #172033;
    margin-bottom: 12px;
    text-align: center;
}

.auth-page-subtitle {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 22px;
}

.auth-form-box {
    background: #fbfcfe;
    border: 1px solid #e9eef5;
    border-radius: 24px;
    padding: 18px;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.auth-grid .full-width {
    grid-column: 1 / -1;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form-group label {
    font-size: 15px;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
}

.auth-form-group input {
    min-height: 52px;
    border-radius: 16px !important;
    border: 1px solid #dbe4ee !important;
    padding: 12px 16px !important;
    font-size: 0.98rem;
    background: #fff !important;
}

.auth-form-group input:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 0.18rem rgba(14, 165, 183, 0.12) !important;
}

.auth-main-action {
    width: 100%;
    min-height: 54px;
    border-radius: 18px;
    font-size: 1.05rem;
    font-weight: 800;
}

.auth-secondary-actions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.auth-muted-text {
    color: #6b7280;
    font-size: 1rem;
}

.auth-simple-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.auth-simple-link:hover {
    text-decoration: underline;
}

.auth-outline-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
    font-size: 1.02rem;
    font-weight: 800;
}

.auth-top-surface {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.auth-top-surface-inner {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}

.auth-top-surface-inner h2 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.auth-top-surface-inner p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.7;
    font-size: 0.96rem;
}

.auth-helper-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.auth-helper-row .auth-simple-link {
    font-size: 0.96rem;
}

/* =========================
   PREMIUM FORM
========================= */
.premium-form-card {
    padding: 32px;
    border-radius: 28px;
}

.form-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 18px;
}

.form-header-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(14, 165, 183, 0.12);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.form-section-box {
    background: #fbfcfe;
    border: 1px solid #eef2f7;
    border-radius: 22px;
    padding: 22px;
}

.form-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.premium-label {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.premium-input {
    min-height: 60px !important;
    border-radius: 18px !important;
    border: 1px solid #dfe6ee !important;
    background: #ffffff !important;
    font-size: 1rem;
    padding: 14px 18px !important;
    transition: all 0.2s ease;
}

.premium-input:hover {
    border-color: #cfd8e3 !important;
}

.premium-input:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 0.18rem rgba(14, 165, 183, 0.12) !important;
}

.premium-textarea {
    min-height: 150px !important;
    resize: vertical;
}

.input-help {
    margin-top: 8px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.form-actions-bar {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.form-submit-btn {
    min-width: 220px;
    min-height: 58px;
}

/* =========================
   TRACKING
========================= */
.tracking-result-card {
    background: #fbfcfe;
    border: 1px solid #e8eef5;
    border-radius: 24px;
    padding: 24px;
}

.tracking-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 18px;
    margin-bottom: 10px;
}

.tracking-code {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    word-break: break-word;
}

.tracking-info-box {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 16px;
    height: 100%;
}

.tracking-status-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.tracking-stage {
    border: 1px solid #d8e3ee;
    background: #fff;
    color: #6b7280;
    border-radius: 16px;
    padding: 14px 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.tracking-stage.active {
    background: rgba(14, 165, 183, 0.12);
    border-color: rgba(14, 165, 183, 0.2);
    color: var(--accent-dark);
}

.tracking-side-card {
    height: 100%;
}

.tracking-tip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #eef2f7;
}

.tracking-tip-item:last-child {
    border-bottom: 0;
}

.tracking-tip-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(14, 165, 183, 0.12);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

/* =========================
   DASHBOARD EXTRA
========================= */
.dashboard-stats-row .stat-card-button {
    border: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-stats-row .stat-card-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dashboard-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.quick-link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f9fbfd;
    border: 1px solid #e9eef5;
    border-radius: 18px;
    padding: 14px 16px;
    color: var(--text);
    transition: all 0.2s ease;
}

.quick-link-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: var(--text);
}

.quick-link-whatsapp {
    background: rgba(37, 211, 102, 0.10);
    border-color: rgba(37, 211, 102, 0.2);
}

.quick-link-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(14, 165, 183, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.quick-link-text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.quick-link-text small {
    color: var(--muted);
    margin-top: 3px;
}

.dashboard-inline-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dashboard-chip {
    border: 1px solid #dbe4ee;
    background: #fff;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-chip:hover,
.dashboard-chip.active {
    background: rgba(14, 165, 183, 0.12);
    border-color: rgba(14, 165, 183, 0.18);
    color: var(--accent-dark);
}

.mobile-package-card {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

.mobile-package-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.mobile-package-tracking {
    font-weight: 800;
    font-size: 1rem;
    color: #0f172a;
    word-break: break-word;
}

.mobile-package-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.mobile-package-meta span.small-muted {
    display: block;
    margin-bottom: 2px;
}

.dashboard-package-item.hidden-by-filter {
    display: none !important;
}

/* =========================
   FAQ
========================= */
.accordion-item {
    border: 1px solid #e8eef5 !important;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.accordion-button {
    font-weight: 700;
    padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
    background: rgba(14, 165, 183, 0.08);
    color: var(--accent-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    color: var(--muted);
    line-height: 1.8;
}

/* =========================
   RESET CODE FIELD
========================= */
.reset-code-input {
    text-align: center;
    font-size: 1.4rem !important;
    font-weight: 800;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.reset-code-help {
    text-align: center;
    font-size: 0.92rem;
    color: var(--muted);
    margin-top: 10px;
}

/* =========================
   WORLD-CLASS FOOTER
========================= */
.site-footer {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.10), transparent 22%),
        linear-gradient(135deg, #081b37 0%, #0d274b 45%, #102f59 100%);
    color: #fff;
    margin-top: 70px;
    overflow: hidden;
}

.footer-main-wrap {
    padding-top: 60px;
    padding-bottom: 28px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-brand-box {
    max-width: 320px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.85;
    font-size: 0.98rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 18px;
}

.footer-col {
    padding-top: 6px;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    transition: all 0.22s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.22);
    color: #fff;
    transform: translateY(-2px);
}

.footer-contact-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(8px);
}

.footer-contact-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8be4c2;
    margin-bottom: 10px;
}

.footer-contact-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.35;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1fb458, #25D366);
    color: #fff;
    font-weight: 800;
    border-radius: 14px;
    padding: 12px 18px;
    transition: all 0.22s ease;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.18);
}

.footer-contact-button:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-contact-meta {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
}

.footer-bottom-bar {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    transition: 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 991.98px) {
    .custom-mobile-menu {
        margin-top: 14px;
        background: linear-gradient(180deg, rgba(9, 29, 61, 0.98), rgba(10, 34, 71, 0.98));
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 18px 16px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    }

    .main-nav-links {
        gap: 6px !important;
    }

    .main-nav-links .nav-item {
        width: 100%;
    }

    .main-nav-links .nav-link {
        display: block;
        width: 100%;
        padding: 14px 12px !important;
        border-radius: 16px;
        color: #fff !important;
        font-size: 1.05rem;
    }

    .main-nav-links .nav-link:hover,
    .main-nav-links .nav-link:focus {
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-user-box {
        margin-top: 14px;
        width: 100%;
        display: block !important;
    }

    .nav-logout-btn,
    .nav-register-btn {
        width: 100%;
        min-height: 52px;
        border-radius: 16px;
        font-weight: 800;
    }

    .dropdown-menu.admin-dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 8px;
        background: rgba(255, 255, 255, 0.98);
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }

    .hero-content {
        padding: 42px 20px 44px;
    }

    .hero-title {
        font-size: 2.7rem;
        line-height: 1.05;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .dashboard-hero .hero-actions .btn,
    .page-card .hero-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .hero-stat-grid,
    .trust-grid,
    .trusted-banner-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .dashboard-hero {
        padding: 25px;
        border-radius: 22px;
    }

    .dashboard-title {
        font-size: 1.9rem;
    }

    .dashboard-code {
        font-size: 1.5rem;
    }

    .dashboard-code-box {
        margin-top: 8px;
    }

    .premium-form-card,
    .form-card,
    .table-card,
    .page-card,
    .auth-card {
        padding: 20px;
    }

    .form-card-header {
        align-items: flex-start;
    }

    .form-header-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }

    .form-section-box {
        padding: 18px;
    }

    .form-actions-bar {
        flex-direction: column;
    }

    .form-submit-btn {
        width: 100%;
        min-width: auto;
    }

    .tracking-status-bar {
        grid-template-columns: 1fr 1fr;
    }

    .tracking-result-card {
        padding: 18px;
    }

    .table-responsive {
        font-size: 14px;
    }

    .dashboard-action-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats-row .stat-card {
        padding: 16px;
        border-radius: 18px;
    }

    .dashboard-stats-row .stat-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .dashboard-stats-row .stat-label {
        font-size: 12px;
    }

    .dashboard-stats-row .stat-value {
        font-size: 1.55rem;
        margin-top: 4px;
    }

    .dashboard-inline-tools {
        width: 100%;
        justify-content: flex-start;
    }

    .dashboard-chip {
        font-size: 12px;
        padding: 7px 12px;
    }

    .dashboard-address-card,
    .dashboard-help-card {
        border-radius: 20px;
    }

    .auth-page-wrap {
        padding: 20px 10px 36px;
        min-height: auto;
        border-radius: 22px;
    }

    .auth-page-card {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .auth-page-title {
        font-size: 2.15rem;
    }

    .auth-page-subtitle {
        font-size: 0.98rem;
        margin-bottom: 18px;
    }

    .auth-form-box {
        padding: 14px;
        border-radius: 18px;
    }

    .auth-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .auth-top-surface {
        padding: 12px;
        border-radius: 18px;
    }

    .auth-top-surface-inner {
        padding: 16px;
        border-radius: 16px;
    }

    .auth-top-surface-inner h2 {
        font-size: 1.15rem;
    }

    .reset-code-input {
        font-size: 1.15rem !important;
        letter-spacing: 0.22em;
    }

    .service-image-wrap {
        height: 190px;
    }

    .world-class-info-box,
    .trusted-banner {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .world-class-cta h2 {
        font-size: 2rem;
    }

    .footer-main-wrap {
        padding-top: 46px;
        padding-bottom: 24px;
    }

    .footer-logo {
        height: 56px;
    }

    .footer-contact-card {
        padding: 20px;
        border-radius: 20px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        gap: 14px;
    }
}
