/* ============================================
   Template 1 - Modern Business Pages Styles
   ============================================ */

/* --- Base Variables & Layout --- */
:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --secondary-color: #0f172a;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-dark: #020617;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

body.business-details-layout {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Hero Carousel --- */
#heroCarousel {
    min-height: 500px;
}

#heroCarousel .carousel-item {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 500px;
}

.overlay-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.95) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
}

.carousel-control-custom {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-custom,
.carousel-control-next:hover .carousel-control-custom {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    border-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

    #heroCarousel,
    #heroCarousel .carousel-item {
        min-height: 400px;
    }
}

/* --- Navigation & Header --- */
.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--secondary-color);
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* --- Section Scrolling --- */
.section-scroll {
    scroll-margin-top: 100px;
}

/* --- UI Components --- */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-gradient-primary {
    background: var(--primary-gradient) !important;
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 0.625rem 1.5rem;
    transition: var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: #fff;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn_sm {
    padding: 5px 10px;
    font-size: 0.8rem;
}

/* Cards */
.card-modern {
    background: #ffffff;
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    overflow: hidden;
}

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

/* Business Info */
.business-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.store-avtar {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

/* Badges */
.badge-modern {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Reviews */
.review-summary-card {
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    text-align: center;
}

.review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border-left: 4px solid transparent;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
    transform: translateX(4px);
}

.business-about-text p {
    line-height: 2rem !important;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 5rem 0 3rem;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

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

/* --- Responsive Layout & Typography --- */
@media (max-width: 991px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2.2rem;
    }

    .display-6 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {

    /* Fluid Typography */
    h1,
    .display-4 {
        font-size: 2rem;
    }

    h2,
    .display-5 {
        font-size: 1.75rem;
    }

    h3,
    .display-6 {
        font-size: 1.5rem;
    }

    /* Hero & Carousel Adjustments */
    .business-hero,
    #heroCarousel,
    #heroCarousel .carousel-item {
        min-height: 350px !important;
    }

    .store-avtar {
        height: 120px;
        width: 120px;
        border-radius: 12px;
    }

    /* Spacing Refinements */
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Product & Cards Adjustments */
    .product-carousel-img {
        height: 300px !important;
    }

    /* Expert Section mobile */
    .expert-profile-img {
        width: 120px !important;
        height: 120px !important;
    }
}

@media (max-width: 576px) {

    .business-hero,
    #heroCarousel,
    #heroCarousel .carousel-item {
        min-height: 300px !important;
    }

    .btn-lg {
        padding: 0.5rem 1.25rem;
        font-size: 1rem;
    }
}

/* --- Utilities & Helper Classes --- */
.object-fit-cover {
    object-fit: cover;
}

.hover-lift {
    transition: var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hover-opacity:hover {
    opacity: 0.8;
}

.leading-relaxed {
    line-height: 1.6;
}

.cursor-pointer {
    cursor: pointer;
}

/* --- Breadcrumbs Custom Styling --- */
.breadcrumb {
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.65rem;
    color: #adb5bd;
    display: inline-block;
    vertical-align: middle;
    margin-top: 4px;
}

/* --- Appointment Board Specifics --- */
.token-no {
    text-align: center;
    font-size: 80px;
    font-weight: 900;
}

@media(min-width: 768px) {
    .token-no {
        font-size: 120px;
    }
}

.next p {
    font-size: 20px;
    font-weight: 900;
}

.next-list {
    border-bottom: 1px solid lightgray;
    font-size: 18px;
    padding: 15px 10px;
}

/* --- Common Base Styles from style.css --- */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow-xl {
    box-shadow: var(--shadow-xl) !important;
}

.badge-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #fff;
}

.badge-danger {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: #fff;
}

.badge-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
}

.badge-info {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
}

.progress {
    height: 12px;
    border-radius: 50px;
    background-color: #e9ecef;
    overflow: hidden;
}

.progress-bar {
    background: var(--primary-gradient);
    border-radius: 50px;
    transition: width 1s ease-in-out;
}

