/* 
  SONER HUKUK BÜROSU - MOBILE STYLES
  ===================================
*/

/* BOTTOM NAVIGATION BAR (Mobile App Feel) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    box-shadow: 0 -2px 10px rgba(15, 32, 60, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.bottom-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bottom-nav-item {
    flex: 1;
    text-align: center;
}

.bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.bottom-nav-link i {
    font-size: 1.25rem;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.bottom-nav-link.active i,
.bottom-nav-link:hover i {
    color: var(--primary);
    transform: translateY(-2px);
}

.bottom-nav-link.active,
.bottom-nav-link:hover {
    color: var(--primary);
}

.bottom-nav-action .bottom-nav-link {
    position: relative;
    top: -15px;
}

.bottom-nav-action .action-btn {
    background-color: var(--secondary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
    margin-bottom: 0.25rem;
}

.bottom-nav-action .bottom-nav-link.active .action-btn,
.bottom-nav-action .bottom-nav-link:hover .action-btn {
    background-color: var(--primary);
    color: var(--secondary);
    transform: scale(1.05);
}


/* RESPONSIVE DESIGN */
@media screen and (max-width: 991px) {

    /* Hide Desktop Elements */
    .site-header .nav-links {
        display: none;
        /* Can be enabled as an off-canvas menu if needed, but we rely on bottom nav for main routing */
    }

    .header-cta .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
    }

    /* Show Bottom Nav */
    .bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 80px;
        /* Make room for bottom nav */
    }

    /* Adjustments */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

@media screen and (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }

    body {
        padding-bottom: 0;
        /* No bottom padding needed on desktop */
    }
}