/* ------------------------------
   RESET & BASE
------------------------------ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a2c2e;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    background-color: transparent;
}

body,
main,
section,
.container-fluid {
    max-width: 100%;
}

@media (min-width: 992px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

a,
button,
.btn,
.badge,
.card,
.accordion-button {
    overflow-wrap: anywhere;
}

/* ------------------------------
   COLOR PALETTE (CSS VARIABLES)
------------------------------ */
:root {
    --accent: #2c7a5e;
    --accent-light: #eaf7f0;
    --accent-dark: #1f5e48;
    --warm-gray: #f8f9fa;
    --card-border: #eef2f0;
    --text-dark: #1e2a2c;
    --text-muted: #5a6e6f;
}

/* ------------------------------
   PARTICLES BACKGROUND
------------------------------ */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 2;
    pointer-events: none;
}

/* semi‑transparent backgrounds for readability */
.hero-section,
.step-card,
.testimonial-card,
.bg-white,
.footer {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(0px);
}

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

/* ------------------------------
   BUTTONS
------------------------------ */
.btn-primary-custom {
    background-color: var(--accent);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.2s ease;
    color: white;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(44, 122, 94, 0.15);
    max-width: 100%;
    white-space: normal;
}

.btn-primary-custom:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 122, 94, 0.2);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.2s;
    max-width: 100%;
    white-space: normal;
}

.btn-outline-custom:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--accent-dark);
}

/* ------------------------------
   SITE HEADER / NAVIGATION
------------------------------ */
.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(238, 242, 240, 0.95);
    box-shadow: 0 8px 24px rgba(31, 94, 72, 0.06);
    backdrop-filter: blur(10px);
    z-index: 1030;
}

.site-header .navbar {
    padding: 0;
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
}

.site-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--accent);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.site-brand:hover {
    color: var(--accent-dark);
}

.site-brand-logo {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 10px;
    object-fit: cover;
}

.site-brand-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-short {
    display: none;
}

.site-menu {
    flex-grow: 1;
}

.site-nav-list {
    align-items: center;
    gap: 0.25rem;
}

.site-nav-link {
    color: #2d3e40;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    padding: 0.65rem 0.85rem !important;
    border-radius: 8px;
}

.site-nav-link:hover,
.site-nav-link:focus {
    color: var(--accent-dark);
    background: var(--accent-light);
}

.site-nav-action {
    margin-left: 0.35rem;
}

.site-signup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    white-space: nowrap;
}

.mobile-menu-button {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    background: #ffffff;
}

.mobile-menu-button:focus {
    box-shadow: 0 0 0 3px rgba(44, 122, 94, 0.16);
}

