*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    background: #f3f5f7;
    color: #193047;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.profile-card {
    width: min(500px, 100%);
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 32, 58, 0.18);
    padding: 32px 32px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clinic-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.clinic-logo {
    width: min(220px, 70%);
}

.clinic-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.profile-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #f5f9fb;
    box-shadow: 0 10px 30px rgba(22, 73, 101, 0.25);
}

.intro-text h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
}

.intro-text p {
    margin: 4px 0;
    font-size: 1.05rem;
}

.intro-text .highlight {
    color: #00aab9;
    font-weight: 600;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00aab9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00aab9;
    color: #fff;
    border-radius: 12px;
    padding: 12px 26px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(0, 170, 185, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(0, 170, 185, 0.4);
}

.cta-number {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    font-weight: 700;
}

.clinic-details {
    color: #5b6470;
    line-height: 1.6;
    font-size: 0.95rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.icon-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #d5dde4;
    background: #f8fbfd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    color: #193047;
    text-decoration: none;
}

.icon-link i {
    font-size: 1.5rem;
}

.icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    border-color: #00aab9;
    color: #00aab9;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 480px) {
    .profile-card {
        padding: 24px 20px 32px;
        border-radius: 22px;
    }

    .brand-subtitle {
        letter-spacing: 0.2rem;
    }

    .cta-number {
        font-size: 1.3rem;
    }
}
