@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
    --primary: #58C1D7;
    --primary-dark: #2397ad;
    --primary-soft: #eaf9fc;
    --navy: #102a43;
    --navy-2: #163957;
    --text: #243b53;
    --muted: #6b7c8f;
    --bg: #f6fbfd;
    --white: #ffffff;
    --border: #e3edf3;
    --gold: #f5b041;
    --green: #16a085;
    --danger: #c0392b;
    --shadow-sm: 0 8px 22px rgba(16, 42, 67, .06);
    --shadow-md: 0 18px 45px rgba(16, 42, 67, .10);
    --shadow-lg: 0 28px 70px rgba(16, 42, 67, .14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Tajawal', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* Topbar */

.topbar {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar a {
    color: #fff;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(227,237,243,.9);
    box-shadow: 0 8px 24px rgba(16,42,67,.04);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #8ee4f2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 14px 28px rgba(88,193,215,.28);
}

.brand-text strong {
    display: block;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.2;
}

.brand-text span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    transition: .2s;
}

.nav a:hover {
    color: var(--primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: .22s ease;
    font-family: 'Tajawal', Arial, sans-serif;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 14px 32px rgba(88,193,215,.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(88,193,215,.36);
}

.btn-outline {
    background: #fff;
    color: var(--primary-dark);
    border: 1px solid rgba(88,193,215,.45);
}

.btn-outline:hover {
    background: var(--primary-soft);
}

.btn-dark {
    background: var(--navy);
    color: #fff;
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 70px;
    background:
        radial-gradient(circle at 18% 20%, rgba(88,193,215,.18), transparent 28%),
        radial-gradient(circle at 90% 15%, rgba(22,57,87,.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f3fbfd 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -80px -160px auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(88,193,215,.12);
    filter: blur(5px);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 46px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    color: var(--primary-dark);
    font-weight: 900;
    padding: 9px 15px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-size: 13px;
}

.hero h1 {
    color: var(--navy);
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.25;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary-dark);
}

.hero p {
    color: var(--muted);
    margin: 0 0 28px;
    font-size: 18px;
    max-width: 660px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.trust-item {
    background: rgba(255,255,255,.8);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 15px;
    color: var(--navy);
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    font-size: 13px;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(227,237,243,.9);
    border-radius: 34px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.hero-card-inner {
    min-height: 420px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(16,42,67,.88), rgba(35,151,173,.82)),
        radial-gradient(circle at top, rgba(255,255,255,.18), transparent 36%);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.hero-card-inner::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    left: -90px;
    bottom: -80px;
}

.hero-card-title {
    position: relative;
    z-index: 1;
}

.hero-card-title h3 {
    margin: 0 0 8px;
    font-size: 28px;
}

.hero-card-title p {
    color: rgba(255,255,255,.82);
    font-size: 15px;
    margin: 0;
}

.hero-features {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.hero-feature {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.hero-feature strong {
    display: block;
    font-size: 16px;
}

.hero-feature span {
    color: rgba(255,255,255,.76);
    font-size: 13px;
}

/* Stats */

.stats-strip {
    position: relative;
    margin-top: -34px;
    z-index: 5;
}

.stats-grid {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat {
    padding: 18px;
    border-radius: 20px;
    background: #f8fcfe;
    text-align: center;
}

.stat h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 32px;
    line-height: 1.2;
}

.stat p {
    margin: 6px 0 0;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

/* Sections */

.section {
    padding: 74px 0;
}

.section-soft {
    background: #ffffff;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
}

.section-title h2 {
    color: var(--navy);
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    letter-spacing: -.5px;
}

.section-title p {
    color: var(--muted);
    margin: 8px 0 0;
}

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

/* Cards */

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: .24s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-image {
    height: 210px;
    background:
        linear-gradient(135deg, #eaf9fc, #f7fbfd);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-placeholder {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 34px;
    font-weight: 900;
}

.card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 6px 12px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.4;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

.price {
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 18px;
}

/* CTA */

.cta {
    background:
        radial-gradient(circle at 15% 20%, rgba(88,193,215,.22), transparent 28%),
        linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    border-radius: 34px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cta h2 {
    margin: 0 0 8px;
    font-size: 34px;
}

.cta p {
    margin: 0;
    color: rgba(255,255,255,.78);
}

/* Forms */

.form-section {
    background: linear-gradient(180deg, #fff 0%, #f6fbfd 100%);
}

.form-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
}

.form-box,
.contact-box,
.detail-main,
.detail-side {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    padding: 28px;
}

.contact-box {
    background:
        radial-gradient(circle at top right, rgba(88,193,215,.22), transparent 34%),
        linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.full {
    grid-column: 1 / -1;
}

label {
    display: block;
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-box label {
    color: #fff;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #d8e7ef;
    background: #fff;
    color: var(--text);
    font-family: 'Tajawal', Arial, sans-serif;
    font-size: 14px;
    outline: none;
    transition: .2s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(88,193,215,.16);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    font-weight: 800;
}

.alert-success,
.alert-info {
    background: #eafaf1;
    color: #146c43;
    border: 1px solid #c7f0d8;
}

.contact-info {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-item {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 14px;
}

/* Page hero */

.page-hero {
    padding: 64px 0 34px;
    background:
        radial-gradient(circle at 20% 12%, rgba(88,193,215,.16), transparent 28%),
        linear-gradient(180deg, #ffffff, #f4fbfd);
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(32px, 5vw, 48px);
}

.page-hero p {
    color: var(--muted);
    margin: 8px 0 0;
}

/* Detail pages */

.detail-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

.detail-main img {
    width: 100%;
    border-radius: 24px;
    max-height: 420px;
    object-fit: cover;
    margin-bottom: 20px;
}

.detail-main h2,
.detail-side h3 {
    color: var(--navy);
    margin-top: 0;
}

.detail-list {
    display: grid;
    gap: 12px;
}

.detail-list .item {
    background: #f7fcfe;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    color: var(--text);
}

/* FAQ */

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 900;
    color: var(--navy);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: left;
    color: var(--primary-dark);
    font-size: 24px;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-answer {
    padding: 0 22px 20px;
    color: var(--muted);
}

/* Search */

.search-panel {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 24px;
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr 260px auto;
    gap: 14px;
    align-items: end;
}

.search-grid.two {
    grid-template-columns: 1fr auto;
}

.search-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.results-count {
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 800;
}

/* Testimonials */

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-head img,
.testimonial-avatar {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    object-fit: cover;
    background: var(--primary-soft);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
}

.stars {
    color: var(--gold);
    font-size: 19px;
}

/* Insurance */

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.insurance-card {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: 22px;
    padding: 24px;
    text-align: center;
    transition: .2s;
}

.insurance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.insurance-logo {
    width: 92px;
    height: 92px;
    border-radius: 22px;
    background: var(--primary-soft);
    border: 1px solid #dff4fa;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.insurance-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.insurance-logo span {
    font-size: 34px;
    color: var(--primary-dark);
    font-weight: 900;
}

.insurance-card h3 {
    color: var(--navy);
    margin: 0 0 8px;
}

/* Footer */

.footer {
    background: var(--navy);
    color: #fff;
    padding: 34px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer a {
    color: #fff;
}

/* Empty */

.empty {
    background: #fff;
    border: 1px dashed #cfe0e8;
    border-radius: 24px;
    padding: 34px;
    text-align: center;
    color: var(--muted);
    box-shadow: var(--shadow-sm);
}

.pagination-wrap {
    margin-top: 28px;
}

/* Maintenance */

.maintenance-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 42, 67, .62);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.maintenance-popup {
    width: min(520px, 100%);
    background: #fff;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 32px;
    text-align: center;
}

.maintenance-popup-icon {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    margin: 0 auto 18px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.maintenance-popup h2 {
    margin: 0 0 12px;
    color: var(--navy);
}

.maintenance-popup p {
    color: var(--muted);
}

/* Responsive */

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 1050px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .header-inner {
        min-height: 74px;
    }

    .mobile-nav-open .nav {
        display: flex;
        position: absolute;
        top: 74px;
        left: 4%;
        right: 4%;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1001;
    }
}

@media (max-width: 992px) {
    .hero-grid,
    .form-wrap,
    .detail-wrap {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text span {
        display: none;
    }

    .hero {
        padding: 54px 0 54px;
    }

    .hero-card-inner {
        min-height: 330px;
    }

    .grid,
    .stats-grid,
    .form-grid,
    .insurance-grid,
    .search-grid,
    .search-grid.two {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 54px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .card-image {
        height: 190px;
    }

    .cta {
        padding: 28px;
    }
}

.account-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    background: #fff;
}

.account-table th {
    background: var(--primary-soft);
    color: var(--navy);
    padding: 15px;
    text-align: right;
    font-weight: 900;
    border-bottom: 1px solid var(--border);
}

.account-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.account-table tr:hover td {
    background: #fbfeff;
}

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

.gallery-card {
    position: relative;
    min-height: 280px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    background: #fff;
    display: block;
    transition: .25s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(16,42,67,.88));
}

.gallery-caption h3 {
    margin: 0 0 4px;
    color: #fff;
}

.gallery-caption p {
    margin: 0;
    color: rgba(255,255,255,.82);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.article-content {
    color: var(--text);
    line-height: 2;
}

.article-content h1,
.article-content h2,
.article-content h3 {
    color: var(--navy);
}

.article-content p {
    margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
    padding-right: 22px;
}

/* Professional Mobile Menu */
.mobile-menu-btn {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(88,193,215,.45);
    background: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: .2s;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 999px;
    transition: .2s;
}

.mobile-menu-btn:hover {
    background: var(--primary-soft);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1002;
    padding: 12px 0;
}

.mobile-menu-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mobile-menu-card a {
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--navy);
    font-weight: 800;
    background: #f8fcfe;
    border: 1px solid transparent;
}

.mobile-menu-card a:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.mobile-menu-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.mobile-menu-actions .btn {
    flex: 1;
}

.mobile-nav-open .mobile-menu {
    display: block;
}

.mobile-nav-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1160px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 680px) {
    .mobile-menu-card {
        grid-template-columns: 1fr;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .mobile-menu-actions .btn-primary {
        display: inline-flex;
    }
}


/* Global Font Enhancement */
body,
button,
input,
select,
textarea,
.btn {
    font-family: 'Tajawal', Arial, sans-serif !important;
}

body {
    font-weight: 500;
}

p,
.card p,
.section-title p,
.hero p,
.page-hero p {
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.brand-text strong,
.btn,
.nav a,
.badge,
label {
    font-weight: 800;
}

.schedule-list {
    display: grid;
    gap: 22px;
}

.schedule-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.schedule-doctor {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.schedule-avatar {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-weight: 900;
    font-size: 26px;
    border: 1px solid #dff4fa;
}

.schedule-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-doctor h3 {
    margin: 0;
    color: var(--navy);
    font-size: 22px;
}

.schedule-doctor p {
    margin: 4px 0 0;
    color: var(--muted);
}

.schedule-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.schedule-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    background: #fff;
}

.schedule-table th {
    background: var(--primary-soft);
    color: var(--navy);
    padding: 15px;
    text-align: right;
    font-weight: 900;
}

.schedule-table td {
    padding: 15px;
    border-top: 1px solid var(--border);
}

.schedule-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Header Professional Fix */
.header-inner {
    min-height: 76px !important;
    gap: 18px !important;
}

.brand {
    min-width: 230px;
    flex-shrink: 0;
}

.brand-text strong {
    font-size: 18px !important;
    line-height: 1.25 !important;
}

.brand-text span {
    font-size: 11px !important;
}

.nav {
    flex: 1;
    justify-content: center;
    gap: 15px !important;
    white-space: nowrap;
}

.nav > a,
.nav-more > button {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: var(--navy);
}

.header-actions {
    flex-shrink: 0;
}

.header-actions .btn {
    min-height: 42px !important;
    padding: 10px 18px !important;
    font-size: 13px !important;
}

.nav-more {
    position: relative;
}

.nav-more > button {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: 'Tajawal', Arial, sans-serif;
    padding: 0;
}

.nav-dropdown {
    position: absolute;
    top: 34px;
    right: 0;
    width: 210px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 10px;
    display: none;
    z-index: 2000;
}

.nav-more:hover .nav-dropdown {
    display: grid;
    gap: 4px;
}

.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px !important;
    color: var(--navy);
}

.nav-dropdown a:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.topbar a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1250px) {
    .nav {
        gap: 11px !important;
    }

    .nav > a,
    .nav-more > button {
        font-size: 12px !important;
    }

    .brand {
        min-width: 200px;
    }
}

@media (max-width: 1160px) {
    .nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }
}

.topbar-phone {
    color: #fff !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    direction: ltr;
    unicode-bidi: embed;
}

.topbar-phone:hover {
    text-decoration: underline !important;
}

.doctor-schedule-box {
    margin-top: 12px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #d7f1f7;
    background: #eaf9fc;
    color: var(--navy);
    display: none;
}

.doctor-schedule-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
}

.doctor-schedule-box ul {
    margin: 0;
    padding-right: 20px;
}

.doctor-schedule-box li {
    margin: 4px 0;
    font-weight: 700;
}

.schedule-warning {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: none;
    font-weight: 800;
}

.brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

@media (max-width: 680px) {
    .brand-logo {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
}

.time-slots-box {
    margin-top: 12px;
    display: none;
}

.time-slots-title {
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 10px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-slot {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--navy);
    border-radius: 14px;
    padding: 10px 8px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    transition: .2s;
    font-family: 'Tajawal', Arial, sans-serif;
}

.time-slot:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.time-slot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.time-slot.disabled {
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed;
    opacity: .75;
    text-decoration: line-through;
}

@media (max-width: 680px) {
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brand-logo-only {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: auto !important;
    padding: 0 !important;
    gap: 0 !important;
}

.brand-logo-only img {
    height: 76px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
}

.brand-text,
.brand-mark,
.brand-logo {
    display: none !important;
}

@media (max-width: 768px) {
    .brand-logo-only img {
        height: 56px;
        max-width: 220px;
    }
}

.brand-logo-only {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 260px !important;
}

.brand-logo-only img {
    height: 70px !important;
    width: auto !important;
    max-width: 300px !important;
    object-fit: contain !important;
    display: block !important;
}

.brand-logo-only .brand-mark {
    display: flex !important;
}

@media (max-width: 768px) {
    .brand-logo-only {
        min-width: auto !important;
    }

    .brand-logo-only img {
        height: 52px !important;
        max-width: 210px !important;
    }
}

.time-slot.booked {
    background: #e5e7eb !important;
    color: #6b7280 !important;
    border-color: #d1d5db !important;
    cursor: not-allowed !important;
    opacity: .9;
    text-decoration: none !important;
    position: relative;
}

.time-slot.booked::after {
    content: 'محجوز';
    display: block;
    font-size: 11px;
    margin-top: 2px;
    color: #991b1b;
    font-weight: 900;
}

.time-slots-empty {
    grid-column: 1 / -1;
    padding: 14px;
    border-radius: 14px;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    font-weight: 900;
}

/* Insurance Auto Slider */
.insurance-slider {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 26px 0;
}

.insurance-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: insuranceScroll 28s linear infinite;
}

.insurance-slider:hover .insurance-track {
    animation-play-state: paused;
}

.insurance-slide {
    width: 220px;
    min-width: 220px;
    height: 140px;
    background: #fff;
    border: 1px solid #eef4f7;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    transition: .25s ease;
}

.insurance-slide:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.insurance-slide img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    display: block;
}

.insurance-slide-placeholder {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
}

@keyframes insuranceScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

.insurance-slider::before,
.insurance-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.insurance-slider::before {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.insurance-slider::after {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

@media (max-width: 700px) {
    .insurance-slide {
        width: 170px;
        min-width: 170px;
        height: 115px;
        padding: 18px;
    }

    .insurance-slide img {
        max-height: 72px;
    }

    .insurance-track {
        gap: 18px;
        animation-duration: 22s;
    }
}

/* Insurance Slider Clean Horizontal Fix */
.insurance-slider {
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 20px 0 !important;
    overflow: hidden !important;
    width: 100% !important;
}

.insurance-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 70px !important;
    width: max-content !important;
    animation: insuranceMarquee 35s linear infinite !important;
    will-change: transform;
}

.insurance-slider:hover .insurance-track {
    animation-play-state: paused !important;
}

.insurance-slide {
    width: 180px !important;
    min-width: 180px !important;
    height: 95px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.insurance-slide:hover {
    transform: none !important;
    box-shadow: none !important;
}

.insurance-slide img {
    max-width: 170px !important;
    max-height: 85px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.insurance-slide-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 18px !important;
    background: var(--primary-soft) !important;
    color: var(--primary-dark) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    font-weight: 900 !important;
}

@keyframes insuranceMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.insurance-slider::before,
.insurance-slider::after {
    width: 80px !important;
}

@media (max-width: 700px) {
    .insurance-track {
        gap: 42px !important;
        animation-duration: 28s !important;
    }

    .insurance-slide {
        width: 145px !important;
        min-width: 145px !important;
        height: 80px !important;
    }

    .insurance-slide img {
        max-width: 135px !important;
        max-height: 70px !important;
    }
}

/* Insurance slider: auto + manual drag */
.insurance-slider {
    overflow: hidden !important;
    position: relative !important;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.insurance-slider.dragging {
    cursor: grabbing;
}

.insurance-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 42px !important;
    width: max-content !important;
    animation: none !important; /* نوقف الحركة القديمة */
    will-change: transform;
}

.insurance-slide {
    flex: 0 0 auto !important;
    width: 170px !important;
    min-width: 170px !important;
    height: 90px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.insurance-slide img {
    max-width: 160px !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    pointer-events: none;
}

.insurance-slider::-webkit-scrollbar {
    display: none;
}

@media (max-width: 700px) {
    .insurance-track {
        gap: 26px !important;
    }

    .insurance-slide {
        width: 135px !important;
        min-width: 135px !important;
        height: 75px !important;
    }

    .insurance-slide img {
        max-width: 125px !important;
        max-height: 65px !important;
    }
}

/* Insurance slider auto + drag final fix */
.insurance-slider {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: auto !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
    scrollbar-width: none !important;
}

.insurance-slider::-webkit-scrollbar {
    display: none !important;
}

.insurance-slider.dragging {
    cursor: grabbing !important;
}

.insurance-track {
    animation: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 55px !important;
    width: max-content !important;
}

.insurance-slide {
    flex: 0 0 auto !important;
    width: 180px !important;
    min-width: 180px !important;
    height: 95px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.insurance-slide img {
    max-width: 170px !important;
    max-height: 85px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    pointer-events: none !important;
}

/* Insurance slider final: auto movement + manual drag */
.insurance-slider {
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    padding: 22px 0 !important;
}

.insurance-slider.dragging {
    cursor: grabbing !important;
}

.insurance-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 65px !important;
    width: max-content !important;
    animation: none !important;
    transition: none !important;
    will-change: transform !important;
}

.insurance-slide {
    flex: 0 0 auto !important;
    width: 180px !important;
    min-width: 180px !important;
    height: 95px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.insurance-slide img {
    max-width: 170px !important;
    max-height: 85px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    pointer-events: none !important;
}

@media (max-width: 700px) {
    .insurance-track {
        gap: 38px !important;
    }

    .insurance-slide {
        width: 145px !important;
        min-width: 145px !important;
        height: 80px !important;
    }

    .insurance-slide img {
        max-width: 135px !important;
        max-height: 70px !important;
    }
}

/* Professional Motion System */
.motion-hidden {
    opacity: 0;
    transform: translateY(28px);
}

.motion-show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .75s ease, transform .75s ease;
}

.hero .eyebrow,
.hero h1,
.hero p,
.hero-actions,
.hero-trust,
.hero-card {
    animation: fadeUp .85s ease both;
}

.hero h1 { animation-delay: .08s; }
.hero p { animation-delay: .16s; }
.hero-actions { animation-delay: .24s; }
.hero-trust { animation-delay: .32s; }
.hero-card { animation-delay: .18s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.insurance-card,
.gallery-card,
.schedule-card,
.faq-item,
.detail-main,
.detail-side,
.form-box,
.contact-box {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.card:hover,
.insurance-card:hover,
.gallery-card:hover,
.schedule-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: rgba(88,193,215,.45);
}

.hero-card-inner {
    animation: softFloat 4.5s ease-in-out infinite;
}

@keyframes softFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Insurance clean moving strip */
.insurance-slider {
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    padding: 22px 0 !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.insurance-slider.dragging {
    cursor: grabbing !important;
}

.insurance-track {
    display: flex !important;
    align-items: center !important;
    gap: 70px !important;
    width: max-content !important;
    animation: none !important;
    will-change: transform !important;
}

.insurance-slide {
    flex: 0 0 auto !important;
    width: 180px !important;
    min-width: 180px !important;
    height: 95px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.insurance-slide img {
    max-width: 170px !important;
    max-height: 85px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    pointer-events: none !important;
}

@media (max-width: 700px) {
    .insurance-track {
        gap: 38px !important;
    }

    .insurance-slide {
        width: 145px !important;
        min-width: 145px !important;
        height: 80px !important;
    }

    .insurance-slide img {
        max-width: 135px !important;
        max-height: 70px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

.department-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #d9e9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1aa6be;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    margin: 0 auto;
}

.department-icon i {
    line-height: 1;
}

.card:hover .department-icon,
.department-card:hover .department-icon {
    transform: translateY(-2px);
    transition: .25s ease;
    color: #0f3b64;
}

/* Department Icons */
.department-icon {
    width: 72px !important;
    height: 72px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid #d9e9ef !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #1aa6be !important;
    font-size: 34px !important;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07) !important;
    margin: 0 auto !important;
    transition: .25s ease !important;
}

.department-icon i {
    line-height: 1 !important;
}

.card:hover .department-icon {
    transform: translateY(-4px) scale(1.04) !important;
    color: #0f3b64 !important;
    border-color: rgba(88,193,215,.65) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10) !important;
}

/* Remove department icon style and use clean medical plus */
.department-icon {
    display: none !important;
}

.medical-plus {
    font-size: 42px !important;
    color: #1aa6be !important;
    font-weight: 300 !important;
    background: #ffffff !important;
    position: relative !important;
}

.medical-plus::before,
.medical-plus::after {
    content: "";
    position: absolute;
    background: #1aa6be;
    border-radius: 999px;
    opacity: .95;
}

.medical-plus::before {
    width: 34px;
    height: 7px;
}

.medical-plus::after {
    width: 7px;
    height: 34px;
}

.medical-plus {
    color: transparent !important;
}

/* Custom Medical Specialty SVG Icons */
.department-svg-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dbe9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    transition: .25s ease;
    overflow: hidden;
}

.department-svg-icon svg {
    width: 58px;
    height: 58px;
    display: block;
}

.icon-main {
    fill: #0b2f52;
}

.icon-main-fill {
    fill: #0b2f52;
}

.icon-main.icon-line,
.icon-main.icon-line-thin,
.icon-line,
.icon-line-thin {
    fill: none;
    stroke: #0b2f52;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-line {
    stroke-width: 8;
}

.icon-line-thin {
    stroke-width: 5;
}

.icon-accent {
    fill: #58C1D7;
}

.icon-accent-fill {
    fill: #58C1D7;
}

.icon-accent.icon-line {
    fill: none;
    stroke: #58C1D7;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 8;
}

.icon-white {
    fill: #ffffff;
}

.icon-white-fill {
    fill: #ffffff;
}

.icon-white.icon-line-thin {
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 5;
}

.card:hover .department-svg-icon {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
    border-color: rgba(88,193,215,.65);
}

@media (max-width: 768px) {
    .department-svg-icon {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .department-svg-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* Better department icon visibility */
.department-svg-icon {
    width: 92px !important;
    height: 92px !important;
}

.department-svg-icon svg {
    width: 68px !important;
    height: 68px !important;
}

@media (max-width: 768px) {
    .department-svg-icon {
        width: 78px !important;
        height: 78px !important;
    }

    .department-svg-icon svg {
        width: 58px !important;
        height: 58px !important;
    }
}

/* Better department icon visibility */
.department-svg-icon {
    width: 92px !important;
    height: 92px !important;
}

.department-svg-icon svg {
    width: 68px !important;
    height: 68px !important;
}

@media (max-width: 768px) {
    .department-svg-icon {
        width: 78px !important;
        height: 78px !important;
    }

    .department-svg-icon svg {
        width: 58px !important;
        height: 58px !important;
    }
}

/* Better department icon visibility */
.department-svg-icon {
    width: 92px !important;
    height: 92px !important;
}

.department-svg-icon svg {
    width: 68px !important;
    height: 68px !important;
}

@media (max-width: 768px) {
    .department-svg-icon {
        width: 78px !important;
        height: 78px !important;
    }

    .department-svg-icon svg {
        width: 58px !important;
        height: 58px !important;
    }
}

/* Dermatology clear icon fix */
.department-svg-icon {
    width: 104px !important;
    height: 104px !important;
    border-radius: 28px !important;
}

.department-svg-icon svg {
    width: 82px !important;
    height: 82px !important;
}

.derma-clear-icon {
    width: 86px !important;
    height: 86px !important;
}

@media (max-width: 768px) {
    .department-svg-icon {
        width: 86px !important;
        height: 86px !important;
    }

    .department-svg-icon svg {
        width: 68px !important;
        height: 68px !important;
    }
}

/* Clearer specialty icons */
.department-svg-icon {
    width: 112px !important;
    height: 112px !important;
    border-radius: 30px !important;
}

.department-svg-icon svg {
    width: 92px !important;
    height: 92px !important;
}

.card-image {
    min-height: 170px !important;
}

@media (max-width: 768px) {
    .department-svg-icon {
        width: 90px !important;
        height: 90px !important;
    }

    .department-svg-icon svg {
        width: 74px !important;
        height: 74px !important;
    }
}

/* Final small department icons */
.department-svg-icon {
    width: 82px !important;
    height: 82px !important;
    border-radius: 22px !important;
}

.department-svg-icon svg {
    width: 58px !important;
    height: 58px !important;
}

.card-image {
    min-height: 145px !important;
}

@media (max-width: 768px) {
    .department-svg-icon {
        width: 72px !important;
        height: 72px !important;
    }

    .department-svg-icon svg {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Medical department SVG icons */
.department-svg-icon {
    width: 82px !important;
    height: 82px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid #dbe9ef !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07) !important;
    transition: .25s ease !important;
    overflow: hidden !important;
}

.department-svg-icon svg {
    width: 58px !important;
    height: 58px !important;
    display: block !important;
}

.card:hover .department-svg-icon {
    transform: translateY(-4px) scale(1.04) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10) !important;
    border-color: rgba(88,193,215,.65) !important;
}

@media (max-width: 768px) {
    .department-svg-icon {
        width: 72px !important;
        height: 72px !important;
    }

    .department-svg-icon svg {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Force clean small department icons */
.department-svg-icon {
    width: 82px !important;
    height: 82px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid #dbe9ef !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07) !important;
    overflow: hidden !important;
}

.department-svg-icon svg {
    width: 58px !important;
    height: 58px !important;
    display: block !important;
}

@media (max-width: 768px) {
    .department-svg-icon {
        width: 72px !important;
        height: 72px !important;
    }

    .department-svg-icon svg {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Final clean medical icons */
.department-svg-icon {
    width: 82px !important;
    height: 82px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid #dbe9ef !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07) !important;
    overflow: hidden !important;
}

.department-svg-icon svg {
    width: 58px !important;
    height: 58px !important;
    display: block !important;
}

.card:hover .department-svg-icon {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10) !important;
    border-color: rgba(88,193,215,.65) !important;
}

@media (max-width: 768px) {
    .department-svg-icon {
        width: 72px !important;
        height: 72px !important;
    }

    .department-svg-icon svg {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Insurance section compact clean fix */
.insurance-section-clean {
    padding: 45px 0 !important;
}

.insurance-slider {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 18px 0 !important;
    margin: 0 !important;
    position: relative !important;
}

.insurance-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 55px !important;
    width: max-content !important;
    animation: insuranceAutoMove 32s linear infinite !important;
    transform: none;
}

.insurance-slider:hover .insurance-track {
    animation-play-state: paused !important;
}

.insurance-slide {
    flex: 0 0 auto !important;
    width: 165px !important;
    min-width: 165px !important;
    height: 85px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.insurance-slide img {
    max-width: 160px !important;
    max-height: 75px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

@keyframes insuranceAutoMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

.insurance-slider::before,
.insurance-slider::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 70px !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

.insurance-slider::before {
    right: 0 !important;
    background: linear-gradient(to left, #fff, transparent) !important;
}

.insurance-slider::after {
    left: 0 !important;
    background: linear-gradient(to right, #fff, transparent) !important;
}

@media (max-width: 700px) {
    .insurance-section-clean {
        padding: 32px 0 !important;
    }

    .insurance-track {
        gap: 32px !important;
        animation-duration: 24s !important;
    }

    .insurance-slide {
        width: 130px !important;
        min-width: 130px !important;
        height: 70px !important;
    }

    .insurance-slide img {
        max-width: 125px !important;
        max-height: 62px !important;
    }
}

/* Insurance Logos Grid Final Fix */
.insurance-section-clean {
    padding: 42px 0 !important;
}

.insurance-logo-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
    gap: 18px !important;
    align-items: center !important;
    margin-top: 26px !important;
}

.insurance-logo-grid-page {
    margin-top: 0 !important;
}

.insurance-logo-item {
    height: 92px !important;
    background: #ffffff !important;
    border: 1px solid #e2edf2 !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04) !important;
    transition: .25s ease !important;
}

.insurance-logo-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(88,193,215,.55) !important;
}

.insurance-logo-item img {
    max-width: 120px !important;
    max-height: 58px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.insurance-logo-item span {
    width: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
    background: #eaf9fc !important;
    color: #0b2f52 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    font-weight: 900 !important;
}

/* Disable old insurance slider styles */
.insurance-slider,
.insurance-track,
.insurance-slide {
    animation: none !important;
}

@media (max-width: 700px) {
    .insurance-logo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .insurance-logo-item {
        height: 82px !important;
        padding: 12px !important;
    }

    .insurance-logo-item img {
        max-width: 105px !important;
        max-height: 50px !important;
    }
}

/* Insurance moving carousel final */
.insurance-section-clean {
    padding: 42px 0 !important;
}

.insurance-logo-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 34px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: auto !important;
    scrollbar-width: none !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    padding: 18px 0 !important;
    margin-top: 18px !important;
}

.insurance-logo-grid::-webkit-scrollbar {
    display: none !important;
}

.insurance-logo-grid.dragging {
    cursor: grabbing !important;
}

.insurance-logo-item {
    flex: 0 0 155px !important;
    width: 155px !important;
    height: 82px !important;
    background: #ffffff !important;
    border: 1px solid #e2edf2 !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04) !important;
    transition: .25s ease !important;
}

.insurance-logo-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(88,193,215,.55) !important;
}

.insurance-logo-item img {
    max-width: 130px !important;
    max-height: 54px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    pointer-events: none !important;
}

@media (max-width: 700px) {
    .insurance-logo-grid {
        gap: 18px !important;
        padding: 14px 0 !important;
    }

    .insurance-logo-item {
        flex-basis: 125px !important;
        width: 125px !important;
        height: 72px !important;
    }

    .insurance-logo-item img {
        max-width: 105px !important;
        max-height: 46px !important;
    }
}

/* Insurance marquee final guaranteed */
.insurance-section-clean {
    padding: 38px 0 !important;
}

.insurance-marquee {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    background: #ffffff !important;
    padding: 16px 0 !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
}

.insurance-marquee.dragging {
    cursor: grabbing !important;
}

.insurance-marquee-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 34px !important;
    width: max-content !important;
    will-change: transform !important;
    transform: translate3d(0, 0, 0);
}

.insurance-logo-item {
    flex: 0 0 155px !important;
    width: 155px !important;
    height: 82px !important;
    background: #ffffff !important;
    border: 1px solid #e2edf2 !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04) !important;
    transition: .25s ease !important;
}

.insurance-logo-item img {
    max-width: 130px !important;
    max-height: 54px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    pointer-events: none !important;
}

.insurance-logo-item span {
    width: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
    background: #eaf9fc !important;
    color: #0b2f52 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    font-weight: 900 !important;
}

@media (max-width: 700px) {
    .insurance-marquee-track {
        gap: 18px !important;
    }

    .insurance-logo-item {
        flex-basis: 125px !important;
        width: 125px !important;
        height: 72px !important;
    }

    .insurance-logo-item img {
        max-width: 105px !important;
        max-height: 46px !important;
    }
}

/* Final Insurance Marquee Fix */
.insurance-section-clean {
    padding: 38px 0 !important;
    overflow: hidden !important;
}

.insurance-marquee {
    width: 100% !important;
    overflow: hidden !important;
    background: #ffffff !important;
    padding: 14px 0 !important;
    margin-top: 8px !important;
}

.insurance-marquee-track {
    display: flex !important;
    align-items: center !important;
    gap: 32px !important;
    width: max-content !important;
    animation: insuranceMoveFinal 38s linear infinite !important;
}

.insurance-marquee:hover .insurance-marquee-track {
    animation-play-state: paused !important;
}

.insurance-logo-item {
    flex: 0 0 150px !important;
    width: 150px !important;
    height: 78px !important;
    background: #ffffff !important;
    border: 1px solid #e2edf2 !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04) !important;
}

.insurance-logo-item img {
    max-width: 125px !important;
    max-height: 52px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.insurance-logo-item span {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    background: #eaf9fc !important;
    color: #0b2f52 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}

@keyframes insuranceMoveFinal {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 700px) {
    .insurance-marquee-track {
        gap: 18px !important;
        animation-duration: 28s !important;
    }

    .insurance-logo-item {
        flex-basis: 122px !important;
        width: 122px !important;
        height: 70px !important;
    }

    .insurance-logo-item img {
        max-width: 102px !important;
        max-height: 46px !important;
    }
}

/* Insurance compact draggable auto slider */
.insurance-section-clean {
    padding: 34px 0 !important;
    overflow: hidden !important;
}

.insurance-marquee {
    width: 100% !important;
    overflow: hidden !important;
    background: #ffffff !important;
    padding: 10px 0 !important;
    margin-top: 6px !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
}

.insurance-marquee.dragging {
    cursor: grabbing !important;
}

.insurance-marquee-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 28px !important;
    width: max-content !important;
    will-change: transform !important;
    transform: translate3d(0,0,0);
    animation: none !important;
}

.insurance-logo-item {
    flex: 0 0 140px !important;
    width: 140px !important;
    height: 68px !important;
    background: #ffffff !important;
    border: 1px solid #e2edf2 !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04) !important;
    transition: .2s ease !important;
}

.insurance-logo-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08) !important;
}

.insurance-logo-item img {
    max-width: 118px !important;
    max-height: 45px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    pointer-events: none !important;
}

.insurance-logo-item span {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    background: #eaf9fc !important;
    color: #0b2f52 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

@media (max-width: 700px) {
    .insurance-section-clean {
        padding: 28px 0 !important;
    }

    .insurance-marquee-track {
        gap: 16px !important;
    }

    .insurance-logo-item {
        flex-basis: 115px !important;
        width: 115px !important;
        height: 62px !important;
    }

    .insurance-logo-item img {
        max-width: 95px !important;
        max-height: 40px !important;
    }
}

/* FINAL Insurance Short Moving Strip */
.insurance-strip-section {
    padding: 22px 0 18px !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #f6fbfd !important;
}

.insurance-strip-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 8px !important;
}

.insurance-strip-head h2 {
    margin: 0 !important;
    font-size: 30px !important;
    line-height: 1.2 !important;
    color: #0b2f52 !important;
}

.insurance-strip-head p {
    margin: 6px 0 0 !important;
    color: #64748b !important;
    font-size: 14px !important;
}

.insurance-strip {
    width: 100% !important;
    height: 86px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
}

.insurance-strip.dragging {
    cursor: grabbing !important;
}

.insurance-strip-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 26px !important;
    width: max-content !important;
    height: 70px !important;
    will-change: transform !important;
    transform: translate3d(0,0,0) !important;
}

.insurance-strip-item {
    flex: 0 0 132px !important;
    width: 132px !important;
    height: 64px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    background: #ffffff !important;
    border: 1px solid #e2edf2 !important;
    border-radius: 15px !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.04) !important;
}

.insurance-strip-item img {
    max-width: 110px !important;
    max-height: 42px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    pointer-events: none !important;
}

.insurance-strip-item span {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: #eaf9fc !important;
    color: #0b2f52 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

/* Kill old insurance heights */
.insurance-section-clean,
.insurance-slider,
.insurance-logo-grid,
.insurance-marquee {
    max-height: none !important;
}

@media (max-width: 700px) {
    .insurance-strip-section {
        padding: 18px 0 14px !important;
    }

    .insurance-strip-head {
        align-items: flex-start !important;
    }

    .insurance-strip-head h2 {
        font-size: 24px !important;
    }

    .insurance-strip {
        height: 76px !important;
        padding: 7px 0 !important;
    }

    .insurance-strip-track {
        gap: 16px !important;
        height: 62px !important;
    }

    .insurance-strip-item {
        flex-basis: 110px !important;
        width: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
        height: 56px !important;
    }

    .insurance-strip-item img {
        max-width: 92px !important;
        max-height: 36px !important;
    }
}

/* Emergency fix: short insurance strip + allow JS movement */
.insurance-strip-section {
    padding: 14px 0 8px !important;
    margin: 0 !important;
    min-height: auto !important;
    max-height: 150px !important;
    overflow: hidden !important;
    background: #f6fbfd !important;
}

.insurance-strip-head {
    margin-bottom: 4px !important;
}

.insurance-strip-head h2 {
    font-size: 26px !important;
    margin: 0 !important;
}

.insurance-strip-head p {
    margin: 3px 0 0 !important;
    font-size: 13px !important;
}

.insurance-strip {
    height: 68px !important;
    padding: 5px 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    cursor: grab !important;
}

.insurance-strip.dragging {
    cursor: grabbing !important;
}

.insurance-strip-track {
    height: 58px !important;
    gap: 20px !important;
    display: flex !important;
    align-items: center !important;
    width: max-content !important;
    animation: none !important;
    transition: none !important;
    will-change: transform !important;
}

.insurance-strip-item {
    flex: 0 0 118px !important;
    width: 118px !important;
    min-width: 118px !important;
    max-width: 118px !important;
    height: 54px !important;
    padding: 7px !important;
    border-radius: 13px !important;
    background: #fff !important;
}

.insurance-strip-item img {
    max-width: 98px !important;
    max-height: 34px !important;
}

/* تقليل الفراغ قبل معرض الصور */
.insurance-strip-section + .section,
.insurance-strip-section + .section-soft,
.insurance-strip-section + section {
    padding-top: 24px !important;
    margin-top: 0 !important;
}

/* ===== Final clean insurance section ===== */
.insurance-clean-section{
    padding: 18px 0 18px !important;
    background: #f6fbfd !important;
}

.insurance-clean-head{
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 12px !important;
}

.insurance-clean-title h2{
    margin: 0 !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    color: #0b2f52 !important;
}

.insurance-clean-title p{
    margin: 4px 0 0 !important;
    font-size: 14px !important;
    color: #64748b !important;
}

.insurance-clean-grid{
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr)) !important;
    gap: 12px !important;
    align-items: center !important;
}

.insurance-clean-item{
    height: 66px !important;
    background: #ffffff !important;
    border: 1px solid #dfeaf0 !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 10px !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04) !important;
    transition: .2s ease !important;
}

.insurance-clean-item:hover{
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(88,193,215,.55) !important;
}

.insurance-clean-item img{
    max-width: 105px !important;
    max-height: 38px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.insurance-clean-item span{
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: #eaf9fc !important;
    color: #0b2f52 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

@media (max-width: 900px){
    .insurance-clean-head{
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .insurance-clean-title h2{
        font-size: 24px !important;
    }

    .insurance-clean-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px){
    .insurance-clean-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .insurance-clean-item{
        height: 60px !important;
        border-radius: 14px !important;
    }

    .insurance-clean-item img{
        max-width: 92px !important;
        max-height: 34px !important;
    }
}

/* ===== Moving + draggable insurance section ===== */
.insurance-moving-section {
    padding: 18px 0 14px !important;
    background: #f6fbfd !important;
    overflow: hidden !important;
}

.insurance-moving-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 10px !important;
}

.insurance-moving-head h2 {
    margin: 0 !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    color: #0b2f52 !important;
}

.insurance-moving-head p {
    margin: 4px 0 0 !important;
    font-size: 14px !important;
    color: #64748b !important;
}

.insurance-moving-wrapper {
    width: 100% !important;
    height: 76px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
    padding: 6px 0 !important;
}

.insurance-moving-wrapper.dragging {
    cursor: grabbing !important;
}

.insurance-moving-track {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    width: max-content !important;
    height: 64px !important;
    will-change: transform !important;
}

.insurance-moving-item {
    flex: 0 0 132px !important;
    width: 132px !important;
    height: 60px !important;
    border: 1px solid #dfeaf0 !important;
    border-radius: 15px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04) !important;
}

.insurance-moving-item img {
    max-width: 108px !important;
    max-height: 38px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    pointer-events: none !important;
}

.insurance-moving-item span {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: #eaf9fc !important;
    color: #0b2f52 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

@media (max-width: 700px) {
    .insurance-moving-section {
        padding: 16px 0 12px !important;
    }

    .insurance-moving-head {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .insurance-moving-head h2 {
        font-size: 24px !important;
    }

    .insurance-moving-wrapper {
        height: 70px !important;
    }

    .insurance-moving-track {
        height: 58px !important;
        gap: 14px !important;
    }

    .insurance-moving-item {
        flex-basis: 112px !important;
        width: 112px !important;
        height: 54px !important;
    }

    .insurance-moving-item img {
        max-width: 92px !important;
        max-height: 34px !important;
    }
}

/* ===== BP Insurance Final Reset ===== */
.bp-insurance-section {
    padding: 22px 0 18px !important;
    margin: 0 !important;
    background: #f6fbfd !important;
    overflow: hidden !important;
}

.bp-insurance-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 10px !important;
}

.bp-insurance-head h2 {
    margin: 0 !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    color: #0b2f52 !important;
}

.bp-insurance-head p {
    margin: 4px 0 0 !important;
    font-size: 14px !important;
    color: #64748b !important;
}

.bp-insurance-slider {
    width: 100% !important;
    height: 78px !important;
    max-height: 78px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    padding: 7px 0 !important;
    margin: 0 !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
}

.bp-insurance-slider.dragging {
    cursor: grabbing !important;
}

.bp-insurance-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 18px !important;
    width: max-content !important;
    height: 64px !important;
    max-height: 64px !important;
    will-change: transform !important;
    transform: translate3d(0,0,0);
}

.bp-insurance-item {
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid #dfeaf0 !important;
    border-radius: 15px !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04) !important;
}

.bp-insurance-item img {
    max-width: 108px !important;
    max-height: 38px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    pointer-events: none !important;
}

.bp-insurance-item span {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: #eaf9fc !important;
    color: #0b2f52 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

/* Hide/neutralize old broken insurance sections if still present */
.insurance-moving-section,
.insurance-strip-section,
.insurance-clean-section,
.insurance-section-clean {
    max-height: none !important;
}

@media (max-width: 700px) {
    .bp-insurance-section {
        padding: 18px 0 14px !important;
    }

    .bp-insurance-head {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .bp-insurance-head h2 {
        font-size: 24px !important;
    }

    .bp-insurance-slider {
        height: 70px !important;
        max-height: 70px !important;
    }

    .bp-insurance-track {
        height: 58px !important;
        max-height: 58px !important;
        gap: 14px !important;
    }

    .bp-insurance-item {
        flex-basis: 112px !important;
        width: 112px !important;
        min-width: 112px !important;
        max-width: 112px !important;
        height: 54px !important;
        max-height: 54px !important;
    }

    .bp-insurance-item img {
        max-width: 92px !important;
        max-height: 34px !important;
    }
}

/* Emergency compact insurance size fix */
.insurance-section-clean,
.insurance-clean-section,
.insurance-moving-section,
.insurance-strip-section,
.bp-insurance-section {
    padding: 18px 0 14px !important;
    margin: 0 !important;
    min-height: 0 !important;
    max-height: 190px !important;
    overflow: hidden !important;
}

.insurance-slider,
.insurance-marquee,
.insurance-logo-grid,
.insurance-strip,
.insurance-moving-wrapper,
.bp-insurance-slider {
    height: 78px !important;
    max-height: 78px !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 6px 0 !important;
    margin: 0 !important;
}

.insurance-track,
.insurance-marquee-track,
.insurance-strip-track,
.insurance-moving-track,
.bp-insurance-track {
    height: 64px !important;
    max-height: 64px !important;
    align-items: center !important;
}

.insurance-slide,
.insurance-logo-item,
.insurance-strip-item,
.insurance-moving-item,
.bp-insurance-item {
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    padding: 8px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.insurance-slide img,
.insurance-logo-item img,
.insurance-strip-item img,
.insurance-moving-item img,
.bp-insurance-item img {
    max-width: 108px !important;
    max-height: 38px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* تقليل الفراغ قبل وبعد التأمين */
.insurance-section-clean + section,
.insurance-clean-section + section,
.insurance-moving-section + section,
.insurance-strip-section + section,
.bp-insurance-section + section {
    padding-top: 24px !important;
    margin-top: 0 !important;
}

@media (max-width: 700px) {
    .insurance-slide,
    .insurance-logo-item,
    .insurance-strip-item,
    .insurance-moving-item,
    .bp-insurance-item {
        width: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
        height: 54px !important;
        max-height: 54px !important;
    }

    .insurance-slide img,
    .insurance-logo-item img,
    .insurance-strip-item img,
    .insurance-moving-item img,
    .bp-insurance-item img {
        max-width: 92px !important;
        max-height: 34px !important;
    }
}

/* Insurance auto move + drag */
.insurance-clean-grid{
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    padding: 4px 0 !important;
    min-height: 74px !important;
    direction: ltr !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
}

.insurance-clean-grid.dragging{
    cursor: grabbing !important;
}

.insurance-clean-track{
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: max-content !important;
    will-change: transform !important;
    transform: translate3d(0,0,0);
}

.insurance-clean-item{
    flex: 0 0 130px !important;
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    overflow: hidden !important;
}

.insurance-clean-item img{
    max-width: 105px !important;
    max-height: 36px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    pointer-events: none !important;
}

@media (max-width: 700px){
    .insurance-clean-item{
        flex-basis: 112px !important;
        width: 112px !important;
        min-width: 112px !important;
        max-width: 112px !important;
        height: 54px !important;
    }

    .insurance-clean-item img{
        max-width: 92px !important;
        max-height: 32px !important;
    }
}

/* ===== Final Insurance CSS Marquee ===== */
.final-insurance-section {
    padding: 18px 0 14px !important;
    background: #f6fbfd !important;
    overflow: hidden !important;
}

.final-insurance-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 8px !important;
}

.final-insurance-head h2 {
    margin: 0 !important;
    color: #0b2f52 !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
}

.final-insurance-head p {
    margin: 4px 0 0 !important;
    color: #64748b !important;
    font-size: 14px !important;
}

.final-insurance-marquee {
    width: 100% !important;
    height: 74px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    padding: 6px 0 !important;
    direction: ltr !important;
}

.final-insurance-track {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    width: max-content !important;
    height: 62px !important;
    animation: finalInsuranceMove 35s linear infinite !important;
}

.final-insurance-marquee:hover .final-insurance-track {
    animation-play-state: paused !important;
}

.final-insurance-item {
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    background: #ffffff !important;
    border: 1px solid #dfeaf0 !important;
    border-radius: 15px !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04) !important;
    flex-shrink: 0 !important;
}

.final-insurance-item img {
    max-width: 108px !important;
    max-height: 38px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.final-insurance-item span {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: #eaf9fc !important;
    color: #0b2f52 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

@keyframes finalInsuranceMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.333%);
    }
}

@media (max-width: 700px) {
    .final-insurance-section {
        padding: 16px 0 12px !important;
    }

    .final-insurance-head {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .final-insurance-head h2 {
        font-size: 24px !important;
    }

    .final-insurance-marquee {
        height: 68px !important;
    }

    .final-insurance-track {
        height: 56px !important;
        gap: 14px !important;
        animation-duration: 25s !important;
    }

    .final-insurance-item {
        width: 112px !important;
        min-width: 112px !important;
        max-width: 112px !important;
        height: 52px !important;
        max-height: 52px !important;
    }

    .final-insurance-item img {
        max-width: 92px !important;
        max-height: 34px !important;
    }
}

/* Final insurance manual control fix */
.final-insurance-marquee{
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
    scroll-behavior: auto !important;
}

.final-insurance-marquee::-webkit-scrollbar{
    display: none !important;
}

.final-insurance-marquee.dragging{
    cursor: grabbing !important;
}

.final-insurance-track{
    animation: none !important;
}

/* Force final insurance slider to be scrollable and movable */
.final-insurance-marquee {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
    scroll-behavior: auto !important;
}

.final-insurance-marquee::-webkit-scrollbar {
    display: none !important;
}

.final-insurance-marquee.dragging {
    cursor: grabbing !important;
}

.final-insurance-track {
    animation: none !important;
    display: flex !important;
    width: max-content !important;
    min-width: max-content !important;
}

/* Force final insurance movement */
.final-insurance-marquee {
    overflow: hidden !important;
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
}

.final-insurance-marquee.dragging {
    cursor: grabbing !important;
}

.final-insurance-track {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    width: max-content !important;
    animation: none !important;
    will-change: transform !important;
    transition: none !important;
}

.final-insurance-item {
    flex-shrink: 0 !important;
}

/* Home offers section */
.offer-home-card {
    overflow: hidden !important;
}

.offer-home-image {
    height: 190px !important;
    background: #eaf9fc !important;
}

.offer-home-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.offer-placeholder {
    font-size: 42px !important;
    color: #1aa6be !important;
    font-weight: 900 !important;
}

@media (max-width: 768px) {
    .offer-home-image {
        height: 160px !important;
    }
}

/* Home offers section */
.offer-home-card {
    overflow: hidden !important;
}

.offer-home-image {
    height: 190px !important;
    background: #eaf9fc !important;
}

.offer-home-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.offer-placeholder {
    font-size: 42px !important;
    color: #1aa6be !important;
    font-weight: 900 !important;
}

@media (max-width: 768px) {
    .offer-home-image {
        height: 160px !important;
    }
}

/* ===== Final Insurance Fixed Moving Section ===== */
.final-insurance-section {
    padding: 18px 0 14px !important;
    background: #f6fbfd !important;
    overflow: hidden !important;
}

.final-insurance-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 8px !important;
}

.final-insurance-head h2 {
    margin: 0 !important;
    color: #0b2f52 !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
}

.final-insurance-head p {
    margin: 4px 0 0 !important;
    color: #64748b !important;
    font-size: 14px !important;
}

.final-insurance-marquee {
    width: 100% !important;
    height: 74px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    padding: 6px 0 !important;
    direction: ltr !important;
}

.final-insurance-track {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    width: max-content !important;
    height: 62px !important;
    animation: finalInsuranceMoveFixed 38s linear infinite !important;
}

.final-insurance-marquee:hover .final-insurance-track {
    animation-play-state: paused !important;
}

.final-insurance-item {
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    background: #ffffff !important;
    border: 1px solid #dfeaf0 !important;
    border-radius: 15px !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04) !important;
    flex-shrink: 0 !important;
}

.final-insurance-item img {
    max-width: 108px !important;
    max-height: 38px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.final-insurance-item span {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: #eaf9fc !important;
    color: #0b2f52 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

@keyframes finalInsuranceMoveFixed {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.333%);
    }
}

/* Home offers section */
.offer-home-card {
    overflow: hidden !important;
}

.offer-home-image {
    height: 190px !important;
    background: #eaf9fc !important;
}

.offer-home-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.offer-placeholder {
    font-size: 42px !important;
    color: #1aa6be !important;
    font-weight: 900 !important;
}

@media (max-width: 768px) {
    .final-insurance-head {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .final-insurance-head h2 {
        font-size: 24px !important;
    }

    .offer-home-image {
        height: 160px !important;
    }
}

/* Allow manual drag + auto move by JS */
.final-insurance-marquee {
    cursor: grab !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y !important;
    overflow: hidden !important;
}

.final-insurance-marquee.dragging {
    cursor: grabbing !important;
}

.final-insurance-track {
    animation: none !important;
    animation-play-state: paused !important;
    transition: none !important;
    will-change: transform !important;
}

/* Departments show more on home */
.department-hidden {
    display: none !important;
}

.department-hidden.department-visible {
    display: block !important;
}

.show-more-wrap {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

/* Safe home departments show more */
.home-department-hidden {
    display: none !important;
}

.home-department-visible {
    display: block !important;
}

.home-departments-more-wrap {
    margin-top: 26px !important;
    display: flex !important;
    justify-content: center !important;
}

/* SVG department icons */
.department-icon-box {
    width: 74px !important;
    height: 74px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid #d9edf3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 18px !important;
    color: #123d6b !important;
    box-shadow: 0 8px 24px rgba(18, 61, 107, 0.08) !important;
    overflow: hidden !important;
}

.department-icon-svg {
    width: 42px !important;
    height: 42px !important;
    display: block !important;
    max-width: 42px !important;
    max-height: 42px !important;
}

.department-icon-box svg,
.department-icon-box path,
.department-icon-box circle,
.department-icon-box rect {
    vector-effect: non-scaling-stroke;
}

@media (max-width: 768px) {
    .department-icon-box {
        width: 64px !important;
        height: 64px !important;
        border-radius: 16px !important;
    }

    .department-icon-svg {
        width: 36px !important;
        height: 36px !important;
    }
}

/* ===== Real SVG department icons - no images ===== */
.bp-department-svg-icon {
    width: 74px !important;
    height: 74px !important;
    min-width: 74px !important;
    min-height: 74px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1px solid #d7edf4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 18px !important;
    color: #0d3558 !important;
    box-shadow: 0 10px 28px rgba(13, 53, 88, 0.08) !important;
    overflow: hidden !important;
}

.bp-department-svg-icon svg {
    width: 43px !important;
    height: 43px !important;
    display: block !important;
}

.bp-department-svg-icon svg path,
.bp-department-svg-icon svg circle,
.bp-department-svg-icon svg rect {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 3 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.bp-department-svg-icon svg .accent {
    stroke: #58C1D7 !important;
}

.bp-department-svg-icon svg .fill {
    fill: #0d3558 !important;
    stroke: none !important;
}

.bp-department-svg-icon svg .accent-fill {
    fill: #58C1D7 !important;
    stroke: none !important;
}

@media (max-width: 768px) {
    .bp-department-svg-icon {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
        min-height: 64px !important;
        border-radius: 17px !important;
    }

    .bp-department-svg-icon svg {
        width: 36px !important;
        height: 36px !important;
    }
}

/* رجوع أيقونات الأقسام للشكل القديم */
.old-department-icon,
.card-placeholder.old-department-icon {
    width: 66px !important;
    height: 66px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid #dcecf2 !important;
    color: #1aa6be !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    margin: 0 auto 18px !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06) !important;
}

.bp-department-svg-icon,
.department-icon-box {
    display: none !important;
}

/* Restore old department icons */
.bp-old-department-icon {
    width: 74px !important;
    height: 74px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid #d9eaf2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 18px !important;
    color: #1aa6be !important;
    font-size: 34px !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07) !important;
    transition: .25s ease !important;
}

.bp-old-department-icon i {
    line-height: 1 !important;
}

.card:hover .bp-old-department-icon {
    transform: translateY(-4px) scale(1.04) !important;
    color: #0f3b64 !important;
    border-color: rgba(88,193,215,.65) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10) !important;
}

/* إلغاء إخفاء الأيقونات القديمة */
.department-icon,
.department-icon-box,
.bp-department-svg-icon {
    display: none !important;
}

.bp-old-department-icon {
    display: flex !important;
}

@media (max-width: 768px) {
    .bp-old-department-icon {
        width: 64px !important;
        height: 64px !important;
        border-radius: 18px !important;
        font-size: 28px !important;
    }
}

/* Font Awesome department icons */
.bp-fa-department-icon {
    width: 74px !important;
    height: 74px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid #d9eaf2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 18px !important;
    color: #1aa6be !important;
    font-size: 32px !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07) !important;
    transition: .25s ease !important;
}

.bp-fa-department-icon i {
    line-height: 1 !important;
}

.card:hover .bp-fa-department-icon {
    transform: translateY(-4px) scale(1.04) !important;
    color: #0f3b64 !important;
    border-color: rgba(88,193,215,.65) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10) !important;
}

/* إخفاء أي أنماط قديمة */
.bp-old-department-icon,
.bp-department-svg-icon,
.department-icon-box,
.old-department-icon {
    display: none !important;
}

.bp-fa-department-icon {
    display: flex !important;
}

@media (max-width: 768px) {
    .bp-fa-department-icon {
        width: 64px !important;
        height: 64px !important;
        border-radius: 18px !important;
        font-size: 27px !important;
    }
}

/* ===== Specialty Department Icons - Font Awesome ===== */
.department-specialty-icon {
    width: 74px !important;
    height: 74px !important;
    min-width: 74px !important;
    min-height: 74px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid #d9eaf2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 18px !important;
    color: #1aa6be !important;
    font-size: 32px !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07) !important;
    transition: .25s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.department-specialty-icon::after {
    content: "" !important;
    position: absolute !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 999px !important;
    background: rgba(88, 193, 215, 0.10) !important;
    inset-inline-end: -12px !important;
    bottom: -12px !important;
    z-index: 0 !important;
}

.department-specialty-icon i {
    position: relative !important;
    z-index: 1 !important;
    line-height: 1 !important;
}

.card:hover .department-specialty-icon {
    transform: translateY(-4px) scale(1.04) !important;
    color: #0f3b64 !important;
    border-color: rgba(88,193,215,.65) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10) !important;
}

/* ألوان خفيفة حسب نوع القسم */
.department-specialty-icon-emergency { color: #1aa6be !important; }
.department-specialty-icon-beauty { color: #b455b6 !important; }
.department-specialty-icon-obgyn { color: #d66a8f !important; }
.department-specialty-icon-pediatric { color: #37a7d8 !important; }
.department-specialty-icon-urology { color: #2196b6 !important; }
.department-specialty-icon-psych { color: #7b6fd6 !important; }
.department-specialty-icon-eye { color: #0f7ba8 !important; }
.department-specialty-icon-cardio { color: #d84b5f !important; }
.department-specialty-icon-surgery { color: #0f3b64 !important; }
.department-specialty-icon-lab { color: #2b9c8f !important; }
.department-specialty-icon-dental { color: #0f7ba8 !important; }
.department-specialty-icon-internal { color: #1aa6be !important; }

/* إخفاء الأيقونات القديمة لو موجودة */
.bp-old-department-icon,
.bp-fa-department-icon,
.bp-department-svg-icon,
.department-icon-box,
.old-department-icon {
    display: none !important;
}

.department-specialty-icon {
    display: flex !important;
}

@media (max-width: 768px) {
    .department-specialty-icon {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
        min-height: 64px !important;
        border-radius: 18px !important;
        font-size: 27px !important;
    }

    .department-specialty-icon::after {
        width: 38px !important;
        height: 38px !important;
    }
}

/* ===== Professional department icons inside cards ===== */
.bp-specialty-icon {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at 72% 78%, rgba(88, 193, 215, 0.15), transparent 38%),
        linear-gradient(145deg, #ffffff 0%, #f7fdff 100%) !important;
    border: 1px solid rgba(88, 193, 215, 0.28) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    color: #0f3b64 !important;
    position: relative !important;
    overflow: visible !important;
    box-shadow:
        0 14px 34px rgba(15, 59, 100, 0.09),
        inset 0 0 0 1px rgba(255,255,255,0.70) !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}

.bp-specialty-icon-main {
    width: 58px !important;
    height: 58px !important;
    border-radius: 20px !important;
    background: #eefbfe !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: inherit !important;
    position: relative !important;
    z-index: 2 !important;
}

.bp-specialty-icon-main i {
    font-size: 33px !important;
    line-height: 1 !important;
    color: inherit !important;
}

.bp-specialty-icon-badge {
    position: absolute !important;
    inset-inline-end: -5px !important;
    bottom: -5px !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 999px !important;
    background: #58C1D7 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 8px 18px rgba(88, 193, 215, 0.28) !important;
    z-index: 3 !important;
}

.bp-specialty-icon-badge i {
    font-size: 13px !important;
    line-height: 1 !important;
}

/* Hover داخل الكرت */
.card:hover .bp-specialty-icon {
    transform: translateY(-5px) !important;
    border-color: rgba(88, 193, 215, 0.70) !important;
    box-shadow:
        0 18px 42px rgba(15, 59, 100, 0.13),
        inset 0 0 0 1px rgba(255,255,255,0.80) !important;
}

/* ألوان حسب التخصص */
.bp-specialty-icon-dental { color: #0f7ba8 !important; }
.bp-specialty-icon-beauty { color: #b455b6 !important; }
.bp-specialty-icon-internal { color: #1aa6be !important; }
.bp-specialty-icon-emergency { color: #0f7ba8 !important; }
.bp-specialty-icon-obgyn { color: #d66a8f !important; }
.bp-specialty-icon-pediatric { color: #37a7d8 !important; }
.bp-specialty-icon-urology { color: #2196b6 !important; }
.bp-specialty-icon-psych { color: #7b6fd6 !important; }
.bp-specialty-icon-eye { color: #0f7ba8 !important; }
.bp-specialty-icon-cardio { color: #d84b5f !important; }
.bp-specialty-icon-surgery { color: #0f3b64 !important; }
.bp-specialty-icon-lab { color: #2b9c8f !important; }
.bp-specialty-icon-bone { color: #5b7ea6 !important; }
.bp-specialty-icon-ent { color: #0f7ba8 !important; }
.bp-specialty-icon-neuro { color: #7b6fd6 !important; }
.bp-specialty-icon-diabetes { color: #1aa6be !important; }
.bp-specialty-icon-chest { color: #2b9c8f !important; }

/* لا تخلي أي CSS قديم يخفي الأيقونات الجديدة */
.bp-specialty-icon {
    display: flex !important;
}

.bp-old-department-icon,
.bp-fa-department-icon,
.bp-department-svg-icon,
.department-icon-box,
.old-department-icon,
.card-placeholder.old-department-icon {
    display: none !important;
}

/* ضبط مساحة أعلى الكرت حتى الأيقونة تظهر مرتبة */
.card .bp-specialty-icon,
.department-card .bp-specialty-icon {
    margin-top: 8px !important;
}

/* في كروت الأقسام لو كان الهيدر طويل نخليه مرتب */
.card-image:has(.bp-specialty-icon),
.card-header:has(.bp-specialty-icon) {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* للجوال */
@media (max-width: 768px) {
    .bp-specialty-icon {
        width: 74px !important;
        height: 74px !important;
        min-width: 74px !important;
        min-height: 74px !important;
        border-radius: 22px !important;
    }

    .bp-specialty-icon-main {
        width: 50px !important;
        height: 50px !important;
        border-radius: 17px !important;
    }

    .bp-specialty-icon-main i {
        font-size: 28px !important;
    }

    .bp-specialty-icon-badge {
        width: 28px !important;
        height: 28px !important;
        border-width: 3px !important;
    }

    .bp-specialty-icon-badge i {
        font-size: 11px !important;
    }
}

/* ===== Fix huge Laravel pagination SVG icons ===== */
nav[role="navigation"] svg,
.pagination svg,
nav[aria-label="Pagination Navigation"] svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

nav[role="navigation"] path,
.pagination path,
nav[aria-label="Pagination Navigation"] path {
    fill: currentColor !important;
}

/* منع أي أيقونة ضخمة تطلع خارج الصفحة */
.page-hero,
.section,
.departments-page,
.search-panel {
    overflow: hidden !important;
}

/* حماية إضافية: أي svg عام لا يتضخم إلا إذا داخل أيقونة القسم */
body > svg,
main > svg,
section > svg,
.container > svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

/* أيقونات الأقسام فقط تبقى بحجمها الاحترافي */
.bp-specialty-icon svg,
.bp-specialty-icon i {
    width: auto !important;
    height: auto !important;
}


/* Departments page show more */
.departments-page-hidden {
    display: none !important;
}

.departments-page-more-wrap {
    margin: 34px 0 10px !important;
    display: flex !important;
    justify-content: center !important;
}

/* One show-more button only */
.departments-page-more-wrap,
.home-departments-more-wrap {
    margin: 34px 0 10px !important;
    display: flex !important;
    justify-content: center !important;
}

.department-extra-hidden {
    display: none !important;
}

/* Careers CRM iframe page */
.careers-iframe-card {
    background: #ffffff !important;
    border: 1px solid #dcecf2 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
}

.careers-iframe-card iframe {
    display: block !important;
    width: 100% !important;
    height: 2400px !important;
    min-height: 2400px !important;
    border: 0 !important;
}

@media (max-width: 768px) {
    .careers-iframe-card iframe {
        height: 2600px !important;
        min-height: 2600px !important;
    }
}

/* Complaints iframe page */
.complaints-iframe-card {
    background: #ffffff !important;
    border: 1px solid #dcecf2 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
}

.complaints-iframe-card iframe {
    display: block !important;
    width: 100% !important;
    height: 1600px !important;
    min-height: 1600px !important;
    border: 0 !important;
}

@media (max-width: 768px) {
    .complaints-iframe-card iframe {
        height: 1800px !important;
        min-height: 1800px !important;
    }
}

/* Complaints CRM iframe final height */
.complaints-iframe-card iframe {
    height: 700px !important;
    min-height: 700px !important;
}

@media (max-width: 768px) {
    .complaints-iframe-card iframe {
        height: 850px !important;
        min-height: 850px !important;
    }
}

/* ===== Footer clean layout fix ===== */
.footer {
    padding: 26px 0 !important;
}

.footer-inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 28px !important;
}

.footer-inner > div:first-child {
    text-align: right !important;
    justify-self: end !important;
    min-width: 210px !important;
}

.footer-inner > div:first-child strong {
    display: block !important;
    font-size: 15px !important;
    margin-bottom: 5px !important;
}

.footer-inner > div:first-child span {
    display: block !important;
    font-size: 13px !important;
    opacity: 0.9 !important;
}

.footer-links,
.footer-inner > div:nth-child(2) {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px 12px !important;
    max-width: 620px !important;
    line-height: 1.8 !important;
}

.footer-links a,
.footer-inner > div:nth-child(2) a {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    opacity: 0.95 !important;
}

.footer-links a:hover,
.footer-inner > div:nth-child(2) a:hover {
    color: #58C1D7 !important;
}

.footer-links span,
.footer-inner > div:nth-child(2) span {
    opacity: 0.55 !important;
    font-size: 12px !important;
}

.footer-inner > div:last-child {
    text-align: left !important;
    justify-self: start !important;
    min-width: 170px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 16px !important;
    }

    .footer-inner > div:first-child,
    .footer-inner > div:last-child {
        text-align: center !important;
        justify-self: center !important;
        min-width: auto !important;
    }

    .footer-links,
    .footer-inner > div:nth-child(2) {
        max-width: 100% !important;
        gap: 7px 10px !important;
    }

    .footer-links a,
    .footer-inner > div:nth-child(2) a {
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 24px 0 28px !important;
    }

    .footer-links,
    .footer-inner > div:nth-child(2) {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .footer-links span,
    .footer-inner > div:nth-child(2) span {
        display: none !important;
    }
}

/* ===== Mobile footer final clean layout ===== */
@media (max-width: 576px) {
    .footer {
        padding: 34px 0 38px !important;
    }

    .footer-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        text-align: center !important;
    }

    .footer-inner > div:first-child {
        order: 1 !important;
        text-align: center !important;
        justify-self: center !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .footer-inner > div:first-child strong {
        font-size: 18px !important;
        line-height: 1.7 !important;
        margin-bottom: 6px !important;
    }

    .footer-inner > div:first-child span {
        font-size: 15px !important;
        line-height: 1.8 !important;
        opacity: .9 !important;
    }

    .footer-links,
    .footer-inner > div:nth-child(2) {
        order: 2 !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 330px !important;
        margin: 0 auto !important;
        line-height: 1.4 !important;
    }

    .footer-links span,
    .footer-inner > div:nth-child(2) span {
        display: none !important;
    }

    .footer-links a,
    .footer-inner > div:nth-child(2) a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 34px !important;
        padding: 7px 12px !important;
        border: 1px solid rgba(255,255,255,.18) !important;
        border-radius: 999px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        color: #ffffff !important;
        background: rgba(255,255,255,.04) !important;
        white-space: nowrap !important;
    }

    .footer-links a:hover,
    .footer-inner > div:nth-child(2) a:hover {
        color: #58C1D7 !important;
        border-color: rgba(88,193,215,.45) !important;
        background: rgba(88,193,215,.08) !important;
    }

    .footer-inner > div:last-child {
        order: 3 !important;
        text-align: center !important;
        justify-self: center !important;
        width: 100% !important;
        min-width: 0 !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.7 !important;
        margin-top: 4px !important;
        white-space: normal !important;
    }
}

/* =========================
   About Page - HMG Inspired
   without compliance/sustainability/governance
========================= */
.bp-about-page {
    background: #f5fbfd;
    color: #0d2f4f;
}

.bp-about-hero {
    padding: 52px 0 34px;
    background:
        radial-gradient(circle at top left, rgba(88,193,215,.22), transparent 30%),
        linear-gradient(180deg, #eef9fc 0%, #f8fdff 100%);
}

.bp-about-hero-inner {
    display: grid;
    grid-template-columns: 1.35fr .75fr;
    gap: 28px;
    align-items: stretch;
}

.bp-about-hero-content,
.bp-about-hero-card {
    background: #ffffff;
    border: 1px solid #dcecf3;
    border-radius: 32px;
    box-shadow: 0 18px 45px rgba(13, 47, 79, .08);
}

.bp-about-hero-content {
    padding: 46px;
    position: relative;
    overflow: hidden;
}

.bp-about-hero-content::before {
    content: "";
    position: absolute;
    inset-inline-start: -80px;
    top: -80px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(88,193,215,.12);
}

.bp-about-kicker,
.bp-about-small-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 999px;
    background: #eefbfe;
    border: 1px solid #d4eef5;
    color: #1395ad;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}

.bp-about-hero h1 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.2;
    color: #0b2f52;
    letter-spacing: -.5px;
}

.bp-about-hero p {
    margin: 0;
    max-width: 860px;
    font-size: 18px;
    line-height: 2.1;
    color: #5d7384;
}

.bp-about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.bp-about-hero-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bp-about-logo-mark {
    width: 86px;
    height: 86px;
    border-radius: 26px;
    background: linear-gradient(135deg, #58c1d7, #129bb7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 22px;
    box-shadow: 0 18px 34px rgba(88,193,215,.32);
}

.bp-about-hero-card h3 {
    margin: 0 0 10px;
    color: #0b2f52;
    font-size: 26px;
}

.bp-about-hero-card p {
    font-size: 15px;
    line-height: 1.9;
}

.bp-about-quick-info {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.bp-about-quick-info div {
    padding: 16px;
    border: 1px solid #e0eef4;
    border-radius: 18px;
    background: #f8fdff;
}

.bp-about-quick-info strong {
    display: block;
    color: #0b2f52;
    font-size: 15px;
    margin-bottom: 4px;
}

.bp-about-quick-info span {
    color: #718596;
    font-size: 13px;
    font-weight: 700;
}

.bp-about-nav-section {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 14px 0;
    background: rgba(245,251,253,.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(220,236,243,.75);
}

.bp-about-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bp-about-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 17px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dcecf3;
    color: #0d3b5f;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: .25s ease;
}

.bp-about-nav a:hover {
    color: #fff;
    background: #149fbb;
    border-color: #149fbb;
    transform: translateY(-2px);
}

.bp-about-content {
    padding: 34px 0 72px;
}

.bp-about-split {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

.bp-about-split-alt {
    grid-template-columns: 1.22fr .78fr;
}

.bp-about-split-alt .bp-about-split-media {
    order: 2;
}

.bp-about-split-alt .bp-about-split-text {
    order: 1;
}

.bp-about-split-media,
.bp-about-split-text,
.bp-about-values,
.bp-about-numbers,
.bp-about-why,
.bp-about-cta {
    background: #ffffff;
    border: 1px solid #dcecf3;
    border-radius: 30px;
    box-shadow: 0 16px 40px rgba(13, 47, 79, .065);
}

.bp-about-split-media {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(13,47,79,.94), rgba(20,159,187,.88)),
        #0d2f4f;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.bp-about-split-media::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    bottom: -90px;
    inset-inline-start: -70px;
}

.bp-about-big-icon {
    font-size: 62px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.bp-about-split-media span {
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .85;
    position: relative;
    z-index: 1;
}

.bp-about-split-text {
    padding: 42px;
}

.bp-about-split-text h2,
.bp-about-section-head h2,
.bp-about-cta h2 {
    margin: 0 0 14px;
    color: #0b2f52;
    font-size: 34px;
    line-height: 1.35;
}

.bp-about-split-text p,
.bp-about-section-head p,
.bp-about-cta p {
    margin: 0;
    color: #5e7485;
    line-height: 2.1;
    font-size: 17px;
}

.bp-about-values,
.bp-about-why {
    padding: 38px;
    margin-bottom: 24px;
}

.bp-about-section-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 28px;
}

.bp-about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bp-about-value-card,
.bp-about-why-item {
    background: #f8fdff;
    border: 1px solid #dfeef4;
    border-radius: 24px;
    padding: 24px;
    transition: .25s ease;
}

.bp-about-value-card:hover,
.bp-about-why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(13,47,79,.09);
}

.bp-about-value-icon {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    background: #eefbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.bp-about-value-card h3,
.bp-about-why-item h3 {
    margin: 0 0 10px;
    color: #0b2f52;
    font-size: 20px;
}

.bp-about-value-card p,
.bp-about-why-item p {
    margin: 0;
    color: #647a8b;
    line-height: 1.9;
    font-size: 14px;
}

.bp-about-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.bp-about-number-card {
    text-align: center;
    background: #f8fdff;
    border: 1px solid #dfeef4;
    border-radius: 24px;
    padding: 26px 14px;
}

.bp-about-number-card strong {
    display: block;
    color: #149fbb;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 900;
}

.bp-about-number-card span {
    color: #657b8d;
    font-size: 14px;
    font-weight: 900;
}

.bp-about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bp-about-why-item span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: #149fbb;
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
}

.bp-about-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 38px;
    background:
        radial-gradient(circle at top right, rgba(88,193,215,.18), transparent 30%),
        #fff;
}

.bp-about-cta .btn {
    flex-shrink: 0;
}

/* Tablet */
@media (max-width: 992px) {
    .bp-about-hero-inner,
    .bp-about-split,
    .bp-about-split-alt {
        grid-template-columns: 1fr;
    }

    .bp-about-split-alt .bp-about-split-media,
    .bp-about-split-alt .bp-about-split-text {
        order: initial;
    }

    .bp-about-values-grid,
    .bp-about-numbers {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-about-why-grid {
        grid-template-columns: 1fr;
    }

    .bp-about-hero h1 {
        font-size: 38px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .bp-about-hero {
        padding: 28px 0 22px;
    }

    .bp-about-hero-content,
    .bp-about-hero-card,
    .bp-about-split-media,
    .bp-about-split-text,
    .bp-about-values,
    .bp-about-numbers,
    .bp-about-why,
    .bp-about-cta {
        border-radius: 24px;
    }

    .bp-about-hero-content,
    .bp-about-hero-card,
    .bp-about-split-text,
    .bp-about-values,
    .bp-about-why,
    .bp-about-cta {
        padding: 24px;
    }

    .bp-about-hero h1 {
        font-size: 30px;
    }

    .bp-about-hero p,
    .bp-about-split-text p,
    .bp-about-section-head p,
    .bp-about-cta p {
        font-size: 15px;
        line-height: 2;
    }

    .bp-about-hero-actions,
    .bp-about-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .bp-about-hero-actions .btn,
    .bp-about-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .bp-about-nav-section {
        position: relative;
        top: auto;
    }

    .bp-about-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .bp-about-nav a {
        white-space: nowrap;
    }

    .bp-about-split-media {
        min-height: 210px;
    }

    .bp-about-split-text h2,
    .bp-about-section-head h2,
    .bp-about-cta h2 {
        font-size: 25px;
    }

    .bp-about-values-grid,
    .bp-about-numbers {
        grid-template-columns: 1fr;
    }

    .bp-about-number-card strong {
        font-size: 34px;
    }
}

/* =========================
   About Clean Professional Page
========================= */
.about-clean-page {
    padding: 42px 0 70px !important;
    background: #f5fbfd !important;
}

.about-clean-hero {
    display: grid !important;
    grid-template-columns: 1.45fr .85fr !important;
    gap: 24px !important;
    align-items: stretch !important;
    margin-bottom: 24px !important;
}

.about-clean-main,
.about-clean-contact,
.about-clean-card,
.about-clean-stats {
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 28px !important;
    box-shadow: 0 14px 36px rgba(15, 49, 74, 0.07) !important;
}

.about-clean-main {
    padding: 42px !important;
    background:
        radial-gradient(circle at top left, rgba(88,193,215,.16), transparent 32%),
        #ffffff !important;
}

.about-clean-badge,
.about-clean-card span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 14px !important;
    border-radius: 999px !important;
    background: #eefbfe !important;
    color: #1395ad !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    margin-bottom: 16px !important;
}

.about-clean-main h1 {
    margin: 0 0 16px !important;
    color: #0b2f52 !important;
    font-size: 44px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}

.about-clean-main p {
    margin: 0 !important;
    color: #5d7384 !important;
    font-size: 17px !important;
    line-height: 2.1 !important;
    max-width: 900px !important;
}

.about-clean-actions {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-top: 28px !important;
}

.about-clean-contact {
    padding: 28px !important;
}

.about-clean-contact h3 {
    margin: 0 0 18px !important;
    color: #0b2f52 !important;
    font-size: 24px !important;
    font-weight: 900 !important;
}

.about-clean-contact-list {
    display: grid !important;
    gap: 12px !important;
}

.about-clean-contact-list div {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 56px !important;
    padding: 0 15px !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 16px !important;
    background: #f8fcfe !important;
}

.about-clean-contact-list span {
    font-size: 18px !important;
    flex-shrink: 0 !important;
}

.about-clean-contact-list strong {
    color: #244a63 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-align: left !important;
    direction: ltr !important;
}

.about-clean-values {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 22px !important;
    margin-bottom: 24px !important;
}

.about-clean-card {
    padding: 30px !important;
    min-height: 250px !important;
}

.about-clean-card h3 {
    margin: 0 0 12px !important;
    color: #0b2f52 !important;
    font-size: 26px !important;
    font-weight: 900 !important;
}

.about-clean-card p {
    margin: 0 !important;
    color: #5f7484 !important;
    font-size: 15.5px !important;
    line-height: 2 !important;
}

.about-clean-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    padding: 18px !important;
}

.about-clean-stats div {
    text-align: center !important;
    background: #f8fcfe !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 20px !important;
    padding: 24px 12px !important;
}

.about-clean-stats strong {
    display: block !important;
    color: #149fbb !important;
    font-size: 38px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    margin-bottom: 10px !important;
}

.about-clean-stats span {
    display: block !important;
    color: #5f7484 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

@media (max-width: 992px) {
    .about-clean-hero {
        grid-template-columns: 1fr !important;
    }

    .about-clean-values {
        grid-template-columns: 1fr !important;
    }

    .about-clean-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .about-clean-main h1 {
        font-size: 36px !important;
    }
}

@media (max-width: 576px) {
    .about-clean-page {
        padding: 28px 0 48px !important;
    }

    .about-clean-main,
    .about-clean-contact,
    .about-clean-card,
    .about-clean-stats {
        border-radius: 22px !important;
    }

    .about-clean-main,
    .about-clean-contact,
    .about-clean-card {
        padding: 22px !important;
    }

    .about-clean-main h1 {
        font-size: 30px !important;
    }

    .about-clean-main p,
    .about-clean-card p {
        font-size: 15px !important;
        line-height: 2 !important;
    }

    .about-clean-actions {
        flex-direction: column !important;
    }

    .about-clean-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .about-clean-stats {
        grid-template-columns: 1fr 1fr !important;
        padding: 14px !important;
        gap: 12px !important;
    }

    .about-clean-stats strong {
        font-size: 30px !important;
    }

    .about-clean-contact-list div {
        align-items: flex-start !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 14px !important;
        min-height: auto !important;
    }

    .about-clean-contact-list strong {
        text-align: right !important;
        direction: rtl !important;
    }
}

/* About page after removing contact and stats */
.about-clean-hero {
    grid-template-columns: 1fr !important;
}

.about-clean-main {
    max-width: 100% !important;
}

.about-clean-values {
    margin-top: 24px !important;
}

.about-clean-stats,
.about-clean-contact {
    display: none !important;
}

/* =========================
   Doctors Professional Page
========================= */
.doctors-pro-page {
    padding: 42px 0 70px !important;
    background: #f5fbfd !important;
}

.doctors-pro-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin-bottom: 24px !important;
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 30px !important;
    padding: 34px !important;
    box-shadow: 0 14px 36px rgba(15, 49, 74, 0.07) !important;
}

.doctors-pro-badge {
    display: inline-flex !important;
    padding: 7px 14px !important;
    border-radius: 999px !important;
    background: #eefbfe !important;
    color: #1395ad !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    margin-bottom: 14px !important;
}

.doctors-pro-hero h1 {
    margin: 0 0 10px !important;
    color: #0b2f52 !important;
    font-size: 38px !important;
    line-height: 1.3 !important;
    font-weight: 900 !important;
}

.doctors-pro-hero p {
    margin: 0 !important;
    color: #5d7384 !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
}

.doctors-pro-filter {
    display: grid !important;
    grid-template-columns: 1.2fr .8fr auto !important;
    gap: 14px !important;
    align-items: end !important;
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 24px !important;
    padding: 20px !important;
    box-shadow: 0 10px 28px rgba(15, 49, 74, 0.05) !important;
    margin-bottom: 20px !important;
}

.doctors-pro-filter-field label {
    display: block !important;
    color: #0b2f52 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    margin-bottom: 8px !important;
}

.doctors-pro-filter-field input,
.doctors-pro-filter-field select {
    width: 100% !important;
    height: 48px !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 15px !important;
    background: #f8fcfe !important;
    color: #123d5c !important;
    padding: 0 14px !important;
    outline: none !important;
}

.doctors-pro-filter-actions {
    display: flex !important;
    gap: 10px !important;
}

.doctors-pro-count {
    margin: 0 0 22px !important;
    color: #607789 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.doctors-pro-count strong {
    color: #149fbb !important;
}

.doctors-pro-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 28px 22px !important;
}

.doctor-pro-card {
    position: relative !important;
    padding-top: 58px !important;
    margin-top: 54px !important;
}

.doctor-pro-photo-wrap {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 2 !important;
}

.doctor-pro-photo {
    width: 122px !important;
    height: 122px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    background: #eaf8fb !important;
    border: 7px solid #f5fbfd !important;
    box-shadow: 0 12px 28px rgba(15, 49, 74, 0.13) !important;
}

.doctor-pro-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #58C1D7 !important;
    font-size: 42px !important;
}

.doctor-pro-body {
    min-height: 300px !important;
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 24px !important;
    padding: 86px 22px 24px !important;
    text-align: center !important;
    box-shadow: 0 14px 34px rgba(15, 49, 74, 0.07) !important;
    transition: .25s ease !important;
}

.doctor-pro-card:hover .doctor-pro-body {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 42px rgba(15, 49, 74, 0.11) !important;
    border-color: rgba(88,193,215,.55) !important;
}

.doctor-pro-body h3 {
    margin: 0 0 10px !important;
    color: #0b2f52 !important;
    font-size: 20px !important;
    line-height: 1.45 !important;
    font-weight: 900 !important;
}

.doctor-pro-department {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 28px !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
    background: #eefbfe !important;
    color: #149fbb !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
}

.doctor-pro-title,
.doctor-pro-qualification,
.doctor-pro-bio {
    margin: 0 0 8px !important;
    color: #667d8e !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
}

.doctor-pro-title {
    color: #0d3b5f !important;
    font-weight: 800 !important;
}

.doctor-pro-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    margin-top: 18px !important;
}

.doctor-pro-link,
.doctor-pro-book {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.doctor-pro-link {
    color: #0d3b5f !important;
    background: #f8fcfe !important;
    border: 1px solid #dcebf2 !important;
}

.doctor-pro-book {
    color: #ffffff !important;
    background: #149fbb !important;
    border: 1px solid #149fbb !important;
}

.doctor-pro-book:hover,
.doctor-pro-link:hover {
    transform: translateY(-2px) !important;
}

.doctors-pro-pagination {
    margin-top: 30px !important;
}

.doctors-pro-empty {
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 24px !important;
    padding: 34px !important;
    text-align: center !important;
    color: #607789 !important;
    font-weight: 800 !important;
}

@media (max-width: 1200px) {
    .doctors-pro-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .doctors-pro-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .doctors-pro-filter {
        grid-template-columns: 1fr !important;
    }

    .doctors-pro-filter-actions {
        justify-content: stretch !important;
    }

    .doctors-pro-filter-actions .btn {
        flex: 1 !important;
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .doctors-pro-page {
        padding: 28px 0 48px !important;
    }

    .doctors-pro-hero {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 24px !important;
        border-radius: 24px !important;
    }

    .doctors-pro-hero h1 {
        font-size: 28px !important;
    }

    .doctors-pro-hero .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .doctors-pro-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .doctor-pro-body {
        min-height: auto !important;
    }

    .doctor-pro-card {
        margin-top: 46px !important;
    }

    .doctor-pro-photo {
        width: 108px !important;
        height: 108px !important;
    }
}

/* Doctors page show more */
.doctor-pro-card.doctor-hidden-by-limit {
    display: none !important;
}

.doctors-show-more-wrap {
    display: flex !important;
    justify-content: center !important;
    margin-top: 32px !important;
}

/* =========================
   About Page - Symbol Cards
========================= */
.about-symbol-page{
    padding:40px 0 80px !important;
    background:
        radial-gradient(circle at top right, rgba(88,193,215,.12), transparent 22%),
        #f5fbfd !important;
}

.about-symbol-intro{
    background:#fff !important;
    border:1px solid #dcecf2 !important;
    border-radius:30px !important;
    padding:38px 32px !important;
    text-align:center !important;
    margin-bottom:30px !important;
    box-shadow:0 14px 34px rgba(8,45,69,.06) !important;
}

.about-symbol-badge{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:7px 14px !important;
    border-radius:999px !important;
    background:#eefbfe !important;
    color:#1498b1 !important;
    border:1px solid #d3edf4 !important;
    font-size:13px !important;
    font-weight:800 !important;
    margin-bottom:14px !important;
}

.about-symbol-intro h1{
    margin:0 0 14px !important;
    color:#0d2e4e !important;
    font-size:40px !important;
    font-weight:900 !important;
}

.about-symbol-intro p{
    max-width:850px !important;
    margin:0 auto !important;
    color:#607586 !important;
    font-size:17px !important;
    line-height:2 !important;
}

.about-symbol-actions{
    display:flex !important;
    justify-content:center !important;
    gap:12px !important;
    flex-wrap:wrap !important;
    margin-top:22px !important;
}

.about-symbol-grid{
    display:grid !important;
    grid-template-columns:repeat(3, 1fr) !important;
    gap:26px !important;
}

.about-symbol-card{
    background:#fff !important;
    border:1px solid #dcecf2 !important;
    border-radius:30px !important;
    padding:28px 24px 30px !important;
    text-align:center !important;
    box-shadow:0 14px 34px rgba(8,45,69,.06) !important;
    transition:all .25s ease !important;
}

.about-symbol-card:hover{
    transform:translateY(-6px) !important;
    box-shadow:0 20px 44px rgba(8,45,69,.10) !important;
    border-color:#c5e7ef !important;
}

.symbol-head{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    margin-bottom:10px !important;
}

.symbol-box{
    width:110px !important;
    height:110px !important;
    border:10px solid #58C1D7 !important;
    border-radius:26px !important;
    background:#fff !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    color:#2f2f2f !important;
    box-shadow:0 10px 24px rgba(88,193,215,.16) !important;
}

.symbol-box svg{
    width:54px !important;
    height:54px !important;
    display:block !important;
}

.symbol-tail{
    width:14px !important;
    height:42px !important;
    background:#58C1D7 !important;
    border-radius:0 0 18px 18px !important;
    position:relative !important;
    margin-top:-2px !important;
}

.symbol-tail::after{
    content:"" !important;
    position:absolute !important;
    bottom:-24px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    border-left:16px solid transparent !important;
    border-right:16px solid transparent !important;
    border-top:24px solid #58C1D7 !important;
}

.about-symbol-card h2{
    margin:30px 0 18px !important;
    color:#58C1D7 !important;
    font-size:30px !important;
    font-weight:900 !important;
    line-height:1.2 !important;
}

.about-symbol-content{
    color:#3d3d3d !important;
    font-size:18px !important;
    line-height:2.05 !important;
    max-width:92% !important;
    margin:0 auto !important;
    white-space:pre-line !important;
}

.about-symbol-values{
    line-height:2.15 !important;
}

/* tablet */
@media (max-width: 992px){
    .about-symbol-grid{
        grid-template-columns:1fr !important;
        max-width:760px !important;
        margin:0 auto !important;
    }
}

/* mobile */
@media (max-width: 576px){
    .about-symbol-page{
        padding:28px 0 55px !important;
    }

    .about-symbol-intro{
        padding:24px 18px !important;
        border-radius:24px !important;
    }

    .about-symbol-intro h1{
        font-size:30px !important;
    }

    .about-symbol-intro p{
        font-size:15px !important;
        line-height:1.95 !important;
    }

    .about-symbol-actions{
        flex-direction:column !important;
    }

    .about-symbol-actions .btn{
        width:100% !important;
        justify-content:center !important;
    }

    .about-symbol-card{
        padding:24px 16px 26px !important;
        border-radius:24px !important;
    }

    .symbol-box{
        width:92px !important;
        height:92px !important;
        border-width:8px !important;
        border-radius:22px !important;
    }

    .symbol-box svg{
        width:44px !important;
        height:44px !important;
    }

    .symbol-tail{
        height:34px !important;
        width:12px !important;
    }

    .symbol-tail::after{
        bottom:-20px !important;
        border-left-width:14px !important;
        border-right-width:14px !important;
        border-top-width:20px !important;
    }

    .about-symbol-card h2{
        margin-top:26px !important;
        font-size:26px !important;
    }

    .about-symbol-content{
        font-size:16px !important;
        line-height:2 !important;
        max-width:100% !important;
    }
}

/* =========================
   About cards - closer to reference image
========================= */

.about-symbol-grid{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:22px !important;
    align-items:stretch !important;
}

.about-symbol-card{
    background:#fff !important;
    border:1px solid #d9ebf1 !important;
    border-radius:26px !important;
    padding:26px 20px 28px !important;
    text-align:center !important;
    box-shadow:0 10px 24px rgba(13, 46, 78, 0.05) !important;
    min-height:unset !important;
}

.about-symbol-card:hover{
    transform:none !important;
    box-shadow:0 12px 26px rgba(13, 46, 78, 0.07) !important;
}

.symbol-head{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    margin-bottom:4px !important;
}

.symbol-box{
    width:82px !important;
    height:82px !important;
    border:6px solid #58C1D7 !important;
    border-radius:18px !important;
    background:#fff !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    color:#2f3135 !important;
    box-shadow:none !important;
    margin-bottom:0 !important;
}

.symbol-box svg{
    width:34px !important;
    height:34px !important;
    display:block !important;
    stroke-width:2.2 !important;
}

.symbol-tail{
    width:10px !important;
    height:30px !important;
    background:#58C1D7 !important;
    border-radius:0 0 10px 10px !important;
    position:relative !important;
    margin-top:-1px !important;
}

.symbol-tail::after{
    content:"" !important;
    position:absolute !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    bottom:-16px !important;
    border-left:12px solid transparent !important;
    border-right:12px solid transparent !important;
    border-top:16px solid #58C1D7 !important;
}

.about-symbol-card h2{
    margin:24px 0 14px !important;
    color:#58C1D7 !important;
    font-size:24px !important;
    font-weight:900 !important;
    line-height:1.2 !important;
    letter-spacing:0 !important;
}

.about-symbol-content{
    color:#3d434a !important;
    font-size:17px !important;
    line-height:2 !important;
    max-width:100% !important;
    margin:0 auto !important;
    white-space:pre-line !important;
}

.about-symbol-values{
    line-height:2.1 !important;
}

/* make intro lighter so focus stays on cards */
.about-symbol-intro{
    margin-bottom:24px !important;
}

/* tablet */
@media (max-width: 992px){
    .about-symbol-grid{
        grid-template-columns:1fr !important;
        max-width:700px !important;
        margin:0 auto !important;
    }
}

/* mobile */
@media (max-width: 576px){
    .about-symbol-card{
        padding:22px 16px 24px !important;
        border-radius:22px !important;
    }

    .symbol-box{
        width:74px !important;
        height:74px !important;
        border-width:5px !important;
        border-radius:16px !important;
    }

    .symbol-box svg{
        width:30px !important;
        height:30px !important;
    }

    .symbol-tail{
        width:9px !important;
        height:26px !important;
    }

    .symbol-tail::after{
        bottom:-14px !important;
        border-left-width:10px !important;
        border-right-width:10px !important;
        border-top-width:14px !important;
    }

    .about-symbol-card h2{
        font-size:22px !important;
        margin-top:22px !important;
    }

    .about-symbol-content{
        font-size:15px !important;
        line-height:1.9 !important;
    }
}

/* About page icon color only */
.symbol-box {
    border-color: #55BFCB !important;
}

.symbol-tail {
    background: #55BFCB !important;
}

.symbol-tail::after {
    border-top-color: #55BFCB !important;
}

.about-symbol-card h2 {
    color: #55BFCB !important;
}

/* icon color فقط بدون تغيير السماكة */
.symbol-box svg,
.symbol-box svg path,
.symbol-box svg circle,
.symbol-box svg line,
.symbol-box svg polyline,
.symbol-box svg polygon,
.symbol-box svg rect,
.symbol-box svg ellipse {
    stroke: #2F3135 !important;
}

.symbol-box svg [fill="none"] {
    stroke: #2F3135 !important;
}

/* =========================
   About Page - Symbol Cards
========================= */
.about-symbol-page{
    padding:40px 0 80px !important;
    background:
        radial-gradient(circle at top right, rgba(88,193,215,.12), transparent 22%),
        #f5fbfd !important;
}

.about-symbol-intro{
    background:#fff !important;
    border:1px solid #dcecf2 !important;
    border-radius:30px !important;
    padding:38px 32px !important;
    text-align:center !important;
    margin-bottom:30px !important;
    box-shadow:0 14px 34px rgba(8,45,69,.06) !important;
}

.about-symbol-badge{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:7px 14px !important;
    border-radius:999px !important;
    background:#eefbfe !important;
    color:#1498b1 !important;
    border:1px solid #d3edf4 !important;
    font-size:13px !important;
    font-weight:800 !important;
    margin-bottom:14px !important;
}

.about-symbol-intro h1{
    margin:0 0 14px !important;
    color:#0d2e4e !important;
    font-size:40px !important;
    font-weight:900 !important;
}

.about-symbol-intro p{
    max-width:850px !important;
    margin:0 auto !important;
    color:#607586 !important;
    font-size:17px !important;
    line-height:2 !important;
}

.about-symbol-actions{
    display:flex !important;
    justify-content:center !important;
    gap:12px !important;
    flex-wrap:wrap !important;
    margin-top:22px !important;
}

.about-symbol-grid{
    display:grid !important;
    grid-template-columns:repeat(3, 1fr) !important;
    gap:26px !important;
}

.about-symbol-card{
    background:#fff !important;
    border:1px solid #dcecf2 !important;
    border-radius:30px !important;
    padding:28px 24px 30px !important;
    text-align:center !important;
    box-shadow:0 14px 34px rgba(8,45,69,.06) !important;
    transition:all .25s ease !important;
}

.about-symbol-card:hover{
    transform:translateY(-6px) !important;
    box-shadow:0 20px 44px rgba(8,45,69,.10) !important;
    border-color:#c5e7ef !important;
}

.symbol-head{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    margin-bottom:10px !important;
}

.symbol-box{
    width:110px !important;
    height:110px !important;
    border:10px solid #58C1D7 !important;
    border-radius:26px !important;
    background:#fff !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    color:#2f2f2f !important;
    box-shadow:0 10px 24px rgba(88,193,215,.16) !important;
}

.symbol-box svg{
    width:54px !important;
    height:54px !important;
    display:block !important;
}

.symbol-tail{
    width:14px !important;
    height:42px !important;
    background:#58C1D7 !important;
    border-radius:0 0 18px 18px !important;
    position:relative !important;
    margin-top:-2px !important;
}

.symbol-tail::after{
    content:"" !important;
    position:absolute !important;
    bottom:-24px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    border-left:16px solid transparent !important;
    border-right:16px solid transparent !important;
    border-top:24px solid #58C1D7 !important;
}

.about-symbol-card h2{
    margin:30px 0 18px !important;
    color:#58C1D7 !important;
    font-size:30px !important;
    font-weight:900 !important;
    line-height:1.2 !important;
}

.about-symbol-content{
    color:#3d3d3d !important;
    font-size:18px !important;
    line-height:2.05 !important;
    max-width:92% !important;
    margin:0 auto !important;
    white-space:pre-line !important;
}

.about-symbol-values{
    line-height:2.15 !important;
}

/* tablet */
@media (max-width: 992px){
    .about-symbol-grid{
        grid-template-columns:1fr !important;
        max-width:760px !important;
        margin:0 auto !important;
    }
}

/* mobile */
@media (max-width: 576px){
    .about-symbol-page{
        padding:28px 0 55px !important;
    }

    .about-symbol-intro{
        padding:24px 18px !important;
        border-radius:24px !important;
    }

    .about-symbol-intro h1{
        font-size:30px !important;
    }

    .about-symbol-intro p{
        font-size:15px !important;
        line-height:1.95 !important;
    }

    .about-symbol-actions{
        flex-direction:column !important;
    }

    .about-symbol-actions .btn{
        width:100% !important;
        justify-content:center !important;
    }

    .about-symbol-card{
        padding:24px 16px 26px !important;
        border-radius:24px !important;
    }

    .symbol-box{
        width:92px !important;
        height:92px !important;
        border-width:8px !important;
        border-radius:22px !important;
    }

    .symbol-box svg{
        width:44px !important;
        height:44px !important;
    }

    .symbol-tail{
        height:34px !important;
        width:12px !important;
    }

    .symbol-tail::after{
        bottom:-20px !important;
        border-left-width:14px !important;
        border-right-width:14px !important;
        border-top-width:20px !important;
    }

    .about-symbol-card h2{
        margin-top:26px !important;
        font-size:26px !important;
    }

    .about-symbol-content{
        font-size:16px !important;
        line-height:2 !important;
        max-width:100% !important;
    }
}

/* Fix about-page icons: make the icon itself blue like the reference */
.symbol-box svg,
.symbol-box svg path,
.symbol-box svg circle,
.symbol-box svg line,
.symbol-box svg polyline,
.symbol-box svg polygon,
.symbol-box svg rect,
.symbol-box svg ellipse {
    stroke: #59C3D3 !important;
    color: #59C3D3 !important;
}

.symbol-box svg * {
    stroke: #59C3D3 !important;
}

.symbol-box svg [fill]:not([fill="none"]) {
    fill: #59C3D3 !important;
}

/* =========================
   About History Section
========================= */
.about-history-section {
    padding-top: 10px;
}

.about-history-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 12px 0 0;
}

.about-history-timeline::before {
    content: "";
    position: absolute;
    top: 34px;
    right: 130px;
    left: 130px;
    height: 2px;
    background: linear-gradient(90deg, rgba(88,193,215,0.15), rgba(88,193,215,0.7), rgba(88,193,215,0.15));
    border-radius: 999px;
}

.history-item {
    position: relative;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    align-items: start;
}

.history-year-wrap {
    position: relative;
    text-align: center;
    padding-top: 0;
    z-index: 2;
}

.history-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 54px;
    padding: 0 20px;
    background: #ffffff;
    border: 2px solid #d8edf3;
    color: #ef5a5a;
    font-size: 28px;
    font-weight: 800;
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(15, 53, 74, 0.08);
}

.history-dot {
    display: block;
    width: 16px;
    height: 16px;
    margin: 14px auto 0;
    background: #58c1d7;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(88, 193, 215, 0.18);
}

.history-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #d8edf3;
    border-radius: 24px;
    padding: 28px 28px 24px;
    box-shadow: 0 14px 40px rgba(15, 53, 74, 0.08);
}

.history-card::before {
    content: "";
    position: absolute;
    top: 28px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-top: 1px solid #d8edf3;
    border-right: 1px solid #d8edf3;
    transform: rotate(45deg);
}

.history-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #eef9fc;
    color: #1a8ea8;
    font-size: 13px;
    font-weight: 700;
}

.history-card h3 {
    margin: 0 0 12px;
    color: #0f2d45;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
}

.history-card p {
    margin: 0;
    color: #5f7283;
    font-size: 17px;
    line-height: 2;
}

@media (max-width: 991px) {
    .history-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-history-timeline::before {
        display: none;
    }

    .history-card::before {
        display: none;
    }

    .history-year-wrap {
        text-align: right;
    }

    .history-dot {
        margin-right: 0;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .history-year {
        min-width: 92px;
        height: 48px;
        font-size: 24px;
    }

    .history-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .history-card h3 {
        font-size: 24px;
    }

    .history-card p {
        font-size: 15px;
        line-height: 1.9;
    }
}

/* =========================
   About History Multi Timeline
========================= */
.about-history-section {
    padding-top: 10px !important;
}

.history-multi {
    max-width: 980px !important;
    margin: 0 auto !important;
    position: relative !important;
    padding: 18px 0 0 !important;
}

.history-multi::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 118px !important;
    width: 2px !important;
    background: linear-gradient(
        180deg,
        rgba(88,193,215,.05),
        rgba(88,193,215,.75),
        rgba(88,193,215,.05)
    ) !important;
    border-radius: 999px !important;
}

.history-multi .history-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 160px 1fr !important;
    gap: 26px !important;
    align-items: start !important;
    margin-bottom: 28px !important;
}

.history-multi .history-item:last-child {
    margin-bottom: 0 !important;
}

.history-multi .history-year-wrap {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
}

.history-multi .history-year {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 108px !important;
    height: 52px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    border: 2px solid #d8edf3 !important;
    color: #58C1D7 !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    box-shadow: 0 12px 30px rgba(15,53,74,.07) !important;
}

.history-multi .history-dot {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    margin: 14px auto 0 !important;
    background: #58C1D7 !important;
    border: 4px solid #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 0 0 6px rgba(88,193,215,.18) !important;
}

.history-multi .history-card {
    position: relative !important;
    background: #ffffff !important;
    border: 1px solid #d8edf3 !important;
    border-radius: 24px !important;
    padding: 26px 28px !important;
    box-shadow: 0 14px 36px rgba(15,53,74,.075) !important;
    transition: .25s ease !important;
}

.history-multi .history-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 46px rgba(15,53,74,.105) !important;
    border-color: rgba(88,193,215,.55) !important;
}

.history-multi .history-card::before {
    content: "" !important;
    position: absolute !important;
    top: 28px !important;
    right: -10px !important;
    width: 20px !important;
    height: 20px !important;
    background: #ffffff !important;
    border-top: 1px solid #d8edf3 !important;
    border-right: 1px solid #d8edf3 !important;
    transform: rotate(45deg) !important;
}

.history-multi .history-card-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    background: #eefbfe !important;
    color: #1498b1 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    border: 1px solid #d3edf4 !important;
}

.history-multi .history-card h3 {
    margin: 0 0 10px !important;
    color: #0b2f52 !important;
    font-size: 28px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
}

.history-multi .history-card p {
    margin: 0 !important;
    color: #5f7283 !important;
    font-size: 16px !important;
    line-height: 2 !important;
}

/* Alternating subtle style */
.history-multi .history-item:nth-child(even) .history-card {
    background:
        radial-gradient(circle at top left, rgba(88,193,215,.08), transparent 28%),
        #ffffff !important;
}

/* Mobile */
@media (max-width: 768px) {
    .history-multi::before {
        right: 22px !important;
    }

    .history-multi .history-item {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding-right: 42px !important;
        margin-bottom: 24px !important;
    }

    .history-multi .history-year-wrap {
        text-align: right !important;
    }

    .history-multi .history-year {
        min-width: 92px !important;
        height: 46px !important;
        font-size: 21px !important;
    }

    .history-multi .history-dot {
        position: absolute !important;
        right: -29px !important;
        top: 13px !important;
        margin: 0 !important;
    }

    .history-multi .history-card {
        padding: 22px 18px !important;
        border-radius: 20px !important;
    }

    .history-multi .history-card::before {
        display: none !important;
    }

    .history-multi .history-card h3 {
        font-size: 23px !important;
    }

    .history-multi .history-card p {
        font-size: 15px !important;
        line-height: 1.9 !important;
    }
}

/* =========================
   HMG-like History Section
========================= */
.about-hmg-history-section {
    padding: 54px 0 78px !important;
    background: #f5fbfd !important;
}

.about-hmg-history-head {
    text-align: center !important;
    margin-bottom: 26px !important;
}

.about-hmg-history-head h2 {
    margin: 0 0 10px !important;
    color: #0b2f52 !important;
    font-size: 38px !important;
    font-weight: 900 !important;
}

.about-hmg-history-head p {
    margin: 0 auto !important;
    max-width: 720px !important;
    color: #657b8d !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
}

.about-hmg-history-slider {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 46px 1fr 46px !important;
    align-items: center !important;
    gap: 14px !important;
    max-width: 980px !important;
    margin: 0 auto 28px !important;
}

.history-years-track {
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 18px 20px !important;
    border-bottom: 1px solid #d4e4ea !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
}

.history-years-track::-webkit-scrollbar {
    display: none !important;
}

.history-year-tab {
    position: relative !important;
    appearance: none !important;
    border: 0 !important;
    background: transparent !important;
    color: #7c878d !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    padding: 8px 10px !important;
    min-width: 86px !important;
    transition: .25s ease !important;
}

.history-year-tab::after {
    content: "" !important;
    position: absolute !important;
    bottom: -21px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 2px !important;
    height: 0 !important;
    background: #ef5a5a !important;
    transition: .25s ease !important;
}

.history-year-tab.active {
    color: #ef5a5a !important;
}

.history-year-tab.active::after {
    height: 38px !important;
}

.history-nav-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 0 !important;
    background: #0d2f4f !important;
    color: #fff !important;
    font-size: 30px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: .25s ease !important;
}

.history-nav-btn:hover {
    background: #58C1D7 !important;
    transform: translateY(-2px) !important;
}

.about-hmg-history-stage {
    max-width: 1040px !important;
    margin: 0 auto !important;
    background: #ffffff !important;
    border: 1px solid #dcecf2 !important;
    border-radius: 30px !important;
    box-shadow: 0 16px 42px rgba(15, 49, 74, .07) !important;
    overflow: hidden !important;
    min-height: 360px !important;
}

.history-panel {
    display: none !important;
    grid-template-columns: .95fr 1.05fr !important;
    gap: 34px !important;
    align-items: center !important;
    padding: 42px !important;
}

.history-panel.active {
    display: grid !important;
    animation: historyFadeIn .28s ease both !important;
}

@keyframes historyFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.history-panel-visual {
    position: relative !important;
    min-height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.history-panel-image {
    position: relative !important;
    z-index: 2 !important;
    width: 320px !important;
    height: 210px !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at top left, rgba(88,193,215,.28), transparent 35%),
        linear-gradient(135deg, #eefbfe, #ffffff) !important;
    border: 1px solid #d7edf3 !important;
    box-shadow: 0 18px 42px rgba(15, 49, 74, .12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.history-panel-icon {
    width: 112px !important;
    height: 112px !important;
    border-radius: 30px !important;
    background: #58C1D7 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 48px !important;
    box-shadow: 0 16px 32px rgba(88, 193, 215, .35) !important;
}

.history-panel-shape {
    position: absolute !important;
    width: 82px !important;
    height: 82px !important;
    z-index: 1 !important;
}

.history-panel-shape-red {
    top: 8px !important;
    right: 24px !important;
    background: #ef5a5a !important;
    border-radius: 0 0 36px 0 !important;
}

.history-panel-shape-dark {
    bottom: 8px !important;
    left: 28px !important;
    background: #0d2f4f !important;
    border-radius: 0 0 0 30px !important;
}

.history-panel-content {
    text-align: right !important;
}

.history-panel-content span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 88px !important;
    height: 40px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    background: #eefbfe !important;
    color: #1498b1 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    margin-bottom: 16px !important;
    border: 1px solid #d3edf4 !important;
}

.history-panel-content h3 {
    margin: 0 0 16px !important;
    color: #0b2f52 !important;
    font-size: 34px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
}

.history-panel-content p {
    margin: 0 !important;
    color: #4f6577 !important;
    font-size: 17px !important;
    line-height: 2.1 !important;
}

/* Tablet */
@media (max-width: 992px) {
    .history-panel.active {
        grid-template-columns: 1fr !important;
    }

    .history-panel-content {
        text-align: center !important;
    }

    .history-years-track {
        justify-content: flex-start !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-hmg-history-section {
        padding: 36px 0 54px !important;
    }

    .about-hmg-history-head h2 {
        font-size: 30px !important;
    }

    .about-hmg-history-slider {
        grid-template-columns: 38px 1fr 38px !important;
        gap: 8px !important;
    }

    .history-nav-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 24px !important;
    }

    .history-year-tab {
        font-size: 18px !important;
        min-width: 72px !important;
    }

    .about-hmg-history-stage {
        border-radius: 24px !important;
        min-height: auto !important;
    }

    .history-panel {
        padding: 24px 18px !important;
    }

    .history-panel-visual {
        min-height: 190px !important;
    }

    .history-panel-image {
        width: 240px !important;
        height: 160px !important;
        border-radius: 26px !important;
    }

    .history-panel-icon {
        width: 86px !important;
        height: 86px !important;
        border-radius: 24px !important;
        font-size: 36px !important;
    }

    .history-panel-shape {
        width: 58px !important;
        height: 58px !important;
    }

    .history-panel-content h3 {
        font-size: 24px !important;
    }

    .history-panel-content p {
        font-size: 15px !important;
        line-height: 1.9 !important;
    }
}

/* Make About History section fully blue/turquoise - remove red */
.history-year-tab.active {
    color: #58C1D7 !important;
}

.history-year-tab::after {
    background: #58C1D7 !important;
}

.history-panel-shape-red {
    background: #58C1D7 !important;
}

.history-panel-content span {
    background: #eefbfe !important;
    color: #1498b1 !important;
    border-color: #d3edf4 !important;
}

.history-panel-icon {
    background: #58C1D7 !important;
    box-shadow: 0 16px 32px rgba(88, 193, 215, .35) !important;
}

.history-nav-btn:hover {
    background: #58C1D7 !important;
}

.history-year-tab.active::after {
    background: #58C1D7 !important;
}

.about-hmg-history-slider .history-year-tab.active,
.about-hmg-history-slider .history-year-tab:hover {
    color: #58C1D7 !important;
}


/* =========================
   Medical Services Combined Page
========================= */
.medical-services-page {
    padding: 55px 0 80px !important;
    background: #ffffff !important;
}

.medical-services-layout {
    display: grid !important;
    grid-template-columns: 1.25fr .75fr !important;
    gap: 36px !important;
    align-items: center !important;
}

.medical-services-content h1 {
    margin: 0 0 18px !important;
    color: #0b2f52 !important;
    font-size: 42px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}

.medical-services-content p {
    margin: 0 0 28px !important;
    color: #607586 !important;
    font-size: 17px !important;
    line-height: 2 !important;
    max-width: 760px !important;
}

.medical-services-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 14px !important;
    border-radius: 999px !important;
    background: #eefbfe !important;
    color: #1498b1 !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    margin-bottom: 14px !important;
}

.medical-services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 18px !important;
    max-width: 760px !important;
}

.medical-service-link-card {
    display: grid !important;
    grid-template-columns: 34px 1fr 34px !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 62px !important;
    padding: 0 18px !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #0b2f52 !important;
    text-decoration: none !important;
    transition: .22s ease !important;
}

.medical-service-link-card:hover {
    transform: translateY(-3px) !important;
    border-color: #58C1D7 !important;
    box-shadow: 0 14px 28px rgba(15, 49, 74, .08) !important;
}

.medical-service-link-card strong {
    font-size: 15px !important;
    font-weight: 900 !important;
}

.service-arrow {
    color: #6e91a0 !important;
    font-size: 28px !important;
    line-height: 1 !important;
}

.service-icon {
    width: 32px !important;
    height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #8aa5b2 !important;
    font-size: 20px !important;
}

.medical-service-link-card:hover .service-icon,
.medical-service-link-card:hover .service-arrow {
    color: #58C1D7 !important;
}

.medical-services-actions {
    margin-top: 28px !important;
}

.btn-outline-danger-soft {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 150px !important;
    min-height: 48px !important;
    padding: 10px 24px !important;
    border-radius: 14px !important;
    color: #ef5a5a !important;
    border: 1px solid #ef5a5a !important;
    background: transparent !important;
    text-decoration: none !important;
    font-weight: 900 !important;
}

.btn-outline-danger-soft:hover {
    background: #ef5a5a !important;
    color: #ffffff !important;
}

.medical-services-visual {
    display: flex !important;
    justify-content: center !important;
}

.medical-visual-card {
    width: 100% !important;
    max-width: 360px !important;
    min-height: 360px !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at top right, rgba(88,193,215,.20), transparent 38%),
        #f5fbfd !important;
    border: 1px solid #dcebf2 !important;
    box-shadow: 0 18px 44px rgba(15, 49, 74, .08) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 32px !important;
}

.medical-visual-icon {
    width: 110px !important;
    height: 110px !important;
    border-radius: 30px !important;
    background: #58C1D7 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 48px !important;
    margin-bottom: 22px !important;
    box-shadow: 0 18px 34px rgba(88,193,215,.32) !important;
}

.medical-visual-card h3 {
    margin: 0 0 10px !important;
    color: #0b2f52 !important;
    font-size: 26px !important;
    font-weight: 900 !important;
}

.medical-visual-card p {
    margin: 0 !important;
    color: #607586 !important;
    line-height: 1.9 !important;
}

/* Home Visit */
.home-visit-page {
    padding: 50px 0 80px !important;
    background: #f5fbfd !important;
}

.home-visit-hero {
    display: grid !important;
    grid-template-columns: 1fr 260px !important;
    gap: 26px !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 30px !important;
    padding: 38px !important;
    box-shadow: 0 16px 40px rgba(15, 49, 74, .07) !important;
    margin-bottom: 24px !important;
}

.home-visit-hero h1 {
    margin: 0 0 14px !important;
    color: #0b2f52 !important;
    font-size: 42px !important;
    font-weight: 900 !important;
}

.home-visit-hero p {
    margin: 0 !important;
    color: #607586 !important;
    font-size: 17px !important;
    line-height: 2 !important;
}

.home-visit-actions {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-top: 24px !important;
}

.home-visit-icon-box {
    width: 210px !important;
    height: 210px !important;
    border-radius: 42px !important;
    background: #58C1D7 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 82px !important;
    justify-self: center !important;
    box-shadow: 0 20px 42px rgba(88,193,215,.30) !important;
}

.home-visit-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 22px !important;
}

.home-visit-card {
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 24px !important;
    padding: 28px !important;
    text-align: center !important;
    box-shadow: 0 14px 34px rgba(15, 49, 74, .06) !important;
}

.home-visit-card i {
    width: 64px !important;
    height: 64px !important;
    border-radius: 22px !important;
    background: #eefbfe !important;
    color: #58C1D7 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    margin-bottom: 16px !important;
}

.home-visit-card h3 {
    margin: 0 0 10px !important;
    color: #0b2f52 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}

.home-visit-card p {
    margin: 0 !important;
    color: #607586 !important;
    line-height: 1.9 !important;
}

@media (max-width: 992px) {
    .medical-services-layout,
    .home-visit-hero {
        grid-template-columns: 1fr !important;
    }

    .medical-services-visual {
        display: none !important;
    }

    .home-visit-cards {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .medical-services-page,
    .home-visit-page {
        padding: 32px 0 56px !important;
    }

    .medical-services-content h1,
    .home-visit-hero h1 {
        font-size: 30px !important;
    }

    .medical-services-grid {
        grid-template-columns: 1fr !important;
    }

    .medical-services-content p,
    .home-visit-hero p {
        font-size: 15px !important;
        line-height: 1.9 !important;
    }

    .home-visit-hero {
        padding: 24px !important;
        border-radius: 24px !important;
    }

    .home-visit-icon-box {
        width: 150px !important;
        height: 150px !important;
        border-radius: 32px !important;
        font-size: 58px !important;
    }

    .home-visit-actions {
        flex-direction: column !important;
    }

    .home-visit-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* =========================
   Home Main 3 Cards
========================= */
.home-main-cards-section {
    padding: 44px 0 60px !important;
    background: #f5fbfd !important;
}

.home-main-cards-head {
    text-align: center !important;
    margin-bottom: 28px !important;
}

.home-main-cards-head span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 14px !important;
    border-radius: 999px !important;
    background: #eefbfe !important;
    color: #1498b1 !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
}

.home-main-cards-head h2 {
    margin: 0 0 10px !important;
    color: #0b2f52 !important;
    font-size: 36px !important;
    line-height: 1.3 !important;
    font-weight: 900 !important;
}

.home-main-cards-head p {
    margin: 0 auto !important;
    max-width: 680px !important;
    color: #607586 !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
}

.home-main-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 22px !important;
}

.home-main-card {
    position: relative !important;
    min-height: 260px !important;
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 30px !important;
    padding: 34px 28px 28px !important;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 16px 40px rgba(15, 49, 74, 0.07) !important;
    transition: .25s ease !important;
    overflow: hidden !important;
}

.home-main-card::before {
    content: "" !important;
    position: absolute !important;
    top: -80px !important;
    left: -80px !important;
    width: 190px !important;
    height: 190px !important;
    border-radius: 50% !important;
    background: rgba(88, 193, 215, .12) !important;
}

.home-main-card:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(88,193,215,.65) !important;
    box-shadow: 0 24px 55px rgba(15, 49, 74, 0.12) !important;
}

.home-main-card-icon {
    width: 78px !important;
    height: 78px !important;
    border-radius: 24px !important;
    background: #58C1D7 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 34px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 16px 30px rgba(88,193,215,.28) !important;
    position: relative !important;
    z-index: 1 !important;
}

.home-main-card-content {
    position: relative !important;
    z-index: 1 !important;
}

.home-main-card-content h3 {
    margin: 0 0 12px !important;
    color: #0b2f52 !important;
    font-size: 27px !important;
    line-height: 1.3 !important;
    font-weight: 900 !important;
}

.home-main-card-content p {
    margin: 0 !important;
    color: #607586 !important;
    font-size: 15.5px !important;
    line-height: 2 !important;
}

.home-main-card-arrow {
    position: absolute !important;
    bottom: 24px !important;
    left: 26px !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #f4fbfd !important;
    color: #1498b1 !important;
    border: 1px solid #d3edf4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: .25s ease !important;
}

.home-main-card:hover .home-main-card-arrow {
    background: #58C1D7 !important;
    color: #ffffff !important;
    border-color: #58C1D7 !important;
}

@media (max-width: 992px) {
    .home-main-cards-grid {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
        margin: 0 auto !important;
    }

    .home-main-card {
        min-height: 230px !important;
    }
}

@media (max-width: 576px) {
    .home-main-cards-section {
        padding: 30px 0 46px !important;
    }

    .home-main-cards-head h2 {
        font-size: 28px !important;
    }

    .home-main-cards-head p {
        font-size: 15px !important;
    }

    .home-main-card {
        border-radius: 24px !important;
        padding: 26px 20px 24px !important;
        min-height: 230px !important;
    }

    .home-main-card-icon {
        width: 66px !important;
        height: 66px !important;
        border-radius: 20px !important;
        font-size: 28px !important;
        margin-bottom: 18px !important;
    }

    .home-main-card-content h3 {
        font-size: 24px !important;
    }

    .home-main-card-content p {
        font-size: 14.5px !important;
        line-height: 1.9 !important;
    }
}

/* =========================
   BP Home Quick 3 Cards - Final
========================= */
.bp-home-quick-section {
    padding: 54px 0 70px !important;
    background: #f5fbfd !important;
}

.bp-home-quick-head {
    text-align: center !important;
    margin-bottom: 32px !important;
}

.bp-home-quick-head span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 15px !important;
    border-radius: 999px !important;
    background: #eefbfe !important;
    color: #1498b1 !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
}

.bp-home-quick-head h2 {
    margin: 0 0 10px !important;
    color: #0b2f52 !important;
    font-size: 38px !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
}

.bp-home-quick-head p {
    margin: 0 auto !important;
    max-width: 700px !important;
    color: #607586 !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
}

.bp-home-quick-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.bp-home-quick-card {
    display: block !important;
    position: relative !important;
    min-height: 310px !important;
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 30px !important;
    padding: 34px 28px 30px !important;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 16px 40px rgba(15, 49, 74, 0.07) !important;
    transition: .25s ease !important;
    overflow: hidden !important;
    text-align: right !important;
}

.bp-home-quick-card::before {
    content: "" !important;
    position: absolute !important;
    top: -90px !important;
    left: -90px !important;
    width: 210px !important;
    height: 210px !important;
    border-radius: 50% !important;
    background: rgba(88, 193, 215, .12) !important;
}

.bp-home-quick-card:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(88,193,215,.65) !important;
    box-shadow: 0 24px 55px rgba(15, 49, 74, 0.12) !important;
}

.bp-home-quick-icon {
    width: 82px !important;
    height: 82px !important;
    border-radius: 24px !important;
    background: #58C1D7 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 24px !important;
    box-shadow: 0 16px 30px rgba(88,193,215,.28) !important;
    position: relative !important;
    z-index: 2 !important;
}

.bp-home-quick-icon svg {
    width: 44px !important;
    height: 44px !important;
    display: block !important;
}

.bp-home-quick-card h3 {
    position: relative !important;
    z-index: 2 !important;
    margin: 0 0 12px !important;
    color: #0b2f52 !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}

.bp-home-quick-card p {
    position: relative !important;
    z-index: 2 !important;
    margin: 0 !important;
    color: #607586 !important;
    font-size: 15.5px !important;
    line-height: 2 !important;
    max-width: 95% !important;
}

.bp-home-quick-more {
    position: absolute !important;
    z-index: 2 !important;
    bottom: 26px !important;
    right: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    background: #f4fbfd !important;
    color: #1498b1 !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    transition: .25s ease !important;
}

.bp-home-quick-card:hover .bp-home-quick-more {
    background: #58C1D7 !important;
    color: #ffffff !important;
    border-color: #58C1D7 !important;
}

@media (max-width: 992px) {
    .bp-home-quick-grid {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
        margin: 0 auto !important;
    }

    .bp-home-quick-card {
        min-height: 280px !important;
    }
}

@media (max-width: 576px) {
    .bp-home-quick-section {
        padding: 34px 0 50px !important;
    }

    .bp-home-quick-head h2 {
        font-size: 28px !important;
    }

    .bp-home-quick-head p {
        font-size: 15px !important;
    }

    .bp-home-quick-card {
        min-height: 270px !important;
        border-radius: 24px !important;
        padding: 26px 20px 28px !important;
    }

    .bp-home-quick-icon {
        width: 68px !important;
        height: 68px !important;
        border-radius: 20px !important;
        margin-bottom: 18px !important;
    }

    .bp-home-quick-icon svg {
        width: 36px !important;
        height: 36px !important;
    }

    .bp-home-quick-card h3 {
        font-size: 24px !important;
    }

    .bp-home-quick-card p {
        font-size: 14.5px !important;
        line-height: 1.9 !important;
    }

    .bp-home-quick-more {
        right: 20px !important;
        bottom: 22px !important;
    }
}

/* ===== FIX HOME QUICK CARDS SVG SIZE ===== */
.bp-home-quick-section {
    padding: 54px 0 70px !important;
    background: #f5fbfd !important;
}

.bp-home-quick-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

.bp-home-quick-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-height: 300px !important;
    max-height: none !important;
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 30px !important;
    padding: 32px 28px 72px !important;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 16px 40px rgba(15, 49, 74, 0.07) !important;
    overflow: hidden !important;
    position: relative !important;
}

.bp-home-quick-icon {
    width: 78px !important;
    height: 78px !important;
    min-width: 78px !important;
    min-height: 78px !important;
    max-width: 78px !important;
    max-height: 78px !important;
    border-radius: 24px !important;
    background: #58C1D7 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
    box-shadow: 0 16px 30px rgba(88,193,215,.28) !important;
    flex: 0 0 78px !important;
}

.bp-home-quick-icon svg {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    display: block !important;
    flex: 0 0 40px !important;
}

.bp-home-quick-icon svg path,
.bp-home-quick-icon svg circle,
.bp-home-quick-icon svg rect,
.bp-home-quick-icon svg line,
.bp-home-quick-icon svg polyline,
.bp-home-quick-icon svg polygon {
    stroke: currentColor !important;
    vector-effect: non-scaling-stroke !important;
}

.bp-home-quick-card h3 {
    margin: 0 0 12px !important;
    color: #0b2f52 !important;
    font-size: 27px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}

.bp-home-quick-card p {
    margin: 0 !important;
    color: #607586 !important;
    font-size: 15.5px !important;
    line-height: 2 !important;
}

.bp-home-quick-more {
    position: absolute !important;
    right: 28px !important;
    bottom: 26px !important;
    min-height: 42px !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    background: #f4fbfd !important;
    color: #1498b1 !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

@media (max-width: 992px) {
    .bp-home-quick-grid {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 576px) {
    .bp-home-quick-card {
        min-height: 260px !important;
        border-radius: 24px !important;
        padding: 24px 20px 68px !important;
    }

    .bp-home-quick-icon {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
        min-height: 64px !important;
        max-width: 64px !important;
        max-height: 64px !important;
        border-radius: 20px !important;
        flex-basis: 64px !important;
    }

    .bp-home-quick-icon svg {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
        max-width: 34px !important;
        max-height: 34px !important;
        flex-basis: 34px !important;
    }
}

/* ===== FINAL FIX: Home quick cards layout ===== */
.bp-home-quick-section {
    display: block !important;
    padding: 48px 0 64px !important;
    background: #f5fbfd !important;
}

.bp-home-quick-section .container {
    max-width: 1180px !important;
    margin: 0 auto !important;
}

.bp-home-quick-head {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.bp-home-quick-head span {
    display: inline-flex !important;
    padding: 7px 15px !important;
    border-radius: 999px !important;
    background: #eefbfe !important;
    color: #1498b1 !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
}

.bp-home-quick-head h2 {
    margin: 0 0 10px !important;
    color: #0b2f52 !important;
    font-size: 36px !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
}

.bp-home-quick-head p {
    margin: 0 auto !important;
    max-width: 700px !important;
    color: #607586 !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
}

.bp-home-quick-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

.bp-home-quick-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    position: relative !important;
    min-height: 300px !important;
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 30px !important;
    padding: 32px 28px 76px !important;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 16px 40px rgba(15, 49, 74, 0.07) !important;
    overflow: hidden !important;
}

.bp-home-quick-card::before {
    content: "" !important;
    position: absolute !important;
    top: -90px !important;
    left: -90px !important;
    width: 210px !important;
    height: 210px !important;
    border-radius: 50% !important;
    background: rgba(88, 193, 215, .12) !important;
}

.bp-home-quick-icon {
    width: 78px !important;
    height: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
    flex: 0 0 78px !important;
    border-radius: 24px !important;
    background: #58C1D7 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
    box-shadow: 0 16px 30px rgba(88,193,215,.28) !important;
    position: relative !important;
    z-index: 2 !important;
}

.bp-home-quick-icon svg {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    display: block !important;
    flex: 0 0 40px !important;
}

.bp-home-quick-icon svg * {
    vector-effect: non-scaling-stroke !important;
}

.bp-home-quick-card h3 {
    position: relative !important;
    z-index: 2 !important;
    margin: 0 0 12px !important;
    color: #0b2f52 !important;
    font-size: 27px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}

.bp-home-quick-card p {
    position: relative !important;
    z-index: 2 !important;
    margin: 0 !important;
    color: #607586 !important;
    font-size: 15.5px !important;
    line-height: 2 !important;
    max-width: 95% !important;
}

.bp-home-quick-more {
    position: absolute !important;
    z-index: 2 !important;
    right: 28px !important;
    bottom: 26px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    background: #f4fbfd !important;
    color: #1498b1 !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

@media (max-width: 992px) {
    .bp-home-quick-grid {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 576px) {
    .bp-home-quick-section {
        padding: 34px 0 50px !important;
    }

    .bp-home-quick-card {
        min-height: 260px !important;
        border-radius: 24px !important;
        padding: 24px 20px 70px !important;
    }

    .bp-home-quick-icon {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
        max-width: 64px !important;
        min-height: 64px !important;
        max-height: 64px !important;
        flex-basis: 64px !important;
        border-radius: 20px !important;
    }

    .bp-home-quick-icon svg {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;
        min-height: 34px !important;
        max-height: 34px !important;
        flex-basis: 34px !important;
    }

    .bp-home-quick-head h2 {
        font-size: 28px !important;
    }

    .bp-home-quick-card h3 {
        font-size: 24px !important;
    }
}

/* Inline quick cards responsive fix */
@media (max-width: 992px) {
    .bp-inline-quick-grid {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 576px) {
    .bp-inline-quick-grid > a {
        min-height: 255px !important;
        border-radius: 24px !important;
        padding: 24px 20px 70px !important;
    }
}

/* =========================
   Main Home Hero Restore
========================= */
.bp-main-hero {
    padding: 58px 0 44px !important;
    background:
        radial-gradient(circle at top left, rgba(88,193,215,.20), transparent 30%),
        linear-gradient(180deg, #eefbfe 0%, #f5fbfd 100%) !important;
    overflow: hidden !important;
}

.bp-main-hero-inner {
    display: grid !important;
    grid-template-columns: 1.25fr .75fr !important;
    gap: 32px !important;
    align-items: center !important;
}

.bp-main-hero-content {
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 34px !important;
    padding: 44px !important;
    box-shadow: 0 18px 46px rgba(15, 49, 74, 0.08) !important;
    position: relative !important;
    overflow: hidden !important;
}

.bp-main-hero-content::before {
    content: "" !important;
    position: absolute !important;
    top: -90px !important;
    left: -90px !important;
    width: 220px !important;
    height: 220px !important;
    border-radius: 50% !important;
    background: rgba(88,193,215,.13) !important;
}

.bp-main-hero-badge {
    position: relative !important;
    z-index: 1 !important;
    display: inline-flex !important;
    padding: 8px 15px !important;
    border-radius: 999px !important;
    background: #eefbfe !important;
    color: #1498b1 !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    margin-bottom: 16px !important;
}

.bp-main-hero-content h1 {
    position: relative !important;
    z-index: 1 !important;
    margin: 0 0 18px !important;
    color: #0b2f52 !important;
    font-size: 46px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}

.bp-main-hero-content p {
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    color: #607586 !important;
    font-size: 18px !important;
    line-height: 2.05 !important;
    max-width: 850px !important;
}

.bp-main-hero-actions {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-top: 28px !important;
}

.bp-main-hero-visual {
    display: flex !important;
    justify-content: center !important;
}

.bp-main-hero-card {
    width: 100% !important;
    max-width: 380px !important;
    min-height: 360px !important;
    background: #ffffff !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 34px !important;
    padding: 34px !important;
    box-shadow: 0 18px 46px rgba(15, 49, 74, 0.09) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
}

.bp-main-hero-icon {
    width: 110px !important;
    height: 110px !important;
    border-radius: 32px !important;
    background: #58C1D7 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 50px !important;
    margin: 0 auto 22px !important;
    box-shadow: 0 18px 34px rgba(88,193,215,.32) !important;
}

.bp-main-hero-card h3 {
    margin: 0 0 10px !important;
    color: #0b2f52 !important;
    font-size: 26px !important;
    font-weight: 900 !important;
}

.bp-main-hero-card p {
    margin: 0 !important;
    color: #607586 !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
}

.bp-main-hero-mini {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-top: 24px !important;
}

.bp-main-hero-mini div {
    background: #f5fbfd !important;
    border: 1px solid #dcebf2 !important;
    border-radius: 18px !important;
    padding: 16px 10px !important;
}

.bp-main-hero-mini strong {
    display: block !important;
    color: #1498b1 !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin-bottom: 8px !important;
}

.bp-main-hero-mini span {
    color: #607586 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

@media (max-width: 992px) {
    .bp-main-hero-inner {
        grid-template-columns: 1fr !important;
    }

    .bp-main-hero-card {
        max-width: 100% !important;
    }

    .bp-main-hero-content h1 {
        font-size: 38px !important;
    }
}

@media (max-width: 576px) {
    .bp-main-hero {
        padding: 32px 0 28px !important;
    }

    .bp-main-hero-content,
    .bp-main-hero-card {
        border-radius: 24px !important;
        padding: 24px 20px !important;
    }

    .bp-main-hero-content h1 {
        font-size: 30px !important;
    }

    .bp-main-hero-content p {
        font-size: 15px !important;
        line-height: 1.95 !important;
    }

    .bp-main-hero-actions {
        flex-direction: column !important;
    }

    .bp-main-hero-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .bp-main-hero-icon {
        width: 84px !important;
        height: 84px !important;
        border-radius: 24px !important;
        font-size: 38px !important;
    }
}

/* =========================
   Hero health start card
========================= */
.bp-health-start-card {
    width: 100% !important;
    max-width: 430px !important;
    min-height: 360px !important;
    padding: 34px 28px !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at bottom left, rgba(255,255,255,.14), transparent 34%),
        linear-gradient(135deg, #0e354f 0%, #53bfd1 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 22px 50px rgba(15, 49, 74, 0.16) !important;
    position: relative !important;
    overflow: hidden !important;
}

.bp-health-start-card::before {
    content: "" !important;
    position: absolute !important;
    width: 230px !important;
    height: 230px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.10) !important;
    left: -70px !important;
    bottom: -80px !important;
}

.bp-health-start-card h3 {
    position: relative !important;
    z-index: 1 !important;
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-size: 28px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
}

.bp-health-start-card > p {
    position: relative !important;
    z-index: 1 !important;
    margin: 0 0 18px !important;
    color: rgba(255,255,255,.84) !important;
    font-size: 14.5px !important;
    line-height: 1.9 !important;
}

.bp-health-start-list {
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    gap: 12px !important;
}

.bp-health-start-item {
    display: grid !important;
    grid-template-columns: 42px 1fr !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 68px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.13) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: .22s ease !important;
}

.bp-health-start-item:hover {
    transform: translateY(-3px) !important;
    background: rgba(255,255,255,.18) !important;
}

.bp-health-start-emoji {
    width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,.12) !important;
    font-size: 18px !important;
}

.bp-health-start-item strong {
    display: block !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;
    margin-bottom: 3px !important;
}

.bp-health-start-item small {
    display: block !important;
    color: rgba(255,255,255,.82) !important;
    font-size: 12.5px !important;
    line-height: 1.6 !important;
}

@media (max-width: 992px) {
    .bp-health-start-card {
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .bp-health-start-card {
        min-height: auto !important;
        padding: 26px 20px !important;
        border-radius: 24px !important;
    }

    .bp-health-start-card h3 {
        font-size: 24px !important;
    }

    .bp-health-start-item {
        grid-template-columns: 38px 1fr !important;
        padding: 11px 12px !important;
    }
}

/* ===== Professional motion for home quick cards ===== */
.bp-inline-quick-grid,
.bp-home-quick-grid {
    perspective: 1200px !important;
}

.bp-inline-quick-grid > a,
.bp-home-quick-card {
    position: relative !important;
    overflow: hidden !important;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
    isolation: isolate !important;
    animation: quickCardFadeUp .75s ease both !important;
}

.bp-inline-quick-grid > a:nth-child(1),
.bp-home-quick-card:nth-child(1) {
    animation-delay: .05s !important;
}

.bp-inline-quick-grid > a:nth-child(2),
.bp-home-quick-card:nth-child(2) {
    animation-delay: .16s !important;
}

.bp-inline-quick-grid > a:nth-child(3),
.bp-home-quick-card:nth-child(3) {
    animation-delay: .27s !important;
}

.bp-inline-quick-grid > a::before,
.bp-home-quick-card::before {
    content: "" !important;
    position: absolute !important;
    top: -80px !important;
    left: -80px !important;
    width: 190px !important;
    height: 190px !important;
    border-radius: 50% !important;
    background: rgba(88,193,215,.12) !important;
    z-index: 0 !important;
}

.bp-inline-quick-grid > a::after,
.bp-home-quick-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 38%,
        rgba(255,255,255,.55) 50%,
        transparent 62%,
        transparent 100%
    ) !important;
    transform: translateX(120%) !important;
    transition: transform .75s ease !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.bp-inline-quick-grid > a:hover,
.bp-home-quick-card:hover {
    transform: translateY(-10px) rotateX(2deg) !important;
    border-color: rgba(88,193,215,.7) !important;
    box-shadow: 0 28px 65px rgba(15,49,74,.14) !important;
}

.bp-inline-quick-grid > a:hover::after,
.bp-home-quick-card:hover::after {
    transform: translateX(-120%) !important;
}

.bp-inline-quick-grid > a > div:first-child,
.bp-home-quick-icon {
    position: relative !important;
    z-index: 2 !important;
    animation: quickIconFloat 3.2s ease-in-out infinite !important;
    transition: transform .35s ease, background .35s ease !important;
}

.bp-inline-quick-grid > a:hover > div:first-child,
.bp-home-quick-card:hover .bp-home-quick-icon {
    transform: translateY(-4px) scale(1.06) !important;
    background: #1498b1 !important;
}

.bp-inline-quick-grid > a h3,
.bp-inline-quick-grid > a p,
.bp-inline-quick-grid > a div,
.bp-home-quick-card h3,
.bp-home-quick-card p,
.bp-home-quick-more {
    position: relative !important;
    z-index: 2 !important;
}

.bp-inline-quick-grid > a [style*="bottom"],
.bp-home-quick-more {
    transition: background .25s ease, color .25s ease, transform .25s ease !important;
}

.bp-inline-quick-grid > a:hover [style*="bottom"],
.bp-home-quick-card:hover .bp-home-quick-more {
    background: #58C1D7 !important;
    color: #ffffff !important;
    border-color: #58C1D7 !important;
    transform: translateX(-4px) !important;
}

@keyframes quickCardFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes quickIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

/* Subtle background motion */
.bp-home-quick-section,
section:has(.bp-inline-quick-grid) {
    background:
        radial-gradient(circle at 18% 10%, rgba(88,193,215,.10), transparent 24%),
        radial-gradient(circle at 82% 90%, rgba(88,193,215,.08), transparent 26%),
        #f5fbfd !important;
}

/* Mobile: keep it clean */
@media (max-width: 768px) {
    .bp-inline-quick-grid > a:hover,
    .bp-home-quick-card:hover {
        transform: translateY(-5px) !important;
    }

    .bp-inline-quick-grid > a > div:first-child,
    .bp-home-quick-icon {
        animation: quickIconFloat 3.8s ease-in-out infinite !important;
    }
}

/* ===== FIX QUICK CARDS OVERLAP / CLEAN FINAL ===== */

/* إلغاء تأثيرات الحركة اللي خربت ترتيب العناصر */
.bp-inline-quick-grid > a::after,
.bp-home-quick-card::after {
    display: none !important;
}

.bp-inline-quick-grid > a,
.bp-home-quick-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    position: relative !important;
    min-height: 285px !important;
    padding: 32px 28px 88px !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
    animation: none !important;
}

.bp-inline-quick-grid > a:hover,
.bp-home-quick-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 22px 48px rgba(15,49,74,.12) !important;
    border-color: rgba(88,193,215,.65) !important;
}

/* الأيقونة */
.bp-inline-quick-grid > a > div:first-child,
.bp-home-quick-icon {
    position: relative !important;
    z-index: 2 !important;
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    flex: 0 0 64px !important;
    border-radius: 18px !important;
    margin: 0 0 22px !important;
    animation: none !important;
    transform: none !important;
}

.bp-inline-quick-grid > a > div:first-child i {
    font-size: 28px !important;
}

/* العنوان */
.bp-inline-quick-grid > a h3,
.bp-home-quick-card h3 {
    position: relative !important;
    z-index: 2 !important;
    margin: 0 0 12px !important;
    color: #0b2f52 !important;
    font-size: 26px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    width: 100% !important;
}

/* الوصف */
.bp-inline-quick-grid > a p,
.bp-home-quick-card p {
    position: relative !important;
    z-index: 2 !important;
    margin: 0 !important;
    color: #607586 !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* زر عرض الخدمات / الأطباء / العروض */
.bp-inline-quick-grid > a > div:last-child,
.bp-home-quick-more {
    position: absolute !important;
    right: 28px !important;
    left: auto !important;
    bottom: 26px !important;
    top: auto !important;
    z-index: 3 !important;
    width: auto !important;
    max-width: max-content !important;
    min-width: 118px !important;
    min-height: 38px !important;
    padding: 7px 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #f4fbfd !important;
    color: #1498b1 !important;
    border: 1px solid #d3edf4 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    transform: none !important;
}

.bp-inline-quick-grid > a:hover > div:last-child,
.bp-home-quick-card:hover .bp-home-quick-more {
    background: #58C1D7 !important;
    color: #ffffff !important;
    border-color: #58C1D7 !important;
}

/* ترتيب الشبكة */
.bp-inline-quick-grid,
.bp-home-quick-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

/* الجوال */
@media (max-width: 992px) {
    .bp-inline-quick-grid,
    .bp-home-quick-grid {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 576px) {
    .bp-inline-quick-grid > a,
    .bp-home-quick-card {
        min-height: 260px !important;
        padding: 24px 20px 78px !important;
        border-radius: 24px !important;
    }

    .bp-inline-quick-grid > a > div:first-child,
    .bp-home-quick-icon {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
        max-width: 58px !important;
        min-height: 58px !important;
        max-height: 58px !important;
        flex-basis: 58px !important;
    }

    .bp-inline-quick-grid > a > div:first-child i {
        font-size: 25px !important;
    }

    .bp-inline-quick-grid > a > div:last-child,
    .bp-home-quick-more {
        right: 20px !important;
        bottom: 22px !important;
    }
}

/* Make medical services "عرض الكل" button blue */
.btn-outline-danger-soft {
    color: #1498b1 !important;
    border-color: #58C1D7 !important;
    background: transparent !important;
}

.btn-outline-danger-soft:hover {
    background: #58C1D7 !important;
    color: #ffffff !important;
    border-color: #58C1D7 !important;
}
