/* Dr. Sawsan Merhej — Design System v3 */

/* === Self-hosted Tajawal === */
@font-face {
    font-family: 'Tajawal';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/tajawal-latin-400-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Tajawal';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/tajawal-arabic-400-normal.woff2') format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
    font-family: 'Tajawal';
    font-style: normal;
    font-weight: 700;
    font-display: optional;
    src: url('../fonts/tajawal-latin-800-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Tajawal';
    font-style: normal;
    font-weight: 700;
    font-display: optional;
    src: url('../fonts/tajawal-arabic-800-normal.woff2') format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
    font-family: 'Tajawal';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/tajawal-latin-800-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Tajawal';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/tajawal-arabic-800-normal.woff2') format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

/* === Design tokens === */
:root {
    --brand-rose: #B8295C;
    --brand-rose-dark: #7A1A3E;
    --brand-rose-deep: #4A0F28;
    --brand-rose-light: #F0C4D4;
    --brand-rose-pale: #FDF5F8;
    --brand-plum: #1A0A12;
    --brand-ink: #120810;
    --brand-cream: #FAF7F5;
    --brand-cream-2: #F0E8E4;
    --brand-gold: #C9A06C;
    --brand-gold-light: #E8D4B0;

    --primary-pink: #E8638F;
    --primary-pink-accessible: var(--brand-rose);
    --primary-pink-dark: var(--brand-rose-dark);
    --pink-on-dark: #F5D0DE;
    --dark-pink: var(--brand-rose-dark);
    --light-pink: var(--brand-rose-light);
    --pale-pink: var(--brand-rose-pale);
    --primary-black: var(--brand-ink);
    --soft-black: #221018;
    --text-grey: #5C4F56;
    --white: #ffffff;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 4px 16px rgba(26, 10, 18, 0.06);
    --shadow-md: 0 12px 32px rgba(26, 10, 18, 0.1);
    --shadow-lg: 0 24px 56px rgba(26, 10, 18, 0.14);

    --header-height: 76px;
    --section-gap: clamp(4rem, 8vw, 6rem);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
    background-color: var(--brand-cream);
    color: var(--text-grey);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-plum);
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    color: var(--brand-rose);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--brand-rose-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Reserve space for Font Awesome icons (prevents CLS when icon font loads) */
.fa, .fas, .far, .fab {
    display: inline-block;
    width: 1.25em;
    text-align: center;
    line-height: 1;
}

::selection {
    background: var(--brand-rose-light);
    color: var(--brand-plum);
}

/* === Layout === */
.site-wrapper {
    overflow-x: hidden;
}

.site-main {
    padding-block: var(--section-gap);
}

/* Below-fold sections: skip paint work until near viewport (mobile) */
@media (max-width: 991px) {
    .section-block {
        content-visibility: auto;
        contain-intrinsic-size: auto 520px;
    }

    .hero-premium {
        content-visibility: visible;
    }
}

.section-block {
    padding-block: var(--section-gap);
}

.section-block--alt {
    background: var(--white);
    border-block: 1px solid rgba(184, 41, 92, 0.06);
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    background: var(--brand-rose-pale);
    color: var(--brand-rose-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 0.75rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
}

.section-lead {
    margin: 0;
    color: var(--text-grey);
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.7;
}

/* === Top bar === */
.top-bar {
    background: var(--brand-plum);
    color: rgba(255, 255, 255, 0.88);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition);
}

.top-bar a:hover {
    color: var(--brand-gold-light);
}

.top-bar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-inline-start: 0.35rem;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: background var(--transition), color var(--transition);
}

.top-bar .social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-gold-light);
}

/* === Header === */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 41, 92, 0.08);
    box-shadow: var(--shadow-sm);
    z-index: 1030;
}

.site-header .navbar {
    padding-block: 0.65rem;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    height: auto;
    max-height: 64px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: transform var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.03);
}

.navbar-nav {
    gap: 0.15rem;
}

.navbar-nav .nav-link {
    color: var(--brand-plum);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color var(--transition), background var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--brand-rose);
    background: var(--brand-rose-pale);
}

.navbar-nav .nav-link.active {
    color: var(--brand-rose-dark);
    background: var(--brand-rose-pale);
}

.header-actions {
    margin-inline-start: auto;
    padding-inline-start: 1rem;
}

