

                        .media-body i {
                            font-size: 80px;
                            padding-bottom: 20px
                        }

                        .info-grid {
                            display: grid;
                            grid-template-columns: repeat(3, 1fr);
                            gap: 20px;
                        }

                        .info-item {
                            display: flex;
                            align-items: center;
                            gap: 15px;
                            padding: 15px;
                            background: #fff;
                            /* border-radius: 10px;
                            backdrop-filter: blur(10px);*/
                        }

                        .info-icon {
                            width: 60px;
                            height: 60px;
                            background: #545454;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            color: white;
                            font-size: 28px;
                            flex-shrink: 0;
                        }

                        .info-item strong {
                            color: #545454
                        }

                        /* برای صفحه نمایش کوچک (موبایل) */
                        @media (max-width: 768px) {
                            .info-grid {
                                grid-template-columns: 1fr; /* تک ستونی در موبایل */
                            }
                        }

                        /* برای صفحه نمایش متوسط (تبلت) */
                        @media (min-width: 769px) and (max-width: 1024px) {
                            .info-grid {
                                grid-template-columns: repeat(2, 1fr); /* دو ستونی در تبلت */
                            }
                        }

                        /* برای صفحه نمایش بزرگ (دسکتاپ) */
                        @media (min-width: 1025px) {
                            .info-grid {
                                grid-template-columns: repeat(3, 1fr); /* سه ستونی در دسکتاپ */
                            }
                        }
                    


        :root {
            --medbase-blue: #0e8c8a;
            --medbase-border: #5C5F71;
            --medbase-light-blue: #4ea19e;
            --medbase-orange: #545454;
            --medbase-light-orange: #787878;
        }

        .medbase-branch-container {
            perspective: 1000px;
            margin-bottom: 5px;
            height: 500px;
        }

        .medbase-branch-card {
            width: 100%;
            height: 100%;
            position: relative;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .medbase-branch-card.flipped {
            transform: rotateY(180deg);
        }

        .medbase-card-front, .medbase-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border: 1px solid #dddddd;
            overflow: hidden;
        }

        .medbase-card-front {
            display: flex;
            flex-direction: column;
        }

        .medbase-card-back {
            transform: rotateY(180deg);
            background: #fff;
            padding: 15px 8px;
            display: flex;
            flex-direction: column;
        }

        .medbase-branch-img {
            max-height: 180px;
            min-height: 180px;
            object-fit: cover;
            width: 100%;
        }

        .medbase-branch-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--medbase-blue);
            color: white;
            padding: 9px 9px;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 4px;
        }

        .medbase-card-body {
            padding: 15px;
            background: white;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .medbase-card-title {
            color: var(--medbase-border);
            font-weight: 600;
            font-size: 0.85em;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #dddddd;
            line-height: 1.4;
        }

        .medbase-branch-info {
            margin-bottom: 5px;
        }

        .medbase-info-item {
            display: flex;
            margin-bottom: 3px;
            font-size: 11px;
        }

        .medbase-info-item i {
            color: var(--medbase-border);
            font-size: 0.8rem;
            min-width: 20px;
            padding-top: 3px;
        }

        .medbase-info-item a {
            color: var(--medbase-border);
        }

        /* ======= بخش حمل و نقل ======= */
        .medbase-transport-info {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 8px 10px;
            margin-top: auto;
            font-size: 10px;
            line-height: 1.5;
        }

        .medbase-transport-item {
            display: flex;
            margin-bottom: 5px;
        }

        .medbase-transport-item:last-child {
            margin-bottom: 0;
        }

        .medbase-transport-item i {
            color: var(--medbase-blue);
            min-width: 18px;
            padding-top: 2px;
            font-size: 0.75rem;
        }

        .medbase-transport-item small {
            color: #888;
            font-size: 9px;
        }
        /* ============================= */

        .medbase-btn-container {
            margin-top: 8px;
        }

        .medbase-btn-medpoints {
            background-color: #fff;
            color: var(--medbase-orange);
            border: 1px solid #dddddd;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
            cursor: pointer;
            font-size: 0.6rem;
            padding: 5px 8px;
            margin-top: 5px;
        }

        .medbase-btn-medpoints:hover {
            background-color: var(--medbase-orange);
            color: #fff;
            transform: translateY(-2px);
        }

        .medbase-medpoints-title {
            color: var(--medbase-orange);
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            text-align: center;
            font-size: 0.9rem;
            padding-left: 15px;
        }

        .medbase-medpoints-title i {
            margin-right: 10px;
        }

        .medbase-cities-container {
            flex-grow: 1;
            overflow-y: auto;
            padding: 10px;
            margin-bottom: 60px;
        }

        .medbase-city-item {
            display: flex;
            align-items: center;
            padding: 8px 10px;
            background: white;
            border: 1px solid #dddddd;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            font-size: 0.88rem;
        }

        .medbase-city-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .medbase-city-item div i, .medbase-city-item i {
            color: var(--medbase-orange);
            margin-right: 10px;
            width: 12px;
            font-size: 0.8rem;
        }

        .medbase-back-btn {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #fff;
            color: var(--medbase-orange);
            border: 1px solid #dddddd;
            font-size: 0.6rem;
            padding: 6px 10px;
            font-weight: 500;
            transition: all 0.3s ease;
            width: calc(100% - 50px);
            cursor: pointer;
            border-radius: 6px;
        }

        .medbase-back-btn:hover {
            background-color: var(--medbase-orange);
            color: white;
            transform: translateX(-50%) translateY(-2px);
        }

        .medbase-img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding-left: 20px;
        }

        .medbase-overlay-item {
            display: flex;
            align-items: center;
            font-size: 0.8rem;
        }

        .medbase-overlay-item i {
            margin-right: 8px;
            font-size: 0.8rem;
        }

        .medbase-flip-instruction {
            text-align: center;
            color: var(--medbase-orange);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            margin-top: 5px;
        }

        .medbase-flip-instruction i {
            margin-right: 8px;
            animation: medbase-bounce 2s infinite;
        }

        @keyframes medbase-bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .medbase-service-banner {
            background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
            border: 1px solid #e0e5ec;
            padding: 20px 10px;
            width: 100%;
        }

        .medbase-service-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .medbase-service-text {
            color: #666;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .medbase-service-phone {
            display: inline-block;
            font-size: 1rem;
            font-weight: 700;
            color: var(--medbase-blue);
            text-decoration: none;
            padding: 10px 20px;
            border: 1px solid var(--medbase-blue);
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .medbase-service-phone i {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .medbase-service-phone:hover {
            background-color: var(--medbase-blue);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(33, 93, 154, 0.25);
        }

        .medbase-service-hours {
            font-size: 0.7rem;
            color: var(--medbase-orange);
            font-weight: 500;
        }

        .medbase-service-hours i {
            margin-right: 6px;
        }
    