/* ==========================================================
   PUBLIC LAYOUT — Kajhi Trans
   Stylesheet for app/Views/layout/public.php
   ========================================================== */

:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fcd34d;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --bg-dark: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-hover: rgba(255, 255, 255, 0.22);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --font: 'Plus Jakarta Sans', sans-serif;
    --gradient: linear-gradient(135deg, #0f172a 0%, #090d16 50%, #07090f 100%);
    --gradient-accent: linear-gradient(135deg, #ffe000 0%, #ff6a00 100%);
    --nav-bg: rgba(15, 23, 42, 0.85);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* ===================== BODY ===================== */
body {
    font-family: var(--font);
    background: var(--gradient);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
}

/* Ambient glow background effects */
body::before {
    content: '';
    position: fixed;
    top: -30%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0e1a; }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===================== NAVBAR ===================== */
.navbar {
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.92);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.navbar-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand-icon {
    height: 40px;
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    transition: color 0.2s;
    margin: 0 6px;
    font-size: 15px;
    padding: 8px 12px !important;
    border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.06);
}

.navbar-toggler {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}
.navbar-toggler-icon {
    filter: invert(1);
}

.btn-nav-cta {
    background: var(--gradient-accent);
    color: #ffffff !important;
    border: none;
    font-weight: 600;
    padding: 10px 22px !important;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.35);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.5);
}

/* ===================== MAIN WRAPPER ===================== */
.main-wrapper {
    flex: 1;
    position: relative;
}

/* ===================== GLASS CARD ===================== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--glass-border-hover);
}

/* ===================== BUTTONS ===================== */
.btn-glow {
    background: var(--gradient-accent);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 106, 0, 0.6);
    color: #fff;
}

.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--glass-border-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: var(--card-shadow);
}
.btn-theme-toggle:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ===================== FORM CONTROLS ===================== */
.form-label-glass {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-control-glass {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 10px !important;
    color: var(--text-primary) !important;
    padding: 13px 16px !important;
    font-family: var(--font);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-select-glass {
    background: rgba(255, 255, 255, 0.06) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") no-repeat right 16px center / 16px 12px !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 10px !important;
    color: var(--text-primary) !important;
    padding: 13px 40px 13px 16px !important;
    font-family: var(--font);
    font-size: 15px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control-glass::placeholder {
    color: var(--text-muted);
}

.form-control-glass:focus,
.form-select-glass:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2) !important;
    outline: none;
    color: var(--text-primary) !important;
}

.form-control-glass option,
.form-select-glass option {
    background: #1e293b;
    color: var(--text-primary);
}

/* Override bootstrap input-date styles */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
}

/* ===================== ALERTS ===================== */
.alert-glass {
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.alert-glass-success {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.alert-glass-danger {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.alert-glass-info {
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.3);
    color: #22d3ee;
}

/* ===================== FOOTER ===================== */
footer {
    background: rgba(5, 8, 18, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 70px 0 30px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.footer-brand-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    max-width: 300px;
    text-align: justify;
}

.footer-heading {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--primary-light);
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 8px;
    font-size: 14px;
}

.social-btn:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-contact-item .icon {
    width: 32px;
    height: 32px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 13px;
}

.footer-divider {
    border-color: var(--glass-border);
    margin: 40px 0 20px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 13px;
}

/* ===================== UTILITIES ===================== */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 0;
}

/* ===================== BADGES ===================== */
.badge-glass-approved {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-glass-pending {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-glass-cancelled {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ===================== WATERMARK ===================== */
.bg-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* ===================== PRELOADER ===================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0e1a;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.9s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#preloader.fade-out .preloader-logo {
    transform: scale(0.9) !important;
    opacity: 0;
}

.preloader-glow-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 320px;
}

.preloader-logo {
    width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(255, 106, 0, 0.4));
    animation: preloader-pulse 3.2s ease-in-out infinite;
    transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
}

.preloader-text {
    font-family: var(--font);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 24px;
    background: linear-gradient(135deg, #fcd34d, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #f97316;
    width: 0;
    animation:
        preloader-typing 1.6s steps(10, end) forwards,
        preloader-blink-caret 0.75s step-end infinite;
}

@keyframes preloader-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.35)); }
    50% { transform: scale(1.04); filter: drop-shadow(0 0 35px rgba(255, 106, 0, 0.55)); }
}

@keyframes preloader-typing {
    0%, 10% { width: 0 }
    100% { width: 10.5ch }
}

@keyframes preloader-blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #22d3ee }
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
    width: 0;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 10px rgba(99,102,241,0.5);
}

