/* =========================================================
   CROSSMED WEBSITE - HOMEPAGE PREMIUM CSS
   Clean / Corporate / Global / Bilingual
========================================================= */

/* ===============================
   1) ROOT
=============================== */
:root {
    --primary: #0b4f8a;
    --primary-dark: #083b66;
    --navy: #06263f;
    --navy-soft: #0e3553;

    --accent: #1ec6c6;
    --accent-2: #58d8d8;
    --accent-soft: #e8fafa;

    --white: #ffffff;
    --bg-main: #f7fafc;
    --bg-soft: #f2f7fa;
    --bg-section: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.96);

    --text-dark: #102a43;
    --text-body: #526b84;
    --text-muted: #7b8fa3;
    --text-light: #f8fbff;

    --border-soft: rgba(16, 42, 67, 0.08);
    --border-medium: rgba(16, 42, 67, 0.12);

    --shadow-soft: 0 12px 30px rgba(7, 32, 48, 0.06);
    --shadow-medium: 0 18px 45px rgba(7, 32, 48, 0.10);
    --shadow-strong: 0 24px 60px rgba(7, 32, 48, 0.16);

    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 14px;

    --section-space: 96px;
    --section-space-mobile: 74px;

    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.14);
}

/* ===============================
   2) GLOBAL
=============================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.arabic-version {
    font-family: 'Cairo', sans-serif;
}

section {
    position: relative;
}

.container {
    position: relative;
    z-index: 2;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

#about,
#services,
#how-it-works,
#faq,
#contact {
    scroll-margin-top: 110px;
}

.fade-up {
    animation: fadeUpSoft 0.9s ease both;
}

@keyframes fadeUpSoft {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   3) REUSABLE HEADINGS
=============================== */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.section-text {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-body);
    max-width: 860px;
    margin-inline: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--primary-dark);
    border: 1px solid rgba(30, 198, 198, 0.18);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.arabic-version .section-title {
    line-height: 1.48;
}

/* ===============================
   4) NAVBAR
=============================== */
.custom-navbar {
    background: rgba(6, 38, 63, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    padding-bottom: 16px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.custom-navbar.navbar-scrolled {
    background: rgba(6, 38, 63, 0.94);
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
    border-bottom-color: rgba(255, 255, 255, 0.10);
}

.navbar-brand {
     margin-right: 0 !important;
    max-width: 360px;
    line-height: 1.1;
    transition: transform 0.3s ease;
    
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.brand-en {
    display: block;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: -0.01em;
}

.brand-ar {
    display: block;
    font-size: 0.8rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.76);
    white-space: normal;
}

.navbar-nav {
    gap: 4px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 700;
    margin-inline: 8px;
    padding: 10px 6px !important;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.97rem;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 999px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 72%;
}

.lang-btn,
.navbar .btn-outline-light {
    min-width: 52px;
    border-radius: 12px;
    padding: 8px 14px;
    font-weight: 700;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.lang-btn:hover,
.navbar .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 10px;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}
.navbar .container {
    padding-right: 0 !important;
}
/* ===============================
   5) BUTTONS
=============================== */
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: none;
    color: #07263a;
    box-shadow: 0 14px 30px rgba(30, 198, 198, 0.20);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #18bcbc, #46cfcf);
    color: #07263a;
    border: none;
}

.btn-outline-light {
    border-width: 1px;
}

.hero-btn-primary,
.hero-btn-secondary,
.about-btn-primary {
    min-width: 168px;
    min-height: 52px;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-size: 0.97rem;
    transition: all 0.35s ease;
}

.hero-btn-primary,
.about-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: none;
    color: #07263a;
    box-shadow: 0 16px 34px rgba(30, 198, 198, 0.24);
}

.hero-btn-primary:hover,
.about-btn-primary:hover {
    background: linear-gradient(135deg, #18bcbc, #46cfcf);
    color: #07263a;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(30, 198, 198, 0.28);
}

.hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    transform: translateY(-3px);
}

/* ===============================
   6) HERO
=============================== */

/* ===============================
   7) ABOUT
=============================== */
.about-clean-section {
    padding: var(--section-space) 0;
    background: #f7fafc;
    overflow: hidden;
}

.about-content-wrap {
    max-width: 620px;
}

.about-clean-section .about-dark-title {
    color: var(--text-dark);
    font-size: 2.18rem;
    font-weight: 800;
    line-height: 1.34;
    max-width: 600px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.about-clean-section .about-dark-text {
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.95;
    max-width: 590px;
    margin-bottom: 0;
}

.about-mini-cards {
    display: grid;
    gap: 16px;
}

.about-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(12, 31, 46, 0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 28px rgba(7, 32, 48, 0.05);
    transition: all 0.35s ease;
}

.about-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(7, 32, 48, 0.08);
    background: #ffffff;
}

.about-mini-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.about-mini-card h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.5;
}

.about-mini-card p {
    margin-bottom: 0;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.94rem;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.about-dark-visual,
.premium-about-visual {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
    padding-top: 28px;
}

.premium-about-visual::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(30, 198, 198, 0.08), rgba(11, 79, 138, 0.08));
    z-index: 0;
}

.about-clean-section .about-dark-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(12, 31, 46, 0.06);
}

.about-clean-section .about-dark-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 280px;
    max-width: calc(100% - 36px);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(12, 31, 46, 0.06);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(7, 32, 48, 0.10);
    transition: all 0.35s ease;
    backdrop-filter: blur(8px);
}

.about-clean-section .about-dark-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(7, 32, 48, 0.12);
}

.about-clean-section .about-dark-card h5 {
    color: var(--text-dark);
    font-size: 0.96rem;
    font-weight: 800;
    margin-bottom: 3px;
    line-height: 1.4;
}

.about-clean-section .about-dark-card p {
    color: var(--text-body);
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.5;
}

.about-clean-section .about-dark-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(30, 198, 198, 0.20);
}

.card-top {
    top: 42px;
    left: -10px;
}

.card-bottom {
    bottom: 22px;
    right: -10px;
}

.arabic-version .about-clean-section {
    text-align: right;
}

.arabic-version .about-content-wrap {
    margin-inline-start: auto;
}

.arabic-version .about-clean-section .about-dark-title {
    line-height: 1.48;
}

.arabic-version .about-mini-card {
    text-align: right;
}

/* ===============================
   8) SERVICES
=============================== */
.services-section {
    background: linear-gradient(to bottom, #f9fbfd, #f3f8fb);
    padding: var(--section-space) 0;
    overflow: hidden;
}

.services-heading {
    max-width: 850px;
}

.services-section .section-title,
.services-section .section-text {
    max-width: 860px;
    margin-inline: auto;
}

.premium-service-box {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(12, 31, 46, 0.08);
    border-radius: 24px;
    padding: 30px 24px 24px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.premium-service-box::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.premium-service-box:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 198, 198, 0.22);
    box-shadow: 0 24px 50px rgba(7, 32, 48, 0.12);
    background: #ffffff;
}

.premium-service-box:hover::before {
    opacity: 1;
}

.service-number {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    font-size: 0.95rem;
    font-weight: 800;
    color: rgba(16, 42, 67, 0.18);
    background: rgba(16, 42, 67, 0.03);
    border: 1px solid rgba(16, 42, 67, 0.05);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.premium-service-box:hover .service-icon {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 14px 30px rgba(30, 198, 198, 0.14);
}

.premium-service-box h4 {
    color: var(--text-dark);
    font-size: 1.16rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.65;
    max-width: 90%;
}

.premium-service-box p {
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 22px;
    flex-grow: 1;
}

.service-footer-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid rgba(30, 198, 198, 0.14);
}

.services-note {
    max-width: 920px;
    margin-inline: auto;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    padding: 28px 24px;
    border: 1px solid rgba(12, 31, 46, 0.08);
    box-shadow: var(--shadow-soft);
}

.services-note-badge {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: 0.3px;
}

.services-note p {
    color: var(--text-body);
    line-height: 2;
    max-width: 760px;
    margin-inline: auto;
}

/* ===============================
   9) HOW IT WORKS
=============================== */


/* ===============================
   10) FAQ
=============================== */
.faq-section {
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
    padding: var(--section-space) 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid rgba(12, 31, 46, 0.08);
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 16px 36px rgba(7, 32, 48, 0.08);
}

.accordion-button {
    background: #ffffff;
    color: var(--text-dark);
    font-weight: 700;
    padding: 18px 20px;
    border: none;
    font-size: 1rem;
    line-height: 1.7;
    box-shadow: none !important;
}

.accordion-button::after {
    opacity: 0.75;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-soft);
    color: var(--primary-dark);
}

.accordion-body {
    color: var(--text-body);
    line-height: 2;
    padding: 18px 20px;
}

/* ===============================
   11) CONTACT
=============================== */
.contact-section {
    background: linear-gradient(to bottom, #ffffff, #f6fafc);
    padding: var(--section-space) 0;
    overflow: hidden;
}

.contact-heading {
    max-width: 900px;
}

.contact-section .row.g-4 {
    margin-top: 2.2rem !important;
}

.contact-info-box,
.contact-form-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 34px 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(12, 31, 46, 0.08);
    height: 100%;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.contact-info-box:hover,
.contact-form-box:hover {
    box-shadow: 0 18px 42px rgba(7, 32, 48, 0.10);
    transform: translateY(-2px);
}

.contact-info-box h3,
.contact-form-box h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 26px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(12, 31, 46, 0.08);
}

.contact-info-item:last-child,
.contact-info-item-last {
    border-bottom: none;
}

.contact-info-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.05);
}

.contact-info-item h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-info-item p {
    margin-bottom: 0;
    color: var(--text-body);
    line-height: 1.8;
}

.contact-link {
    color: var(--text-body);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-form {
    position: relative;
}

.contact-input {
    background: #f8fbfd;
    color: var(--text-dark);
    border-radius: 16px;
    border: 1px solid rgba(12, 31, 46, 0.08);
    padding: 16px 18px;
    font-size: 1rem;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: #7b8a97;
}

.contact-input:focus {
    background: #ffffff;
    color: var(--text-dark);
    border-color: rgba(30, 198, 198, 0.35);
    box-shadow: 0 0 0 4px rgba(30, 198, 198, 0.08) !important;
}

.contact-textarea {
    resize: none;
    min-height: 180px;
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 14px 28px rgba(11, 79, 138, 0.16);
    min-width: 170px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(11, 79, 138, 0.22);
}

.contact-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.7;
}

.form-message.success {
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.d-none {
    display: none !important;
}

.arabic-version .contact-info-box,
.arabic-version .contact-form-box {
    text-align: right;
}

/* ===============================
   12) FOOTER
=============================== */
.main-footer {
    background: linear-gradient(135deg, #0b4f8a, #083b66);
    color: #fff;
    padding-top: 90px;
    padding-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(88, 216, 216, 0.14), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.08), transparent 24%);
    pointer-events: none;
}

.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-brand h5 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 2;
    max-width: 360px;
}

