/* تخصيصات إضافية فوق قالب ClinicMaster */

/* شعار نصي (ملي ماكاينش صورة logo مرفوعة) */
.text-logo {
    display: flex !important;
    flex-direction: column;
    line-height: 1.15;
    text-decoration: none;
}
.text-logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--bs-primary, #ec7191);
    letter-spacing: .3px;
}
.footer-logo .text-logo-name { color: #fff; }
.text-logo-tag {
    font-size: 11.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a8a8a;
}
.footer-logo .text-logo-tag { color: rgba(255,255,255,.6); }

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transition: transform .2s ease;
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}
[dir] .whatsapp-float { direction: ltr; }

.review-stars i { color: #FFB800; margin-right: 2px; font-size: 14px; }

.testimonial-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}
.testimonial-google-badge img { width: 16px; height: 16px; }

.service-card-simple {
    display: block;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-card-simple:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.service-card-simple img { width: 100%; height: 220px; object-fit: cover; }
.service-card-simple .service-card-body { padding: 24px; }

.form-alert-success { background: #e7f8ee; color: #1e7e42; border: 1px solid #b9e6c9; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; }
.form-alert-error { background: #fdeaea; color: #b02a2a; border: 1px solid #f3bcbc; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; }
