/*
Theme Name: Soufia Clinic Modular
Description: Clean, White, and Modular Architecture.
Version: 6.0
Author: Soufia Clinic
*/

html {
    scroll-behavior: smooth;
}

/* 1. CORE VARIABLES (Light & Luxury) */
:root {
    /* Colors */
    --color-gold: #D4AF37;
    --color-gold-light: #F9E588;
    --color-navy: #0b1c2e;
    /* Updated to Deep Royal Navy */
    --color-white: #ffffff;
    --color-offwhite: #f8f9fa;
    /* Very light grey for sections */
    --color-border: #e2e8f0;

    /* Typography */
    --font-heading: 'Cairo', sans-serif;
    /* Cairo Font for Headings */
    --font-body: 'Cairo', sans-serif;
    /* Cairo for Body */

    /* Spacing */
    --container-width: 1200px;
}

/* 2. RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-white);
    color: var(--color-navy);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Crisp text */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Unified h2 styling to match Hero h1 */
h2 {
    font-family: 'Cairo', sans-serif !important;
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
}

/* Unified h3 styling (COMMENTED OUT to separate Section Headers from Card Titles) */
/* h3 {
    font-family: 'Cairo', sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
} */

/* Golden gradient effect for span inside h2 and h3 (like Hero) */
h2 span,
h3 span {
    font-family: 'Cairo', sans-serif !important;
    font-weight: 700 !important;
    font-size: inherit !important;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    font-style: normal !important;
    display: inline-block !important;
    position: relative !important;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)) !important;
}

/* Force consistency on form elements too */
input,
button,
textarea,
select {
    font-family: var(--font-body);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. UTILITIES */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--color-gold);
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.hidden-desktop {
    display: none;
}

/* Buttons Global Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 4px;
    /* Classic sharp elegance */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--color-gold);
    color: #fff;
}

.btn-primary:hover {
    background: #b5952f;
}

.btn-gold {
    background: #D4AF37;
    color: #fff !important;
    border: none;
}

.btn-gold:hover {
    background: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border-color: var(--color-navy);
    color: var(--color-navy);
}

.btn-outline:hover {
    background: var(--color-navy);
    color: #fff;
}

/* Responsive Helper */
@media (max-width: 991px) {
    .hidden-desktop {
        display: block;
    }

    .hidden-mobile {
        display: none;
    }

    /* Responsive h2 sizing */
    h2,
    h3 {
        font-size: 2.5rem !important;
    }

    /* Exception for hero title */
    .fantasy-title {
        font-size: 4.5rem !important;
    }
}/* HEADER STYLES - PLATINUM APP EDITION (REBRANDED) */