.main-footer h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 22px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.86);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-inline-start: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.footer-contact-item i {
    color: #ffffff;
    margin-top: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

/* ===============================
   13) GENERIC CARD
=============================== */
.card {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===============================
   14) RESPONSIVE
=============================== */
@media (max-width: 1199px) {
    .card-top {
        left: 16px;
    }

    .card-bottom {
        right: 16px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .navbar-brand {
        max-width: 240px;
    }

    .brand-en {
        font-size: 1rem;
    }

    .brand-ar {
        font-size: 0.72rem;
    }

    .custom-navbar {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 14px 14px 6px;
        border-radius: 18px;
        background: rgba(6, 38, 63, 0.94);
        border: 1px solid rgba(255,255,255,0.08);
    }

    .nav-link {
        margin-inline: 0;
        padding-inline: 8px !important;
    }

    .hero-slider {
        min-height: 640px;
    }

    .hero-modern::after {
        height: 90px;
    }

    .hero-copy {
        max-width: 100%;
        padding-top: 54px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.65rem;
        max-width: 100%;
    }

    .hero-arabic-name {
        font-size: 1rem;
    }

    .hero-description,
    .arabic-version .hero-description {
        max-width: 100%;
        font-size: 1.02rem;
        margin-inline: auto;
    }

    .hero-actions,
    .arabic-version .hero-actions,
    .hero-trust-list {
        justify-content: center;
    }

    .hero-side-card,
    .premium-hero-card {
        display: none;
    }

    .arabic-version .hero-copy {
        text-align: center;
    }

    .arabic-version .hero-title {
        font-size: 2.45rem;
        max-width: 100%;
    }

    .about-clean-section,
    .services-section,
    .how-section,
    .faq-section,
    .contact-section {
        padding-top: var(--section-space-mobile);
        padding-bottom: var(--section-space-mobile);
    }

    .about-clean-section .about-dark-title {
        font-size: 1.95rem;
        max-width: 100%;
    }

    .about-clean-section .about-dark-text {
        max-width: 100%;
    }

    .about-clean-section .about-dark-image {
        height: 430px;
    }

    .about-clean-section .about-dark-card {
        width: 250px;
        max-width: calc(100% - 32px);
    }

    .main-footer {
        padding-top: 72px;
    }

    #about,
    #services,
    #how-it-works,
    #faq,
    #contact {
        scroll-margin-top: 90px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.65rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .hero-slider {
        min-height: 580px;
        height: 100vh;
    }

    .hero-modern::after {
        height: 72px;
    }

    .hero-copy {
        padding-top: 48px;
    }

    .hero-top-badges {
        justify-content: center;
        gap: 8px;
    }

    .hero-top-badge {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.16;
    }

    .arabic-version .hero-title {
        font-size: 1.95rem;
    }

    .hero-kicker,
    .hero-arabic-name {
        font-size: 0.94rem;
    }

    .hero-description,
    .arabic-version .hero-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .hero-btn-primary,
    .hero-btn-secondary,
    .about-btn-primary {
        min-width: 140px;
        min-height: 46px;
        font-size: 0.92rem;
    }

    .hero-trust-item {
        width: 100%;
        justify-content: center;
    }

    .about-clean-section .about-dark-title {
        font-size: 1.58rem;
    }

    .about-clean-section .about-dark-image {
        height: 340px;
        border-radius: 22px;
    }

    .premium-about-visual::before {
        display: none;
    }

    .about-clean-section .about-dark-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin-top: 14px;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .card-top,
    .card-bottom {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .premium-service-box,
    .how-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .service-icon {
        width: 62px;
        height: 62px;
        font-size: 22px;
        border-radius: 18px;
    }

    .premium-service-box h4,
    .how-card h4 {
        font-size: 1.06rem;
        max-width: 100%;
    }

    .service-number {
        width: 40px;
        height: 40px;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    .services-note {
        padding: 24px 18px;
    }

    .how-number {
        width: 60px;
        height: 60px;
        font-size: 1.05rem;
    }

    .accordion-button {
        font-size: 0.95rem;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 18px;
    }

    .contact-btn {
        width: 100%;
    }

    .footer-brand h3 {
        font-size: 1.35rem;
    }

    .main-footer {
        padding-top: 55px;
    }

    .footer-bottom {
        margin-top: 35px;
    }
}
/* ===============================
   ABOUT PAGE
=============================== */

/* ===============================
   ABOUT PAGE
=============================== */

.about-page-hero {
    position: relative;
    padding: 170px 0 120px;
    background:
        linear-gradient(135deg, rgba(11, 79, 138, 0.92), rgba(30, 198, 198, 0.88)),
        url('../images/heroabout.jpg') center/cover no-repeat;
    overflow: hidden;
}

.about-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 38, 63, 0.15), rgba(6, 38, 63, 0.28));
}

.about-page-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.about-page-title {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 8px 30px rgba(0,0,0,0.16);
}

.about-page-subtitle {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    font-size: 1.08rem;
    line-height: 2;
}

.about-page-story {
    padding: 100px 0;
    background: #f8fbfd;
}

.about-page-content {
    max-width: 620px;
}

.about-section-title {
    color: var(--text-dark);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.about-section-text {
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.95;
    margin-bottom: 0;
}

.about-page-points {
    display: grid;
    gap: 14px;
}

.about-page-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(12,31,46,0.08);
    box-shadow: 0 10px 24px rgba(7,32,48,0.05);
}

.about-page-point i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.about-page-point span {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.7;
}

.about-page-image-wrap {
    position: relative;
    padding-top: 30px;
    padding-bottom: 20px;
}

.about-page-image-wrap::before {
    content: "";
    position: absolute;
    inset: 24px -18px -18px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(30,198,198,0.08), rgba(11,79,138,0.08));
    z-index: 0;
}

.about-page-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 54px rgba(7,32,48,0.12);
    display: block;
}

.about-page-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 285px;
    max-width: calc(100% - 34px);
    padding: 15px 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.06);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(7,32,48,0.10);
    backdrop-filter: blur(8px);
}

.about-page-floating-card.card-top {
    top: 20px;
    left: -10px;
}

.about-page-floating-card.card-bottom {
    bottom: 24px;
    right: -10px;
}

.floating-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(30,198,198,0.18);
}

.about-page-floating-card h5 {
    color: var(--text-dark);
    font-size: 0.96rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.45;
}

.about-page-floating-card p {
    color: var(--text-body);
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

.about-page-core {
    padding: 100px 0;
    background: #ffffff;
}

.about-page-heading {
    max-width: 860px;
}

.about-core-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.08);
    border-radius: 24px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: 0.35s ease;
}

.about-core-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(7,32,48,0.10);
}

.about-core-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 22px;
}

.about-core-card h4 {
    color: var(--text-dark);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.about-core-card p {
    color: var(--text-body);
    line-height: 1.95;
    margin-bottom: 0;
}

.about-page-importance {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
}

.about-importance-box {
    max-width: 620px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-stat-card {
    background: #ffffff;
    border: 1px solid rgba(12,31,46,0.08);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: 0.35s ease;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(7,32,48,0.10);
}

.about-stat-card h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-stat-card p {
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.8;
    font-weight: 600;
}

.about-page-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b4f8a, #1ec6c6);
    color: #ffffff;
}

.about-page-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
}

.about-page-cta h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0;
}

.about-page-cta p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    line-height: 1.95;
    font-size: 1.02rem;
}

.about-page-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.about-cta-btn-primary,
.about-cta-btn-secondary {
    min-width: 180px;
    min-height: 52px;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
}

.about-cta-btn-secondary {
    border: 1px solid rgba(255,255,255,0.75);
    color: #ffffff;
    background: rgba(255,255,255,0.04);
}

.about-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
}

/* Arabic */
.arabic-version .about-page-title {
    line-height: 1.28;
}

.arabic-version .about-page-content,
.arabic-version .about-importance-box {
    margin-inline-start: auto;
}

.arabic-version .about-page-point,
.arabic-version .about-page-floating-card,
.arabic-version .about-core-card,
.arabic-version .about-page-story,
.arabic-version .about-page-importance {
    text-align: right;
}

/* Responsive */
@media (max-width: 1199px) {
    .about-page-floating-card.card-top {
        left: 16px;
    }

    .about-page-floating-card.card-bottom {
        right: 16px;
    }
}

@media (max-width: 992px) {
    .about-page-hero {
        padding: 150px 0 100px;
    }

    .about-page-title {
        font-size: 2.55rem;
    }

    .about-page-subtitle {
        font-size: 1rem;
    }

    .about-page-story,
    .about-page-core,
    .about-page-importance,
    .about-page-cta {
        padding: 80px 0;
    }

    .about-page-image {
        height: 430px;
    }

    .about-page-image-wrap {
        margin-bottom: 24px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-page-hero {
        padding: 135px 0 85px;
    }

    .about-page-title {
        font-size: 1.95rem;
    }

    .about-page-subtitle {
        font-size: 0.95rem;
        line-height: 1.85;
    }

    .about-section-title {
        font-size: 1.65rem;
    }

    .about-page-image {
        height: 340px;
        border-radius: 22px;
    }

    .about-page-image-wrap::before {
        display: none;
    }

    .about-page-floating-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 14px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-page-cta h2 {
        font-size: 1.75rem;
    }

    .about-cta-btn-primary,
    .about-cta-btn-secondary {
        width: 100%;
    }
}
/* ===============================
   SERVICES PAGE
=============================== */

.services-page-hero {
    position: relative;
    padding: 170px 0 120px;
    background:
        linear-gradient(135deg, rgba(11,79,138,0.92), rgba(30,198,198,0.88)),
        url('../images/herokhadmat.jpg') center/cover no-repeat;
    overflow: hidden;
}

.services-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,38,63,0.16), rgba(6,38,63,0.30));
}

.services-page-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.services-page-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 8px 30px rgba(0,0,0,0.16);
}

.services-page-subtitle {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    font-size: 1.08rem;
    line-height: 2;
}

.services-page-hero-actions,
.services-page-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.services-page-btn-primary,
.services-page-btn-secondary {
    min-width: 180px;
    min-height: 52px;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
}

.services-page-btn-secondary {
    border: 1px solid rgba(255,255,255,0.75);
    color: #ffffff;
    background: rgba(255,255,255,0.04);
}

.services-page-btn-secondary:hover {
    background: rgba(255,255,255,0.10);
    color: #ffffff;
}

.services-page-intro {
    padding: 100px 0;
    background: #f8fbfd;
}

.services-page-intro-content {
    max-width: 620px;
}

.services-section-title {
    color: var(--text-dark);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.services-section-text {
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.95;
    margin-bottom: 0;
}

.services-intro-points {
    display: grid;
    gap: 14px;
}

.services-intro-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(12,31,46,0.08);
    box-shadow: 0 10px 24px rgba(7,32,48,0.05);
}

.services-intro-point i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.services-intro-point span {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.7;
}

.services-intro-visual {
    position: relative;
    padding-top: 30px;
    padding-bottom: 20px;
}

.services-intro-visual::before {
    content: "";
    position: absolute;
    inset: 24px -18px -18px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(30,198,198,0.08), rgba(11,79,138,0.08));
    z-index: 0;
}

.services-intro-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 54px rgba(7,32,48,0.12);
    display: block;
}

.services-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 285px;
    max-width: calc(100% - 34px);
    padding: 15px 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.06);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(7,32,48,0.10);
    backdrop-filter: blur(8px);
}

