/* ============================================================
   Feasibility Study Page — feasibility.css
   Design System: Bassmah (brand #2f5aae / green #27ae60 / dark #0c1a2a)
   ============================================================ */

.fs-page {
    --brand: #2f5aae;
    --brand-light: #338eaa;
    --green: #27ae60;
    --green-light: #2ecc71;
    --dark: #0c1a2a;
    --heading-color: #1a3a6b;
    --text-light: #64748b;
    --light-bg: #f0f4f8;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
    --radius: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─────────────────────────────────────
   1. HERO — with background image
   ───────────────────────────────────── */
.fs-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.fs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(12,26,42,0.92) 0%, rgba(20,39,68,0.88) 40%, rgba(26,53,96,0.85) 70%, rgba(12,26,42,0.92) 100%);
    z-index: 1;
}

.fs-hero__shapes { z-index: 2; }
.fs-hero__shapes .shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.fs-hero__shapes .shape--1 {
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.04);
    top: -120px; right: -100px;
}
.fs-hero__shapes .shape--2 {
    width: 700px; height: 700px;
    background: rgba(255,255,255,0.03);
    bottom: -200px; left: -150px;
    animation: fsFloat 12s ease-in-out infinite;
}
.fs-hero__shapes .shape--3 {
    width: 300px; height: 300px;
    border: 2px solid rgba(255,255,255,0.07);
    top: 30%; left: 5%;
}
.fs-hero__shapes .shape--4 {
    width: 200px; height: 200px;
    border: 2px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    transform: rotate(45deg);
    bottom: 15%; right: 8%;
}

@keyframes fsFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-30px) scale(1.05); }
}

.fs-hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.fs-hero__badge {
    display: inline-block;
    backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 10px 28px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.15);
}

.fs-hero__title {
    color: #fff;
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900;
    font-family: 'Cairo', sans-serif;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.fs-hero__desc {
    color: rgba(255,255,255,0.8);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
    margin-inline: auto;
}

.fs-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(39,174,96,0.3);
    transition: var(--transition);
}
.fs-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(39,174,96,0.4);
    color: #fff;
}

/* ─────────────────────────────────────
   2. COUNTERS — with icons
   ───────────────────────────────────── */
.fs-counters {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
    overflow: hidden;
}
.fs-counters::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
}

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

.fs-counter {
    text-align: center;
    padding: 30px 16px;
    background: #fff;
    border-radius: var(--radius);
    border: 2px solid #e8ecf1;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.fs-counter::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
}
.fs-counter:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #c8d6e5;
}

.fs-counter__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fs-counter__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.fs-counter__number {
    display: block;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    color: var(--brand);
    margin-bottom: 8px;
    font-family: 'Cairo', sans-serif;
}
.fs-counter__label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

/* ─────────────────────────────────────
   3. ABOUT — image + text split
   ───────────────────────────────────── */
.fs-about {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.fs-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fs-about__image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.fs-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fs-about__content {
    text-align: right;
}

.fs-about__content .section-badge {
    display: inline-block;
    margin-bottom: 16px;
}

.fs-about__title {
    color: var(--heading-color);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    line-height: 1.3;
    margin-bottom: 24px;
}

.fs-about__text {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 28px;
}

.fs-about__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(39,174,96,0.25);
    transition: var(--transition);
}
.fs-about__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39,174,96,0.35);
    color: #fff;
}

/* ─────────────────────────────────────
   4. SERVICES
   ───────────────────────────────────── */
.fs-services {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
    overflow: hidden;
}

.fs-services__title {
    color: var(--heading-color);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 48px;
}

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

.fs-service-card {
    background: #fff;
    border-radius: var(--radius);
    border: 2px solid #e8ecf1;
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.fs-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
}
.fs-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #c8d6e5;
}