.lang-switcher-btn {
    background: transparent;
    border: 1.5px solid rgba(184, 41, 92, 0.35);
    color: var(--brand-rose-dark);
    border-radius: var(--radius-pill);
    padding: 0.4rem 0.9rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all var(--transition);
}

.lang-switcher-btn:hover,
.lang-switcher-btn:focus {
    background: var(--brand-rose-dark);
    border-color: var(--brand-rose-dark);
    color: var(--white);
}

.btn-brand {
    background: var(--brand-rose-dark);
    border: 2px solid var(--brand-rose-dark);
    color: var(--white);
    border-radius: var(--radius-pill);
    padding: 0.55rem 1.25rem;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    box-shadow: 0 6px 20px rgba(122, 26, 62, 0.25);
}

.btn-brand:hover {
    background: var(--brand-plum);
    border-color: var(--brand-plum);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(26, 10, 18, 0.2);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1.25rem;
        margin-top: 0.75rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(184, 41, 92, 0.08);
    }

    .header-actions {
        margin-inline-start: 0;
        padding-inline-start: 0;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(184, 41, 92, 0.08);
        margin-top: 0.5rem;
        width: 100%;
        justify-content: space-between;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0.5rem;
    }
}

/* === Buttons === */
.btn-outline-primary {
    color: var(--brand-rose-dark);
    border: 2px solid var(--brand-rose-dark);
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.75rem;
    font-weight: 700;
    transition: all var(--transition);
}

.btn-outline-primary:hover {
    background: var(--brand-rose-dark);
    border-color: var(--brand-rose-dark);
    color: var(--white);
}

.btn-primary {
    background: var(--brand-plum);
    border-color: var(--brand-plum);
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.75rem;
    font-weight: 700;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: var(--brand-rose-dark);
    border-color: var(--brand-rose-dark);
}

.text-primary {
    color: var(--brand-rose) !important;
}

.link-accessible {
    color: var(--brand-rose-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(184, 41, 92, 0.35);
}

.link-accessible:hover {
    color: var(--brand-plum);
    text-decoration-color: var(--brand-rose);
}

/* === Premium hero === */
.hero-premium {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--brand-plum);
    min-height: clamp(580px, 90vh, 880px);
}

.hero-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-premium-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-premium-bg-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(18, 8, 16, 0.97) 0%, rgba(26, 10, 18, 0.78) 42%, rgba(122, 26, 62, 0.42) 100%),
        radial-gradient(ellipse 80% 60% at 70% 80%, rgba(201, 160, 108, 0.12), transparent);
}

.hero-premium-inner {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: flex;
    align-items: center;
    padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    width: 100%;
}

.hero-premium-content {
    color: var(--white);
    max-width: 620px;
}

.hero-premium-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-pill);
    background: rgba(184, 41, 92, 0.2);
    border: 1px solid rgba(245, 208, 222, 0.25);
    color: var(--pink-on-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-premium-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-gold);
    flex-shrink: 0;
}

.hero-premium-title {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: clamp(2.1rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.06;
}

.hero-premium-lead {
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.75;
    max-width: 540px;
}

.hero-premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}

.hero-premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.85rem 1.65rem;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.hero-premium-btn-primary {
    background: var(--brand-rose-dark);
    border: 2px solid var(--brand-rose-dark);
    color: var(--white);
    box-shadow: 0 10px 32px rgba(122, 26, 62, 0.4);
}

.hero-premium-btn-primary:hover {
    background: var(--white);
    color: var(--brand-rose-dark);
    transform: translateY(-2px);
}

.hero-premium-btn-outline {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    backdrop-filter: blur(4px);
}

.hero-premium-btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-premium-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-premium-trust li {
    padding: 1rem 0.85rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.hero-premium-trust-value {
    display: block;
    color: var(--brand-gold-light);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-premium-trust-label {
    display: block;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
    line-height: 1.35;
}

.hero-premium-visual {
    display: flex;
    justify-content: center;
}

.hero-premium-portrait {
    position: relative;
    width: min(100%, 400px);
}

.hero-premium-portrait-ring {
    position: absolute;
    inset: -16px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(184, 41, 92, 0.5), rgba(201, 160, 108, 0.15));
    transform: rotate(-3deg);
}

.hero-premium-portrait-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.hero-premium-portrait-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-premium-portrait-badge {
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-pill);
    background: var(--brand-rose-dark);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 12px 32px rgba(122, 26, 62, 0.45);
}