.services-floating-card.card-top {
    top: 20px;
    left: -10px;
}

.services-floating-card.card-bottom {
    bottom: 24px;
    right: -10px;
}

.services-floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(30,198,198,0.18);
}

.services-floating-card h5 {
    color: var(--text-dark);
    font-size: 0.96rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.45;
}

.services-floating-card p {
    color: var(--text-body);
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

.services-details-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-details-heading {
    max-width: 860px;
}

.service-detail-block {
    padding: 46px 0;
    border-bottom: 1px solid rgba(12,31,46,0.08);
}

.service-detail-block:last-child {
    border-bottom: none;
}

.service-detail-block.reverse .row {
    flex-direction: row-reverse;
}

.service-detail-image-wrap {
    position: relative;
}

.service-detail-image-wrap::before {
    content: "";
    position: absolute;
    inset: 14px -14px -14px 14px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(30,198,198,0.08), rgba(11,79,138,0.08));
    z-index: 0;
}

.service-detail-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(7,32,48,0.10);
    display: block;
}

.service-detail-content {
    position: relative;
}

.service-detail-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(16,42,67,0.04);
    border: 1px solid rgba(16,42,67,0.08);
    color: rgba(16,42,67,0.48);
    font-weight: 800;
    margin-bottom: 18px;
}

.service-detail-content h3 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-body);
    line-height: 1.95;
    margin-bottom: 22px;
    font-size: 1rem;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.service-feature-list li {
    position: relative;
    padding-inline-start: 30px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.8;
}

.service-feature-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset-inline-start: 0;
    top: 2px;
    color: var(--accent);
}

.services-process-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
}

.process-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.08);
    border-radius: 24px;
    padding: 30px 24px;
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: 0.35s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(7,32,48,0.10);
}

.process-number {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.process-card h4 {
    color: var(--text-dark);
    font-size: 1.16rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.65;
}

.process-card p {
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 0;
}

.services-why-section {
    padding: 100px 0;
    background: #ffffff;
}

.why-choose-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.08);
    border-radius: 24px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: 0.35s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(7,32,48,0.10);
}

.why-choose-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 22px;
}

.why-choose-card h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.why-choose-card p {
    color: var(--text-body);
    line-height: 1.95;
    margin-bottom: 0;
}

.services-page-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b4f8a, #1ec6c6);
    color: #ffffff;
}

.services-page-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
}

.services-page-cta h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0;
}

.services-page-cta p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    line-height: 1.95;
    font-size: 1.02rem;
}

/* Arabic */
.arabic-version .services-page-title {
    line-height: 1.28;
}

.arabic-version .services-page-intro-content {
    margin-inline-start: auto;
}

.arabic-version .services-page-story,
.arabic-version .service-detail-content,
.arabic-version .services-intro-point,
.arabic-version .services-floating-card,
.arabic-version .process-card,
.arabic-version .why-choose-card {
    text-align: right;
}

/* Responsive */
@media (max-width: 1199px) {
    .services-floating-card.card-top {
        left: 16px;
    }

    .services-floating-card.card-bottom {
        right: 16px;
    }
}

@media (max-width: 992px) {
    .services-page-hero {
        padding: 150px 0 100px;
    }

    .services-page-title {
        font-size: 2.55rem;
    }

    .services-page-subtitle {
        font-size: 1rem;
    }

    .services-page-intro,
    .services-details-section,
    .services-process-section,
    .services-why-section,
    .services-page-cta {
        padding: 80px 0;
    }

    .services-intro-image {
        height: 430px;
    }

    .service-detail-block.reverse .row {
        flex-direction: row;
    }

    .service-detail-image {
        height: 340px;
    }

    .services-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .services-page-hero {
        padding: 135px 0 85px;
    }

    .services-page-title {
        font-size: 1.95rem;
    }

    .services-page-subtitle {
        font-size: 0.95rem;
        line-height: 1.85;
    }

    .services-section-title {
        font-size: 1.65rem;
    }

    .services-intro-image {
        height: 340px;
        border-radius: 22px;
    }

    .services-intro-visual::before,
    .service-detail-image-wrap::before {
        display: none;
    }

    .services-floating-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 14px;
    }

    .service-detail-image {
        height: 260px;
        border-radius: 20px;
    }

    .service-detail-content h3 {
        font-size: 1.55rem;
    }

    .services-page-cta h2 {
        font-size: 1.75rem;
    }

    .services-page-btn-primary,
    .services-page-btn-secondary {
        width: 100%;
    }
}
/* ===============================
   HOW IT WORKS PAGE
=============================== */
/* ===============================
   HOW IT WORKS PAGE
=============================== */

.how-page-hero {
    position: relative;
    padding: 180px 0 130px;
    background:
        linear-gradient(115deg, rgba(4, 31, 52, 0.88), rgba(11, 79, 138, 0.82) 52%, rgba(30, 198, 198, 0.72)),
        url('../images/workhero.jpg') center/cover no-repeat;
    overflow: hidden;
}

.how-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.06), transparent 30%);
    pointer-events: none;
}

.how-page-hero::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -220px;
    right: -220px;
    filter: blur(10px);
}

.how-page-hero::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -220px;
    right: -220px;
}

.how-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,38,63,0.16), rgba(6,38,63,0.30));
}

.how-page-badge,
.how-page-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.how-page-title {
    font-size: 3.35rem;
    font-weight: 800;
    line-height: 1.22;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 34px rgba(0,0,0,0.20);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.how-page-subtitle {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.90);
    font-size: 1.05rem;
    line-height: 2.05;
    text-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.how-page-hero-actions,
.how-page-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.how-page-btn-primary,
.how-page-btn-secondary {
    min-width: 190px;
    min-height: 54px;
    border-radius: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    transition: 0.35s ease;
}

.how-page-btn-primary {
    box-shadow: 0 16px 34px rgba(30,198,198,0.20);
}

.how-page-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(30,198,198,0.24);
}

.how-page-btn-secondary {
    border: 1px solid rgba(255,255,255,0.75);
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.how-page-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transform: translateY(-3px);
}

.how-page-intro {
    padding: 100px 0;
    background: #f8fbfd;
}

.how-page-intro-content {
    max-width: 620px;
}

.how-section-title {
    color: var(--text-dark);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.how-section-text {
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.95;
    margin-bottom: 0;
}

.how-intro-points {
    display: grid;
    gap: 14px;
}

.how-intro-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border-radius: 18px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(12,31,46,0.07);
    box-shadow: 0 12px 28px rgba(7,32,48,0.05);
    transition: 0.35s ease;
}

.how-intro-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(7,32,48,0.08);
}

.how-intro-point i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.how-intro-point span {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.7;
}

.how-intro-visual {
    position: relative;
    padding-top: 30px;
    padding-bottom: 20px;
}

.how-intro-visual::before {
    content: "";
    position: absolute;
    inset: 24px -18px -18px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(30,198,198,0.08), rgba(11,79,138,0.08));
    z-index: 0;
}

.how-intro-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 54px rgba(7,32,48,0.12);
    display: block;
}

.how-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 285px;
    max-width: calc(100% - 34px);
    padding: 15px 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.06);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(7,32,48,0.10);
    backdrop-filter: blur(8px);
}

.how-floating-card.card-top {
    top: 20px;
    left: -10px;
}

.how-floating-card.card-bottom {
    bottom: 24px;
    right: -10px;
}

.how-floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(30,198,198,0.18);
}

.how-floating-card h5 {
    color: var(--text-dark);
    font-size: 0.96rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.45;
}

.how-floating-card p {
    color: var(--text-body);
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ===============================
   HOW TIMELINE - CLEAN FIX
=============================== */

.how-page-timeline-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #f8fbfd);
    overflow: hidden;
}

.how-page-timeline-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(30,198,198,0.06);
    border-radius: 50%;
    top: 120px;
    left: -120px;
    z-index: 0;
}

.how-page-heading {
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.how-timeline {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0 10px;
}

.how-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.how-step {
    position: relative;
    width: calc(50% - 34px);
    margin-bottom: 42px;
}

.how-step:nth-child(odd) {
    margin-right: auto;
    text-align: right;
}

.how-step:nth-child(even) {
    margin-left: auto;
    text-align: left;
}

.how-number {
    position: absolute;
    top: 24px;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.08rem;
    z-index: 3;
    box-shadow: 0 14px 30px rgba(11,79,138,0.22);
}

.how-step:nth-child(odd) .how-number {
    right: -66px;
}

.how-step:nth-child(even) .how-number {
    left: -66px;
}

.how-content {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 26px;
    padding: 30px 26px;
    box-shadow: 0 16px 38px rgba(7,32,48,0.06);
    transition: 0.35s ease;
    overflow: hidden;
    position: relative;
}

.how-content::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0;
    transition: 0.35s ease;
}

.how-content:hover::before {
    opacity: 1;
}

.how-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(7,32,48,0.10);
}

.how-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.how-content h3 {
    color: var(--text-dark);
    font-size: 1.34rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.55;
}

.how-content p {
    color: var(--text-body);
    line-height: 1.95;
    margin-bottom: 0;
    font-size: 1rem;
}

/* ===============================
   RTL DESKTOP FIX
=============================== */

.arabic-version .how-step:nth-child(odd) {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.arabic-version .how-step:nth-child(even) {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
}

.arabic-version .how-step:nth-child(odd) .how-number {
    left: -66px;
    right: auto;
}

.arabic-version .how-step:nth-child(even) .how-number {
    right: -66px;
    left: auto;
}

.arabic-version .how-content,
.arabic-version .how-support-card,
.arabic-version .how-intro-point,
.arabic-version .how-floating-card {
    text-align: right;
}

/* ===============================
   TABLET
=============================== */

@media (max-width: 992px) {
    .how-page-timeline-section {
        padding: 80px 0;
    }

    .how-timeline::before,
    .arabic-version .how-timeline::before {
        left: 30px;
        transform: none;
    }

    .how-step,
    .how-step:nth-child(odd),
    .how-step:nth-child(even),
    .arabic-version .how-step:nth-child(odd),
    .arabic-version .how-step:nth-child(even) {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        text-align: right;
        padding-left: 92px;
        padding-right: 0;
    }

    .how-number,
    .how-step:nth-child(odd) .how-number,
    .how-step:nth-child(even) .how-number,
    .arabic-version .how-step:nth-child(odd) .how-number,
    .arabic-version .how-step:nth-child(even) .how-number {
        left: 30px;
        right: auto;
        top: 18px;
        transform: translateX(-50%);
    }
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 576px) {
    .how-timeline::before,
    .arabic-version .how-timeline::before {
        left: 24px;
    }

    .how-step,
    .how-step:nth-child(odd),
    .how-step:nth-child(even),
    .arabic-version .how-step:nth-child(odd),
    .arabic-version .how-step:nth-child(even) {
        padding-left: 68px;
        padding-right: 0;
    }

    .how-number,
    .how-step:nth-child(odd) .how-number,
    .how-step:nth-child(even) .how-number,
    .arabic-version .how-step:nth-child(odd) .how-number,
    .arabic-version .how-step:nth-child(even) .how-number {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 0.96rem;
        left: 24px;
        top: 18px;
        right: auto;
    }

    .how-content {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .how-content h3 {
        font-size: 1.15rem;
    }
}
.how-support-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 26px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(7,32,48,0.06);
    height: 100%;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.how-support-card::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0;
    transition: 0.35s ease;
}

.how-support-card:hover::before {
    opacity: 1;
}

.how-support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(7,32,48,0.10);
}
/* ===============================
   HOW SUPPORT SECTION - PREMIUM
=============================== */