/* Import restricted - original style.css content flattened above for performance/clarity */

/* --- Gallery & Media --- */
.gallery-item {
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

/* --- Forms & Inputs --- */
.form-control-modern {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 2px solid #f1f1f1;
    background-color: #fcfcfc;
    transition: var(--transition-base);
}

.form-control-modern:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    outline: none;
}

.bg-primary-light {
    background-color: rgba(99, 102, 241, 0.1);
}

/* --- Modern Breadcrumbs --- */
.modern-breadcrumb {
    background: rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    box-shadow: var(--shadow-sm);
}

.modern-breadcrumb .breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.modern-breadcrumb .breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
}

.modern-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--text-muted);
    border-right: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin: 0 0.75rem;
    opacity: 0.6;
}

.modern-breadcrumb .breadcrumb-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
    transform: translateX(-2px);
}

.modern-breadcrumb .breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* --- Service Details --- */
.service-card {
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color);
}

.service-card img {
    transition: var(--transition-base);
}

.service-card:hover img {
    transform: scale(1.05);
}

.section-header {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.price-badge {
    background: var(--primary-gradient);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .modern-breadcrumb {
        padding: 0.75rem 1.5rem;
        border-radius: 30px;
    }

    .modern-breadcrumb .breadcrumb-item {
        font-size: 0.85rem;
    }

    .modern-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 0.5rem;
    }
}