.mobile-menu-button .navbar-toggler-icon {
    width: 1.35rem;
    height: 1.35rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232c7a5e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 992px) {
    .mobile-menu-button {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .header-inner {
        min-height: 64px;
        flex-wrap: wrap;
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }
    .site-brand {
        max-width: calc(100% - 56px);
        font-size: 1.2rem;
    }
    .site-brand-logo {
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }
    .site-menu {
        flex-basis: 100%;
        width: 100%;
    }
    .site-menu.show,
    .site-menu.collapsing {
        margin-top: 0.75rem;
    }
    .site-nav-list {
        width: 100%;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem;
        background: #ffffff;
        border: 1px solid var(--card-border);
        border-radius: 14px;
        box-shadow: 0 16px 34px rgba(31, 94, 72, 0.1);
    }
    .site-nav-list .nav-item {
        width: 100%;
    }
    .site-nav-link {
        width: 100%;
        padding: 0.9rem 0.85rem !important;
        border-radius: 10px;
        font-size: 0.98rem;
    }
    .site-nav-action {
        margin: 0.4rem 0 0;
        padding-top: 0.4rem;
        border-top: 1px solid var(--card-border);
    }
    .site-signup-button {
        width: 100%;
        min-height: 46px;
        padding: 0.75rem 1rem !important;
    }
}

@media (max-width: 380px) {
    .header-inner {
        min-height: 60px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .site-brand {
        gap: 0.5rem;
        font-size: 1.05rem;
    }
    .site-brand-logo {
        width: 34px;
        height: 34px;
    }
    .brand-full {
        display: none;
    }
    .brand-short {
        display: inline;
    }
    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
    background-color: #fafaf8;
    border-top: 1px solid #ecece6;
    padding: 3rem 0 2rem;
}

.footer .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    margin-right: 28px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ------------------------------
   TOAST NOTIFICATIONS
------------------------------ */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 350px;
    width: calc(100% - 40px);
    pointer-events: none;
}

.toast-message {
    background: white;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid;
    pointer-events: auto;
    animation: slideDownFadeIn 0.3s ease forwards;
}

.toast-message.success {
    border-left-color: #2c7a5e;
    background: #f0f9f4;
    color: #1e5e48;
}
.toast-message.success i {
    color: #2c7a5e;
}

.toast-message.error {
    border-left-color: #dc3545;
    background: #fff5f5;
    color: #a71d2a;
}
.toast-message.error i {
    color: #dc3545;
}

.toast-message i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

@keyframes slideDownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toast-message.fade-out {
    animation: fadeOutUp 0.3s ease forwards;
}

@keyframes fadeOutUp {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: clip;
    }
    .toast-container {
        right: 50%;
        transform: translateX(50%);
        top: 20px;
        max-width: 90%;
        width: auto;
        min-width: 280px;
    }
}