.how-support-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(30,198,198,0.06), transparent 28%),
        linear-gradient(to bottom, #f8fbfd, #ffffff);
    position: relative;
    overflow: hidden;
}

.how-support-section::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(11,79,138,0.05);
    bottom: -120px;
    right: -80px;
    filter: blur(8px);
    pointer-events: none;
}

.how-support-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.06);
    border-radius: 28px;
    padding: 38px 30px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(7,32,48,0.06);
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.how-support-card::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0;
    transition: 0.35s ease;
}

.how-support-card:hover::before {
    opacity: 1;
}

.how-support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 54px rgba(7,32,48,0.11);
    border-color: rgba(30,198,198,0.18);
}

.how-support-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(30,198,198,0.16), rgba(11,79,138,0.08));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    box-shadow: 0 12px 24px rgba(30,198,198,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.how-support-card:hover .how-support-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 16px 30px rgba(30,198,198,0.16);
}

.how-support-card h4 {
    color: var(--text-dark);
    font-size: 1.42rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.5;
}

.how-support-card p {
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 0;
    font-size: 1rem;
}

/* ===============================
   HOW CTA - PREMIUM
=============================== */

.how-page-cta {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(4,31,52,0.96), rgba(11,79,138,0.92) 52%, rgba(30,198,198,0.86));
    color: #ffffff;
}

.how-page-cta::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -180px;
    left: -120px;
    filter: blur(4px);
    pointer-events: none;
}

.how-page-cta::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -120px;
    right: -80px;
    pointer-events: none;
}

.how-page-cta .container {
    position: relative;
    z-index: 2;
}

.how-page-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.how-page-cta h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
    text-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.how-page-cta p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
    line-height: 2;
    font-size: 1.04rem;
}

.how-page-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.how-page-btn-primary,
.how-page-btn-secondary {
    min-width: 190px;
    min-height: 54px;
    border-radius: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    transition: all 0.35s ease;
}

.how-page-btn-primary {
    box-shadow: 0 16px 34px rgba(30,198,198,0.20);
}

.how-page-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(30,198,198,0.26);
}

.how-page-btn-secondary {
    border: 1px solid rgba(255,255,255,0.72);
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.how-page-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transform: translateY(-4px);
}

/* ===============================
   SOFT FADE ANIMATION
=============================== */

.how-support-card,
.how-page-cta .how-page-cta-badge,
.how-page-cta h2,
.how-page-cta p,
.how-page-cta-actions {
    animation: howFadeUp 0.8s ease both;
}

.how-support-card:nth-child(1) { animation-delay: 0.05s; }
.how-support-card:nth-child(2) { animation-delay: 0.12s; }
.how-support-card:nth-child(3) { animation-delay: 0.18s; }

@keyframes howFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE POLISH
=============================== */

@media (max-width: 992px) {
    .how-support-section,
    .how-page-cta {
        padding: 85px 0;
    }

    .how-page-cta h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 576px) {
    .how-support-card {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .how-support-icon {
        width: 68px;
        height: 68px;
        border-radius: 20px;
        font-size: 24px;
    }

    .how-page-cta h2 {
        font-size: 1.75rem;
        line-height: 1.4;
    }

    .how-page-cta p {
        font-size: 0.96rem;
        line-height: 1.9;
    }

    .how-page-btn-primary,
    .how-page-btn-secondary {
        width: 100%;
    }
}
.custom-navbar {
    background: rgba(6, 38, 63, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s ease;
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.navbar-brand {
    max-width: 360px;
    line-height: 1.1;
}

.brand-en {
    display: block;
    font-size: 1.32rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 4px;
    color: #fff;
}

.brand-ar {
    display: block;
    font-size: 0.8rem;
    line-height: 1.35;
    color: rgba(255,255,255,0.76);
}

.nav-link {
    color: rgba(255,255,255,0.92) !important;
    font-weight: 700;
    margin-inline: 10px;
    position: relative;
    transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: translateX(-50%);
    transition: 0.3s ease;
    border-radius: 999px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.lang-btn {
    border-radius: 12px;
    padding: 8px 14px;
    font-weight: 700;
    border-color: rgba(255,255,255,0.75);
    transition: 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-1px);
}
/* ===============================
   ENVIRONMENTAL IMPACT PAGE
=============================== */

.impact-page-hero {
    position: relative;
    padding: 175px 0 125px;
    background:
        linear-gradient(120deg, rgba(4,31,52,0.90), rgba(11,79,138,0.84) 52%, rgba(30,198,198,0.76)),
        url('../images/tater.jpg') center/cover no-repeat;
    overflow: hidden;
}

.impact-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 28%);
    pointer-events: none;
}

.impact-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,38,63,0.18), rgba(6,38,63,0.30));
}

.impact-page-badge,
.impact-page-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.impact-page-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.22;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 34px rgba(0,0,0,0.18);
}

.impact-page-subtitle {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    font-size: 1.06rem;
    line-height: 2.05;
}

.impact-page-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.impact-btn-primary,
.impact-btn-secondary {
    min-width: 190px;
    min-height: 54px;
    border-radius: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    transition: all 0.35s ease;
}

.impact-btn-primary {
    box-shadow: 0 16px 34px rgba(30,198,198,0.20);
}

.impact-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(30,198,198,0.26);
}

.impact-btn-secondary {
    border: 1px solid rgba(255,255,255,0.72);
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.impact-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transform: translateY(-4px);
}

.impact-intro-section {
    padding: 100px 0;
    background: #f8fbfd;
}

.impact-intro-content {
    max-width: 620px;
}

.impact-section-title {
    color: var(--text-dark);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.impact-section-text {
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.95;
    margin-bottom: 0;
}

.impact-points {
    display: grid;
    gap: 14px;
}

.impact-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border-radius: 18px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(12,31,46,0.07);
    box-shadow: 0 12px 28px rgba(7,32,48,0.05);
    transition: 0.35s ease;
}

.impact-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(7,32,48,0.08);
}

.impact-point i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.impact-point span {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.7;
}

.impact-intro-visual {
    position: relative;
    padding-top: 30px;
    padding-bottom: 20px;
}

.impact-intro-visual::before {
    content: "";
    position: absolute;
    inset: 24px -18px -18px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(30,198,198,0.08), rgba(11,79,138,0.08));
    z-index: 0;
}

.impact-intro-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 54px rgba(7,32,48,0.12);
    display: block;
}

.impact-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 285px;
    max-width: calc(100% - 34px);
    padding: 15px 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.06);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(7,32,48,0.10);
    backdrop-filter: blur(8px);
}

.impact-floating-card.card-top {
    top: 20px;
    left: -10px;
}

.impact-floating-card.card-bottom {
    bottom: 24px;
    right: -10px;
}

.impact-floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(30,198,198,0.18);
}

.impact-floating-card h5 {
    color: var(--text-dark);
    font-size: 0.96rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.45;
}

.impact-floating-card p {
    color: var(--text-body);
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

.impact-details-section {
    padding: 100px 0;
    background: #ffffff;
}

.impact-heading {
    max-width: 860px;
}

.impact-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 26px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(7,32,48,0.06);
    height: 100%;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0;
    transition: 0.35s ease;
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(7,32,48,0.10);
}

.impact-card-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(30,198,198,0.16), rgba(11,79,138,0.08));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 22px;
    box-shadow: 0 12px 24px rgba(30,198,198,0.12);
}

.impact-card h4 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.impact-card p {
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 0;
}

.impact-stats-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
}

.impact-stat-box {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 24px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(7,32,48,0.06);
    transition: 0.35s ease;
}

.impact-stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(7,32,48,0.10);
}

.impact-stat-box h3 {
    color: var(--primary);
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.impact-stat-box p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 600;
}

.impact-page-cta {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(4,31,52,0.96), rgba(11,79,138,0.92) 52%, rgba(30,198,198,0.86));
    color: #ffffff;
}

.impact-page-cta::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -180px;
    left: -120px;
}

.impact-page-cta .container {
    position: relative;
    z-index: 2;
}

.impact-page-cta h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
    text-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.impact-page-cta p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
    line-height: 2;
    font-size: 1.04rem;
}

.arabic-version .impact-page-title {
    line-height: 1.35;
}

.arabic-version .impact-page-subtitle,
.arabic-version .impact-intro-content,
.arabic-version .impact-point,
.arabic-version .impact-floating-card {
    text-align: right;
}

@media (max-width: 992px) {
    .impact-page-hero,
    .impact-intro-section,
    .impact-details-section,
    .impact-stats-section,
    .impact-page-cta {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .impact-page-title {
        font-size: 2.45rem;
    }

    .impact-intro-image {
        height: 430px;
    }

    .impact-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .impact-page-hero {
        padding-top: 135px;
        padding-bottom: 88px;
    }

    .impact-page-title {
        font-size: 1.95rem;
    }

    .impact-page-subtitle {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .impact-intro-image {
        height: 340px;
        border-radius: 22px;
    }

    .impact-intro-visual::before {
        display: none;
    }

    .impact-floating-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 14px;
    }

    .impact-page-title,
    .impact-section-title,
    .impact-page-cta h2 {
        line-height: 1.4;
    }

    .impact-btn-primary,
    .impact-btn-secondary {
        width: 100%;
    }
}
/* ===============================
   WHY LIBYA NEEDS PRFS PAGE
=============================== */

.libya-page-hero {
    position: relative;
    padding: 175px 0 125px;
    background:
        linear-gradient(120deg, rgba(4,31,52,0.92), rgba(11,79,138,0.84) 52%, rgba(30,198,198,0.76)),
        url('../images/libya.jpg') center/cover no-repeat;
    overflow: hidden;
}

.libya-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 28%);
    pointer-events: none;
}

.libya-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,38,63,0.18), rgba(6,38,63,0.30));
}

.libya-page-badge,
.libya-page-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.libya-page-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.22;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 34px rgba(0,0,0,0.18);
}

.libya-page-subtitle {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    font-size: 1.06rem;
    line-height: 2.05;
}

.libya-page-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.libya-btn-primary,
.libya-btn-secondary {
    min-width: 190px;
    min-height: 54px;
    border-radius: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    transition: all 0.35s ease;
}

.libya-btn-primary {
    box-shadow: 0 16px 34px rgba(30,198,198,0.20);
}

.libya-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(30,198,198,0.26);
}

.libya-btn-secondary {
    border: 1px solid rgba(255,255,255,0.72);
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.libya-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transform: translateY(-4px);
}

.libya-intro-section {
    padding: 100px 0;
    background: #f8fbfd;
}

.libya-intro-content {
    max-width: 620px;
}

.libya-section-title {
    color: var(--text-dark);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.libya-section-text {
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.95;
    margin-bottom: 0;
}

.libya-points {
    display: grid;
    gap: 14px;
}

.libya-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border-radius: 18px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(12,31,46,0.07);
    box-shadow: 0 12px 28px rgba(7,32,48,0.05);
    transition: 0.35s ease;
}