@media (max-width: 991px) {
    .hero-premium {
        min-height: auto;
    }

    .hero-premium-inner {
        align-items: stretch;
        padding-top: 0;
        padding-bottom: 2.5rem;
    }

    .hero-premium-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .hero-premium-bg {
        position: relative;
        height: 40vh;
        min-height: 240px;
        max-height: 340px;
    }

    .hero-premium-bg-shade {
        background:
            linear-gradient(to bottom, rgba(18, 8, 16, 0.1), rgba(18, 8, 16, 0.8)),
            linear-gradient(to top, var(--brand-plum), transparent 40%);
    }

    .hero-premium-content {
        max-width: none;
        text-align: center;
        margin-inline: auto;
    }

    .hero-premium-lead {
        margin-inline: auto;
    }

    .hero-premium-actions {
        justify-content: center;
    }

    .hero-premium-trust {
        grid-template-columns: 1fr;
    }

    .hero-premium-visual {
        order: -1;
        margin-top: -4rem;
    }

    .hero-premium-portrait {
        width: min(72vw, 300px);
    }
}

@media (min-width: 992px) {
    html[dir="rtl"] .hero-premium-grid {
        direction: rtl;
    }

    html[dir="rtl"] .hero-premium-content {
        text-align: right;
    }
}

/* === About block === */
.about-block {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.about-block__media {
    position: relative;
}

.about-block__frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    max-width: 420px;
    margin-inline: auto;
}

.about-block__frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 3px;
    background: linear-gradient(145deg, var(--brand-rose), var(--brand-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.about-block__frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-block__accent {
    position: absolute;
    bottom: -20px;
    inset-inline-end: -20px;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    background: var(--brand-rose-pale);
    z-index: -1;
}

.about-block__content .section-title {
    text-align: start;
}

.about-block__content .section-lead {
    text-align: start;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .about-block {
        grid-template-columns: 1fr;
    }

    .about-block__content .section-title,
    .about-block__content .section-lead {
        text-align: center;
    }

    .about-block__content {
        text-align: center;
    }
}

.profile-about-img {
    max-height: 420px;
    width: 100%;
    object-fit: cover;
}

/* === Service cards (homepage) === */
.services-home-grid {
    align-items: stretch;
}

.service-card-home {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184, 41, 92, 0.07);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card-home:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card-home-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.service-card-home-link:hover {
    color: inherit;
}

.service-card-home-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--brand-cream-2);
}

.service-card-home-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.service-card-home:hover .service-card-home-media img {
    transform: scale(1.05);
}

.service-card-home-overlay {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 2.5rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(18, 8, 16, 0.92) 0%, rgba(18, 8, 16, 0.3) 60%, transparent 100%);
}

.service-card-home-title {
    margin: 0;
    color: var(--white);
    font-size: clamp(0.92rem, 1.1vw, 1rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.service-card-home-footer {
    padding: 1rem 1.25rem 1.25rem;
    margin-top: auto;
    border-top: 1px solid rgba(184, 41, 92, 0.06);
    background: var(--white);
}

.service-card-home-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-rose-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.service-card-home-cta i {
    transition: transform var(--transition);
}

.service-card-home:hover .service-card-home-cta i {
    transform: translateX(4px);
}

html[dir="rtl"] .service-card-home:hover .service-card-home-cta i {
    transform: translateX(-4px);
}

@media (max-width: 991px) {
    .service-card-home-media {
        aspect-ratio: 16 / 11;
    }
}

/* === Stats band === */
.stats-band {
    background: linear-gradient(135deg, var(--brand-plum) 0%, var(--brand-rose-deep) 100%);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201, 160, 108, 0.15), transparent 50%);
    pointer-events: none;
}

.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--brand-gold-light);
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.stat-item__value {
    display: block;
    color: var(--brand-gold-light);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-item__label {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .stats-band__grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* === Feature cards (why choose us) === */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    height: 100%;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(184, 41, 92, 0.07);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 41, 92, 0.15);
}

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--brand-rose-pale);
    color: var(--brand-rose-dark);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-card__title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    color: var(--brand-plum);
}