/* ===== Mobile Navigation Offcanvas ===== */
@media (max-width: 991.98px) {

    /* Center logo on mobile */
    .navbar {
        padding-top: 0.8rem !important;
        padding-bottom: 0.8rem !important;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Toggle button styling */
    .navbar-toggler {
        z-index: 1;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* Offcanvas menu styling */
.offcanvas-start {
    width: 280px !important;
    max-width: 85vw;
}

.offcanvas-header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.offcanvas-body {
    padding: 1.5rem;
}

.offcanvas-body .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
}

.offcanvas-body .nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.offcanvas-body .nav-link.active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.offcanvas-body .nav-link i {
    width: 20px;
    text-align: center;
}

/* User profile card in offcanvas */
.offcanvas-body .bg-light {
    transition: var(--transition-base);
}

.offcanvas-body .bg-light:hover {
    background: var(--bg-light) !important;
    box-shadow: var(--shadow-sm);
}

/* Smooth offcanvas animation */
.offcanvas {
    transition: transform 0.3s ease-in-out;
}

.offcanvas.show {
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

/* ===== Custom Component Styles & Layout Helpers ===== */

/* Hero Section */
.hero-tagline {
    max-width: 600px;
}

.bg-cover {
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
}

.verified-badge-wrapper {
    margin-top: -10px;
    display: inline-block;
}

.verified-badge-icon {
    vertical-align: middle;
}

/* Category Scrolling */
.category-scroll {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 10px;
}

.category-scroll:active {
    cursor: grabbing;
}

.category-scroll::-webkit-scrollbar {
    height: 4px;
}

.category-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.category-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(99, 102, 241, 0.2);
    border-radius: 20px;
}

@media (max-width: 768px) {
    .category-scroll::-webkit-scrollbar {
        display: none;
    }

    .category-scroll {
        scrollbar-width: none;
    }
}

.category-item.hover-lift:hover {
    box-shadow: none !important;
}

.category-item-link {
    width: 110px;
}

.category-image-wrapper {
    width: 100px;
    height: 100px;
}

/* Expert Section */
.expert-hero-image-container {
    max-height: 450px;
}

.expert-hero-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.expert-description {
    line-height: 1.8 !important;
}

.expert-thumb {
    width: 80px;
    height: 80px;
}

/* About Section Decoration */
.about-decoration {
    width: 80px;
    height: 80px;
    opacity: 0.15;
    z-index: -1;
}

/* Gallery Section */
.gallery-img-container {
    min-height: 200px;
}

.gallery-item-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1 !important;
}

/* Contact Section */
.contact-card-content {
    z-index: 1;
}

/* Badges & Text Helpers */
.badge-maxWidth-250 {
    max-width: 250px;
}

.badge-maxWidth-100 {
    max-width: 100px;
}

/* Product & Service Specifics */
.product-img-aspect {
    aspect-ratio: 1/1;
    width: 100%;
}

.product-cat-badge {
    max-width: calc(100% - 1rem);
    display: inline-block;
}

.service-img-thumb {
    width: 100px;
    height: 100px;
}

.service-cat-badge {
    font-size: 0.7rem;
    max-width: 100px;
    vertical-align: middle;
}

/* Header & Footer Helpers */
.address-truncate {
    max-width: 300px;
}

.status-dot-sm {
    font-size: 8px;
}

.logo-thumb-sm {
    max-height: 50px;
}

.footer-logo-sm {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text-gradient {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    line-height: 1;
}

.user-avatar-sm {
    width: 38px;
    height: 38px;
}

.offcanvas-logo-sm {
    max-height: 35px;
}

.navbar-collapse {
    flex-grow: unset !important;
}


/* Universal Header Search */
.header-search-container {
    /* max-width: 400px; */
    flex-grow: 1;
    transition: all 0.3s ease;
}

.header-search-container .input-group {
    background: #f8fafc;
    border-radius: 50px;
    padding: 2px 5px;
    border: 1px solid #e2e8f0;
    transition: var(--transition-base);
}

.header-search-container .input-group:focus-within {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.header-search-container .form-control {
    background: transparent;
    border: none;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
}

.header-search-container .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.header-search-container .input-group-text {
    background: transparent !important;
    border: none !important;
    color: #94a3b8;
}

@media (max-width: 991.98px) {
    .header-search-container {
        display: none;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff !important;
        z-index: 3000;
        padding: 0 1rem;
        align-items: center;
        max-width: none;
    }

    .search-active .header-search-container {
        display: flex !important;
        animation: fadeIn 0.2s ease-out;
    }

    /* Hide logo and toggler when search is active */
    .search-active .navbar-brand,
    .search-active .navbar-toggler,
    .search-active #mobileSearchTrigger {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Search Results Styling */
.search-results-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    overflow: hidden;
    z-index: 2000;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #eef2f6;
}

.search-result-item {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8fafc;
    color: var(--primary-color);
}

.search-result-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    background: #f1f5f9;
}

.search-result-info {
    flex-grow: 1;
}

.search-result-name {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    line-height: 1.2;
    margin-bottom: 3px;
}

.search-result-type {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .search-results-overlay {
        position: fixed;
        top: 60px;
        /* Below the search bar */
        left: 0;
        right: 0;
        bottom: 0;
        max-height: none;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        z-index: 2999;
        background: #fff;
    }
}

/* * Mobile Footer Navigation Premium UI */
.mobile-footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: rgba(255, 255, 255, 0.98); */
    /* backdrop-filter: blur(20px); */
    /* border-top: 1px solid rgba(0, 0, 0, 0.05); */
    z-index: 1050;
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
    /* box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.06); */

    .container-fluid {
        padding: 3px 0px;
        width: fit-content;
        border-radius: 20px;
        box-shadow: 0px 0px 30px 3px rgb(0 0 0 / 23%);
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgb(189 176 176);
        backdrop-filter: blur(20px);
    }
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    color: #94a3b8;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* gap: 6px; */
    width: 65px;
}

.nav-icon-wrapper {
    position: relative;
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.mobile-nav-link i {
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.mobile-nav-link span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.01em;
    font-family: 'Inter', sans-serif;
}

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

.mobile-nav-link.active .nav-icon-wrapper {
    /* background: rgba(var(--primary-rgb, 99, 102, 241), 0.12); */
    color: var(--primary-color);
}

.mobile-nav-link.active i {
    transform: scale(1.1);
}

.mobile-nav-link:active {
    transform: scale(0.9);
}