/* 1. ULTRA MODERN CONTAINER */
.site-header {
    background: rgba(255, 255, 255, 0.90);
    /* Glassy White */
    backdrop-filter: blur(20px);
    /* Heavy Blur for App Feel */
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    /* Subtle Border */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    /* Slightly taller for grandeur */
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    /* Soft Ambient Shadow */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
    height: 70px;
    /* Shrinks on scroll */
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* 2. LOGO (LUXURY BRANDING) */
.site-branding {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.site-logo {
    font-family: 'Cairo', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0b1c2e;
    /* Navy */
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.site-logo span {
    color: #D4AF37;
    /* Gold */
    font-weight: 900;
}

/* 3. NAVIGATION (PILL DESIGN) */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    gap: 8px;
    /* Tight gap for pill shape */
    margin: 0;
    padding: 6px;
    background: rgba(245, 245, 247, 0.6);
    /* Subtle container background */
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    list-style: none;
    /* Ensure no bullets */
}

/* Specific fix to ensure list items are inline */
.main-navigation ul li {
    display: inline-block;
}

.main-navigation a {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    /* Soft Gray */
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: block;
}

.main-navigation a:hover {
    color: #0b1c2e;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Float effect */
}

/* 4. HEADER ACTIONS (RIGHT) */
.header-cta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Dropdown (Minimalist) */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropbtn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Minimal Border */
    color: #0b1c2e;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 14px;
    /* Squircle */
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lang-dropbtn i {
    color: #D4AF37;
    font-size: 14px;
}

.lang-dropdown:hover .lang-dropbtn {
    background: #fdfdfd;
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 16px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

/* Invisible Bridge */
.lang-dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.lang-dropdown-content a {
    color: #4b5563;
    padding: 10px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.2s;
    font-family: 'Cairo', sans-serif;
}

.lang-dropdown-content a:hover {
    background-color: #fdfaf0;
    color: #D4AF37;
}

/* WhatsApp Main Button */
.wa-button {
    background: #25D366;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 14px;
    /* Squircle to match theme */
    font-size: 14px !important;
    font-weight: 700;
    text-transform: capitalize;
    /* "Chat now" style */
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.wa-button:hover {
    background: #fff;
    color: #25D366 !important;
    border-color: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* 5. MOBILE BASICS */
.mobile-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #0b1c2e;
}

@media (max-width: 1024px) {

    .main-navigation,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .site-header {
        height: 70px;
    }
}/* ========================================
   PREMIUM FOOTER - PROFESSIONAL & BEAUTIFUL
   ======================================== */

.premium-footer {
    background: #ffffff;
    color: #333;
    font-family: 'Cairo', sans-serif;
    border-top: 1px solid #e8e8e8;
}

/* Main Footer Section */
.footer-main {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Logo & About Column */
.footer-about .footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-tagline {
    display: block;
    font-size: 0.85rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.social-icon:hover {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* WhatsApp Pulse Animation */
.whatsapp-pulse {
    background: #25D366 !important;
    color: #fff !important;
    border-color: #25D366 !important;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-pulse:hover {
    background: #20ba5a !important;
    transform: translateY(-3px) scale(1.05);
}

/* Footer Titles */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #d4af37, transparent);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Contact Info */
.footer-contact {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e8e8e8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
}

.contact-item i {
    color: #d4af37;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    background: #1a1a1a;
    padding: 25px 0;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.copyright strong {
    color: #d4af37;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: #999;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d4af37;
}

.footer-bottom-links .separator {
    color: #555;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-about .footer-logo h3 {
        font-size: 1.5rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}/* ============================================
   MOBILE OPTIMIZATION - PREMIUM APP-LIKE EXPERIENCE
   All sections optimized for mobile-first approach
============================================ */

/* Global Mobile Improvements */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    .container {
        padding: 0 15px;
    }

    /* Ensure no horizontal scroll */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

/* Header Mobile Enhancements */
@media (max-width: 991px) {
    .site-header {
        height: 70px;
        padding: 0 15px;
    }

    .site-logo {
        font-size: 20px;
    }

    .mobile-toggle {
        font-size: 28px;
        padding: 8px;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-overlay {
        top: 70px;
        height: calc(100vh - 70px);
        z-index: 9999;
        overflow-y: auto;
    }

    .mobile-menu-overlay a {
        font-size: 20px;
        padding: 15px;
        min-height: 48px;
        /* Touch target size */
    }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: 75vh;
        padding: 80px 0 40px;
    }

    /* Hero title - use fantasy-title class */
    .fantasy-title {
        font-size: 3.5rem !important;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 15px 0;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Feature Blocks Mobile */
@media (max-width: 768px) {
    .home-feature-block {
        padding: 40px 0 !important;
    }

    .feature-block-inner {
        display: flex !important;
        flex-direction: column !important;
        text-align: center;
    }

    .feature-block-inner.reverse {
        flex-direction: column !important;
    }

    .feature-content-wrapper {
        width: 100% !important;
        padding: 30px 20px !important;
        order: 1;
        /* Content first */
        display: flex;
        flex-direction: column;
    }

    .feature-img-wrapper {
        width: 100% !important;
        height: 300px;
        margin: 20px 0 !important;
        order: 2;
        /* Image second - after all content */
    }

    .feature-main-img {
        object-fit: cover;
    }

    /* Reorder elements on mobile */
    .feature-content-wrapper {
        display: flex;
        flex-direction: column;
    }

    .feature-desc {
        order: 2;
        /* Description third */
    }

    .block-features {
        order: 4;
        /* Features after image */
        gap: 15px;
    }

    .feature-badge {
        order: 0;
        /* Badge first */
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .feature-title {
        order: 1;
        /* Title second */
        font-size: 1.8rem !important;
        margin: 15px 0;
    }

    .block-features {
        gap: 15px;
    }

    .b-feature-item {
        flex-direction: row;
        text-align: left;
    }

    .b-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .block-actions {
        order: 5;
        /* Actions last */
        flex-direction: column;
        gap: 10px;
    }

    .btn-block-primary,
    .btn-block-outline {
        width: 100%;
        justify-content: center;
    }

    /* CORRECT Feature Block Classes */
    .feature-block {
        margin: 0 !important;
    }

    .feature-container {
        display: flex !important;
        flex-direction: column !important;
    }

    .feature-block.reverse .feature-container {
        flex-direction: column !important;
    }

    .feature-content {
        order: 1;
        width: 100%;
        padding: 20px;
    }

    /* Hide desktop image on mobile */
    .feature-container>.feature-img-wrapper {
        display: none !important;
    }

    /* Show mobile image (inside content) */
    .feature-img-mobile {
        display: block !important;
        width: 100%;
        height: 280px;
        margin: 5px 0 20px 0;
        overflow: hidden;
        border-radius: 12px;
    }

    .feature-img-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Hide mobile image on desktop */
.feature-img-mobile {
    display: none;
}

/* Discovery/Tabs Section Mobile */
@media (max-width: 768px) {
    .discovery-section {
        padding: 40px 0;
    }

    .discovery-title {
        font-size: 2rem !important;
    }

    .discovery-tabs {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 10px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 12px;
        flex: 1 1 calc(50% - 8px);
        min-width: auto;
    }

    .discovery-container {
        flex-direction: column;
        padding: 20px;
    }

    .disco-img-wrap {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }

    .disco-text-wrap {
        width: 100%;
        padding: 0;
    }

    .disco-heading {
        font-size: 1.5rem !important;
    }

    .service-pill-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-pill {
        font-size: 13px;
        padding: 10px 15px;
    }

    .disco-actions {
        flex-direction: column;
        gap: 10px;
    }

    .disco-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Gallery/Results Section Mobile */
@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-title {
        font-size: 2rem !important;
    }

    .gallery-viewport {
        padding: 0 10px;
    }

    .gallery-slide {
        min-width: 100%;
    }

    .gallery-card {
        height: 500px;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .nav-prev {
        left: 5px;
    }

    .nav-next {
        right: 5px;
    }
}

/* Testimonials Mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testi-viewport {
        padding: 0 10px;
    }

    .testi-slide {
        min-width: 100%;
        padding: 25px;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .testi-google-badge {
        margin-top: 40px;
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Reels Section Mobile */
@media (max-width: 768px) {
    .reels-section {
        padding: 40px 0;
    }

    .reels-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        padding: 0 10px;
    }

    .reel-item {
        max-height: 320px;
        border-radius: 12px;
    }

    .more-reels-btn {
        margin-top: 20px;
        width: 100%;
        padding: 12px 20px;
    }
}

/* Experts Section Mobile - Already has responsive code */

/* Footer Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col {
        padding: 0 20px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
    }

    .footer-col ul li a {
        font-size: 14px;
        padding: 8px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 15px;
    }
}

/* Touch Improvements */
@media (max-width: 768px) {

    /* Ensure all interactive elements are at least 44px */
    button,
    a,
    input,
    select,
    .btn,
    .tab-btn,
    .service-pill,
    .social-link {
        min-height: 44px;
        min-width: 44px;
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.1);
    }

    /* Remove hover effects on touch devices */
    @media (hover: none) {
        *:hover {
            transform: none !important;
        }
    }
}

/* Very Small Screens (320px - old iPhones) */
@media (max-width: 380px) {

    /* Hero title on very small screens */
    .fantasy-title {
        font-size: 3rem !important;
    }

    .discovery-title,
    .gallery-title {
        font-size: 1.75rem !important;
    }

    .tab-btn {
        font-size: 11px;
        padding: 8px 12px;
    }

    .reels-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 920px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }

    .site-header {
        height: 60px;
    }

    .mobile-menu-overlay {
        top: 60px;
    }
}

/* ============================================
   MOBILE BOTTOM NAVIGATION BAR
============================================ */
/* Default Hidden on Desktop */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {

    /* Add padding to body so content isn't hidden behind nav */
    body {
        padding-bottom: 80px;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        z-index: 99999;
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding-bottom: env(safe-area-inset-bottom);
        /* iPhone X+ support */
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #888;
        font-size: 10px;
        font-weight: 500;
        flex: 1;
        height: 100%;
        transition: all 0.3s ease;
    }

    .mobile-nav-item i {
        font-size: 20px;
        margin-bottom: 4px;
        color: #aaa;
    }

    .mobile-nav-item.active,
    .mobile-nav-item:hover {
        color: #d4af37;
    }

    .mobile-nav-item.active i,
    .mobile-nav-item:hover i {
        color: #d4af37;
    }
}