/* ------------------------------
   SCROLL TO TOP BUTTON
------------------------------ */
.scroll-top-btn {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1080;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(44, 122, 94, 0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(31, 94, 72, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.scroll-top-btn:hover,
.scroll-top-btn:focus {
    background: var(--accent-dark);
    color: #ffffff;
    transform: translateY(10px) scale(1.04);
}

.scroll-top-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(44, 122, 94, 0.18), 0 18px 36px rgba(31, 94, 72, 0.24);
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn i {
    font-size: 1.1rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        right: 1rem;
        bottom: 1rem;
        width: 48px;
        height: 48px;
    }
}


/* ......................
    FORM-CONTROL
''''''''''''''''''''''''''' */

/* ......................
    FORM LABEL STYLES
''''''''''''''''''''''''''' */

/* Base label styling */
.form-label {
    color: var(--text-dark, #1e2a2a);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.2s ease;
}

/* Required field indicator */
.form-label.required::after {
    content: '*';
    color: #dc3545;
    margin-left: 4px;
    font-weight: 700;
}

/* Optional field indicator */
.form-label.optional::after {
    content: '(optional)';
    font-size: 0.7rem;
    font-weight: 400;
    color: #6c757d;
    margin-left: 8px;
    text-transform: none;
    letter-spacing: normal;
}

/* Label with tooltip/info icon */
.form-label .label-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.form-label .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(44, 122, 94, 0.15);
    color: #2c7a5e;
    font-size: 10px;
    font-weight: 700;
    cursor: help;
    transition: all 0.2s ease;
}

.form-label .info-icon:hover {
    background: rgba(44, 122, 94, 0.25);
    transform: scale(1.1);
}

/* Floating label style (moves up when input is focused/has value) */
.form-floating-label {
    position: relative;
    margin-top: 1.5rem;
}

.form-floating-label .form-label {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    background: white;
    padding: 0 0.5rem;
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2c7a5e;
    pointer-events: none;
    transition: all 0.2s ease;
}

/* Inline label (label beside input) */
.form-row-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-row-inline .form-label {
    margin-bottom: 0;
    min-width: 100px;
}

/* Label states when input is focused */
.form-control:focus ~ .form-label,
.form-select:focus ~ .form-label {
    color: #2c7a5e;
}

/* Error state for label */
.form-label.error {
    color: #dc3545;
}

.form-label.error::before {
    content: '⚠️ ';
    font-size: 0.8rem;
}

/* Success state for label */
.form-label.success {
    color: #28a745;
}

.form-label.success::before {
    content: '✓ ';
    font-size: 0.8rem;
}

/* Disabled state */
.form-label.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Large label (for main headings in forms) */
.form-label-lg {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

/* Small label (for compact forms) */
.form-label-sm {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

/* Label with description text */
.form-label + .form-text {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: #6c757d;
}

/* Animated underline label (modern style) */
.form-group-underline {
    position: relative;
}

.form-group-underline .form-label {
    position: absolute;
    bottom: 8px;
    left: 0;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 1rem;
    color: #6c757d;
    text-transform: none;
    letter-spacing: normal;
    transition: all 0.2s ease;
    pointer-events: none;
}

.form-group-underline .form-control:focus ~ .form-label,
.form-group-underline .form-control:not(:placeholder-shown) ~ .form-label {
    bottom: 100%;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2c7a5e;
}
.form-control {
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(44, 122, 94, 0.14);
    background: #ffffff;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: rgba(44, 122, 94, 0.45);
    box-shadow: 0 0 0 4px rgba(44, 122, 94, 0.12);
    outline: none;
}

/* ......................
    CUSTOM RADIO & CHECKBOX
''''''''''''''''''''''''''' */

/* Base wrapper for better spacing */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

/* Hide default input but keep accessible */
.form-check-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Custom radio */
.form-check-input[type="radio"] + .form-check-label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark, #1e2a2a);
    user-select: none;
}

.form-check-input[type="radio"] + .form-check-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(44, 122, 94, 0.3);
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-check-input[type="radio"] + .form-check-label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2c7a5e;
    transition: transform 0.2s ease;
}

.form-check-input[type="radio"]:checked + .form-check-label::before {
    border-color: #2c7a5e;
    border-width: 2px;
}

.form-check-input[type="radio"]:checked + .form-check-label::after {
    transform: translateY(-50%) scale(1);
}

.form-check-input[type="radio"]:focus + .form-check-label::before {
    box-shadow: 0 0 0 3px rgba(44, 122, 94, 0.12);
}

/* Custom checkbox */
.form-check-input[type="checkbox"] + .form-check-label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark, #1e2a2a);
    user-select: none;
}

.form-check-input[type="checkbox"] + .form-check-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(44, 122, 94, 0.3);
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-check-input[type="checkbox"] + .form-check-label::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 12px;
    font-weight: bold;
    color: #2c7a5e;
    transition: transform 0.2s ease;
}

.form-check-input[type="checkbox"]:checked + .form-check-label::before {
    border-color: #2c7a5e;
    background: rgba(44, 122, 94, 0.05);
}

.form-check-input[type="checkbox"]:checked + .form-check-label::after {
    transform: translateY(-50%) scale(1);
}

.form-check-input[type="checkbox"]:focus + .form-check-label::before {
    box-shadow: 0 0 0 3px rgba(44, 122, 94, 0.12);
}

/* Disabled state */
.form-check-input:disabled + .form-check-label {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ......................
    CUSTOM SELECT
''''''''''''''''''''''''''' */

.form-select {
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(44, 122, 94, 0.14);
    background: #ffffff;
    padding: 0.9rem 2rem 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark, #1e2a2a);
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    
    /* Custom dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232c7a5e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.form-select:focus {
    border-color: rgba(44, 122, 94, 0.45);
    box-shadow: 0 0 0 4px rgba(44, 122, 94, 0.12);
    outline: none;
}

.form-select:hover {
    border-color: rgba(44, 122, 94, 0.3);
}

/* Optional: Style for select options */
.form-select option {
    font-weight: normal;
    padding: 0.5rem;
}

/* ......................
    INLINE GROUP (Radio/Checkbox Group)
''''''''''''''''''''''''''' */

.form-check-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.form-check-group .form-check {
    margin-bottom: 0;
}

/* Alternative: Horizontal radio/checkbox */
.form-check-horizontal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1070;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(44, 122, 94, 0.12);
    box-shadow: 0 -12px 26px rgba(31, 94, 72, 0.08);
    backdrop-filter: blur(16px);
}