.fs-service-card:nth-child(1) { background: linear-gradient(180deg, #eff6ff, #fff); }
.fs-service-card:nth-child(2) { background: linear-gradient(180deg, #f0fdf4, #fff); }
.fs-service-card:nth-child(3) { background: linear-gradient(180deg, #fffbeb, #fff); }

.fs-service-card__icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.fs-service-card:nth-child(1) .fs-service-card__icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.fs-service-card:nth-child(2) .fs-service-card__icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.fs-service-card:nth-child(3) .fs-service-card__icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }

.fs-service-card__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.fs-service-card h3 {
    color: var(--heading-color);
    font-size: 19px;
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 12px;
}
.fs-service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ─────────────────────────────────────
   5. ADVANTAGES — 3 col: cards | image | cards
   ───────────────────────────────────── */
.fs-advantages {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.fs-advantages__title {
    color: var(--heading-color);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 48px;
}

.fs-advantages__layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.fs-advantages__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fs-advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: var(--radius);
    border: 2px solid #e8ecf1;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.fs-advantage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
    opacity: 0;
    transition: var(--transition);
}
.fs-advantage-card:hover::before { opacity: 1; }
.fs-advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #c8d6e5;
}

.fs-advantage-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fs-advantage-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.fs-advantage-card__text h3 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 6px;
}
.fs-advantage-card__text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.fs-advantages__image {
    width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.fs-advantages__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 3px solid rgba(47,90,174,0.15);
}
.fs-advantages__image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

/* ─────────────────────────────────────
   6. SECTORS — impressive bg with shapes
   ───────────────────────────────────── */
.fs-sectors {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(160deg, #0c1a2a 0%, #142744 40%, #1a3560 70%, #0c1a2a 100%);
    overflow: hidden;
}

.fs-sectors__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.fs-sectors__shape {
    position: absolute;
    border-radius: 50%;
}
.fs-sectors__shape--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(39,174,96,0.08) 0%, transparent 70%);
    top: -200px; right: -150px;
    animation: fsFloat 15s ease-in-out infinite;
}
.fs-sectors__shape--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(47,90,174,0.1) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    animation: fsFloat 18s ease-in-out infinite reverse;
}
.fs-sectors__shape--3 {
    width: 200px; height: 200px;
    border: 2px solid rgba(255,255,255,0.06);
    top: 20%; left: 10%;
    animation: fsFloat 10s ease-in-out infinite;
}
.fs-sectors__shape--4 {
    width: 150px; height: 150px;
    border: 2px solid rgba(39,174,96,0.12);
    border-radius: 24px;
    transform: rotate(45deg);
    top: 60%; right: 5%;
    animation: fsSpin 20s linear infinite;
}
.fs-sectors__shape--5 {
    width: 100px; height: 100px;
    background: rgba(51,142,170,0.08);
    top: 15%; right: 20%;
}
.fs-sectors__shape--6 {
    width: 80px; height: 80px;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    transform: rotate(30deg);
    bottom: 20%; left: 25%;
}

.fs-sectors__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

@keyframes fsSpin {
    from { transform: rotate(45deg); }
    to   { transform: rotate(405deg); }
}

.fs-sectors__title {
    color: #fff;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.fs-sectors__desc {
    color: rgba(255,255,255,0.75);
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 2;
}

.fs-sectors .section-badge {
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}

.fs-sectors__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.fs-sector-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 28px 16px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.fs-sector-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
    opacity: 0;
    transition: var(--transition);
}
.fs-sector-card:hover::before { opacity: 1; }
.fs-sector-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.fs-sector-card {
    --sector-color: #2f5aae;
}
.fs-sector-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    background: color-mix(in srgb, var(--sector-color) 18%, rgba(255,255,255,0.08));
    border: 1px solid color-mix(in srgb, var(--sector-color) 45%, transparent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sector-color);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--sector-color) 25%, transparent);
    transition: var(--transition);
}
.fs-sector-card:hover .fs-sector-card__icon {
    background: color-mix(in srgb, var(--sector-color) 30%, rgba(255,255,255,0.08));
    transform: scale(1.08);
}
.fs-sector-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.fs-sector-card__icon svg {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 2px 4px color-mix(in srgb, var(--sector-color) 50%, transparent));
}

.fs-sector-card h4 {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

/* ─────────────────────────────────────
   7. WHY CHOOSE US — with stat icons
   ───────────────────────────────────── */
.fs-why {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(160deg, #0c1a2a 0%, #142744 40%, #1a3560 70%, #0c1a2a 100%);
    overflow: hidden;
    color: #fff;
}

.fs-why__shapes .shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.fs-why__shapes .shape--1 {
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03);
    top: -100px; left: -80px;
}
.fs-why__shapes .shape--2 {
    width: 300px; height: 300px;
    border: 2px solid rgba(255,255,255,0.05);
    bottom: -50px; right: -50px;
}

.fs-why__title {
    color: #fff;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
}

.fs-why__desc {
    color: rgba(255,255,255,0.8);
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 40px;
}

.fs-why__points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-inline: auto;
}

.fs-why__point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 24px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.fs-why__point:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.fs-why__point-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.fs-why__point p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.fs-why__stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.fs-why__stat {
    text-align: center;
    padding: 28px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.fs-why__stat:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.fs-why__stat { --stat-color: #27ae60; }
.fs-why__stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: color-mix(in srgb, var(--stat-color) 20%, rgba(255,255,255,0.08));
    border: 1px solid color-mix(in srgb, var(--stat-color) 45%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stat-color);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--stat-color) 28%, transparent);
    transition: var(--transition);
}
.fs-why__stat:hover .fs-why__stat-icon {
    background: color-mix(in srgb, var(--stat-color) 32%, rgba(255,255,255,0.08));
    transform: scale(1.08);
}
.fs-why__stat-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.fs-why__stat-icon svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 2px 4px color-mix(in srgb, var(--stat-color) 50%, transparent));
}

.fs-why__stat-number {
    display: block;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 900;
    color: #fde047;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 6px;
}
.fs-why__stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* ─────────────────────────────────────
   8. STUDY CONTENT
   ───────────────────────────────────── */
.fs-study {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.fs-study__title {
    color: var(--heading-color);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 48px;
}

.fs-study__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin-inline: auto;
}

.fs-study__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(160deg, #f8fbff, #fff);
    border-radius: 16px;
    border: 1px solid #e8ecf1;
    transition: var(--transition);
}
.fs-study__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #c8d6e5;
}