.libya-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(7,32,48,0.08);
}

.libya-point i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-soft), #f2ffff);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.libya-point span {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.7;
}

.libya-intro-visual {
    position: relative;
    padding-top: 30px;
    padding-bottom: 20px;
}

.libya-intro-visual::before {
    content: "";
    position: absolute;
    inset: 24px -18px -18px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(30,198,198,0.08), rgba(11,79,138,0.08));
    z-index: 0;
}

.libya-intro-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 54px rgba(7,32,48,0.12);
    display: block;
}

.libya-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 285px;
    max-width: calc(100% - 34px);
    padding: 15px 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.06);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(7,32,48,0.10);
    backdrop-filter: blur(8px);
}

.libya-floating-card.card-top {
    top: 20px;
    left: -10px;
}

.libya-floating-card.card-bottom {
    bottom: 24px;
    right: -10px;
}

.libya-floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(30,198,198,0.18);
}

.libya-floating-card h5 {
    color: var(--text-dark);
    font-size: 0.96rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.45;
}

.libya-floating-card p {
    color: var(--text-body);
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

.libya-details-section {
    padding: 100px 0;
    background: #ffffff;
}

.libya-heading {
    max-width: 860px;
}

.libya-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 26px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(7,32,48,0.06);
    height: 100%;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.libya-card::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0;
    transition: 0.35s ease;
}

.libya-card:hover::before {
    opacity: 1;
}

.libya-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(7,32,48,0.10);
}

.libya-card-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(30,198,198,0.16), rgba(11,79,138,0.08));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 22px;
    box-shadow: 0 12px 24px rgba(30,198,198,0.12);
}

.libya-card h4 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.libya-card p {
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 0;
}

.libya-opportunity-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
}

.libya-opportunity-box {
    max-width: 620px;
}

.libya-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.libya-stat-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 24px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(7,32,48,0.06);
    transition: 0.35s ease;
}

.libya-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(7,32,48,0.10);
}

.libya-stat-card h3 {
    color: var(--primary);
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.libya-stat-card p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 600;
}

.libya-page-cta {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(4,31,52,0.96), rgba(11,79,138,0.92) 52%, rgba(30,198,198,0.86));
    color: #ffffff;
}

.libya-page-cta::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -180px;
    left: -120px;
}

.libya-page-cta .container {
    position: relative;
    z-index: 2;
}

.libya-page-cta h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
    text-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.libya-page-cta p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
    line-height: 2;
    font-size: 1.04rem;
}

.arabic-version .libya-page-title {
    line-height: 1.35;
}

.arabic-version .libya-page-subtitle,
.arabic-version .libya-intro-content,
.arabic-version .libya-point,
.arabic-version .libya-floating-card {
    text-align: right;
}

@media (max-width: 992px) {
    .libya-page-hero,
    .libya-intro-section,
    .libya-details-section,
    .libya-opportunity-section,
    .libya-page-cta {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .libya-page-title {
        font-size: 2.45rem;
    }

    .libya-intro-image {
        height: 430px;
    }

    .libya-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .libya-page-hero {
        padding-top: 135px;
        padding-bottom: 88px;
    }

    .libya-page-title {
        font-size: 1.95rem;
    }

    .libya-page-subtitle {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .libya-intro-image {
        height: 340px;
        border-radius: 22px;
    }

    .libya-intro-visual::before {
        display: none;
    }

    .libya-floating-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 14px;
    }

    .libya-stats-grid {
        grid-template-columns: 1fr;
    }

    .libya-page-title,
    .libya-section-title,
    .libya-page-cta h2 {
        line-height: 1.4;
    }

    .libya-btn-primary,
    .libya-btn-secondary {
        width: 100%;
    }
}
/* =========================================================
   HERO + HOW IT WORKS - FINAL GLOBAL OVERRIDE
========================================================= */

/* ===============================
   HERO
=============================== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    min-height: 780px;
    overflow: hidden;
    background: #031f32;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(100deg, rgba(4, 24, 39, 0.92) 0%, rgba(5, 31, 50, 0.72) 46%, rgba(6, 38, 63, 0.84) 100%),
        linear-gradient(to bottom, rgba(6, 38, 63, 0.10), rgba(6, 38, 63, 0.84));
}

.hero-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 22%, rgba(30, 198, 198, 0.14), transparent 30%),
        radial-gradient(circle at 80% 18%, rgba(88, 216, 216, 0.10), transparent 24%);
}

.hero-modern::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(3,31,50,0) 0%,
        rgba(3,31,50,0.95) 100%
    );
}
.hero-shell {
    position: relative;
    z-index: 3;
}

.hero-main-row {
    min-height: 100vh;
    padding-top: 116px;
    padding-bottom: 46px;
    align-items: center !important;
}

.hero-copy {
    max-width: 700px;
    color: #fff;
}

.hero-top-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.96rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.84);
}

.hero-title {
    margin-bottom: 14px;
    max-width: 720px;
    font-size: 3rem;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #ffffff;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-arabic-name {
    margin-bottom: 14px;
    font-size: 0.98rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.90);
}

.hero-description {
    margin-bottom: 24px;
    max-width: 620px;
    font-size: 1.02rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-btn-primary,
.hero-btn-secondary {
    min-width: 176px;
    min-height: 52px;
    border-radius: 14px;
    padding: 12px 22px;
    font-size: 0.96rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #07263a;
    border: none;
    box-shadow: 0 18px 34px rgba(30, 198, 198, 0.20);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #18bcbc, #46cfcf);
    color: #07263a;
    transform: translateY(-3px);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #ffffff;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.88rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.hero-trust-item i {
    color: #98ffff;
    font-size: 0.94rem;
}

.hero-side-card {
    position: relative;
    max-width: 340px;
    margin-inline-start: auto;
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(8, 31, 49, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.hero-side-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    pointer-events: none;
}

.hero-side-mini-badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(30, 198, 198, 0.14);
    border: 1px solid rgba(127, 241, 241, 0.20);
    color: #b4ffff;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-side-header h4 {
    color: #ffffff;
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 0;
}

.hero-side-line {
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    margin: 18px 0;
}

.hero-side-item {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-side-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.hero-side-label {
    display: inline-block;
    font-size: 0.86rem;
    font-weight: 800;
    color: #95ffff;
    margin-bottom: 8px;
}

.hero-side-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
    font-size: 0.92rem;
}

.hero-dots {
    position: absolute;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.52);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.15);
}

/* Arabic Hero */
.arabic-version .hero-copy {
    text-align: right;
    margin-inline-start: auto;
}

.arabic-version .hero-top-badges,
.arabic-version .hero-actions,
.arabic-version .hero-trust-list {
    justify-content: flex-start;
}

.arabic-version .hero-title {
    font-size: 2.7rem;
    line-height: 1.22;
    max-width: 690px;
}

.arabic-version .hero-description {
    max-width: 620px;
    font-size: 1rem;
    line-height: 2;
}

.arabic-version .hero-side-card {
    text-align: right;
}
/* ===============================
   NAVBAR BRAND FINAL PREMIUM
=============================== */

/* اتجاه كل لغة بروحه */
html[dir="rtl"] .navbar {
    direction: rtl;
}

html[dir="ltr"] .navbar {
    direction: ltr;
}

/* إزالة الفراغات من الحاوية */
.navbar .container,
.custom-navbar .container {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* إزالة فراغات النافبار نفسها */
.navbar,
.custom-navbar {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* البراند */
.custom-brand,
.navbar-brand.custom-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    padding: 0 !important;
    max-width: max-content;
}

/* العربي: اللوجو أقصى اليمين */
html[dir="rtl"] .custom-brand,
html[dir="rtl"] .navbar-brand.custom-brand {
    flex-direction: row;
    margin-right: 0 !important;
    margin-left: auto !important;
}

/* الإنجليزي: اللوجو أقصى اليسار */
html[dir="ltr"] .custom-brand,
html[dir="ltr"] .navbar-brand.custom-brand {
    flex-direction: row;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* مربع اللوجو */
.navbar-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    padding: 7px;
    border-radius: 16px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.14),
        rgba(255,255,255,0.05)
    );

    border: 1px solid rgba(255,255,255,0.16);

    box-shadow:
        0 12px 26px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: all 0.35s ease;
    flex-shrink: 0;
}

.navbar-brand:hover .navbar-logo {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 16px 30px rgba(0,0,0,0.26),
        inset 0 1px 0 rgba(255,255,255,0.10);
}

/* النص */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

html[dir="rtl"] .brand-text {
    text-align: right;
}

html[dir="ltr"] .brand-text {
    text-align: left;
}

.brand-en {
    font-size: 0.98rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
}

.brand-ar {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
}

/* القوائم */
.navbar-nav .nav-link {
    margin: 0 10px;
    font-weight: 700;
    white-space: nowrap;
}

/* العربي: القوائم تبعد عن البراند */
html[dir="rtl"] .navbar-nav {
    margin-right: 24px;
    margin-left: auto;
}

/* الإنجليزي: القوائم تبعد عن البراند */
html[dir="ltr"] .navbar-nav {
    margin-left: 24px;
    margin-right: auto;
}

/* لو عندك collapse */
.navbar-collapse {
    align-items: center;
}

/* موبايل */
@media (max-width: 992px) {
    .navbar-logo {
        width: 46px;
        height: 46px;
        padding: 6px;
        border-radius: 14px;
    }

    .brand-en {
        font-size: 0.86rem;
    }

    .brand-ar {
        font-size: 0.68rem;
    }

    .custom-brand,
    .navbar-brand.custom-brand {
        gap: 10px;
    }

    html[dir="rtl"] .navbar-nav,
    html[dir="ltr"] .navbar-nav {
        margin: 16px 0 0 0;
    }
}
/* ===============================
   HOW IT WORKS - FIXED CARD LAYOUT
=============================== */

.how-section {
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
}

.how-heading {
    max-width: 780px;
}

.how-section .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
}

.how-section .section-text {
    text-align: center;
    line-height: 2;
    max-width: 740px;
}

.how-card {
    position: relative;
    background: #ffffff;
    border-radius: 26px;
    padding: 34px 28px 28px;
    min-height: 220px;
    height: 100%;
    border: 1px solid rgba(12, 31, 46, 0.08);
    box-shadow: 0 12px 30px rgba(7, 32, 48, 0.06);
    transition: all 0.35s ease;
    overflow: hidden;
}

.how-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.how-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(7, 32, 48, 0.12);
}

/* الرقم في مكان ثابت */
.how-number {
    position: absolute;
    top: 24px;
    left: 26px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(30, 198, 198, 0.22);
    transition: all 0.35s ease;
    z-index: 2;
}

.how-card:hover .how-number {
    transform: scale(1.06);
}

/* العنوان ياخذ مسافة من الرقم */
.how-card h4 {
    font-size: 1.14rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.6;
    padding-left: 76px;
    min-height: 54px;
    display: flex;
    align-items: center;
}

