/* 
 * Dating Site - Premium CSS Styles
 * Theme: Modern, Glassmorphism, Vibrant
 */

:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
    --dark-bg: #09090b;
    --card-bg: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --text-main: #2d3436;
    --text-muted: #636e72;
    --gradient-main: linear-gradient(135deg, #6c5ce7 0%, #fd79a8 100%);
    --gradient-hover: linear-gradient(135deg, #5b4cc4 0%, #e84393 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --text-main: #f0f2f5;
    --text-muted: #b2bec3;
    --card-bg: rgba(30, 30, 30, 0.9);
    --glass-bg: rgba(0, 0, 0, 0.3);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* Dark Mode Background Override */
body.dark-mode {
    background-color: #09090b;
    background-image:
        radial-gradient(at 0% 0%, rgba(108, 92, 231, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(253, 121, 168, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(108, 92, 231, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(253, 121, 168, 0.15) 0px, transparent 50%);
    color: var(--text-main);
}

/* General Reset & Typography */
body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: #f0f2f5;
    background-image:
        radial-gradient(at 0% 0%, rgba(108, 92, 231, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(253, 121, 168, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(108, 92, 231, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(253, 121, 168, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 120px;
    /* GLOBAL FIX: Ensure no content hides behind fixed header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.main-content {
    flex: 1;
    /* margin-top managed by body padding now */
    padding-top: 20px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Force Header Text Visibility */
.navbar-light .navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-light .navbar-brand {
    color: #000 !important;
    font-weight: 700;
}

.navbar-light .navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(0%);
    /* Force toggle icon black */
}

/* Navbar Tuning */
.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 600;
    margin: 0 10px;
    border-radius: 10px;
    padding: 8px 16px !important;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    padding: 10px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(108, 92, 231, 0.05);
    color: var(--primary-color);
}

/* Buttons */
.btn {
    border-radius: 12px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    background: var(--card-bg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 150px 0 100px;
    /* Adjusted padding since body has padding-top now */
    background: var(--dark-bg);
    margin-top: -120px;
    /* Pull back up to cover body padding for hero only */
    color: white;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* Improve text legibility */
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Darker overlay (0.75) for better text contrast */
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/couple-6886804.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* ... existing styles ... */

/* Footer - Dark Theme for Contrast */
footer {
    background: #111b21;
    /* WhatsApp/Dark Theme like color */
    color: #e9ecef;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h5,
footer h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer a {
    color: #b0b3b8;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

footer p {
    color: #b0b3b8;
}

footer .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

footer .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    color: white;
    box-shadow: none;
}


.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    margin-top: 2rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-main);
    color: white;
    transform: rotateY(180deg);
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.profile-img-container {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-img-container img {
    transform: scale(1.1);
}

.profile-details {
    padding: 1.5rem;
    position: relative;
    background: white;
}

.compatibility-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: white;
    border-radius: 50px;
    padding: 5px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Personality Test Results */
.personality-trait {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.trait-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 121, 168, 0.1);
    color: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.progress {
    height: 0.6rem;
    border-radius: 10px;
    background: #edf2f7;
    margin: 10px 0;
}

.progress-bar {
    background: var(--gradient-main);
    border-radius: 10px;
}

/* Footer (to be updated in footer.php, but styles here) */
footer {
    background: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .navbar-collapse {
        background: white;
        border-radius: 20px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .hero-section {
        padding: 140px 0 60px;
        border-radius: 0 0 30px 30px;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

.main-content {
    flex: 1;
}

/* Custom colors and overrides */
.btn-primary {
    background-color: #4B0082;
    border-color: #4B0082;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #6B238E;
    border-color: #6B238E;
}

.bg-primary {
    background: linear-gradient(135deg, #4B0082 0%, #FF69B4 100%) !important;
}

.text-primary {
    color: #4B0082 !important;
}

/* Navbar brand styling */
.navbar-brand img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
    color: white !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
}


/* Main Content Pink Theme */
.main-content {
    background: linear-gradient(180deg, #ffffff 0%, #fff0f5 100%);
}

/* Success Stories Carousel */
.success-stories-hero {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.success-stories-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 121, 168, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.success-story-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(253, 121, 168, 0.15);
}

.success-story-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.success-story-card h3 {
    color: #ff4b6c;
    margin: 1rem 0;
}

.success-story-card .testimonial {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

/* Online Dating Section */
.online-dating-section {
    background: white;
    padding: 4rem 0;
}

.online-dating-section img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Three Steps Process */
.steps-section {
    background: linear-gradient(to bottom, #ffffff, #fff0f5);
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(253, 121, 168, 0.1);
    /* Pinkish shadow */
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(253, 121, 168, 0.2);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #ff4b6c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card img {
    border-radius: 10px;
    margin-top: 1rem;
}

.step-card h3 {
    color: #ff4b6c;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.step-card p {
    color: #666;
    margin-bottom: 0;
}

/* Profile card styles */
.profile-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-img-container {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.profile-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details {
    padding: 15px;
}

.profile-name {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.profile-info {
    color: #6c757d;
    margin-bottom: 10px;
}

.profile-bio {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Compatibility indicators */
.compatibility-badge {
    z-index: 2;
}

.compatibility-badge .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.compatibility-info {
    margin-top: 0.5rem;
}

.compatibility-info h6 {
    margin-bottom: 0.25rem;
    color: #6c757d;
    font-size: 0.8rem;
}

.compatibility-info .progress {
    height: 6px;
    border-radius: 3px;
    background-color: #e9ecef;
    margin-bottom: 0.5rem;
}

/* Messages styles */
/* Messages styles - WhatsApp inspired */
.messages-container {
    height: calc(100vh - 250px);
    overflow-y: auto;
    background-color: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 20px;
    margin-bottom: 0;
    /* Remove margin as it sits in flex container */
}

/* Fix card flex layout for messaging */
.card-messaging-layout {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 180px);
    /* Adjust based on header/footer */
}

.message-wrapper {
    margin-bottom: 8px;
    width: 100%;
}

.message {
    padding: 8px 12px;
    border-radius: 7.5px;
    max-width: 80%;
    position: relative;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    font-size: 0.95rem;
    line-height: 1.4;
}

.message-sent {
    background-color: #d9fdd3;
    color: #111b21;
    margin-left: auto;
    border-top-right-radius: 0;
}

.message-received {
    background-color: #ffffff;
    color: #111b21;
    margin-right: auto;
    border-top-left-radius: 0;
}

.message-time {
    font-size: 0.65rem;
    color: rgba(17, 27, 33, 0.5);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 2px;
    margin-left: 10px;
    float: right;
    /* Inline time like whatsapp */
}

/* Call Modal/Overlay Styles */
.call-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.call-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.call-local-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    /* Mirror effect */
}

.call-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.call-btn-danger {
    background-color: #ff3b30;
    color: white;
}

.call-btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.call-status {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.call-avatar-pulse {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Mobile Responsiveness Utilities */
.mobile-hidden {
    display: block !important;
}

.mobile-visible {
    display: none !important;
}

@media (max-width: 767.98px) {
    .mobile-hidden {
        display: none !important;
    }

    .mobile-visible {
        display: block !important;
    }

    /* When viewing chat, hide conversation list */
    .viewing-chat .col-md-4 {
        display: none;
    }
}

.personality-trait {
    padding: 1rem;
}

.trait-icon {
    width: 40px;
    height: 40px;
}

.personality-results h4 {
    font-size: 1.1rem;
}

.score-display {
    font-size: 1rem;
}

.personality-trait p {
    font-size: 0.9rem;
}

/* Message Actions Visibility */
.message-wrapper:hover .message-actions {
    opacity: 1 !important;
    transition: opacity 0.2s ease-in-out;
}

/* Ensure actions are visible on touch devices if hover isn't available, or rely on click */
@media (hover: none) {
    .message-actions {
        opacity: 1 !important;
        /* Always show on mobile/touch */
    }
}
/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 1050; /* Above everything */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.dark-mode .mobile-bottom-nav {
    background: rgba(20, 20, 22, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    flex: 1;
    position: relative;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--primary-color);
}

.mobile-bottom-nav .nav-item.active i {
    transform: translateY(-2px);
}

/* Notification Badge on Mobile Nav */
.mobile-bottom-nav .badge {
    position: absolute;
    top: -5px;
    right: 25%;
    transform: scale(0.8);
}

/* Hide on Desktop */
@media (min-width: 992px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

/* Add padding to body so content isn't covered on mobile */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 80px; /* Height of nav + breathing room */
    }
}