.feature-card__text {
    margin: 0;
    color: var(--text-grey);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Legacy feature class support */
.feature .feature-stat {
    color: var(--brand-plum);
    font-weight: 800;
}

.feature .feature-title {
    color: var(--brand-plum);
    font-weight: 800;
}

.feature i {
    color: var(--brand-rose);
}

/* === Content cards (articles, books, services pages) === */
.card {
    border: 1px solid rgba(184, 41, 92, 0.07);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-img-top,
.card-img-fixed {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.card-title {
    color: var(--brand-plum);
    font-weight: 800;
    font-size: 1.05rem;
}

.card-text {
    color: var(--text-grey);
    font-size: 0.92rem;
    line-height: 1.65;
}

.content-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem;
}

.content-card .card-text {
    flex-grow: 1;
}

/* Book / project cards */
.project-card .card-img-top,
.book-card .card-img-top {
    height: 280px;
    object-fit: contain;
    background: var(--brand-cream);
    padding: 1rem;
}

/* === Page hero (inner pages) === */
.page-hero {
    background: linear-gradient(135deg, var(--brand-plum) 0%, var(--brand-rose-deep) 55%, #3D1228 100%);
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(201, 160, 108, 0.12), transparent);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero__title {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-hero__lead {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    max-width: 560px;
    margin-inline: auto;
}

.page-hero .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    margin-top: 1rem;
    background: transparent;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--brand-gold-light);
}

.page-hero .breadcrumb-item.active {
    color: var(--pink-on-dark);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
}

/* === Contact form === */
.contact-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(184, 41, 92, 0.08);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-panel__header {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, var(--brand-plum), var(--brand-rose-deep));
    color: var(--white);
}

.contact-panel__header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.25rem;
}

.contact-panel__body {
    padding: 2rem;
}

.form-control,
.form-select {
    border-radius: var(--radius-sm);
    border-color: rgba(184, 41, 92, 0.15);
    padding: 0.7rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-rose);
    box-shadow: 0 0 0 3px rgba(184, 41, 92, 0.12);
}

.form-label {
    font-weight: 600;
    color: var(--brand-plum);
    font-size: 0.9rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(184, 41, 92, 0.08);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    height: 100%;
}

.contact-info-card__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-rose-pale);
    color: var(--brand-rose-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Footer === */
.site-footer {
    background: var(--brand-plum);
    color: rgba(255, 255, 255, 0.75);
    padding-top: clamp(3rem, 5vw, 4.5rem);
    padding-bottom: 1.5rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-rose-dark), var(--brand-gold), var(--brand-rose-dark));
}

.site-footer h2,
.site-footer h3 {
    color: var(--white);
}

.footer-logo {
    max-height: 52px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color var(--transition);
    display: inline-block;
    padding-block: 0.2rem;
}

.footer-link:hover {
    color: var(--brand-gold-light);
}

.site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    margin-inline-end: 0.5rem;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-footer .social-links a:hover {
    background: var(--brand-rose-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.site-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin-block: 2rem;
}

.site-footer .contact-info a {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer .contact-info a:hover {
    color: var(--brand-gold-light);
}

/* === WhatsApp float === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: var(--white);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1EBE57;
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 28px;
}

/* === Partners === */
.partner-logo {
    transition: opacity var(--transition), filter var(--transition);
    opacity: 0.55;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* === Service page cards === */
.service-card .service-img-wrapper {
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card .service-img-wrapper img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.04);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-rose-pale);
    color: var(--brand-rose-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-light {
    background-color: var(--brand-rose-pale) !important;
}

.badge-brand {
    background: var(--brand-rose-pale);
    color: var(--brand-rose-dark);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    padding: 0.4em 0.75em;
}

/* === CTA band === */
.cta-band {
    background: linear-gradient(135deg, var(--brand-plum) 0%, var(--brand-rose-deep) 100%);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 160, 108, 0.15), transparent 55%);
    pointer-events: none;
}

.cta-band .container {
    position: relative;
    z-index: 1;
}

.cta-band__title {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.cta-band__lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 1.75rem;
}

/* === Social links (light sections) === */
.social-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.social-links-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--brand-rose-pale);
    color: var(--brand-rose-dark);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-links-row a:hover {
    background: var(--brand-rose-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* === Responsive utilities === */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    html[dir="rtl"] .whatsapp-float {
        left: 20px;
    }
}

@media (min-width: 992px) {
    html[dir="rtl"] .about-block {
        direction: rtl;
    }
}
