/* ======================================== */
/* MOBILE OVERRIDES                         */
/* ======================================== */

@media (max-width: 768px) {
    body {
        background-color: #2FC3D2;
        display: block;
        min-height: 100vh;
        font-family: 'Geist', sans-serif;
        line-height: 1.4;
    }

    .header {
        display: none;
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        padding: 0 10px;
    }

    .doctor-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }

    .doctor-name {
        font-size: 13px;
    }

    .doctor-specialty {
        display: none;
    }

    .search-container,
    .header-buttons {
        display: none !important;
    }

    .logo {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        border-radius: 8px;
        font-size: 12px;
    }

    .main-content {
        padding-top: 0px;
    }

    .services-container {
        max-width: 100%;
        margin: 0 auto 40px;
        padding: 20px 15px;
        border-radius: 25px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .services-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .service-card {
        flex: 0 0 calc(50% - 15px);
        max-width: 170px;
        padding: 15px 10px;
        background: #eff1fe;
        border-radius: 12px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .service-icon img {
        width: 60px;
        height: 60px;
    }

    .service-title {
        font-size: 12px;
        min-height: 32px;
        line-height: 1.3;
    }

    .hero {
        display: block;
    }

    .bottom-menu {
        display: flex;
    }

    .map-wrapper {
        height: 250px;
    }

    .modal-content {
        max-width: 100vw;
        border-radius: 25px 25px 0 0;
    }

    .sidebar {
        max-width: 100%;
        border-radius: 25px 25px 0 0;
    }
}

@media (min-width: 769px) {
    .bottom-menu {
        display: none !important;
    }
}