/* ===================== FLOATING WHATSAPP ===================== */
.wa-float-wrapper {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none; /* Let clicks pass through the wrapper container */
}

.wa-tooltip {
    background: rgba(15, 20, 40, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 14px 18px;
    min-width: 230px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    transform: translateX(20px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom right;
}

.wa-tooltip.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto !important; /* Standardized pointer-events */
}

.wa-tooltip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wa-tooltip-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.wa-tooltip-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1;
}

.wa-tooltip-status {
    font-size: 11px;
    color: #25d366;
    font-weight: 500;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-tooltip-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
}

.wa-tooltip-bubble {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px 12px 12px 4px;
    padding: 10px 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 12px;
}

.wa-tooltip-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-number-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 10px;
    padding: 10px 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    color: #e2e8f0;
}

.wa-number-btn:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.45);
    transform: translateX(-3px);
    color: #e2e8f0;
}

.wa-number-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.wa-number-info {
    flex: 1;
}

.wa-number-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #25d366;
    line-height: 1;
}

.wa-number-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    margin-top: 2px;
}

.wa-main-btn {
    pointer-events: auto !important;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: none;
    outline: none;
    text-decoration: none;
    animation: wa-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

@keyframes wa-entrance {
    from { transform: scale(0) rotate(-180deg); opacity: 0; }
    to   { transform: scale(1) rotate(0deg); opacity: 1; }
}

.wa-main-btn:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.3);
    color: white;
}

.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: wa-pulse-anim 2.5s ease-out infinite;
}

.wa-pulse:nth-child(2) {
    animation-delay: 0.8s;
}

@keyframes wa-pulse-anim {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2.2); opacity: 0; }
}

.wa-notif {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #ef4444;
    border: 2px solid #0a0e1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===================== RESPONSIVE ===================== */
.collapsing {
    will-change: height; /* Hardware acceleration for smooth height transitions */
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #0b0f19; /* Solid background to prevent laggy rendering on mobile */
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        margin-top: 12px;
        padding: 16px;
    }
    .nav-link { margin: 2px 0; }
    .btn-nav-cta { display: block; text-align: center; margin-top: 8px; }
}

@media (max-width: 767.98px) {
    footer { padding: 48px 0 24px; }
    .footer-desc { max-width: 100%; }
    .footer-divider { margin: 24px 0 16px; }
    .footer-copy { font-size: 12px; text-align: center; }
}

@media (max-width: 575.98px) {
    .btn-glow, .btn-ghost {
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    .form-control-glass, .form-select-glass {
        font-size: 16px !important;
        padding: 14px 16px !important;
    }
    .wa-float-wrapper {
        bottom: 20px;
        right: 20px;
    }
    .wa-tooltip {
        min-width: calc(100vw - 80px);
        right: 0;
    }
}

/* ===================== MOBILE BOTTOM TAB BAR (iOS Style) ===================== */
.mobile-bottom-nav {
    display: none; /* Hidden by default on desktop */
}

@media (max-width: 991.98px) {
    /* Center navbar brand logo on mobile */
    .navbar .container {
        justify-content: center !important;
    }
    .navbar-brand {
        margin-right: 0 !important;
    }

    /* Hide top navbar toggler and collapse menu */
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    /* Show mobile bottom tab bar */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 65px;
        background: #070a13; /* Premium Solid dark background matching navbar */
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999; /* Below the WhatsApp widget (9999) but above page content */
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom, 0); /* Support for iPhone notch/bottom bar */
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        text-decoration: none !important;
        font-size: 11px;
        font-weight: 600;
        width: 25%;
        height: 100%;
        transition: all 0.2s ease;
        gap: 4px;
        padding-top: 6px;
    }
    
    .mobile-bottom-nav-item i {
        font-size: 20px;
        transition: transform 0.2s ease;
    }
    
    .mobile-bottom-nav-item:active {
        transform: scale(0.92);
    }
    
    .mobile-bottom-nav-item.active {
        color: var(--primary-light);
    }
    
    .mobile-bottom-nav-item.active i {
        color: var(--primary-light);
        transform: translateY(-1px);
    }
    
    /* Add padding to body to prevent bottom nav from covering content */
    body {
        padding-bottom: calc(65px + env(safe-area-inset-bottom, 0)) !important;
    }

    /* Move WhatsApp button slightly higher on mobile to avoid overlapping the bottom nav */
    .wa-float-wrapper {
        bottom: calc(80px + env(safe-area-inset-bottom, 0)) !important;
        right: 20px !important;
    }
}