.fs-study__item-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
}

.fs-study__item p {
    color: var(--dark);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* ─────────────────────────────────────
   9. BANNERS — with lightbox hover
   ───────────────────────────────────── */
.fs-banners {
    padding: 60px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
}

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

.fs-banners__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: block;
    text-decoration: none;
}
.fs-banners__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.fs-banners__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.fs-banners__item:hover img {
    transform: scale(1.05);
}

.fs-banners__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,26,42,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.fs-banners__item:hover .fs-banners__overlay {
    opacity: 1;
}

/* Lightbox */
.fs-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.fs-lightbox.active {
    display: flex;
}
.fs-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}
.fs-lightbox__close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.fs-lightbox__close:hover {
    background: rgba(255,255,255,0.3);
}

/* ─────────────────────────────────────
   10. CTA
   ───────────────────────────────────── */
.fs-cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(160deg, var(--brand), #1e3f7a);
    text-align: center;
    overflow: hidden;
}

.fs-cta__shapes .shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.fs-cta__shapes .shape--1 {
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.04);
    top: -60px; right: -60px;
}
.fs-cta__shapes .shape--2 {
    width: 250px; height: 250px;
    border: 2px solid rgba(255,255,255,0.06);
    bottom: -40px; left: -40px;
}

.fs-cta__title {
    color: #fff;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.fs-cta__desc {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 2;
}

.fs-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--brand);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}
.fs-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    color: var(--brand);
}

/* ─────────────────────────────────────
   11. BANK INFO
   ───────────────────────────────────── */
.fs-bank {
    padding: 60px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
}

.fs-bank__title {
    color: var(--heading-color);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 40px;
}

.fs-bank__box {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 2px solid #e8ecf1;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.fs-bank__box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
}

.fs-bank__image {
    flex-shrink: 0;
    width: 200px;
    border-radius: 16px;
    overflow: hidden;
}
.fs-bank__image img {
    width: 100%;
    height: auto;
    display: block;
}

.fs-bank__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fs-bank__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(160deg, #f8fbff, #fff);
    border-radius: 12px;
    border: 1px solid #e8ecf1;
}

.fs-bank__label {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

.fs-bank__value {
    color: var(--dark);
    font-size: 18px;
    font-weight: 800;
    font-family: 'Cairo', sans-serif;
    direction: ltr;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .fs-bank__box {
        flex-direction: column;
        text-align: center;
    }
    .fs-bank__image { width: 150px; }
    .fs-bank__row { flex-direction: column; gap: 8px; }
}

/* ─────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────── */
@media (max-width: 1024px) {
    .fs-counters__grid  { grid-template-columns: repeat(3, 1fr); }
    .fs-sectors__grid   { grid-template-columns: repeat(3, 1fr); }
    .fs-why__stats      { grid-template-columns: repeat(3, 1fr); }

    .fs-advantages__layout {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .fs-advantages__image {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .fs-advantages__image img { min-height: 300px; }
}

@media (max-width: 768px) {
    .fs-hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .fs-about__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .fs-about__content { text-align: center; }

    .fs-counters__grid,
    .fs-services__grid {
        grid-template-columns: 1fr;
    }

    .fs-advantages__layout {
        grid-template-columns: 1fr;
    }
    .fs-advantages__image { grid-row: auto; }

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

    .fs-why__points {
        grid-template-columns: 1fr;
    }

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

    .fs-study__list {
        grid-template-columns: 1fr;
    }

    .fs-banners__grid {
        grid-template-columns: 1fr;
    }

    .fs-counter:hover,
    .fs-service-card:hover,
    .fs-advantage-card:hover,
    .fs-sector-card:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .fs-counters__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .fs-sectors__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .fs-why__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ============ P9 client edits: intro + bank lightbox ============ */
.fs-intro {
    padding: 80px 0 40px;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
    position: relative;
    text-align: center;
}
.fs-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(135deg, #2f5aae, #338eaa);
}
.fs-intro__title {
    font-size: clamp(24px, 3.4vw, 36px);
    font-weight: 900;
    color: #0c1a2a;
    line-height: 1.4;
    margin: 0 auto 20px;
    max-width: 900px;
}
.fs-intro__text {
    font-size: 1.05rem;
    line-height: 2;
    color: #334155;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

/* Bank image — larger + clickable lightbox */
.fs-bank__image--lg {
    display: block;
    position: relative;
    max-width: 560px;
    margin: 20px auto 30px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(12, 26, 42, 0.18);
    cursor: zoom-in;
    transition: transform 0.3s;
    text-decoration: none;
}
.fs-bank__image--lg:hover { transform: translateY(-4px) scale(1.01); }
.fs-bank__image--lg img {
    width: 100%;
    height: auto;
    display: block;
}
.fs-bank__zoom {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(47, 90, 174, 0.92);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.fs-bank__image--lg:hover .fs-bank__zoom { opacity: 1; }
@media (max-width: 768px) {
    .fs-intro { padding: 60px 0 30px; }
    .fs-bank__image--lg { max-width: 100%; }
    .fs-bank__zoom { opacity: 1; }
}