/* النص */
.how-card p {
    font-size: 0.96rem;
    color: var(--text-body);
    line-height: 1.95;
    margin-bottom: 0;
    text-align: center;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

/* عربي */
.arabic-version .how-card {
    text-align: right;
}

.arabic-version .how-number {
    left: auto;
    right: 26px;
}

.arabic-version .how-card h4 {
    padding-left: 0;
    padding-right: 76px;
    text-align: right;
    line-height: 1.85;
}

.arabic-version .how-card p {
    text-align: center;
    line-height: 2.05;
}

/* Responsive */
@media (max-width: 992px) {
    .how-card {
        min-height: 210px;
    }

    .how-card h4 {
        font-size: 1.08rem;
    }
}

@media (max-width: 576px) {
    .how-card {
        padding: 28px 20px 24px;
        min-height: auto;
        border-radius: 22px;
    }

    .how-number {
        top: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
        font-size: 0.95rem;
        border-radius: 16px;
    }

    .arabic-version .how-number {
        right: 20px;
        left: auto;
    }

    .how-card h4 {
        font-size: 1.02rem;
        padding-left: 68px;
        min-height: auto;
    }

    .arabic-version .how-card h4 {
        padding-right: 68px;
        padding-left: 0;
    }

    .how-card p {
        font-size: 0.93rem;
        line-height: 1.82;
        max-width: 100%;
    }
}
/* ===============================
   FLOATING WHATSAPP
=============================== */

.wa-float-wrap {
    position: fixed;
    bottom: 24px;
    z-index: 9999;
}

/* عربي: يسار */
html[dir="rtl"] .wa-float-wrap {
    left: 24px;
}

/* إنجليزي: يمين */
html[dir="ltr"] .wa-float-wrap {
    right: 24px;
}

.wa-main-btn {
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
}

.wa-main-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.34);
}

.wa-main-btn::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, 0.22);
    animation: waPulse 2.2s infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.22);
        opacity: 0;
    }
}

.wa-popup {
    position: absolute;
    bottom: 78px;
    width: 280px;
    background: rgba(7, 29, 46, 0.92);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
}

/* عربي */
html[dir="rtl"] .wa-popup {
    left: 0;
}

/* إنجليزي */
html[dir="ltr"] .wa-popup {
    right: 0;
}

.wa-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-popup-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wa-popup-header span {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}

.wa-popup-header small {
    color: rgba(255,255,255,0.68);
    font-size: 0.82rem;
}

.wa-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-contact-card + .wa-contact-card {
    margin-top: 10px;
}

.wa-contact-card:hover {
    background: rgba(37, 211, 102, 0.10);
    border-color: rgba(37, 211, 102, 0.22);
    transform: translateY(-2px);
    color: #fff;
}

.wa-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(37, 211, 102, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wa-contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.wa-contact-text strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}

.wa-contact-text span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.72);
}

@media (max-width: 576px) {
    .wa-main-btn {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .wa-popup {
        width: 250px;
        bottom: 70px;
    }

    html[dir="rtl"] .wa-float-wrap {
        left: 16px;
    }

    html[dir="ltr"] .wa-float-wrap {
        right: 16px;
    }
}
/* ===============================
   COMPLIANCE AND STANDARDS PAGE
=============================== */

.compliance-page-hero {
    position: relative;
    padding: 180px 0 130px;
    background:
        linear-gradient(120deg, rgba(5,22,38,0.95), rgba(8,59,102,0.90) 52%, rgba(30,198,198,0.72)),
        url('../images/workhero.jpg') center/cover no-repeat;
    overflow: hidden;
}

.compliance-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.07), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 26%);
    pointer-events: none;
}

.compliance-page-hero::after {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -160px;
    right: -120px;
    filter: blur(8px);
}

.compliance-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,38,63,0.20), rgba(6,38,63,0.36));
}

.compliance-page-badge,
.compliance-page-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.compliance-page-title {
    font-size: 3.15rem;
    font-weight: 800;
    line-height: 1.22;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 34px rgba(0,0,0,0.18);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.compliance-page-subtitle {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    font-size: 1.03rem;
    line-height: 2.05;
}

.compliance-page-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.compliance-btn-primary,
.compliance-btn-secondary {
    min-width: 190px;
    min-height: 54px;
    border-radius: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    transition: all 0.35s ease;
}

.compliance-btn-primary {
    box-shadow: 0 16px 34px rgba(30,198,198,0.20);
}

.compliance-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(30,198,198,0.26);
}

.compliance-btn-secondary {
    border: 1px solid rgba(255,255,255,0.72);
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.compliance-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transform: translateY(-4px);
}

.compliance-intro-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f7fafc, #ffffff);
}

.compliance-intro-content {
    max-width: 620px;
}

.compliance-section-title {
    color: var(--text-dark);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.compliance-section-text {
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.95;
    margin-bottom: 0;
}

.compliance-points {
    display: grid;
    gap: 14px;
}

.compliance-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.07);
    box-shadow: 0 12px 28px rgba(7,32,48,0.05);
    transition: 0.35s ease;
}

.compliance-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(7,32,48,0.08);
}

.compliance-point i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(30,198,198,0.16), rgba(11,79,138,0.08));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.compliance-point span {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.7;
}

.compliance-intro-visual {
    position: relative;
    padding-top: 24px;
    padding-bottom: 24px;
}

.compliance-intro-visual::before {
    content: "";
    position: absolute;
    inset: 20px -18px -18px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(30,198,198,0.08), rgba(11,79,138,0.08));
    z-index: 0;
}

.compliance-intro-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 54px rgba(7,32,48,0.12);
    display: block;
}

.compliance-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 290px;
    max-width: calc(100% - 34px);
    padding: 15px 16px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(12,31,46,0.06);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(7,32,48,0.10);
    backdrop-filter: blur(8px);
}

.compliance-floating-card.card-top {
    top: 18px;
    left: -10px;
}

.compliance-floating-card.card-bottom {
    bottom: 22px;
    right: -10px;
}

.compliance-floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 22px rgba(11,79,138,0.18);
}

.compliance-floating-card h5 {
    color: var(--text-dark);
    font-size: 0.96rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.45;
}

.compliance-floating-card p {
    color: var(--text-body);
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

.compliance-principles-section {
    padding: 100px 0;
    background: #ffffff;
}

.compliance-heading {
    max-width: 860px;
}

.compliance-principle-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 26px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(7,32,48,0.06);
    height: 100%;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.compliance-principle-card::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: 0.35s ease;
}

.compliance-principle-card:hover::before {
    opacity: 1;
}

.compliance-principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(7,32,48,0.10);
}

.compliance-principle-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(30,198,198,0.16), rgba(11,79,138,0.08));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 22px;
    box-shadow: 0 12px 24px rgba(30,198,198,0.12);
}

.compliance-principle-card h4 {
    color: var(--text-dark);
    font-size: 1.16rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.5;
}

.compliance-principle-card p {
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 0;
}

.compliance-framework-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
}

.compliance-framework-main {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 28px;
    padding: 36px 30px;
    box-shadow: 0 16px 38px rgba(7,32,48,0.06);
    height: 100%;
}

.compliance-framework-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.compliance-framework-list li {
    position: relative;
    padding-inline-start: 30px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.8;
}

.compliance-framework-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset-inline-start: 0;
    top: 2px;
    color: var(--accent);
}

.compliance-standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    height: 100%;
}

.compliance-standard-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 24px;
    padding: 26px 22px;
    box-shadow: 0 14px 34px rgba(7,32,48,0.06);
    transition: 0.35s ease;
}

.compliance-standard-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(7,32,48,0.10);
}

.standard-mini-label {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(30,198,198,0.10);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.compliance-standard-card h4 {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.5;
}

.compliance-standard-card p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 0;
}

.compliance-page-cta {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(4,31,52,0.96), rgba(8,59,102,0.92) 52%, rgba(30,198,198,0.82));
    color: #ffffff;
}

.compliance-page-cta::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -180px;
    left: -120px;
}

.compliance-page-cta .container {
    position: relative;
    z-index: 2;
}

.compliance-page-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
    text-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.compliance-page-cta p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.90);
    line-height: 2;
    font-size: 1.04rem;
}

/* Arabic */
.arabic-version .compliance-page-title {
    line-height: 1.35;
}

.arabic-version .compliance-page-subtitle,
.arabic-version .compliance-intro-content,
.arabic-version .compliance-point,
.arabic-version .compliance-floating-card,
.arabic-version .compliance-framework-main,
.arabic-version .compliance-standard-card {
    text-align: right;
}

/* Responsive */
@media (max-width: 1199px) {
    .compliance-floating-card.card-top {
        left: 16px;
    }

    .compliance-floating-card.card-bottom {
        right: 16px;
    }
}

@media (max-width: 992px) {
    .compliance-page-hero,
    .compliance-intro-section,
    .compliance-principles-section,
    .compliance-framework-section,
    .compliance-page-cta {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .compliance-page-title {
        font-size: 2.4rem;
    }

    .compliance-intro-image {
        height: 430px;
    }

    .compliance-section-title {
        font-size: 2rem;
    }

    .compliance-framework-main {
        padding: 30px 24px;
    }
}

@media (max-width: 576px) {
    .compliance-page-hero {
        padding-top: 135px;
        padding-bottom: 88px;
    }

    .compliance-page-title {
        font-size: 1.9rem;
    }

    .compliance-page-subtitle {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .compliance-intro-image {
        height: 340px;
        border-radius: 22px;
    }

    .compliance-intro-visual::before {
        display: none;
    }

    .compliance-floating-card {
        position: relative;
        width: 100%;
        max-width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 14px;
    }

    .compliance-standards-grid {
        grid-template-columns: 1fr;
    }

    .compliance-page-title,
    .compliance-section-title,
    .compliance-page-cta h2 {
        line-height: 1.4;
    }

    .compliance-btn-primary,
    .compliance-btn-secondary {
        width: 100%;
    }
}
/* ===============================
   NEWS PAGE
=============================== */

.news-page-hero {
    position: relative;
    padding: 175px 0 125px;
    background:
        linear-gradient(120deg, rgba(4,31,52,0.92), rgba(11,79,138,0.84) 52%, rgba(30,198,198,0.76)),
        url('../images/hero3.jpg') center/cover no-repeat;
    overflow: hidden;
}

.news-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 28%);
    pointer-events: none;
}

.news-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,38,63,0.18), rgba(6,38,63,0.30));
}

.news-page-badge,
.news-page-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.news-page-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.22;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 34px rgba(0,0,0,0.18);
}

.news-page-subtitle {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    font-size: 1.06rem;
    line-height: 2.05;
}

.news-page-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.news-btn-primary,
.news-btn-secondary {
    min-width: 190px;
    min-height: 54px;
    border-radius: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    transition: all 0.35s ease;
}

.news-btn-primary {
    box-shadow: 0 16px 34px rgba(30,198,198,0.20);
}

.news-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(30,198,198,0.26);
}

.news-btn-secondary {
    border: 1px solid rgba(255,255,255,0.72);
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.news-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transform: translateY(-4px);
}

.news-list-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
}

.news-filter-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.news-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(12,31,46,0.08);
    color: var(--text-dark);
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 10px 22px rgba(7,32,48,0.04);
}

.news-filter-btn:hover,
.news-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.news-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(7,32,48,0.06);
    height: 100%;
    transition: 0.35s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(7,32,48,0.10);
}