.dashboard-mobile-actions .action-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.78rem 0.5rem;
    border-radius: 18px;
    text-decoration: none;
    color: var(--accent-dark);
    background: #f6fbf7;
    font-size: 0.82rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dashboard-mobile-actions .action-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(44, 122, 94, 0.12);
    background: var(--accent-light);
}

.dashboard-mobile-actions .action-link i {
    font-size: 1.25rem;
}

@media (max-width: 767.98px) {
    .dashboard-mobile-actions {
        padding-top: 1rem 0.85rem 0.78rem 0.85rem;
    }

}


/* ------------------------------
   LOADER / SPINNER
------------------------------ */
.btn-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-dark);
    animation: spin 0.6s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ------------------------------
   SKELETON LOADERS
------------------------------ */
.skeleton {
    background: linear-gradient(90deg, #e8e6df 25%, #f0eee8 50%, #e8e6df 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
    border-radius: 8px;
}
.skeleton-text.short {
    width: 60%;
}
.skeleton-text.medium {
    width: 80%;
}

.skeleton-heading {
    height: 28px;
    width: 40%;
    margin-bottom: 16px;
    border-radius: 8px;
}

.skeleton-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.skeleton-card {
    height: 200px;
    border-radius: 12px;
}

.skeleton-btn {
    height: 48px;
    width: 160px;
    border-radius: 24px;
    display: inline-block;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}

/* Dropdown menu styling - matches mobile profile card */
  .dropdown-menu {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    min-width: 220px;
  }
  .dropdown-menu .dropdown-item {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  .dropdown-menu .dropdown-item i {
    width: 1.75rem;
    font-size: 1rem;
    color: #2c7a5e;
    transition: transform 0.2s ease;
  }
  .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    padding-left: 1.5rem;
  }
  .dropdown-menu .dropdown-item:hover i {
    transform: translateX(2px);
  }
  .dropdown-menu .dropdown-item.text-danger i {
    color: #dc3545;
  }
  .dropdown-menu .dropdown-divider {
    margin: 0.3rem 0;
    border-top: 1px solid rgba(44,122,94,0.1);
  }
  .nav-link.dropdown-toggle i {
    font-size: 1.2rem;
  }
  .mobile-profile-card .nav-link i {
    width: 1.75rem;
    color: #2c7a5e;
  }
  .mobile-profile-card .nav-link.text-danger i {
    color: #dc3545;
  }
  .mobile-profile-card .nav-link:hover {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
  }


/* Mobile profile card link styles */
.mobile-profile-card .nav-link {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-weight: 500;
  color: #2c3e2f;
}

.mobile-profile-card .nav-link i {
  width: 1.75rem;
  font-size: 1rem;
  color: #2c7a5e;
  transition: transform 0.2s ease;
}

.mobile-profile-card .nav-link:hover {
  background-color: #f8f9fa;
  padding-left: 1.25rem;
}

.mobile-profile-card .nav-link:hover i {
  transform: translateX(2px);
}

.mobile-profile-card .nav-link.text-danger {
  color: #dc3545;
}

.mobile-profile-card .nav-link.text-danger i {
  color: #dc3545;
}

.mobile-profile-card .nav-link.text-danger:hover {
  background-color: #fff5f5;
}

/* Mobile stats cards (points & trust) */
.mobile-profile-card .bg-light {
  background-color: #f8f9fa !important;
  transition: transform 0.2s ease;
}

.mobile-profile-card .bg-light:hover {
  transform: translateY(-2px);
}