.news-card-image-wrap {
    position: relative;
    overflow: hidden;
}

.news-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.45s ease;
}

.news-card:hover .news-card-image {
    transform: scale(1.05);
}

.news-card-type {
    position: absolute;
    top: 16px;
    inset-inline-start: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 12px 24px rgba(7,32,48,0.14);
}

.type-news {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.type-announcement {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.type-conference {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.type-job {
    background: linear-gradient(135deg, #059669, #10b981);
}

.type-default {
    background: linear-gradient(135deg, #0b4f8a, #1ec6c6);
}

.news-card-body {
    padding: 24px 22px 24px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #6b8297;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-card-meta i {
    color: var(--accent);
}

.news-card-title {
    color: var(--text-dark);
    font-size: 1.24rem;
    font-weight: 800;
    line-height: 1.55;
    margin-bottom: 12px;
}

.news-card-text {
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 0;
    font-size: 0.98rem;
}

.news-empty-box {
    background: #ffffff;
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 28px;
    padding: 50px 28px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(7,32,48,0.05);
}

.news-empty-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(30,198,198,0.16), rgba(11,79,138,0.08));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.news-empty-box h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.news-empty-box p {
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 0;
}

.news-page-cta {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(4,31,52,0.96), rgba(11,79,138,0.92) 52%, rgba(30,198,198,0.86));
    color: #ffffff;
}

.news-page-cta::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -180px;
    left: -120px;
}

.news-page-cta .container {
    position: relative;
    z-index: 2;
}

.news-page-cta h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
    text-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.news-page-cta p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
    line-height: 2;
    font-size: 1.04rem;
}

.arabic-version .news-page-title {
    line-height: 1.35;
}

.arabic-version .news-page-subtitle,
.arabic-version .news-card-body,
.arabic-version .news-empty-box {
    text-align: right;
}

@media (max-width: 992px) {
    .news-page-hero,
    .news-list-section,
    .news-page-cta {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .news-page-title {
        font-size: 2.45rem;
    }
}

@media (max-width: 576px) {
    .news-page-hero {
        padding-top: 135px;
        padding-bottom: 88px;
    }

    .news-page-title {
        font-size: 1.95rem;
    }

    .news-page-subtitle {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .news-card-image {
        height: 220px;
    }

    .news-page-title,
    .news-page-cta h2 {
        line-height: 1.4;
    }

    .news-btn-primary,
    .news-btn-secondary {
        width: 100%;
    }
}
.hero-btn-news {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    padding: 12px 22px;
    box-shadow: 0 14px 30px rgba(245,158,11,0.25);
    transition: 0.3s ease;
}

.hero-btn-news:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(245,158,11,0.35);
    color: #fff;
}
/* ===============================
   HOME NEWS SECTION
=============================== */

.home-news-section {
    padding: var(--section-space) 0;
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
    position: relative;
    overflow: hidden;
}

.home-news-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(30,198,198,0.06);
    top: -120px;
    right: -80px;
    pointer-events: none;
}

.home-news-heading {
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.home-news-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.07);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(7,32,48,0.06);
    height: 100%;
    transition: 0.35s ease;
    position: relative;
}

.home-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(7,32,48,0.10);
}

.home-news-image-wrap {
    position: relative;
    overflow: hidden;
}

.home-news-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.45s ease;
}

.home-news-card:hover .home-news-image {
    transform: scale(1.05);
}

.home-news-type {
    position: absolute;
    top: 16px;
    inset-inline-start: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 12px 24px rgba(7,32,48,0.14);
}

.home-news-body {
    padding: 22px 20px 24px;
}

.home-news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #6b8297;
    font-size: 0.9rem;
    font-weight: 600;
}

.home-news-meta i {
    color: var(--accent);
}

.home-news-card-title {
    color: var(--text-dark);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.55;
    margin-bottom: 12px;
}

.home-news-card-text {
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 0;
    font-size: 0.96rem;
}

.home-news-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 800;
    transition: 0.3s ease;
    box-shadow: 0 14px 28px rgba(11,79,138,0.16);
}

.home-news-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(11,79,138,0.22);
}

/* ===============================
   HOME NEWS TICKER - PREMIUM
=============================== */

.home-news-ticker-section {
    padding: 34px 0 24px;
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
    position: relative;
    z-index: 2;
}

.home-news-ticker-box {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.08);
    border-radius: 26px;
    box-shadow: 0 16px 38px rgba(7,32,48,0.06);
    overflow: hidden;
    position: relative;
}

.home-news-ticker-box::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-2));
}

.home-news-ticker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px 8px;
}

.home-news-ticker-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 12px 24px rgba(11,79,138,0.14);
}

.home-news-ticker-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 800;
    transition: 0.3s ease;
}

.home-news-ticker-all-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.home-news-ticker-slider {
    position: relative;
    min-height: 190px;
}

.home-news-ticker-item {
    display: none;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 16px 22px 18px;
    animation: tickerSlideFade 0.55s ease;
}

.home-news-ticker-item.active {
    display: grid;
}

.home-news-ticker-image-wrap {
    width: 150px;
    height: 110px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 12px 26px rgba(7,32,48,0.08);
}

.home-news-ticker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.home-news-ticker-item:hover .home-news-ticker-image {
    transform: scale(1.05);
}

.home-news-ticker-content {
    min-width: 0;
}

.home-news-ticker-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.home-news-ticker-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(7,32,48,0.10);
}

.ticker-type-news {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.ticker-type-announcement {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.ticker-type-conference {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.ticker-type-job {
    background: linear-gradient(135deg, #059669, #10b981);
}

.ticker-type-default {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.home-news-ticker-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6d8398;
    font-size: 0.9rem;
    font-weight: 700;
}

.home-news-ticker-date i {
    color: var(--accent);
}

.home-news-ticker-title {
    color: var(--text-dark);
    font-size: 1.26rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 8px;
}

.home-news-ticker-text {
    color: var(--text-body);
    font-size: 0.97rem;
    line-height: 1.9;
    margin-bottom: 0;
    max-width: 760px;
}

.home-news-ticker-action {
    flex-shrink: 0;
}

.home-news-ticker-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    min-height: 50px;
    padding: 12px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(11,79,138,0.16);
    transition: 0.3s ease;
}

.home-news-ticker-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(11,79,138,0.22);
}

.home-news-ticker-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0 0 18px;
}

.home-news-ticker-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(12,31,46,0.18);
    cursor: pointer;
    transition: 0.3s ease;
}

.home-news-ticker-dot.active {
    background: var(--accent);
    transform: scale(1.15);
}

.home-news-ticker-empty {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 22px;
}

.home-news-ticker-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(30,198,198,0.16), rgba(11,79,138,0.08));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.home-news-ticker-empty-content h3 {
    color: var(--text-dark);
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.home-news-ticker-empty-content p {
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 0;
}

@keyframes tickerSlideFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.arabic-version .home-news-ticker-content,
.arabic-version .home-news-ticker-empty-content {
    text-align: right;
}

@media (max-width: 992px) {
    .home-news-ticker-item {
        grid-template-columns: 120px 1fr;
    }

    .home-news-ticker-action {
        grid-column: 1 / -1;
    }

    .home-news-ticker-btn {
        min-width: 170px;
    }

    .home-news-ticker-empty {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-news-ticker-empty-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .home-news-ticker-section {
        padding: 24px 0 12px;
    }

    .home-news-ticker-head {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 16px 6px;
    }

    .home-news-ticker-item {
        grid-template-columns: 1fr;
        padding: 14px 16px 16px;
    }

    .home-news-ticker-image-wrap {
        width: 100%;
        height: 180px;
    }

    .home-news-ticker-title {
        font-size: 1.08rem;
        line-height: 1.6;
    }

    .home-news-ticker-text {
        font-size: 0.94rem;
        line-height: 1.8;
    }

    .home-news-ticker-btn {
        width: 100%;
    }

    .home-news-ticker-empty {
        padding: 20px 16px;
    }

    .home-news-ticker-empty-content h3 {
        font-size: 1.02rem;
        line-height: 1.5;
    }
}
/* ===============================
   POST DETAILS PAGE
=============================== */



.impact-page-hero {
    position: relative;
    padding: 175px 0 125px;
    background:
        linear-gradient(120deg, rgba(4,31,52,0.94), rgba(11,79,138,0.84) 52%, rgba(16,185,129,0.72)),
        url('../images/tater.jpg') center/cover no-repeat;
    overflow: hidden;
}

.impact-page-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -180px;
    left: -100px;
}

.impact-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,38,63,0.16), rgba(6,38,63,0.30));
}

.impact-page-badge,
.impact-page-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.impact-page-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.22;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 34px rgba(0,0,0,0.18);
}

.impact-page-subtitle {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.92);
    font-size: 1.06rem;
    line-height: 2.05;
}

.impact-page-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.impact-btn-primary,
.impact-btn-secondary {
    min-width: 190px;
    min-height: 54px;
    border-radius: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    transition: 0.35s ease;
}

.impact-btn-primary {
    box-shadow: 0 16px 34px rgba(30,198,198,0.20);
}

.impact-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(30,198,198,0.26);
}

.impact-btn-secondary {
    border: 1px solid rgba(255,255,255,0.72);
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.impact-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transform: translateY(-4px);
}

.impact-overview-section,
.impact-pillars-section,
.impact-before-after-section,
.impact-results-section,
.impact-deep-section {
    padding: 95px 0;
}

.impact-overview-section {
    background: linear-gradient(to bottom, #ffffff, #f8fbfd);
}

.impact-pillars-section {
    background: linear-gradient(to bottom, #f8fbfd, #ffffff);
}

.impact-before-after-section {
    background: #ffffff;
}

.impact-results-section {
    background: linear-gradient(to bottom, #f8fbfd, #f4faf7);
}

.impact-deep-section {
    background: #ffffff;
}

.impact-section-title {
    color: var(--text-dark);
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.impact-section-text {
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 2;
    margin-bottom: 0;
}

.impact-overview-content {
    max-width: 620px;
}

.impact-highlight-list {
    display: grid;
    gap: 14px;
}

.impact-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.08);
    box-shadow: 0 10px 24px rgba(7,32,48,0.05);
}

.impact-highlight-item i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(30,198,198,0.12), rgba(16,185,129,0.12));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-highlight-item span {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.8;
}

.impact-overview-visual {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.impact-overview-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 22px 48px rgba(7,32,48,0.12);
    display: block;
}

.impact-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 290px;
    max-width: calc(100% - 34px);
    padding: 15px 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(12,31,46,0.06);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(7,32,48,0.10);
}

.impact-floating-card.card-top {
    top: 18px;
    left: -10px;
}

.impact-floating-card.card-bottom {
    bottom: 22px;
    right: -10px;
}

.impact-floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #10b981);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.impact-floating-card h5 {
    color: var(--text-dark);
    font-size: 0.96rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.impact-floating-card p {
    color: var(--text-body);
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.6;
}

.impact-heading {
    max-width: 860px;
}

.impact-pillar-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.08);
    border-radius: 24px;
    padding: 32px 24px;
    height: 100%;
    box-shadow: 0 14px 34px rgba(7,32,48,0.06);
    transition: 0.35s ease;
}

.impact-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(7,32,48,0.10);
}

.impact-pillar-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(30,198,198,0.14), rgba(16,185,129,0.16));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.impact-pillar-card h3 {
    color: var(--text-dark);
    font-size: 1.28rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.impact-pillar-card p {
    color: var(--text-body);
    line-height: 1.95;
    margin-bottom: 0;
}

.impact-compare-card {
    position: relative;
    border-radius: 28px;
    padding: 34px 28px;
    min-height: 260px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(7,32,48,0.06);
}

.before-card {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    border: 1px solid rgba(245,158,11,0.14);
}

.after-card {
    background: linear-gradient(135deg, #ecfdf5, #ffffff);
    border: 1px solid rgba(16,185,129,0.14);
}

.impact-compare-label {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.before-card .impact-compare-label {
    background: rgba(245,158,11,0.14);
    color: #b45309;
}

.after-card .impact-compare-label {
    background: rgba(16,185,129,0.14);
    color: #047857;
}

.impact-compare-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.impact-compare-card p {
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 0;
}

.impact-result-box {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(12,31,46,0.08);
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 14px 34px rgba(7,32,48,0.05);
    transition: 0.35s ease;
}

.impact-result-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7,32,48,0.08);
}

.impact-result-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 10px;
}

.impact-result-box p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 700;
}

.impact-deep-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 22px 48px rgba(7,32,48,0.10);
}

.impact-deep-points {
    display: grid;
    gap: 14px;
}

.impact-deep-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fbfd;
    border: 1px solid rgba(12,31,46,0.08);
}

.impact-deep-point i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(16,185,129,0.14);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.impact-deep-point span {
    color: var(--text-dark);
    line-height: 1.85;
    font-weight: 700;
}

.impact-page-cta {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(4,31,52,0.96), rgba(11,79,138,0.92) 52%, rgba(16,185,129,0.82));
    color: #ffffff;
}

.impact-page-cta::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -180px;
    right: -120px;
}

.impact-page-cta .container {
    position: relative;
    z-index: 2;
}

.impact-page-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
    text-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.impact-page-cta p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
    line-height: 2;
    font-size: 1.04rem;
}

.arabic-version .impact-page-title,
.arabic-version .impact-section-title,
.arabic-version .impact-section-text,
.arabic-version .impact-pillar-card,
.arabic-version .impact-compare-card,
.arabic-version .impact-result-box,
.arabic-version .impact-deep-point,
.arabic-version .impact-overview-content {
    text-align: right;
}

@media (max-width: 992px) {
    .impact-page-title {
        font-size: 2.4rem;
    }

    .impact-overview-section,
    .impact-pillars-section,
    .impact-before-after-section,
    .impact-results-section,
    .impact-deep-section,
    .impact-page-cta {
        padding: 80px 0;
    }

    .impact-overview-image,
    .impact-deep-image {
        height: 380px;
    }

    .impact-floating-card.card-top {
        left: 16px;
    }

    .impact-floating-card.card-bottom {
        right: 16px;
    }
}

@media (max-width: 576px) {
    .impact-page-hero {
        padding: 140px 0 90px;
    }

    .impact-page-title {
        font-size: 1.95rem;
        line-height: 1.4;
    }

    .impact-page-subtitle {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .impact-section-title {
        font-size: 1.65rem;
        line-height: 1.5;
    }

    .impact-overview-image,
    .impact-deep-image {
        height: 280px;
        border-radius: 22px;
    }

    .impact-floating-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 100%;
        margin-top: 14px;
    }

    .impact-page-cta h2 {
        font-size: 1.8rem;
        line-height: 1.45;
    }

    .impact-btn-primary,
    .impact-btn-secondary {
        width: 100%;
    }
}
/* ===============================
   HERO PREMIUM BUTTONS - CLEAN WAVE
=============================== */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-main-btn {
    position: relative;
    min-width: 210px;
    min-height: 58px;
    padding: 14px 26px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: 0.35s ease;
}

.hero-main-btn span,
.hero-main-btn i {
    position: relative;
    z-index: 3;
}

.hero-main-btn::before {
    content: "";
    position: absolute;
    width: 220%;
    height: 220%;
    left: -60%;
    top: 78%;
    border-radius: 42%;
    z-index: 1;
    transition: 0.65s ease;
    animation: heroSoftWave 6s linear infinite;
}

.hero-main-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.22) 45%,
        transparent 70%
    );
    transform: translateX(-120%);
    transition: 0.7s ease;
}

.hero-main-btn:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

.hero-main-btn:hover::before {
    top: -45%;
}

.hero-main-btn:hover::after {
    transform: translateX(120%);
}

.hero-main-btn i {
    font-size: 0.95rem;
    transition: 0.35s ease;
}

/* زر الخدمات */
.hero-btn-services {
    color: #06263F;
    background: linear-gradient(135deg, #23D3D3, #70E4E4);
    box-shadow: 0 16px 34px rgba(30,198,198,0.28);
    border: 1px solid rgba(255,255,255,0.22);
}

.hero-btn-services::before {
    background: rgba(255,255,255,0.35);
}

.hero-btn-services:hover {
    color: #06263F;
    box-shadow: 0 22px 44px rgba(30,198,198,0.38);
}

/* زر آلية العمل */
.hero-btn-process {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(11,79,138,0.92), rgba(30,198,198,0.52));
    border: 1px solid rgba(88,216,216,0.45);
    box-shadow: 0 16px 34px rgba(7,32,48,0.22);
    backdrop-filter: blur(10px);
}

.hero-btn-process::before {
    background: rgba(30,198,198,0.22);
}

.hero-btn-process:hover {
    color: #ffffff;
    border-color: rgba(88,216,216,0.75);
    box-shadow: 0 22px 44px rgba(30,198,198,0.24);
}

.arabic-version .hero-main-btn:hover i {
    transform: translateX(-4px);
}

html[lang="en"] .hero-main-btn:hover i {
    transform: translateX(4px);
}

@keyframes heroSoftWave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 576px) {
    .hero-actions {
        width: 100%;
    }

    .hero-main-btn {
        width: 100%;
        min-width: 100%;
    }
}
/* ===============================
   PREMIUM SPLASH SCREEN
=============================== */

.site-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background:
        radial-gradient(circle at 20% 20%, rgba(30,198,198,0.22), transparent 28%),
        radial-gradient(circle at 80% 70%, rgba(88,216,216,0.18), transparent 30%),
        linear-gradient(135deg, #041f34, #06263f 45%, #0b4f8a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

.site-splash.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 760px;
    padding: 34px 24px;
    animation: splashContentIn 1s ease both;
}

.splash-logo-wrap {
    width: 132px;
    height: 132px;
    margin: 0 auto 22px;
    border-radius: 34px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 60px rgba(0,0,0,0.24);
    backdrop-filter: blur(12px);
    animation: logoFloat 3.2s ease-in-out infinite;
}

.splash-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.splash-badge {
    display: inline-flex;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(30,198,198,0.14);
    border: 1px solid rgba(88,216,216,0.25);
    color: #9ff7f7;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.splash-content h1 {
    color: #ffffff;
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 16px;
    text-shadow: 0 12px 34px rgba(0,0,0,0.25);
}

.splash-content p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

.splash-loader {
    width: 230px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
    margin: 0 auto;
}

.splash-loader span {
    display: block;
    height: 100%;
    width: 45%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1ec6c6, #ffffff, #58d8d8);
    animation: splashLoading 1.3s ease-in-out infinite;
}

.splash-bubbles span {
    position: absolute;
    bottom: -90px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    box-shadow: inset 0 0 12px rgba(255,255,255,0.22);
    animation: bubbleUp 7s linear infinite;
}

.splash-bubbles span:nth-child(1) {
    left: 8%;
    width: 18px;
    height: 18px;
    animation-duration: 6s;
}

.splash-bubbles span:nth-child(2) {
    left: 22%;
    width: 34px;
    height: 34px;
    animation-duration: 8s;
    animation-delay: 1s;
}

.splash-bubbles span:nth-child(3) {
    left: 38%;
    width: 20px;
    height: 20px;
    animation-duration: 7s;
    animation-delay: 0.4s;
}

.splash-bubbles span:nth-child(4) {
    left: 55%;
    width: 42px;
    height: 42px;
    animation-duration: 9s;
    animation-delay: 1.4s;
}

.splash-bubbles span:nth-child(5) {
    left: 70%;
    width: 22px;
    height: 22px;
    animation-duration: 6.5s;
    animation-delay: 0.8s;
}

.splash-bubbles span:nth-child(6) {
    left: 84%;
    width: 36px;
    height: 36px;
    animation-duration: 8.5s;
    animation-delay: 1.8s;
}

.splash-bubbles span:nth-child(7) {
    left: 94%;
    width: 16px;
    height: 16px;
    animation-duration: 7.5s;
    animation-delay: 0.2s;
}

@keyframes splashContentIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes splashLoading {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(260%);
    }
}

@keyframes bubbleUp {
    0% {
        transform: translateY(0) scale(0.7);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-115vh) scale(1.15);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .splash-logo-wrap {
        width: 110px;
        height: 110px;
        border-radius: 28px;
    }

    .splash-logo {
        width: 68px;
        height: 68px;
    }

    .splash-content h1 {
        font-size: 1.75rem;
        line-height: 1.45;
    }

    .splash-content p {
        font-size: 0.95rem;
    }

    .splash-loader {
        width: 190px;
    }
}
/* ===============================
   FLOATING NEXT SECTION BUTTON
=============================== */

.section-next-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(11,79,138,0.95), rgba(30,198,198,0.95));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(7,32,48,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.35s ease;
}

.section-next-btn:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 24px 52px rgba(30,198,198,0.34);
}

.next-btn-glow {
    position: absolute;
    inset: -35%;
    background: conic-gradient(
        from 180deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent,
        rgba(88,216,216,0.45),
        transparent
    );
    animation: nextBtnRotate 4s linear infinite;
}

.next-btn-icon {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.next-btn-icon i {
    font-size: 20px;
    animation: nextArrowMove 1.5s ease-in-out infinite;
}

.next-btn-text {
    position: absolute;
    top: -34px;
    right: 50%;
    transform: translateX(50%);
    background: rgba(6,38,63,0.92);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 7px 12px;
    border-radius: 999px;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: 0.3s ease;
}

.section-next-btn:hover .next-btn-text {
    opacity: 1;
    visibility: visible;
    top: -42px;
}

@keyframes nextBtnRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes nextArrowMove {
    0%, 100% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(5px);
    }
}
/* Fixed Navbar Logo Styling */
.navbar-brand img, .site-logo img {
    background-color: #ffffff !important;
    padding: 4px !important;
    border-radius: 6px;
    max-height: 48px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}
@media (max-width: 576px) {
    .section-next-btn {
        width: 62px;
        height: 62px;
        right: 18px;
        bottom: 18px;
    }

    .next-btn-icon {
        width: 46px;
        height: 46px;
    }
}
/* Elevate WhatsApp Float Wrap in English Mode */
html:not([dir="rtl"]) .wa-float-wrap {
    bottom: 115px !important;
    right: 20px !important; /* Keeps it on the right side, just elevated */
    left: auto !important;
}