/* ================================
   BASE
================================ */
.sumer-navbar,
.sumer-navbar * {
    box-sizing: border-box;
}

.sumer-navbar {
    position: fixed;
    top: 20px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: fit-content;
    max-width: calc(100% - 32px);
    height: 64px;
    z-index: 9999;
    direction: rtl;
    border-radius: 34px;
    transition: top .28s ease, height .28s ease, box-shadow .28s ease,
                transform .38s cubic-bezier(0.34, 1.2, 0.64, 1),
                opacity .38s ease;
    animation: sumerNavbarEntrance .55s cubic-bezier(.22, 1, .36, 1) .08s both;
    will-change: transform, opacity;
}

/* ── Hidden state (scroll down) ── */
.sumer-navbar.nav-hidden {
    transform: translateY(calc(-100% - 30px));
    opacity: 0;
    pointer-events: none;
    animation: none;
}

/* ── Visible state (scroll up) ── */
.sumer-navbar.nav-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    animation: none;
}

@keyframes sumerNavbarEntrance {
    0% {
        transform: translateY(-22px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================================
   GLASS BACKGROUND
================================ */
.sumer-navbar-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 34px;
    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.85),
            rgba(235, 245, 250, 0.65)
        );
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 0 15px 40px rgba(13, 58, 77, 0.08), inset 0 2px 10px rgba(255,255,255,0.8);
    transition: background 0.5s ease, box-shadow 0.5s ease, border-radius 0.5s ease;
    pointer-events: none;
}

/* ================================
   SCROLL
================================ */
.sumer-navbar.scrolled {
    top: 12px;
    height: 60px;
    width: fit-content;
}

.sumer-navbar.scrolled .sumer-navbar-bg {
    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.95),
            rgba(240, 250, 255, 0.85)
        );
    box-shadow: 0 10px 30px rgba(13, 58, 77, 0.12), inset 0 1px 5px rgba(255,255,255,0.9);
}

/* ================================
   CONTAINER
================================ */
.sumer-navbar-container {
    position: relative;
    z-index: 2;
    width: max-content;
    max-width: 100%;
    height: 100%;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
}

/* ================================
   BRAND
================================ */
.sumer-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sumer-brand:hover {
    transform: scale(1.05);
}

.sumer-brand-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #34a8da, #136f9c);
    box-shadow: 0 8px 25px rgba(52, 168, 218, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sumer-brand-icon img {
    border-radius: 12px;
}

.sumer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sumer-brand-text strong {
    color: #0b2b3a;
    font-size: 17px;
    font-weight: 900;
}

.sumer-brand-text small {
    color: #34a8da;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

/* ================================
   MENU
================================ */
.sumer-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.5);
    flex: 0 1 auto;
    min-width: 0;
    justify-content: center;
}

/* ================================
   LINKS
================================ */
.sumer-menu-link {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px clamp(7px, .55vw, 11px);
    min-height: 32px;
    border-radius: 50px;
    color: #315d6d;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color .22s ease, transform .22s ease;
}

.sumer-menu-link:hover {
    color: #136f9c;
    transform: translateY(-1px);
}

.sumer-menu-link.active {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ================================
   ACTIVE BUBBLE
================================ */
.sumer-menu-indicator {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 0;
    height: calc(100% - 6px);
    z-index: 2;
    border-radius: 50px;
    background: linear-gradient(135deg, #34a8da 0%, #136f9c 100%);
    box-shadow: 0 5px 15px rgba(52, 168, 218, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: right .32s cubic-bezier(.22, 1, .36, 1), width .32s cubic-bezier(.22, 1, .36, 1);
}

/* ================================
   CONTACT
================================ */
.sumer-navbar-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.sumer-contact-button {
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    height: 38px;
    padding: 0 15px;
    border-radius: 50px;
    background: linear-gradient(135deg, #34a8da, #136f9c);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(52, 168, 218, 0.35);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    position: relative;
    overflow: hidden;
}

.sumer-contact-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.sumer-contact-button:hover::after {
    left: 150%;
}

.sumer-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(52, 168, 218, 0.5);
    color: #ffffff;
}

/* ================================
   MOBILE BUTTON
================================ */
.sumer-mobile-button {
    display: none;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sumer-mobile-button span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 5px;
    background: #0b2b3a;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sumer-mobile-button:hover {
    background: #ffffff;
    transform: scale(1.05);
}

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

.sumer-mobile-button.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ================================
   MOBILE OVERLAY
================================ */
.sumer-mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    background: rgba(7, 49, 66, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.sumer-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ================================
   MOBILE PANEL
================================ */
.sumer-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 85%;
    height: 100vh;
    height: 100dvh;
    z-index: 10000;
    padding: 30px 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(240, 250, 255, 0.9));
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    box-shadow: -20px 0 60px rgba(13, 58, 77, 0.2);
    border-radius: 30px 0 0 30px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.6s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.sumer-mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}

/* ================================
   MOBILE HEADER
================================ */
.sumer-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(13, 58, 77, 0.1);
}

.sumer-mobile-header strong {
    color: #0b2b3a;
    font-size: 26px;
    font-weight: 900;
}

.sumer-mobile-close {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(52, 168, 218, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: #136f9c;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sumer-mobile-close:hover {
    background: #ff4a4a;
    color: #fff;
    border-color: #ff4a4a;
    transform: rotate(90deg);
}

/* ================================
   MOBILE LINKS
================================ */
.sumer-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.sumer-mobile-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border-radius: 16px;
    color: #0d3a4d;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.sumer-mobile-link:hover {
    background: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(52, 168, 218, 0.15);
}

.sumer-mobile-link span {
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 168, 218, 0.1);
    border-radius: 8px;
    color: #34a8da;
    font-size: 12px;
    font-weight: 800;
}

.sumer-mobile-link b {
    font-weight: 700;
}

.sumer-mobile-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #34a8da, #136f9c);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(52, 168, 218, 0.3);
}

.sumer-mobile-link.active span {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ================================
   MOBILE CONTACT
================================ */
.sumer-mobile-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin-top: 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0b2b3a, #136f9c);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(11, 43, 58, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.sumer-mobile-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(11, 43, 58, 0.4);
    color: #fff;
}

.sumer-mobile-menu.open .sumer-mobile-link,
.sumer-mobile-menu.open .sumer-mobile-contact {
    opacity: 1;
    transform: translateY(0);
}

.sumer-mobile-menu.open .sumer-mobile-link:nth-child(1) {
    transition-delay: .06s;
}

.sumer-mobile-menu.open .sumer-mobile-link:nth-child(2) {
    transition-delay: .10s;
}

.sumer-mobile-menu.open .sumer-mobile-link:nth-child(3) {
    transition-delay: .14s;
}

.sumer-mobile-menu.open .sumer-mobile-link:nth-child(4) {
    transition-delay: .18s;
}

.sumer-mobile-menu.open .sumer-mobile-link:nth-child(5) {
    transition-delay: .22s;
}

.sumer-mobile-menu.open .sumer-mobile-link:nth-child(6) {
    transition-delay: .26s;
}

.sumer-mobile-menu.open .sumer-mobile-link:nth-child(7) {
    transition-delay: .30s;
}

.sumer-mobile-menu.open .sumer-mobile-link:nth-child(8) {
    transition-delay: .34s;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1100px) {
    .sumer-menu {
        display: none;
    }

    .sumer-navbar-actions > .sumer-contact-button:first-child {
        display: none;
    }

    .sumer-mobile-button {
        display: block;
    }
}

@media (max-width: 680px) {
    .sumer-navbar {
        top: 14px;
        width: calc(100% - 28px);
        height: 62px;
        max-width: 420px;
        border-radius: 32px;
    }

    .sumer-navbar.scrolled {
        top: 14px;
        height: 62px;
        width: calc(100% - 28px);
        max-width: 420px;
    }

    .sumer-navbar-bg {
        border-radius: 32px;
        background: linear-gradient(135deg, #ffffff, #eef8fc);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        box-shadow: 0 12px 34px rgba(13, 58, 77, 0.14), inset 0 1px 10px rgba(255, 255, 255, 0.9);
    }

    .sumer-navbar-container {
        width: 100%;
        padding: 0 12px;
        gap: 10px;
    }

    .sumer-navbar-actions {
        gap: 0;
    }

    .sumer-contact-button {
        display: none !important;
    }

    .sumer-brand {
        min-width: 0;
        gap: 7px;
    }

    .sumer-brand-text strong {
        font-size: 15px;
        line-height: 1;
    }

    .sumer-brand-text small {
        display: none;
    }

    .sumer-brand-icon,
    .sumer-brand-icon img {
        width: 38px !important;
        height: 38px !important;
    }

    .sumer-mobile-button {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .sumer-mobile-button span {
        width: 19px;
        margin: 4px auto;
    }

    .sumer-mobile-button.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .sumer-mobile-button.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .sumer-mobile-menu {
        width: min(340px, calc(100% - 26px));
        max-width: none;
        padding: 22px 18px;
        border-radius: 26px 0 0 26px;
    }

    .sumer-mobile-header {
        margin-bottom: 22px;
        padding-bottom: 14px;
    }

    .sumer-mobile-header strong {
        font-size: 21px !important;
    }

    .sumer-mobile-close {
        width: 38px;
        height: 38px;
        font-size: 25px;
    }

    .sumer-mobile-close:hover {
        background: rgba(52, 168, 218, 0.12);
        color: #136f9c;
        border-color: rgba(52, 168, 218, 0.25);
        transform: rotate(90deg);
    }

    .sumer-mobile-links {
        gap: 6px;
    }

    .sumer-mobile-link {
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 15px;
        gap: 10px;
    }

    .sumer-mobile-link span {
        min-width: 28px;
        width: 28px;
        height: 28px;
    }

    .sumer-mobile-contact {
        height: 48px;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .sumer-navbar {
        width: calc(100% - 24px);
        height: 58px;
        border-radius: 30px;
    }

    .sumer-navbar.scrolled {
        top: 14px;
        height: 58px;
        width: calc(100% - 24px);
    }

    .sumer-navbar-bg {
        border-radius: 30px;
    }

    .sumer-navbar-container {
        padding: 0 10px;
    }

    .sumer-brand-text small {
        display: none;
    }

    .sumer-mobile-menu {
        width: calc(100% - 18px);
        border-radius: 24px 0 0 24px;
    }

    .sumer-contact-button {
        display: none;
    }
}

/* ── RESET AND TOKENS ── */
@media (prefers-reduced-motion: reduce) {
    .sumer-navbar,
    .sumer-navbar *,
    .sumer-navbar-bg {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}

:root {
    --c-bg-hero: #0b0d14;
    --c-bg-intro: #0d1428;
    --c-primary: #364295;
    --c-accent: #34A8DA;
    --c-white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--c-bg-intro);
    color: var(--c-white);
    font-family: 'Tajawal', 'Inter', sans-serif;
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── STAGE ── */
.sumer-stage-container {
    position: relative;
    width: 100%;
}

/* ── HERO WRAPPER ── */
.shr-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--c-bg-hero);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

/* background video */
.shr-bg-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.shr-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.shr-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,13,20,0.45) 0%, rgba(11,13,20,0.85) 100%);
}

/* lithosquare interactive grid */
.shr-square-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(var(--sq-cols, 16), 1fr);
    grid-template-rows: repeat(var(--sq-rows, 10), 1fr);
    pointer-events: none;
}

.shr-sq {
    border: 1px solid rgba(255,255,255,0.04);
    opacity: 0;
    transition: background 0.35s ease, opacity 0.35s ease, border-color 0.35s ease;
    will-change: opacity, background;
}

/* hero header text */
.shr-header {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1440px;
    padding: 0 clamp(20px, 4vw, 64px);
}

.shr-header-grid {
    display: grid;
    grid-template-columns: auto 1px auto;
    align-items: center;
}

.shr-divider-h {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(255,255,255,0.08);
    position: relative;
    margin-bottom: 8px;
}

.shr-divider-h-focus {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
    animation: shrSweepH 3s 0.8s ease forwards;
}

@keyframes shrSweepH {
    0% {
        width: 0;
        left: 0;
        opacity: 1;
    }

    50% {
        width: 100%;
        left: 0;
        opacity: 1;
    }

    100% {
        width: 0;
        left: 100%;
        opacity: 0;
    }
}

.shr-heading-cell-1 {
    grid-column: 1;
    padding-left: clamp(0px, 2vw, 40px);
}

.shr-divider-v {
    grid-column: 2;
    width: 1px;
    align-self: stretch;
    min-height: 120px;
    background: rgba(255,255,255,0.08);
    position: relative;
}

.shr-divider-v-focus {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, transparent, var(--c-accent), transparent);
    animation: shrSweepV 3s 1.2s ease forwards;
}

@keyframes shrSweepV {
    0% {
        height: 0;
        top: 0;
        opacity: 1;
    }

    50% {
        height: 100%;
        top: 0;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 100%;
        opacity: 0;
    }
}

.shr-heading-cell-2 {
    grid-column: 3;
    padding-right: clamp(0px, 2vw, 40px);
}

.shr-heading {
    font-size: clamp(50px, 8.5vw, 8.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--c-white);
    opacity: 0;
    transform: translateY(60%);
    animation: shrSlideUp 0.95s ease forwards;
}

.shr-heading-1 {
    animation-delay: 0.4s;
}

.shr-heading-2 {
    animation-delay: 0.55s;
    color: var(--c-accent);
}

@keyframes shrSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── CANVAS OVERLAY ──
       Draws solid squares over the hero.
       z-index 10 = above hero (2) but below intro (15). */
#transitionCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
}

/* ── INTRODUCTION SECTION ──
       z-index 15 = ABOVE the canvas.
       It scrolls into view naturally after the pin spacer,
       overlaying the fully-painted canvas seamlessly
       because its background matches the square colour. */
.sumer-intro-section {
    position: relative;
    z-index: 15;
    background: var(--c-bg-intro);
    color: #ffffff;
    padding: 60px 20px 80px;
    min-height: 100vh;

    /* Delays the intro section sliding up so it doesn't cover the squares too early */
    margin-top: 25vh;
}

/* When preceded by the hero slider, remove the large top margin */
.sumer-hero-slider + .sumer-intro-section,
.sumer-hero-slider ~ .sumer-intro-section {
    margin-top: 0;
    padding-top: 60px;
}

.sumer-intro-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-intro-bubbles span {
    position: absolute;
    bottom: -60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(52,168,218,0.20), rgba(54,66,149,0.10));
    border: 1px solid rgba(52,168,218,0.15);
    animation: sumerBubbleFloat linear infinite;
}

.sumer-intro-bubbles span:nth-child(1) {
    width: 50px;
    height: 50px;
    left: 5%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.sumer-intro-bubbles span:nth-child(2) {
    width: 30px;
    height: 30px;
    left: 15%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.sumer-intro-bubbles span:nth-child(3) {
    width: 70px;
    height: 70px;
    left: 28%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.sumer-intro-bubbles span:nth-child(4) {
    width: 40px;
    height: 40px;
    left: 40%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.sumer-intro-bubbles span:nth-child(5) {
    width: 25px;
    height: 25px;
    left: 55%;
    animation-duration: 9s;
    animation-delay: 0.5s;
}

.sumer-intro-bubbles span:nth-child(6) {
    width: 60px;
    height: 60px;
    left: 65%;
    animation-duration: 13s;
    animation-delay: 4s;
}

@keyframes sumerBubbleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.75;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-110vh) scale(0.4);
        opacity: 0;
    }
}

.sumer-intro-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.sumer-intro-header {
    text-align: center;
    margin-bottom: 60px;
}

.sumer-intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54,66,149,0.25);
}

.sumer-intro-title {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.sumer-intro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sumer-intro-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
}

.sumer-intro-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-direction: row-reverse;
}

.sumer-intro-image-wrapper {
    position: relative;
    flex: 0 0 42%;
    max-width: 42%;
}

.sumer-intro-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(54,66,149,0.3), 0 0 0 4px rgba(52,168,218,0.2);
}

.sumer-intro-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.sumer-intro-stat-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(13,20,40,0.85);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 18px 28px;
    text-align: center;
    border: 1px solid rgba(52,168,218,0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    z-index: 2;
}

.sumer-intro-stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, var(--c-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.sumer-intro-stat-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-accent);
    margin-top: 4px;
}

.sumer-intro-reg-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(54,66,149,0.3);
    z-index: 2;
}

.sumer-intro-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sumer-intro-text-block {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.sumer-intro-text-block:hover {
    transform: translateY(-4px);
    border-color: rgba(52,168,218,0.4);
    background: rgba(52,168,218,0.08);
}

.sumer-intro-text-icon {
    background: rgba(52,168,218,0.12);
    padding: 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sumer-intro-text-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-accent);
    margin: 0 0 8px 0;
}

.sumer-intro-text-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

@media (max-width: 900px) {
    .shr-divider-v {
        display: none;
    }

    .shr-header-grid {
        grid-template-columns: 1fr;
    }

    .sumer-intro-content {
        flex-direction: column;
    }

    .sumer-intro-image-wrapper {
        max-width: 100%;
        width: 100%;
    }
}

.sumer-comp-section {
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', sans-serif;
    background: transparent;
    padding: 80px 20px;
    overflow: hidden;
}

/* === خلفية هندسية متحركة - نمط الحلقات والجزيئات === */
.sumer-comp-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* حلقات دائرية نابضة */
.sumer-comp-ring {
    position: absolute;
    border-radius: 50%;
    animation: sumerCompRingPulse ease-in-out infinite;
}

.sumer-comp-ring-1 {
    width: 480px;
    height: 480px;
    top: -180px;
    right: -140px;
    border: 2px solid rgba(54, 66, 149, 0.18);
    animation-duration: 8s;
    animation-delay: 0s;
    box-shadow: inset 0 0 60px rgba(52, 168, 218, 0.05);
}

.sumer-comp-ring-1::after {
    content: '';
    position: absolute;
    inset: 36px;
    border-radius: 50%;
    border: 1px solid rgba(52, 168, 218, 0.12);
}

.sumer-comp-ring-2 {
    width: 340px;
    height: 340px;
    bottom: -110px;
    left: 2%;
    border: 2px solid rgba(52, 168, 218, 0.16);
    animation-duration: 11s;
    animation-delay: 2.5s;
}

.sumer-comp-ring-2::after {
    content: '';
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    border: 1px solid rgba(54, 66, 149, 0.10);
}

.sumer-comp-ring-3 {
    width: 220px;
    height: 220px;
    top: 32%;
    left: 40%;
    border: 1.5px dashed rgba(52, 168, 218, 0.18);
    animation-duration: 7s;
    animation-delay: 1s;
    animation-name: sumerCompRingSpin;
}

.sumer-comp-ring-4 {
    width: 160px;
    height: 160px;
    top: 10%;
    left: 18%;
    border: 1.5px solid rgba(54, 66, 149, 0.14);
    animation-duration: 9s;
    animation-delay: 3s;
}

.sumer-comp-ring-4::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(52, 168, 218, 0.10);
}

.sumer-comp-ring-5 {
    width: 260px;
    height: 260px;
    bottom: 15%;
    right: 8%;
    border: 1.5px solid rgba(52, 168, 218, 0.14);
    animation-duration: 10s;
    animation-delay: 1.8s;
    animation-name: sumerCompRingSpin;
}

@keyframes sumerCompRingPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.10);
        opacity: 1;
    }
}

@keyframes sumerCompRingSpin {
    0% {
        transform: rotate(0deg)   scale(1);
        opacity: 0.4;
    }

    50% {
        transform: rotate(180deg) scale(1.08);
        opacity: 0.7;
    }

    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.4;
    }
}

/* جزيئات متطايرة صاعدة */
.sumer-comp-particle {
    position: absolute;
    bottom: -10px;
    left: var(--x);
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 168, 218, 0.55), rgba(54, 66, 149, 0.30));
    animation: sumerCompParticleRise var(--d) linear var(--dl) infinite;
    will-change: transform, opacity;
}

@keyframes sumerCompParticleRise {
    0% {
        transform: translateY(0)      rotate(0deg);
        opacity: 0;
    }

    8% {
        opacity: 0.85;
    }

    85% {
        opacity: 0.25;
    }

    100% {
        transform: translateY(-105vh) rotate(360deg);
        opacity: 0;
    }
}

/* موجات ديكورية في الاسفل */
.sumer-comp-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    opacity: 0.055;
}

.sumer-comp-wave-path {
    fill: #364295;
    animation: sumerCompWaveShift 14s ease-in-out infinite alternate;
}

.wave-2 {
    fill: #34A8DA;
    opacity: 0.65;
    animation-delay: 4s;
    animation-duration: 10s;
}

@keyframes sumerCompWaveShift {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-4%);
    }
}

/* === الحاوية === */
.sumer-comp-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* === العنوان === */
.sumer-comp-header {
    text-align: center;
    margin-bottom: 50px;
}

.sumer-comp-badge {
    display: inline-block;
    background: linear-gradient(135deg, #364295, #34A8DA);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54,66,149,0.25);
}

.sumer-comp-title {
    font-size: 38px;
    font-weight: 900;
    color: #364295;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-comp-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    max-width: 750px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-comp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-comp-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #364295, #34A8DA);
}

/* === معرض الصور === */
.sumer-comp-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.sumer-comp-gallery-bottom {
    margin-bottom: 0;
    margin-top: 45px;
}

.sumer-comp-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(54,66,149,0.12);
    cursor: pointer;
}

.sumer-comp-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.sumer-comp-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.sumer-comp-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(54,66,149,0.85), transparent);
    padding: 30px 20px 16px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sumer-comp-gallery-item:hover .sumer-comp-gallery-overlay {
    transform: translateY(0);
}

.sumer-comp-gallery-overlay span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

/* === بطاقات الكفاءات - زجاجية محسّنة الأداء === */
.sumer-comp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.sumer-comp-card {
    position: relative;

    /* زجاجي قوي وجميل */
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-top: 1px solid rgba(255, 255, 255, 0.70);
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 36px rgba(54, 66, 149, 0.15),
      0 4px 14px rgba(52, 168, 218, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.60),
      inset 0 -1px 0 rgba(54, 66, 149, 0.04);
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.35s ease,
                border-color 0.3s ease,
                background 0.35s ease;
    overflow: hidden;
    will-change: transform;
}

/* خط علوي متدرج يمتد عند الهوفر */
.sumer-comp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #364295, #34A8DA);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.sumer-comp-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* وميض ضوء shimmer عند الهوفر */
.sumer-comp-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
    transform: skewX(-15deg);
    transition: left 0.65s ease;
    pointer-events: none;
}

.sumer-comp-card:hover::after {
    left: 120%;
}

.sumer-comp-card:hover {
    background: rgba(255, 255, 255, 0.30);
    box-shadow: 0 22px 60px rgba(54, 66, 149, 0.22),
      0 8px 24px rgba(52, 168, 218, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.80),
      0 0 0 1px rgba(52, 168, 218, 0.22);
    border-color: rgba(52, 168, 218, 0.45);
    border-top-color: rgba(255, 255, 255, 0.90);
    transform: translateY(-7px) scale(1.01);
}

.sumer-comp-card-num {
    position: absolute;
    top: 14px;
    left: 18px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(54,66,149,0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.sumer-comp-card:hover .sumer-comp-card-num {
    color: rgba(52,168,218,0.12);
}

.sumer-comp-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54,66,149,0.10), rgba(52,168,218,0.10));
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 4px 12px rgba(54,66,149,0.08);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.35s ease,
                box-shadow 0.35s ease;
}

.sumer-comp-card:hover .sumer-comp-card-icon {
    background: linear-gradient(135deg, #364295, #34A8DA);
    border-color: rgba(52,168,218,0.4);
    box-shadow: 0 8px 24px rgba(52,168,218,0.30);
    transform: rotate(-5deg) scale(1.1);
}

.sumer-comp-card:hover .sumer-comp-card-icon svg {
    stroke: #fff;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
}

.sumer-comp-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: #364295;
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sumer-comp-card h3::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #364295, #34A8DA);
    border-radius: 2px;
    margin-top: 5px;
    transition: width 0.4s ease;
}

.sumer-comp-card:hover h3 {
    color: #1a2a7a;
}

.sumer-comp-card:hover h3::after {
    width: 55%;
}

.sumer-comp-card p {
    font-size: 14.5px;
    font-weight: 400;
    color: #3a3a4a;
    line-height: 1.8;
    margin: 0;
}

/* === بطاقة التسليم الكامل === */
.sumer-comp-turnkey {
    margin-bottom: 0;
}

.sumer-comp-turnkey-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #364295, #2a3578, #34A8DA);
    background-size: 200% 200%;
    animation: sumerCompTurnkeyBg 5s ease infinite;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 16px 50px rgba(54,66,149,0.3);
}

@keyframes sumerCompTurnkeyBg {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.sumer-comp-turnkey-icon {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
}

.sumer-comp-turnkey-text {
    flex: 1;
}

.sumer-comp-turnkey-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
}

.sumer-comp-turnkey-text h3 span {
    font-weight: 500;
    opacity: 0.8;
    font-size: 17px;
}

.sumer-comp-turnkey-text p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    margin: 0;
}

/* === أنيميشن الظهور المحسّن === */
.sumer-comp-anim {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
}

.sumer-comp-anim.sumer-comp-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* === التجاوب === */
@media (max-width: 992px) {
    .sumer-comp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .sumer-comp-gallery-item:last-child {
        grid-column: span 2;
    }

    .sumer-comp-title {
        font-size: 30px;
    }

    .sumer-comp-turnkey-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .sumer-comp-ring-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -80px;
    }

    .sumer-comp-ring-2 {
        width: 220px;
        height: 220px;
        bottom: -50px;
        left: 2%;
    }

    .sumer-comp-ring-3 {
        width: 160px;
        height: 160px;
        top: 25%;
        left: 75%;
    }

    .sumer-comp-ring-4 {
        width: 140px;
        height: 140px;
        top: 12%;
        left: -30px;
    }

    .sumer-comp-ring-5 {
        width: 200px;
        height: 200px;
        right: 2%;
        bottom: 12%;
    }
}

@media (max-width: 576px) {
    .sumer-comp-section {
        padding: 50px 14px;
    }

    .sumer-comp-title {
        font-size: 24px;
    }

    .sumer-comp-grid {
        grid-template-columns: 1fr;
    }

    .sumer-comp-gallery {
        grid-template-columns: 1fr;
    }

    .sumer-comp-gallery-item:last-child {
        grid-column: span 1;
    }

    .sumer-comp-gallery-item img {
        height: 180px;
    }

    .sumer-comp-card {
        padding: 24px 18px;
    }

    /* الحلقات المتحركة في الموبايل */
    .sumer-comp-ring-1 {
        width: 220px;
        height: 220px;
        top: -70px;
        right: -50px;
        display: block;
    }

    .sumer-comp-ring-2 {
        width: 170px;
        height: 170px;
        bottom: 2%;
        left: -40px;
        display: block;
    }

    .sumer-comp-ring-3 {
        width: 130px;
        height: 130px;
        top: 38%;
        right: -30px;
        display: block;
    }

    .sumer-comp-ring-4 {
        width: 110px;
        height: 110px;
        top: 15%;
        left: -25px;
        display: block;
    }

    .sumer-comp-ring-5 {
        width: 150px;
        height: 150px;
        bottom: 28%;
        right: -35px;
        display: block;
    }
}

/* === CSS Design System & Variables === */
.sumer-eng-section {
    --eng-primary: #364295;
    --eng-primary-dark: #2a3578;
    --eng-accent: #34A8DA;
    --eng-accent-glow: rgba(52, 168, 218, 0.35);
    --eng-text-heading: #364295;
    --eng-text-body: #3a3a4a;
    --eng-text-muted: #666;
    --eng-glass-bg: rgba(255, 255, 255, 0.22);
    --eng-glass-bg-hover: rgba(255, 255, 255, 0.34);
    --eng-glass-border: rgba(255, 255, 255, 0.55);
    --eng-glass-shadow: 0 16px 40px rgba(54, 66, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    --eng-glass-shadow-hover: 0 24px 60px rgba(54, 66, 149, 0.20), 0 8px 24px rgba(52, 168, 218, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    --eng-radius-card: 24px;
    --eng-radius-btn: 18px;
    --eng-transition-spring: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(to right, rgb(238, 244, 250) 8%, rgb(136, 218, 255) 98%);
    padding: 80px 20px;
    overflow: hidden;
    color: var(--eng-text-body);
}

/* =============================================
     === خلفية CAD & Blueprint المتقدمة ===
     ============================================= */
.sumer-eng-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-eng-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    will-change: opacity;
}

/* CAD Hexagons & Polygons */
.sumer-eng-poly {
    position: absolute;
    border: 1.5px solid rgba(52, 168, 218, 0.18);
    background: rgba(54, 66, 149, 0.04);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    will-change: transform, opacity;
    animation: sumerEngPolyFloat ease-in-out infinite alternate;
}

.sumer-eng-poly-1 {
    width: 240px;
    height: 240px;
    top: -60px;
    right: -50px;
    transform: rotate(45deg);
    border-color: rgba(54, 66, 149, 0.20);
    animation-duration: 9s;
}

.sumer-eng-poly-2 {
    width: 180px;
    height: 180px;
    bottom: 8%;
    left: -40px;
    transform: rotate(15deg);
    border-color: rgba(52, 168, 218, 0.20);
    animation-duration: 12s;
    animation-delay: 2s;
}

.sumer-eng-poly-3 {
    width: 130px;
    height: 130px;
    top: 35%;
    left: 78%;
    transform: rotate(30deg);
    border-style: dashed;
    border-color: rgba(52, 168, 218, 0.22);
    animation-duration: 8s;
    animation-delay: 1s;
}

.sumer-eng-poly-4 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: -30px;
    transform: rotate(60deg);
    border-color: rgba(54, 66, 149, 0.16);
    animation-duration: 10s;
    animation-delay: 3s;
}

@keyframes sumerEngPolyFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        opacity: 0.5;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        transform: translate3d(0, -22px, 0) rotate(15deg) scale(1.05);
        opacity: 0.5;
    }
}

/* جزيئات ضوئية متطايرة */
.sumer-eng-particle {
    position: absolute;
    bottom: -10px;
    left: var(--x);
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 168, 218, 0.65), rgba(54, 66, 149, 0.35));
    animation: sumerEngParticleRise var(--d) linear var(--dl) infinite;
    will-change: transform, opacity;
}

@keyframes sumerEngParticleRise {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.85;
    }

    85% {
        opacity: 0.25;
    }

    100% {
        transform: translate3d(0, -105vh, 0) rotate(360deg);
        opacity: 0;
    }
}

/* موجات سفلية */
.sumer-eng-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    opacity: 0.06;
}

.sumer-eng-wave-path {
    fill: var(--eng-primary);
    animation: sumerEngWaveShift 14s ease-in-out infinite alternate;
}

.wave-2 {
    fill: var(--eng-accent);
    opacity: 0.65;
    animation-delay: 4s;
    animation-duration: 10s;
}

@keyframes sumerEngWaveShift {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-4%, 0, 0);
    }
}

/* === الحاوية الرئيسية === */
.sumer-eng-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* === الرأس الرئيسي === */
.sumer-eng-header {
    text-align: center;
    margin-bottom: 35px;
}

.sumer-eng-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--eng-primary), var(--eng-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54, 66, 149, 0.25);
}

.sumer-eng-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--eng-text-heading);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-eng-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--eng-text-muted);
    max-width: 820px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-eng-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-eng-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--eng-primary), var(--eng-accent));
}

/* === شريط أزرار التنقل الأفقية (Tabs Nav) === */
.sumer-eng-nav-scroll-wrapper {
    margin-bottom: 45px;
    width: 100%;
}

.sumer-eng-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
}

.sumer-eng-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--eng-radius-btn);
    border: 1px solid rgba(52, 168, 218, 0.25);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    cursor: pointer;
    transition: var(--eng-transition-spring);
    color: var(--eng-primary);
    font-family: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 4px 14px rgba(54,66,149,0.08);
    text-align: right;
}

.sumer-eng-nav-btn:hover {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(52, 168, 218, 0.45);
    transform: translate3d(0, -2px, 0);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 20px rgba(54,66,149,0.14);
}

.sumer-eng-nav-btn:focus-visible {
    outline: 2px solid var(--eng-accent);
    outline-offset: 3px;
}

.sumer-eng-nav-btn.active {
    background: linear-gradient(135deg, var(--eng-primary), var(--eng-accent));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 28px rgba(54,66,149,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translate3d(0, -2px, 0);
}

.sumer-eng-nav-num {
    font-size: 15px;
    font-weight: 900;
    flex-shrink: 0;
    background: rgba(255,255,255,0.25);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sumer-eng-nav-btn.active .sumer-eng-nav-num {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.sumer-eng-nav-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

/* === حاوية العرض التفاعلي للتبويبات (Tabs Panes Container) === */
.sumer-eng-panes-wrapper {
    position: relative;
    min-height: 450px;
}

/* === التبويبات الفردية مع أنيميشن Spring-assisted Fade + Slide + Scale === */
.sumer-eng-tab-pane {
    display: none;
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.97);
    filter: blur(4px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.45s ease;
}

.sumer-eng-tab-pane.active-pane {
    display: flex;
    flex-direction: column;
    gap: 35px;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.sumer-eng-pane-header {
    margin-bottom: 5px;
}

.sumer-eng-cat-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--eng-accent);
    background: rgba(52, 168, 218, 0.12);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.sumer-eng-pane-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--eng-primary);
    margin: 0;
}

/* === شبكة بطاقات الميزات (Feature Cards Grid) === */
.sumer-eng-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sumer-eng-feat-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--eng-glass-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--eng-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--eng-glass-shadow);
    transition: var(--eng-transition-spring);
    overflow: hidden;
}

.sumer-eng-feat-card:hover {
    background: var(--eng-glass-bg-hover);
    border-color: rgba(52, 168, 218, 0.45);
    transform: translate3d(0, -5px, 0);
    box-shadow: var(--eng-glass-shadow-hover);
}

.sumer-eng-feat-card.full-span {
    grid-column: span 2;
}

.sumer-eng-feat-card.highlight-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(52,168,218,0.14));
    border-color: rgba(52, 168, 218, 0.5);
}

.feat-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    font-size: 22px;
    transition: var(--eng-transition-spring);
}

.sumer-eng-feat-card:hover .feat-icon-box {
    background: linear-gradient(135deg, var(--eng-primary), var(--eng-accent));
    border-color: transparent;
    color: #fff;
    transform: rotate3d(0,0,1,-6deg) scale(1.08);
}

.sumer-eng-feat-card:hover .feat-icon-box svg {
    stroke: #fff;
}

.feat-content {
    flex: 1;
}

.feat-content h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--eng-primary);
    margin: 0 0 6px 0;
}

.feat-content p {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--eng-text-body);
    line-height: 1.7;
    margin: 0;
}

/* وسم التسميات التقنية مثل ASME, PLC, SCADA */
.tech-pill {
    color: var(--eng-primary);
    background: rgba(54, 66, 149, 0.09);
    border: 1px solid rgba(54, 66, 149, 0.18);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    margin: 0 2px;
}

.tech-pill.glow {
    color: #fff;
    background: linear-gradient(135deg, var(--eng-primary), var(--eng-accent));
    border: none;
}

/* =============================================
     === معرض الصور الفني التلقائي Auto-fit ===
     ============================================= */
.sumer-eng-gallery-wrapper {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(54, 66, 149, 0.08);
}

.sumer-eng-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sumer-eng-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(54,66,149,0.12);
    cursor: pointer;
    margin: 0;
    aspect-ratio: 16 / 10;
    background: rgba(54, 66, 149, 0.05);
}

.sumer-eng-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.sumer-eng-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.sumer-eng-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(54,66,149,0.92), transparent);
    padding: 30px 20px 16px;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sumer-eng-gallery-item:hover .sumer-eng-gallery-overlay {
    transform: translate3d(0, 0, 0);
}

.sumer-eng-gallery-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    display: block;
}

/* === Lightbox Modal نافذة تكبير الصور === */
.sumer-eng-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 15, 45, 0.85);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.sumer-eng-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.sumer-eng-lightbox-close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--eng-transition-spring);
}

.sumer-eng-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.sumer-eng-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sumer-eng-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.sumer-eng-lightbox-caption {
    color: #fff;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* === شريط المعايير والامتثال === */
.sumer-eng-standards {
    margin-top: 45px;
}

.sumer-eng-standards-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--eng-primary), var(--eng-primary-dark), var(--eng-accent));
    background-size: 200% 200%;
    animation: sumerEngStandardsBg 5s ease infinite;
    border-radius: 22px;
    padding: 32px 36px;
    box-shadow: 0 16px 50px rgba(54,66,149,0.3);
}

@keyframes sumerEngStandardsBg {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.sumer-eng-standards-icon {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
}

.sumer-eng-standards-text {
    flex: 1;
}

.sumer-eng-standards-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
}

.sumer-eng-standards-text h3 span {
    font-weight: 500;
    opacity: 0.8;
    font-size: 17px;
}

.sumer-eng-standards-text p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    margin: 0;
}

/* === أنيميشن الظهور الأساسي === */
.sumer-eng-anim {
    opacity: 0;
    transform: translate3d(0, 35px, 0) scale(0.98);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.sumer-eng-anim.sumer-eng-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* === التجاوب للشاشات المختلفة (Desktop, Laptop, Tablet, Mobile) === */
@media (max-width: 1024px) {
    .sumer-eng-nav {
        grid-template-columns: repeat(3, 1fr);
    }

    .sumer-eng-features-grid {
        grid-template-columns: 1fr;
    }

    .sumer-eng-feat-card.full-span {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .sumer-eng-section {
        padding: 50px 14px;
    }

    .sumer-eng-title {
        font-size: 26px;
    }

    .sumer-eng-nav-scroll-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .sumer-eng-nav {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        width: max-content;
    }

    .sumer-eng-nav-btn {
        flex: 0 0 auto;
        padding: 10px 16px;
    }

    .sumer-eng-nav-num {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .sumer-eng-nav-text {
        font-size: 13px;
    }

    .sumer-eng-feat-card {
        padding: 20px;
    }

    .sumer-eng-standards-inner {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
    }
}

.sumer-plants-section {
    --plant-primary: #364295;
    --plant-primary-dark: #2a3578;
    --plant-accent: #34A8DA;
    --plant-accent-glow: rgba(52, 168, 218, 0.35);
    --plant-text-heading: #364295;
    --plant-text-body: #3a3a4a;
    --plant-text-muted: #555;
    --plant-glass-bg: rgba(255, 255, 255, 0.24);
    --plant-glass-hover: rgba(255, 255, 255, 0.36);
    --plant-glass-border: rgba(255, 255, 255, 0.58);
    --plant-glass-shadow: 0 16px 45px rgba(54, 66, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    --plant-glass-shadow-hover: 0 24px 60px rgba(54, 66, 149, 0.22), 0 8px 24px rgba(52, 168, 218, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    --plant-transition-spring: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    padding: 85px 20px;
    overflow: hidden;
    color: var(--plant-text-body);
}

/* =============================================
     === خلفية تفاعلية: نمط الموجة المائية المتموجة ===
     ============================================= */
.sumer-plants-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-plants-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    will-change: opacity;
}

/* دوائر مائية متداخلة عائمة Ripple Animation */
.sumer-plants-ripple {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(52, 168, 218, 0.16);
    background: radial-gradient(circle, rgba(52, 168, 218, 0.05), transparent 70%);
    animation: sumerPlantRipplePulse ease-in-out infinite alternate;
    will-change: transform, opacity;
}

.ripple-1 {
    width: 320px;
    height: 320px;
    top: -80px;
    left: -60px;
    animation-duration: 8s;
}

.ripple-2 {
    width: 260px;
    height: 260px;
    bottom: 5%;
    right: -50px;
    animation-duration: 11s;
    animation-delay: 2s;
}

.ripple-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 75%;
    border-style: dashed;
    animation-duration: 9s;
    animation-delay: 1s;
}

@keyframes sumerPlantRipplePulse {
    0% {
        transform: scale(1) translate3d(0,0,0);
        opacity: 0.4;
    }

    50% {
        opacity: 0.85;
    }

    100% {
        transform: scale(1.12) translate3d(0,-20px,0);
        opacity: 0.4;
    }
}

/* فقاعات وقطرات ضوئية صاعدة */
.sumer-plants-drop {
    position: absolute;
    bottom: -10px;
    left: var(--x);
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 168, 218, 0.7), rgba(54, 66, 149, 0.3));
    animation: sumerPlantDropRise var(--d) linear var(--dl) infinite;
    will-change: transform, opacity;
}

@keyframes sumerPlantDropRise {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }

    15% {
        opacity: 0.85;
    }

    85% {
        opacity: 0.25;
    }

    100% {
        transform: translate3d(0, -105vh, 0);
        opacity: 0;
    }
}

/* أمواج سفلية */
.sumer-plants-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    opacity: 0.07;
}

.sumer-plants-wave-path {
    fill: var(--plant-primary);
    animation: sumerPlantWaveShift 14s ease-in-out infinite alternate;
}

.wave-2 {
    fill: var(--plant-accent);
    opacity: 0.65;
    animation-delay: 3s;
    animation-duration: 10s;
}

@keyframes sumerPlantWaveShift {
    0% {
        transform: translate3d(0,0,0);
    }

    100% {
        transform: translate3d(-4%,0,0);
    }
}

/* === الحاوية الرئيسية === */
.sumer-plants-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* === الرأس الرئيسي === */
.sumer-plants-header {
    text-align: center;
    margin-bottom: 30px;
}

.sumer-plants-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--plant-primary), var(--plant-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54, 66, 149, 0.25);
}

.sumer-plants-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--plant-text-heading);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-plants-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--plant-text-muted);
    max-width: 840px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-plants-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-plants-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--plant-primary), var(--plant-accent));
}

/* === شريط العداد والتنقل بالأسهُم والتقدم === */
.sumer-plants-control-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    padding: 12px 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(54, 66, 149, 0.08);
}

.sumer-plants-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 900;
    color: var(--plant-primary);
}

.counter-curr {
    color: var(--plant-accent);
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    display: inline-block;
}

.counter-slash {
    opacity: 0.4;
    margin: 0 2px;
}

.counter-total {
    opacity: 0.65;
}

.sumer-plants-arrow-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sumer-plants-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(52, 168, 218, 0.3);
    background: rgba(255, 255, 255, 0.3);
    color: var(--plant-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--plant-transition-spring);
}

.sumer-plants-arrow-btn:hover {
    background: linear-gradient(135deg, var(--plant-primary), var(--plant-accent));
    color: #fff;
    border-color: transparent;
    transform: translate3d(0, -2px, 0);
}

.sumer-plants-progress-track {
    flex: 1;
    max-width: 280px;
    height: 6px;
    border-radius: 6px;
    background: rgba(54, 66, 149, 0.10);
    overflow: hidden;
}

.sumer-plants-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--plant-primary), var(--plant-accent));
    border-radius: 6px;
    transition: width 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* === أزرار التنقل الفخمة السريعة (Tabs Nav) === */
.sumer-plants-nav-scroll-wrapper {
    margin-bottom: 40px;
    width: 100%;
}

.sumer-plants-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
}

.sumer-plants-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(52, 168, 218, 0.25);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    cursor: pointer;
    transition: var(--plant-transition-spring);
    color: var(--plant-primary);
    font-family: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 4px 14px rgba(54,66,149,0.08);
    text-align: right;
}

.sumer-plants-nav-btn:hover {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(52, 168, 218, 0.45);
    transform: translate3d(0, -2px, 0);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 20px rgba(54,66,149,0.14);
}

.sumer-plants-nav-btn.active {
    background: linear-gradient(135deg, var(--plant-primary), var(--plant-accent));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 28px rgba(54,66,149,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translate3d(0, -3px, 0) scale(1.02);
}

.sumer-plants-nav-num {
    font-size: 15px;
    font-weight: 900;
    flex-shrink: 0;
    background: rgba(255,255,255,0.25);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sumer-plants-nav-btn.active .sumer-plants-nav-num {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.sumer-plants-nav-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

/* === حاوية التبويبات التفاعلية (Tabs Panes Container) === */
.sumer-plants-panes-wrapper {
    position: relative;
    min-height: 450px;
    touch-action: pan-y;
}

/* === بطاقة نوع محطة المعالجة الإندستريال (Apple Glass Style) === */
.sumer-plant-card {
    display: none;
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.97);
    filter: blur(4px);
    transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
                filter 0.45s ease;
    background: var(--plant-glass-bg);
    backdrop-filter: blur(26px) saturate(210%);
    -webkit-backdrop-filter: blur(26px) saturate(210%);
    border: 1px solid var(--plant-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.80);
    border-radius: 26px;
    padding: 36px 32px;
    box-shadow: var(--plant-glass-shadow);
    overflow: hidden;
}

.sumer-plant-card.active-pane {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.sumer-plant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--plant-primary), var(--plant-accent));
}

.sumer-plant-card:hover {
    background: var(--plant-glass-hover);
    border-color: rgba(52, 168, 218, 0.48);
    box-shadow: var(--plant-glass-shadow-hover);
}

/* الهيدر داخل بطاقة نوع المحطة */
.sumer-plant-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(54, 66, 149, 0.16);
}

.sumer-plant-icon-box {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 14px rgba(54,66,149,0.12);
    transition: var(--plant-transition-spring);
}

.sumer-plant-card:hover .sumer-plant-icon-box {
    background: linear-gradient(135deg, var(--plant-primary), var(--plant-accent));
    border-color: transparent;
    color: #fff;
    transform: rotate3d(0,0,1,-6deg) scale(1.08);
}

.sumer-plant-card:hover .sumer-plant-icon-box svg {
    stroke: #fff;
}

.sumer-plant-title-group {
    flex: 1;
}

.sumer-plant-tag {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--plant-accent);
    background: rgba(52, 168, 218, 0.12);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.sumer-plant-title-group h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--plant-primary);
    margin: 0;
    line-height: 1.4;
}

.sumer-plant-num {
    font-size: 52px;
    font-weight: 900;
    color: rgba(54, 66, 149, 0.09);
    line-height: 1;
    flex-shrink: 0;
}

/* محتوى بطاقة المحطة */
.sumer-plant-card-body {
    margin-bottom: 10px;
}

.sumer-plant-desc {
    font-size: 16px;
    font-weight: 500;
    color: #2c2c3a;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.sumer-plant-subdesc {
    font-size: 15px;
    font-weight: 400;
    color: #4a4a5a;
    line-height: 1.75;
    margin: 0 0 20px 0;
}

/* صيغ التنفيذ والخامات */
.sumer-plant-formats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    padding: 16px 20px;
}

.format-label {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--plant-primary);
}

.format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.format-badge {
    background: rgba(54, 66, 149, 0.08);
    border: 1px solid rgba(54, 66, 149, 0.16);
    color: var(--plant-primary);
    font-size: 13.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 12px;
    transition: var(--plant-transition-spring);
}

.sumer-plant-card:hover .format-badge {
    background: rgba(52, 168, 218, 0.15);
    border-color: rgba(52, 168, 218, 0.35);
}

/* =============================================
     === معرض الصور الفني المخصص (صورتين لكل نقطة) ===
     ============================================= */
.sumer-plant-gallery {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(54, 66, 149, 0.08);
}

.sumer-plant-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sumer-plant-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(54,66,149,0.12);
    cursor: pointer;
    margin: 0;
    aspect-ratio: 16 / 10;
    background: rgba(54, 66, 149, 0.05);
}

.sumer-plant-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease;
}

.sumer-plant-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.sumer-plant-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(54,66,149,0.92), transparent);
    padding: 30px 20px 16px;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sumer-plant-gallery-item:hover .sumer-plant-gallery-overlay {
    transform: translate3d(0, 0, 0);
}

.sumer-plant-gallery-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    display: block;
}

/* === شريط الالتزام الفني والتصنيع === */
.sumer-plants-footer-banner {
    margin-top: 50px;
}

.sumer-plants-footer-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--plant-primary), var(--plant-primary-dark), var(--plant-accent));
    background-size: 200% 200%;
    animation: sumerPlantFooterBg 5s ease infinite;
    border-radius: 24px;
    padding: 32px 36px;
    box-shadow: 0 16px 50px rgba(54,66,149,0.3);
}

@keyframes sumerPlantFooterBg {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.sumer-plants-footer-icon {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
}

.sumer-plants-footer-text {
    flex: 1;
}

.sumer-plants-footer-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
}

.sumer-plants-footer-text h3 span {
    font-weight: 500;
    opacity: 0.8;
    font-size: 17px;
}

.sumer-plants-footer-text p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    margin: 0;
}

/* === Lightbox Modal نافذة تكبير الصور === */
.sumer-plants-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 15, 45, 0.85);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.sumer-plants-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.sumer-plants-lightbox-close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--plant-transition-spring);
}

.sumer-plants-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.sumer-plants-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sumer-plants-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.sumer-plants-lightbox-caption {
    color: #fff;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* === أنيميشن الظهور الأساسي === */
.sumer-plants-anim {
    opacity: 0;
    transform: translate3d(0, 35px, 0) scale(0.98);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.sumer-plants-anim.sumer-plants-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* === التجاوب للشاشات المختلفة (Desktop, Laptop, Tablet, Mobile) === */
@media (max-width: 1024px) {
    .sumer-plants-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sumer-plants-section {
        padding: 50px 14px;
    }

    .sumer-plants-title {
        font-size: 26px;
    }

    .sumer-plants-control-bar {
        flex-wrap: wrap;
    }

    .sumer-plants-progress-track {
        max-width: 100%;
        width: 100%;
        order: 3;
    }

    .sumer-plants-nav-scroll-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .sumer-plants-nav {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        width: max-content;
    }

    .sumer-plants-nav-btn {
        flex: 0 0 auto;
        padding: 10px 14px;
    }

    .sumer-plant-card {
        padding: 24px 18px;
    }

    .sumer-plant-gallery-grid {
        grid-template-columns: 1fr;
    }

    .sumer-plants-footer-inner {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
    }
}

.sumer-projects-section {
    --proj-primary: #364295;
    --proj-primary-dark: #2a3578;
    --proj-accent: #34A8DA;
    --proj-accent-glow: rgba(52, 168, 218, 0.35);
    --proj-text-heading: #364295;
    --proj-text-body: #3a3a4a;
    --proj-text-muted: #555;
    --proj-glass-bg: rgba(255, 255, 255, 0.24);
    --proj-glass-hover: rgba(255, 255, 255, 0.36);
    --proj-glass-border: rgba(255, 255, 255, 0.58);
    --proj-glass-shadow: 0 16px 45px rgba(54, 66, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    --proj-transition-spring: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    padding: 85px 20px;
    overflow: hidden;
    color: var(--proj-text-body);
}

/* === خلفية تفاعلية === */
.sumer-projects-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-projects-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

/* === خلفية مزخرفة فخمة متحركة (Ornate Animated Hydraulic Mandala) === */
.sumer-ornate-mandala-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 780px;
    height: 780px;
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
}

.sumer-ornate-mandala {
    width: 100%;
    height: 100%;
}

.ring-outer {
    transform-origin: 300px 300px;
    animation: sumerOrnateRotateCW 55s linear infinite;
}

.ring-middle {
    transform-origin: 300px 300px;
    animation: sumerOrnateRotateCCW 40s linear infinite;
}

.ring-inner {
    transform-origin: 300px 300px;
    animation: sumerOrnatePulse 6s ease-in-out infinite alternate;
}

@keyframes sumerOrnateRotateCW {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes sumerOrnateRotateCCW {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes sumerOrnatePulse {
    0% {
        transform: scale(0.94);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.sumer-projects-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--proj-primary);
    top: -100px;
    right: -50px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: var(--proj-accent);
    bottom: -50px;
    left: -50px;
}

/* === الحاوية الرئيسية === */
.sumer-projects-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

/* === الرأس الرئيسي === */
.sumer-projects-header {
    text-align: center;
    margin-bottom: 40px;
}

.sumer-projects-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--proj-primary), var(--proj-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54, 66, 149, 0.25);
}

.sumer-projects-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--proj-text-heading);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-projects-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--proj-text-muted);
    max-width: 840px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-projects-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-projects-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--proj-primary), var(--proj-accent));
}

/* === بطاقات الأرقام والإحصائيات (KPI Stat Cards) === */
.sumer-projects-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.sumer-projects-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--proj-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--proj-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: var(--proj-glass-shadow);
    transition: var(--proj-transition-spring);
}

.sumer-projects-stat-card:hover {
    background: var(--proj-glass-hover);
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 20px 45px rgba(54, 66, 149, 0.18);
}

.stat-icon {
    font-size: 32px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 26px;
    font-weight: 900;
    color: var(--proj-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--proj-text-muted);
}

/* === أدوات التصفية والبحث (Controls Bar) === */
.sumer-projects-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.sumer-projects-filter-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 14px;
    border: 1px solid rgba(52, 168, 218, 0.3);
    background: rgba(255, 255, 255, 0.25);
    color: var(--proj-primary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--proj-transition-spring);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.filter-tab-btn:hover {
    background: rgba(255, 255, 255, 0.45);
    border-color: var(--proj-accent);
    transform: translate3d(0, -2px, 0);
}

.filter-tab-btn.active {
    background: linear-gradient(135deg, var(--proj-primary), var(--proj-accent));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(54, 66, 149, 0.25);
}

.tab-badge {
    background: rgba(255, 255, 255, 0.25);
    color: inherit;
    font-size: 12px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 20px;
}

.filter-tab-btn.active .tab-badge {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.sumer-projects-search-box {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 280px;
}

.sumer-projects-search-box svg {
    position: absolute;
    right: 14px;
    color: var(--proj-primary);
    opacity: 0.65;
    pointer-events: none;
}

.sumer-projects-search-box input {
    width: 100%;
    padding: 11px 44px 11px 16px;
    border-radius: 14px;
    border: 1px solid rgba(52, 168, 218, 0.35);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    color: var(--proj-primary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: var(--proj-transition-spring);
}

.sumer-projects-search-box input:focus {
    background: rgba(255, 255, 255, 0.65);
    border-color: var(--proj-accent);
    box-shadow: 0 0 0 3px rgba(52, 168, 218, 0.25);
}

/* === حاوية الجدول الزجاجية الرئيسية === */
.sumer-projects-table-card {
    background: var(--proj-glass-bg);
    backdrop-filter: blur(28px) saturate(210%);
    -webkit-backdrop-filter: blur(28px) saturate(210%);
    border: 1px solid var(--proj-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 26px;
    padding: 24px;
    box-shadow: var(--proj-glass-shadow);
    overflow: hidden;
}

.sumer-projects-table-scroll {
    max-height: 680px;
    overflow-y: auto;
    overflow-x: auto;
    border-radius: 18px;
}

/* شريط التمرير المخصص للجدول */
.sumer-projects-table-scroll::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

.sumer-projects-table-scroll::-webkit-scrollbar-track {
    background: rgba(54, 66, 149, 0.05);
    border-radius: 4px;
}

.sumer-projects-table-scroll::-webkit-scrollbar-thumb {
    background: rgba(52, 168, 218, 0.4);
    border-radius: 4px;
}

/* === الجدول نفسه === */
.sumer-projects-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    text-align: right;
}

/* الهيدر الأثري المثبت (Sticky Header) */
.sumer-projects-table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(135deg, var(--proj-primary), var(--proj-primary-dark));
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 16px 20px;
    box-shadow: 0 4px 14px rgba(54, 66, 149, 0.2);
}

.sumer-projects-table thead th:first-child {
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

.sumer-projects-table thead th:last-child {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

/* الصفوف */
.sumer-projects-table tbody tr {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
    transition: var(--proj-transition-spring);
}

.sumer-projects-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: translate3d(-4px, 0, 0);
    box-shadow: 0 6px 18px rgba(54, 66, 149, 0.10);
}

/* بداية المجموعات */
.sumer-projects-table tbody tr.row-group-start {
    border-top: 2px stroke var(--proj-accent);
}

.sumer-projects-table tbody td {
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 15px;
    font-weight: 600;
    vertical-align: middle;
}

.sumer-projects-table tbody td:first-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.sumer-projects-table tbody td:last-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

/* شارات وأسلوب الخانات */
.type-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
}

.pill-filtration {
    background: rgba(54, 66, 149, 0.10);
    color: var(--proj-primary);
    border: 1px solid rgba(54, 66, 149, 0.2);
}

.pill-ro {
    background: rgba(52, 168, 218, 0.15);
    color: #0d7ba8;
    border: 1px solid rgba(52, 168, 218, 0.35);
}

.pill-wastewater {
    background: rgba(42, 53, 120, 0.12);
    color: #1e2756;
    border: 1px solid rgba(42, 53, 120, 0.25);
}

.gov-badge {
    color: var(--proj-primary);
    font-weight: 800;
    font-size: 15.5px;
}

.site-badge {
    color: #1e2756;
    font-weight: 800;
    background: rgba(255,255,255,0.4);
    padding: 4px 10px;
    border-radius: 8px;
}

.cap-val {
    font-size: 17px;
    font-weight: 900;
    color: var(--proj-primary);
}

.cap-unit {
    font-size: 13px;
    font-weight: 700;
    color: var(--proj-accent);
}

.tech-note {
    font-size: 12.5px;
    font-weight: 800;
    color: #d97706;
    background: rgba(217, 119, 6, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
}

.count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 32px;
    padding: 0 10px;
    border-radius: 10px;
    background: rgba(54, 66, 149, 0.08);
    border: 1px solid rgba(54, 66, 149, 0.15);
    color: var(--proj-primary);
    font-weight: 900;
    font-size: 15px;
}

.highlight-count {
    background: linear-gradient(135deg, var(--proj-primary), var(--proj-accent));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(54, 66, 149, 0.25);
}

/* رسالة عدم وجود نتائج */
.sumer-projects-empty {
    text-align: center;
    padding: 50px 20px;
    color: var(--proj-text-muted);
}

.empty-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

/* === شريط الختام الضامن للجودة === */
.sumer-projects-footer-note {
    margin-top: 35px;
}

.footer-note-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 18px;
    padding: 16px 24px;
    box-shadow: 0 6px 20px rgba(54, 66, 149, 0.06);
}

.note-shield {
    font-size: 24px;
    flex-shrink: 0;
}

.footer-note-inner p {
    margin: 0;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--proj-primary);
    line-height: 1.6;
}

/* === أنيميشن الظهور === */
.sumer-projects-anim {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.sumer-projects-anim.sumer-projects-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* === التجاوب للشاشات المختلفة (Compact Mobile Table Optimization) === */
@media (max-width: 1024px) {
    .sumer-projects-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sumer-projects-section {
        padding: 40px 10px;
    }

    .sumer-projects-title {
        font-size: 24px;
    }

    .sumer-projects-subtitle {
        font-size: 14px;
    }

    .sumer-projects-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sumer-projects-stat-card {
        padding: 14px 16px;
    }

    .sumer-projects-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .sumer-projects-search-box {
        width: 100%;
        min-width: auto;
    }

    /* شبكة متناسقة (2x2) لأزرار الفلترة تضمن ظهور زر الصرف الصحي والصناعي وكافة الأزرار بوضوح في الموبايل */
    .sumer-projects-filter-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
        overflow: visible;
    }

    .filter-tab-btn {
        width: 100%;
        justify-content: space-between;
        padding: 9px 10px;
        font-size: 11.5px;
    }

    .sumer-projects-table-card {
        padding: 8px;
        border-radius: 16px;
    }

    .sumer-projects-table-scroll {
        max-height: 540px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* إعادة استعراض الجدول الكامل بـ 4 أعمدة ومقاسات خطوط مصغرة للموبايل */
    .sumer-projects-table {
        display: table;
        width: 100%;
        min-width: 100%;
        border-spacing: 0 4px;
    }

    .sumer-projects-table thead {
        display: table-header-group;
    }

    .sumer-projects-table tbody {
        display: table-row-group;
    }

    .sumer-projects-table tbody tr {
        display: table-row;
        background: rgba(255, 255, 255, 0.35);
    }

    /* إخفاء الصفوف المفلترة في الموبايل والسطح البرمجي */
    .sumer-projects-table tbody tr.sumer-row-hidden {
        display: none !important;
    }

    .sumer-projects-table thead th {
        font-size: 11px;
        padding: 10px 4px;
        text-align: center;
        font-weight: 800;
        white-space: nowrap;
    }

    .col-type {
        width: 26%;
    }

    .col-project {
        width: 28%;
    }

    .col-capacity {
        width: 28%;
    }

    .col-count {
        width: 18%;
    }

    .sumer-projects-table tbody td {
        display: table-cell;
        padding: 8px 3px;
        font-size: 11px;
        text-align: center;
        vertical-align: middle;
        white-space: nowrap;
    }

    .type-pill {
        font-size: 9.5px;
        padding: 3px 6px;
        border-radius: 8px;
        font-weight: 800;
    }

    .gov-badge {
        font-size: 11px;
        font-weight: 800;
    }

    .site-badge {
        font-size: 10px;
        padding: 2px 4px;
        font-weight: 700;
    }

    .cap-val {
        font-size: 11.5px;
        font-weight: 900;
    }

    .cap-unit {
        font-size: 9px;
    }

    .tech-note {
        font-size: 8.5px;
        padding: 1px 4px;
    }

    .count-badge {
        min-width: 26px;
        height: 24px;
        font-size: 11px;
        padding: 0 4px;
        border-radius: 6px;
        font-weight: 900;
    }
}

.sumer-maint-section {
    --maint-primary: #364295;
    --maint-primary-dark: #2a3578;
    --maint-accent: #34A8DA;
    --maint-accent-glow: rgba(52, 168, 218, 0.35);
    --maint-text-heading: #364295;
    --maint-text-body: #3a3a4a;
    --maint-text-muted: #555;
    --maint-glass-bg: rgba(255, 255, 255, 0.24);
    --maint-glass-hover: rgba(255, 255, 255, 0.36);
    --maint-glass-border: rgba(255, 255, 255, 0.58);
    --maint-glass-shadow: 0 16px 45px rgba(54, 66, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    --maint-glass-shadow-hover: 0 24px 60px rgba(54, 66, 149, 0.22), 0 8px 24px rgba(52, 168, 218, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    --maint-transition-spring: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    padding: 85px 20px;
    overflow: hidden;
    color: var(--maint-text-body);
}

/* === خلفية رادار الترددات والمسدسات === */
.sumer-maint-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-maint-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.sumer-maint-radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 50%;
    border: 1.5px stroke rgba(52, 168, 218, 0.2);
    box-shadow: 0 0 50px rgba(52, 168, 218, 0.15);
    animation: sumerRadarPulse ease-in-out infinite alternate;
}

.ring-1 {
    width: 500px;
    height: 500px;
    animation-duration: 7s;
}

.ring-2 {
    width: 750px;
    height: 750px;
    animation-duration: 11s;
    animation-delay: 2s;
    border-style: dashed;
}

@keyframes sumerRadarPulse {
    0% {
        transform: translate3d(-50%, -50%, 0) scale(0.95);
        opacity: 0.3;
    }

    100% {
        transform: translate3d(-50%, -50%, 0) scale(1.08);
        opacity: 0.8;
    }
}

/* === الحاوية الرئيسية === */
.sumer-maint-container {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
}

/* === الهيدر الرئيسي === */
.sumer-maint-header {
    text-align: center;
    margin-bottom: 45px;
}

.sumer-maint-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--maint-primary), var(--maint-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54, 66, 149, 0.25);
}

.sumer-maint-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--maint-text-heading);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-maint-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--maint-text-muted);
    max-width: 840px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-maint-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-maint-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--maint-primary), var(--maint-accent));
}

/* === الشبكة المزدوجة الرئيسية (Split Grid Layout) === */
.sumer-maint-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 36px;
    align-items: start;
}

/* === بطاقة التنبيه والاستجابة === */
.sumer-maint-alert-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(54, 66, 149, 0.12), rgba(52, 168, 218, 0.18));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(52, 168, 218, 0.35);
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(54, 66, 149, 0.08);
}

.alert-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--maint-primary), var(--maint-accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(54, 66, 149, 0.25);
}

.alert-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--maint-primary);
    margin: 0 0 6px 0;
}

.alert-text p {
    font-size: 14.5px;
    font-weight: 500;
    color: #3a3a4a;
    line-height: 1.7;
    margin: 0;
}

/* === قائمة الخدمات التفاعلية (Accordion Card Animations) === */
.sumer-maint-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.maint-acc-item {
    position: relative;
    background: var(--maint-glass-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--maint-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: var(--maint-glass-shadow);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.45s ease,
                border-color 0.45s ease,
                box-shadow 0.45s ease;
    overflow: hidden;
}

.maint-acc-item:active {
    transform: scale(0.985);
}

.maint-acc-item.active {
    background: var(--maint-glass-hover);
    border-color: rgba(52, 168, 218, 0.7);
    box-shadow: 0 20px 50px rgba(54, 66, 149, 0.20), 0 0 25px rgba(52, 168, 218, 0.25);
    transform: translate3d(-4px, -3px, 0) scale(1.015);
}

.maint-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    font-family: inherit;
    text-align: right;
}

.acc-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.acc-num {
    font-size: 14px;
    font-weight: 900;
    color: var(--maint-accent);
    background: rgba(52, 168, 218, 0.14);
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, color 0.4s ease;
}

.maint-acc-item.active .acc-num {
    background: linear-gradient(135deg, var(--maint-primary), var(--maint-accent));
    color: #fff;
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 4px 14px rgba(54, 66, 149, 0.3);
}

.acc-title {
    font-size: 17.5px;
    font-weight: 800;
    color: var(--maint-primary);
    transition: color 0.3s ease;
}

.maint-acc-item.active .acc-title {
    color: var(--maint-primary);
}

.acc-arrow {
    font-size: 16px;
    color: var(--maint-accent);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.maint-acc-item.active .acc-arrow {
    transform: rotate(90deg) scale(1.2);
    color: var(--maint-primary);
}

/* انيميشن توسع المحتوى الداخلي السلس */
.maint-acc-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    filter: blur(4px);
    transform: translate3d(0, -10px, 0);
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease 0.05s,
                transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
                filter 0.35s ease;
    padding-top: 0;
    margin-top: 0;
    border-top: 1px dashed transparent;
}

.maint-acc-item.active .maint-acc-body {
    max-height: 320px;
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
    padding-top: 14px;
    margin-top: 12px;
    border-top-color: rgba(54, 66, 149, 0.16);
}

.maint-acc-body p {
    font-size: 15px;
    font-weight: 500;
    color: #4a4a5a;
    line-height: 1.75;
    margin: 0 0 14px 0;
}

.acc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.acc-tag {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--maint-primary);
    background: rgba(54, 66, 149, 0.08);
    border: 1px solid rgba(54, 66, 149, 0.16);
    padding: 4px 12px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.maint-acc-item.active .acc-tag {
    background: rgba(52, 168, 218, 0.14);
    border-color: rgba(52, 168, 218, 0.3);
}

/* === الجانب الأيسر: معرض الصور الأربعة والتأثيرات النجمية عند النقر === */
.sumer-maint-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 24px;
}

.maint-photo-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(54, 66, 149, 0.16);
    cursor: pointer;
    margin: 0;
    aspect-ratio: 16 / 11;
    min-height: 245px;
    background: rgba(54, 66, 149, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.65);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s ease,
                border-color 0.45s ease;
}

.maint-photo-item.active {
    border-color: var(--maint-accent);
    box-shadow: 0 18px 50px rgba(52, 168, 218, 0.45);
    transform: translate3d(0, -5px, 0) scale(1.035);
}

.maint-photo-item.pulse-highlight {
    animation: sumerPhotoPulse 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes sumerPhotoPulse {
    0% {
        transform: scale(0.97);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px 10px rgba(52, 168, 218, 0.55);
    }

    100% {
        transform: scale(1.035);
    }
}

.maint-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.maint-photo-item:hover img {
    transform: scale(1.09);
}

.maint-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(54, 66, 149, 0.95), transparent);
    padding: 28px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.maint-img-badge {
    align-self: flex-start;
    background: var(--maint-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 10px;
}

.maint-photo-overlay h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
}

/* === بطاقة الضمان والموثوقية === */
.sumer-maint-guarantee-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, var(--maint-primary), var(--maint-primary-dark));
    color: #fff;
    border-radius: 20px;
    padding: 24px 26px;
    box-shadow: 0 14px 40px rgba(54, 66, 149, 0.25);
}

.guarantee-icon {
    font-size: 34px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.guarantee-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.guarantee-text p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin: 0;
}

/* === Lightbox Modal نافذة تكبير الصور === */
.sumer-maint-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 15, 45, 0.85);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.sumer-maint-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.sumer-maint-lightbox-close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--maint-transition-spring);
}

.sumer-maint-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.sumer-maint-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sumer-maint-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.sumer-maint-lightbox-caption {
    color: #fff;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* === أنيميشن الظهور الأساسي === */
.sumer-maint-anim {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.sumer-maint-anim.sumer-maint-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* === التجاوب للشاشات المختلفة (Responsive) === */
@media (max-width: 1024px) {
    .sumer-maint-hub-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .sumer-maint-section {
        padding: 45px 12px;
    }

    .sumer-maint-title {
        font-size: 25px;
    }

    .sumer-maint-alert-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .alert-icon {
        margin: 0 auto;
    }

    .sumer-maint-photo-grid {
        grid-template-columns: 1fr;
    }

    .sumer-maint-guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .guarantee-icon {
        margin: 0 auto;
    }
}

.sumer-equip-section {
    --eq-primary: #364295;
    --eq-primary-dark: #2a3578;
    --eq-accent: #34A8DA;
    --eq-accent-glow: rgba(52, 168, 218, 0.35);
    --eq-gold: #d97706;
    --eq-gold-glow: rgba(217, 119, 6, 0.35);
    --eq-text-heading: #364295;
    --eq-text-body: #3a3a4a;
    --eq-text-muted: #555;
    --eq-glass-bg: rgba(255, 255, 255, 0.24);
    --eq-glass-hover: rgba(255, 255, 255, 0.36);
    --eq-glass-border: rgba(255, 255, 255, 0.58);
    --eq-glass-shadow: 0 16px 45px rgba(54, 66, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    --eq-glass-shadow-hover: 0 24px 60px rgba(54, 66, 149, 0.22), 0 8px 24px rgba(52, 168, 218, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    --eq-transition-spring: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    padding: 85px 20px;
    overflow: hidden;
    color: var(--eq-text-body);
}

/* === خلفية الشبكة الماس الكريستالية === */
.sumer-equip-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-equip-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.sumer-equip-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    pointer-events: none;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--eq-primary);
    top: -80px;
    left: -60px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--eq-accent);
    bottom: -60px;
    right: -60px;
}

/* === الحاوية الرئيسية === */
.sumer-equip-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
}

/* === الهيدر الرئيسي === */
.sumer-equip-header {
    text-align: center;
    margin-bottom: 40px;
}

.sumer-equip-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--eq-primary), var(--eq-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54, 66, 149, 0.25);
}

.sumer-equip-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--eq-text-heading);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-equip-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--eq-text-muted);
    max-width: 840px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-equip-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-equip-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--eq-primary), var(--eq-accent));
}

/* === بانر الاعتماد التعاوني العالمي === */
.sumer-equip-global-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--eq-glass-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--eq-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 28px 34px;
    margin-bottom: 45px;
    box-shadow: var(--eq-glass-shadow);
    transition: var(--eq-transition-spring);
}

.sumer-equip-global-banner:hover {
    background: var(--eq-glass-hover);
    transform: translate3d(0, -3px, 0);
    box-shadow: var(--eq-glass-shadow-hover);
}

.banner-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 6px 18px rgba(54,66,149,0.12);
}

.banner-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--eq-primary);
    margin: 0 0 6px 0;
}

.banner-text h3 span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--eq-accent);
}

.banner-text p {
    font-size: 15.5px;
    font-weight: 500;
    color: #3a3a4a;
    line-height: 1.75;
    margin: 0;
}

/* === شبكة بطاقات المعدات === */
.sumer-equip-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.sumer-equip-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--eq-glass-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--eq-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 26px;
    padding: 28px 24px;
    box-shadow: var(--eq-glass-shadow);
    transition: var(--eq-transition-spring);
    overflow: hidden;
    position: relative;
}

.sumer-equip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--eq-primary), var(--eq-accent));
}

.sumer-equip-card:hover {
    background: var(--eq-glass-hover);
    border-color: rgba(52, 168, 218, 0.5);
    transform: translate3d(0, -6px, 0);
    box-shadow: var(--eq-glass-shadow-hover);
}

.equip-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.equip-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 14px rgba(54,66,149,0.1);
    transition: var(--eq-transition-spring);
}

.gold-icon {
    background: linear-gradient(135deg, var(--eq-gold), #b45309) !important;
    border-color: transparent !important;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35) !important;
}

.sumer-equip-card:hover .equip-icon-box {
    background: linear-gradient(135deg, var(--eq-primary), var(--eq-accent));
    border-color: transparent;
    transform: scale(1.08) rotate(-4deg);
}

.sumer-equip-card:hover .equip-icon-box svg {
    stroke: #fff;
}

.equip-title-box {
    flex: 1;
}

.equip-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--eq-accent);
    background: rgba(52, 168, 218, 0.12);
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 4px;
}

.tag-sumer {
    color: var(--eq-primary);
    background: rgba(54, 66, 149, 0.12);
}

.tag-gold {
    color: #d97706;
    background: rgba(217, 119, 6, 0.14);
}

.equip-title-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--eq-primary);
    margin: 0;
    line-height: 1.35;
}

.equip-card-body p {
    font-size: 14.5px;
    font-weight: 500;
    color: #4a4a5a;
    line-height: 1.75;
    margin: 0 0 16px 0;
}

.equip-specs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.spec-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--eq-primary);
    background: rgba(54, 66, 149, 0.08);
    border: 1px solid rgba(54, 66, 149, 0.16);
    padding: 4px 10px;
    border-radius: 10px;
}

/* === سلايدر الصور في داخل كل بطاقة (Equip Slider Container) === */
.equip-card-photo {
    margin-top: auto;
}

.equip-slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(54, 66, 149, 0.14);
    background: rgba(54, 66, 149, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    touch-action: pan-y;
}

.equip-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.hero-slider .equip-slider-track {
    aspect-ratio: 16 / 11;
}

.equip-photo-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    margin: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(0.96);
    cursor: pointer;
}

.equip-photo-item.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.equip-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.equip-photo-item:hover img {
    transform: scale(1.08);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(54, 66, 149, 0.95), transparent);
    padding: 24px 14px 45px;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.equip-photo-item:hover .photo-caption,
.equip-photo-item.active .photo-caption {
    transform: translate3d(0, 0, 0);
}

.photo-caption span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
}

/* أزرار وشريط التحكم السريعة للسلايدر */
.slider-controls {
    position: absolute;
    bottom: 8px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 15, 45, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 4px 12px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--eq-transition-spring);
}

.slider-btn:hover {
    background: var(--eq-accent);
    border-color: transparent;
    transform: scale(1.15);
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--eq-accent);
    box-shadow: 0 0 10px var(--eq-accent-glow);
}

.slide-counter {
    font-size: 11.5px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

/* === بطاقة خزانات الـ GLS الفاخرة الكبرى (Hero Card Spanning All) === */
.sumer-equip-card.full-span-hero {
    grid-column: 1 / -1;
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.18));
    border-color: rgba(217, 119, 6, 0.4);
    box-shadow: 0 20px 55px rgba(54, 66, 149, 0.15), 0 0 30px rgba(217, 119, 6, 0.15);
}

.sumer-equip-card.full-span-hero::before {
    background: linear-gradient(90deg, #d97706, var(--eq-accent), var(--eq-primary));
    height: 4px;
}

.gls-card-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.gls-body-text p {
    font-size: 15.5px;
    font-weight: 500;
    color: #2c2c3a;
    line-height: 1.8;
    margin: 0 0 14px 0;
}

.gls-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.gls-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--eq-primary);
}

.gls-feat-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* === شريط الختام المضمن (Footer Note) === */
.sumer-equip-footer-note {
    margin-top: 20px;
}

.footer-note-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    background: linear-gradient(135deg, var(--eq-primary), var(--eq-primary-dark));
    color: #fff;
    border-radius: 24px;
    padding: 28px 34px;
    box-shadow: 0 16px 50px rgba(54, 66, 149, 0.25);
}

.note-shield-icon {
    font-size: 36px;
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.note-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.note-text h3 span {
    font-weight: 500;
    opacity: 0.8;
    font-size: 15px;
}

.note-text p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin: 0;
}

/* === Lightbox Modal === */
.sumer-equip-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 15, 45, 0.85);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.sumer-equip-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.sumer-equip-lightbox-close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--eq-transition-spring);
}

.sumer-equip-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.sumer-equip-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sumer-equip-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.sumer-equip-lightbox-caption {
    color: #fff;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* === أنيميشن الظهور === */
.sumer-equip-anim {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.sumer-equip-anim.sumer-equip-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* === التجاوب للشاشات المختلفة === */
@media (max-width: 1024px) {
    .sumer-equip-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gls-card-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sumer-equip-section {
        padding: 45px 12px;
    }

    .sumer-equip-title {
        font-size: 25px;
    }

    .sumer-equip-cards-grid {
        grid-template-columns: 1fr;
    }

    .sumer-equip-global-banner {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
    }

    .banner-icon {
        margin: 0 auto;
    }

    .gls-features-grid {
        grid-template-columns: 1fr;
    }

    .footer-note-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
    }
}

.sumer-equip-section {
    --eq-primary: #364295;
    --eq-primary-dark: #2a3578;
    --eq-accent: #34A8DA;
    --eq-accent-glow: rgba(52, 168, 218, 0.35);
    --eq-gold: #d97706;
    --eq-gold-glow: rgba(217, 119, 6, 0.35);
    --eq-text-heading: #364295;
    --eq-text-body: #3a3a4a;
    --eq-text-muted: #555;
    --eq-glass-bg: rgba(255, 255, 255, 0.24);
    --eq-glass-hover: rgba(255, 255, 255, 0.36);
    --eq-glass-border: rgba(255, 255, 255, 0.58);
    --eq-glass-shadow: 0 16px 45px rgba(54, 66, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    --eq-glass-shadow-hover: 0 24px 60px rgba(54, 66, 149, 0.22), 0 8px 24px rgba(52, 168, 218, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    --eq-transition-spring: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    padding: 85px 20px;
    overflow: hidden;
    color: var(--eq-text-body);
}

/* === خلفية الشبكة الماس الكريستالية === */
.sumer-equip-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-equip-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.sumer-equip-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    pointer-events: none;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--eq-primary);
    top: -80px;
    left: -60px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--eq-accent);
    bottom: -60px;
    right: -60px;
}

/* === الحاوية الرئيسية === */
.sumer-equip-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
}

/* === الهيدر الرئيسي === */
.sumer-equip-header {
    text-align: center;
    margin-bottom: 40px;
}

.sumer-equip-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--eq-primary), var(--eq-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54, 66, 149, 0.25);
}

.sumer-equip-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--eq-text-heading);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-equip-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--eq-text-muted);
    max-width: 840px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-equip-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-equip-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--eq-primary), var(--eq-accent));
}

/* === بانر الاعتماد التعاوني العالمي === */
.sumer-equip-global-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--eq-glass-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--eq-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 28px 34px;
    margin-bottom: 45px;
    box-shadow: var(--eq-glass-shadow);
    transition: var(--eq-transition-spring);
}

.sumer-equip-global-banner:hover {
    background: var(--eq-glass-hover);
    transform: translate3d(0, -3px, 0);
    box-shadow: var(--eq-glass-shadow-hover);
}

.banner-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 6px 18px rgba(54,66,149,0.12);
}

.banner-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--eq-primary);
    margin: 0 0 6px 0;
}

.banner-text h3 span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--eq-accent);
}

.banner-text p {
    font-size: 15.5px;
    font-weight: 500;
    color: #3a3a4a;
    line-height: 1.75;
    margin: 0;
}

/* === شبكة بطاقات المعدات === */
.sumer-equip-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.sumer-equip-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--eq-glass-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--eq-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 26px;
    padding: 28px 24px;
    box-shadow: var(--eq-glass-shadow);
    transition: var(--eq-transition-spring);
    overflow: hidden;
    position: relative;
}

.sumer-equip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--eq-primary), var(--eq-accent));
}

.sumer-equip-card:hover {
    background: var(--eq-glass-hover);
    border-color: rgba(52, 168, 218, 0.5);
    transform: translate3d(0, -6px, 0);
    box-shadow: var(--eq-glass-shadow-hover);
}

.equip-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.equip-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 14px rgba(54,66,149,0.1);
    transition: var(--eq-transition-spring);
}

.gold-icon {
    background: linear-gradient(135deg, var(--eq-gold), #b45309) !important;
    border-color: transparent !important;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35) !important;
}

.sumer-equip-card:hover .equip-icon-box {
    background: linear-gradient(135deg, var(--eq-primary), var(--eq-accent));
    border-color: transparent;
    transform: scale(1.08) rotate(-4deg);
}

.sumer-equip-card:hover .equip-icon-box svg {
    stroke: #fff;
}

.equip-title-box {
    flex: 1;
}

.equip-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--eq-accent);
    background: rgba(52, 168, 218, 0.12);
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 4px;
}

.tag-sumer {
    color: var(--eq-primary);
    background: rgba(54, 66, 149, 0.12);
}

.tag-gold {
    color: #d97706;
    background: rgba(217, 119, 6, 0.14);
}

.equip-title-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--eq-primary);
    margin: 0;
    line-height: 1.35;
}

.equip-card-body p {
    font-size: 14.5px;
    font-weight: 500;
    color: #4a4a5a;
    line-height: 1.75;
    margin: 0 0 16px 0;
}

.equip-specs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.spec-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--eq-primary);
    background: rgba(54, 66, 149, 0.08);
    border: 1px solid rgba(54, 66, 149, 0.16);
    padding: 4px 10px;
    border-radius: 10px;
}

/* === سلايدر الصور في داخل كل بطاقة (Equip Slider Container) === */
.equip-card-photo {
    margin-top: auto;
}

.equip-slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(54, 66, 149, 0.14);
    background: rgba(54, 66, 149, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    touch-action: pan-y;
}

.equip-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.hero-slider .equip-slider-track {
    aspect-ratio: 16 / 11;
}

.equip-photo-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    margin: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(0.96);
    cursor: pointer;
}

.equip-photo-item.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.equip-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.equip-photo-item:hover img {
    transform: scale(1.08);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(54, 66, 149, 0.95), transparent);
    padding: 24px 14px 45px;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.equip-photo-item:hover .photo-caption,
.equip-photo-item.active .photo-caption {
    transform: translate3d(0, 0, 0);
}

.photo-caption span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
}

/* أزرار وشريط التحكم السريعة للسلايدر */
.slider-controls {
    position: absolute;
    bottom: 8px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 15, 45, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 4px 12px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--eq-transition-spring);
}

.slider-btn:hover {
    background: var(--eq-accent);
    border-color: transparent;
    transform: scale(1.15);
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--eq-accent);
    box-shadow: 0 0 10px var(--eq-accent-glow);
}

.slide-counter {
    font-size: 11.5px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

/* === بطاقة خزانات الـ GLS الفاخرة الكبرى (Hero Card Spanning All) === */
.sumer-equip-card.full-span-hero {
    grid-column: 1 / -1;
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.18));
    border-color: rgba(217, 119, 6, 0.4);
    box-shadow: 0 20px 55px rgba(54, 66, 149, 0.15), 0 0 30px rgba(217, 119, 6, 0.15);
}

.sumer-equip-card.full-span-hero::before {
    background: linear-gradient(90deg, #d97706, var(--eq-accent), var(--eq-primary));
    height: 4px;
}

.gls-card-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.gls-body-text p {
    font-size: 15.5px;
    font-weight: 500;
    color: #2c2c3a;
    line-height: 1.8;
    margin: 0 0 14px 0;
}

.gls-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.gls-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--eq-primary);
}

.gls-feat-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* === شريط الختام المضمن (Footer Note) === */
.sumer-equip-footer-note {
    margin-top: 20px;
}

.footer-note-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    background: linear-gradient(135deg, var(--eq-primary), var(--eq-primary-dark));
    color: #fff;
    border-radius: 24px;
    padding: 28px 34px;
    box-shadow: 0 16px 50px rgba(54, 66, 149, 0.25);
}

.note-shield-icon {
    font-size: 36px;
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.note-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.note-text h3 span {
    font-weight: 500;
    opacity: 0.8;
    font-size: 15px;
}

.note-text p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin: 0;
}

/* === Lightbox Modal === */
.sumer-equip-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 15, 45, 0.85);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.sumer-equip-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.sumer-equip-lightbox-close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--eq-transition-spring);
}

.sumer-equip-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.sumer-equip-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sumer-equip-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.sumer-equip-lightbox-caption {
    color: #fff;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* === أنيميشن الظهور === */
.sumer-equip-anim {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.sumer-equip-anim.sumer-equip-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* === التجاوب للشاشات المختلفة === */
@media (max-width: 1024px) {
    .sumer-equip-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gls-card-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sumer-equip-section {
        padding: 45px 12px;
    }

    .sumer-equip-title {
        font-size: 25px;
    }

    .sumer-equip-cards-grid {
        grid-template-columns: 1fr;
    }

    .sumer-equip-global-banner {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
    }

    .banner-icon {
        margin: 0 auto;
    }

    .gls-features-grid {
        grid-template-columns: 1fr;
    }

    .footer-note-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
    }
}

.sumer-mfg-section {
    --mfg-primary: #364295;
    --mfg-primary-dark: #2a3578;
    --mfg-accent: #34A8DA;
    --mfg-accent-glow: rgba(52, 168, 218, 0.35);
    --mfg-text-heading: #364295;
    --mfg-text-body: #3a3a4a;
    --mfg-text-muted: #555;
    --mfg-glass-bg: rgba(255, 255, 255, 0.24);
    --mfg-glass-hover: rgba(255, 255, 255, 0.36);
    --mfg-glass-border: rgba(255, 255, 255, 0.58);
    --mfg-glass-shadow: 0 16px 45px rgba(54, 66, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    --mfg-glass-shadow-hover: 0 24px 60px rgba(54, 66, 149, 0.22), 0 8px 24px rgba(52, 168, 218, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    --mfg-transition-spring: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    padding: 85px 20px;
    overflow: hidden;
    color: var(--mfg-text-body);
}

/* === خلفية مسارات التصنيع وأشعة البلازما === */
.sumer-mfg-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-mfg-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.sumer-mfg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.14;
    pointer-events: none;
}

.glow-top {
    width: 440px;
    height: 440px;
    background: var(--mfg-accent);
    top: -90px;
    right: -70px;
}

.glow-bottom {
    width: 400px;
    height: 400px;
    background: var(--mfg-primary);
    bottom: -70px;
    left: -60px;
}

/* === الحاوية الرئيسية === */
.sumer-mfg-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
}

/* === الهيدر الرئيسي === */
.sumer-mfg-header {
    text-align: center;
    margin-bottom: 40px;
}

.sumer-mfg-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--mfg-primary), var(--mfg-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54, 66, 149, 0.25);
}

.sumer-mfg-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--mfg-text-heading);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-mfg-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--mfg-text-muted);
    max-width: 860px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-mfg-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-mfg-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--mfg-primary), var(--mfg-accent));
}

/* === البانر التعريفي === */
.sumer-mfg-hero-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--mfg-glass-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--mfg-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 28px 34px;
    margin-bottom: 45px;
    box-shadow: var(--mfg-glass-shadow);
    transition: var(--mfg-transition-spring);
}

.sumer-mfg-hero-banner:hover {
    background: var(--mfg-glass-hover);
    transform: translate3d(0, -3px, 0);
    box-shadow: var(--mfg-glass-shadow-hover);
}

.banner-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 6px 18px rgba(54,66,149,0.12);
}

.banner-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--mfg-primary);
    margin: 0 0 6px 0;
}

.banner-content h3 span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--mfg-accent);
}

.banner-content p {
    font-size: 15.5px;
    font-weight: 500;
    color: #3a3a4a;
    line-height: 1.75;
    margin: 0;
}

/* === شبكة بطاقات التصنيع الأربعة (2x2 Grid) === */
.sumer-mfg-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.sumer-mfg-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--mfg-glass-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--mfg-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 26px;
    padding: 30px 26px;
    box-shadow: var(--mfg-glass-shadow);
    transition: var(--mfg-transition-spring);
    overflow: hidden;
    position: relative;
}

.sumer-mfg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, var(--mfg-primary), var(--mfg-accent));
}

.sumer-mfg-card:hover {
    background: var(--mfg-glass-hover);
    border-color: rgba(52, 168, 218, 0.5);
    transform: translate3d(0, -6px, 0);
    box-shadow: var(--mfg-glass-shadow-hover);
}

.mfg-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.mfg-icon-box {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 14px rgba(54,66,149,0.1);
    transition: var(--mfg-transition-spring);
}

.sumer-mfg-card:hover .mfg-icon-box {
    background: linear-gradient(135deg, var(--mfg-primary), var(--mfg-accent));
    border-color: transparent;
    transform: scale(1.08) rotate(-4deg);
}

.sumer-mfg-card:hover .mfg-icon-box svg {
    stroke: #fff;
}

.mfg-title-box {
    flex: 1;
}

.mfg-num-badge {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--mfg-accent);
    background: rgba(52, 168, 218, 0.12);
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 4px;
}

.mfg-title-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--mfg-primary);
    margin: 0;
    line-height: 1.35;
}

.mfg-title-box h3 span {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--mfg-accent);
    margin-top: 2px;
}

.mfg-card-body p {
    font-size: 15px;
    font-weight: 500;
    color: #3a3a4a;
    line-height: 1.75;
    margin: 0 0 18px 0;
}

.mfg-specs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.mfg-tag {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--mfg-primary);
    background: rgba(54, 66, 149, 0.08);
    border: 1px solid rgba(54, 66, 149, 0.16);
    padding: 4px 12px;
    border-radius: 10px;
}

/* === سلايدر الصور داخل كل بطاقة تصنيع === */
.mfg-card-slider-wrapper {
    margin-top: auto;
}

.mfg-slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(54, 66, 149, 0.14);
    background: rgba(54, 66, 149, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    touch-action: pan-y;
}

.mfg-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.mfg-photo-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    margin: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(0.96);
    cursor: pointer;
}

.mfg-photo-item.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.mfg-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mfg-photo-item:hover img {
    transform: scale(1.08);
}

.mfg-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(54, 66, 149, 0.95), transparent);
    padding: 24px 14px 45px;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mfg-photo-item:hover .mfg-photo-caption,
.mfg-photo-item.active .mfg-photo-caption {
    transform: translate3d(0, 0, 0);
}

.mfg-photo-caption span {
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
}

/* شريط التحكم بالسلايدر */
.mfg-slider-controls {
    position: absolute;
    bottom: 8px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 15, 45, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 4px 12px;
    z-index: 10;
}

.mfg-slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--mfg-transition-spring);
}

.mfg-slider-btn:hover {
    background: var(--mfg-accent);
    border-color: transparent;
    transform: scale(1.15);
}

.mfg-slider-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mfg-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mfg-slider-dots .dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--mfg-accent);
    box-shadow: 0 0 10px var(--mfg-accent-glow);
}

.mfg-slide-counter {
    font-size: 11.5px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

/* === شريط الخاتمة المضمن === */
.sumer-mfg-footer-banner {
    margin-top: 20px;
}

.footer-banner-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    background: linear-gradient(135deg, var(--mfg-primary), var(--mfg-primary-dark));
    color: #fff;
    border-radius: 24px;
    padding: 28px 34px;
    box-shadow: 0 16px 50px rgba(54, 66, 149, 0.25);
}

.footer-shield-icon {
    font-size: 36px;
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-text-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.footer-text-box h3 span {
    font-weight: 500;
    opacity: 0.8;
    font-size: 15px;
}

.footer-text-box p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin: 0;
}

/* === أنيميشن الظهور === */
.sumer-mfg-anim {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.sumer-mfg-anim.sumer-mfg-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* === التجاوب للشاشات المختلفة (Responsive & Mobile Card Slider) === */
@media (max-width: 1024px) {
    .sumer-mfg-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sumer-mfg-section {
        padding: 45px 12px;
    }

    .sumer-mfg-title {
        font-size: 25px;
    }

    /* تحويل شبكة البطاقات في الموبايل إلى سلايدر أفقي ناعم باللمس */
    .sumer-mfg-cards-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 10px 6px 20px 6px !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .sumer-mfg-card {
        flex: 0 0 88% !important;
        min-width: 88% !important;
        max-width: 88% !important;
        scroll-snap-align: center !important;
        box-shadow: 0 12px 35px rgba(54, 66, 149, 0.18) !important;
    }

    .sumer-mfg-hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
    }

    .banner-icon-box {
        margin: 0 auto;
    }

    .footer-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
    }

    .footer-shield-icon {
        margin: 0 auto;
    }
}

.sumer-recent-section {
    --rec-primary: #364295;
    --rec-primary-dark: #2a3578;
    --rec-accent: #34A8DA;
    --rec-accent-glow: rgba(52, 168, 218, 0.35);
    --rec-text-heading: #364295;
    --rec-text-body: #3a3a4a;
    --rec-text-muted: #555;
    --rec-glass-bg: rgba(255, 255, 255, 0.24);
    --rec-glass-hover: rgba(255, 255, 255, 0.36);
    --rec-glass-border: rgba(255, 255, 255, 0.58);
    --rec-glass-shadow: 0 16px 45px rgba(54, 66, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    --rec-glass-shadow-hover: 0 24px 60px rgba(54, 66, 149, 0.22), 0 8px 24px rgba(52, 168, 218, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    --rec-transition-spring: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    padding: 85px 20px;
    overflow: hidden;
    color: var(--rec-text-body);
}

/* === خلفية مسارات التوجيه والتوهج === */
.sumer-recent-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-recent-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.sumer-recent-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.14;
    pointer-events: none;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--rec-primary);
    top: -80px;
    right: -60px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--rec-accent);
    bottom: -60px;
    left: -60px;
}

/* === الحاوية الرئيسية (مكبرة لسطح المكتب) === */
.sumer-recent-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* === الهيدر الرئيسي === */
.sumer-recent-header {
    text-align: center;
    margin-bottom: 40px;
}

.sumer-recent-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rec-primary), var(--rec-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54, 66, 149, 0.25);
}

.sumer-recent-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--rec-text-heading);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-recent-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--rec-text-muted);
    max-width: 860px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-recent-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-recent-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--rec-primary), var(--rec-accent));
}

/* === الرابط الموحد الموجه master link === */
.sumer-recent-master-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.sumer-recent-master-link:hover {
    text-decoration: none;
}

/* === 1. ألبوم الصور المكبر لسطح المكتب (Desktop Large Album Grid) === */
.sumer-recent-desktop-album {
    display: block;
    margin-bottom: 35px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

@media (min-width: 768px) {
    .album-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 32px;
    }
}

.album-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    margin: 0;

    /* Glassmorphism — identical pattern used across the site */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.72),
        rgba(224, 243, 255, 0.48)
    );
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(52, 66, 149, 0.10),
        0 2px 8px rgba(52, 168, 218, 0.08),
        inset 0 1px 10px rgba(255, 255, 255, 0.7);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.45s ease,
                border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;

    /* Scroll entrance animation */
    animation: albumItemFadeIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    animation-play-state: paused;
}

.album-item.sumer-recent-visible {
    animation-play-state: running;
}

@keyframes albumItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.album-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.album-caption {
    padding: 18px 20px;
    text-align: center;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.75),
        rgba(235, 248, 255, 0.55)
    );
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.8),
                0 -4px 15px rgba(52, 168, 218, 0.05);
}

.album-caption h4 {
    margin: 0;
    color: var(--rec-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

/* First two items larger on desktop */
@media (min-width: 1024px) {
    .album-grid > .album-item:nth-child(1),
    .album-grid > .album-item:nth-child(2) {
        grid-column: span 2;
    }
}

.album-item:hover {
    border-color: rgba(52, 168, 218, 0.6);
    box-shadow: 0 24px 48px rgba(52, 66, 149, 0.18),
        0 4px 12px rgba(52, 168, 218, 0.15),
        inset 0 1px 12px rgba(255, 255, 255, 0.85);
    transform: translateY(-10px) scale(1.015);
}

.album-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.album-item:hover .album-img-wrapper img {
    transform: scale(1.1);
}

/* === Gallery Group Section (Albums) === */
.gallery-group-section {
    margin-bottom: 50px;
    padding-top: 20px;
}

.gallery-group-header {
    margin-bottom: 25px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gallery-group-header h3 {
    color: var(--rec-primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-right: 15px;
}

.gallery-group-header h3::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    bottom: 5px;
    width: 4px;
    background: var(--rec-accent);
    border-radius: 4px;
}

.gallery-group-header p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .gallery-group-section {
        margin-bottom: 70px;
        padding-top: 30px;
    }

    .gallery-group-header h3 {
        font-size: 1.8rem;
    }

    .gallery-group-header p {
        font-size: 1.1rem;
    }
}

/* === Lightbox (Modal) Styles === */
.sumer-recent-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 45, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.sumer-recent-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.sumer-recent-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 65px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sumer-recent-lightbox.active .sumer-recent-lightbox-content {
    transform: scale(1);
}

.sumer-recent-lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    object-fit: contain;
}

.sumer-recent-lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.sumer-recent-lightbox-close:hover {
    background: #e11d48;
    border-color: #e11d48;
    transform: rotate(90deg);
}

.sumer-recent-lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 18px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.sumer-recent-lightbox.active .sumer-recent-lightbox-caption {
    opacity: 1;
}

/* === 2. سلايدر الصور للموبايل (بدون شريط سفلي ومع أسهم جانبية عائمة) === */
.sumer-recent-mobile-slider {
    display: none;
}

.recent-slider-container {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(54, 66, 149, 0.18);
    background: rgba(54, 66, 149, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.75);
    touch-action: pan-y;
}

.recent-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
}

.recent-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    margin: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(0.96);
}

.recent-slide-item.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.recent-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* أسهم التنقل العائمة لليمين واليسار (Floating Glass Arrows) */
.recent-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 15, 45, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
    transition: var(--rec-transition-spring);
}

.recent-arrow-btn:active {
    transform: translateY(-50%) scale(0.9);
    background: var(--rec-accent);
}

.prev-arrow {
    right: 12px;
}

.next-arrow {
    left: 12px;
}

/* === زر الدعوة للانتقال وشعار الاستعراض === */
.sumer-recent-callout {
    text-align: center;
    margin-top: 24px;
}

.sumer-recent-callout span {
    display: inline-block;
    background: linear-gradient(135deg, var(--rec-primary), var(--rec-accent));
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 12px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(54, 66, 149, 0.25);
    transition: var(--rec-transition-spring);
}

.sumer-recent-master-link:hover .sumer-recent-callout span {
    transform: translate3d(0, -3px, 0) scale(1.03);
    box-shadow: 0 12px 35px rgba(52, 168, 218, 0.4);
}

/* === أنيميشن الظهور === */
.sumer-recent-anim {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.sumer-recent-anim.sumer-recent-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* === التجاوب للشاشات المختلفة === */
@media (max-width: 1024px) {
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .album-item-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .sumer-recent-section {
        padding: 45px 12px;
    }

    .sumer-recent-title {
        font-size: 25px;
    }

    /* إخفاء ألبوم الحاسوب وإظهار سلايدر الموبايل المكتمل */
    .sumer-recent-desktop-album {
        display: none !important;
    }

    .sumer-recent-mobile-slider {
        display: block !important;
    }
}

.sumer-cert-section {
    --crt-primary: #364295;
    --crt-primary-dark: #2a3578;
    --crt-accent: #34A8DA;
    --crt-accent-glow: rgba(52, 168, 218, 0.35);
    --crt-gold: #34A8DA;
    --crt-gold-dark: #1e7aa8;
    --crt-gold-glow: rgba(52, 168, 218, 0.35);
    --crt-text-heading: #364295;
    --crt-text-body: #3a3a4a;
    --crt-text-muted: #555;
    --crt-glass-bg: rgba(255, 255, 255, 0.24);
    --crt-glass-hover: rgba(255, 255, 255, 0.36);
    --crt-glass-border: rgba(255, 255, 255, 0.58);
    --crt-glass-shadow: 0 16px 45px rgba(54, 66, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    --crt-glass-shadow-hover: 0 24px 60px rgba(54, 66, 149, 0.22), 0 8px 24px rgba(52, 168, 218, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    --crt-transition-spring: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    padding: 85px 20px;
    overflow: hidden;
    color: var(--crt-text-body);
}

/* === خلفية شبكة الاعتمادات والأختام === */
.sumer-cert-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-cert-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.sumer-cert-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.14;
    pointer-events: none;
}

.orb-gold {
    width: 420px;
    height: 420px;
    background: var(--crt-accent);
    top: -80px;
    right: -60px;
}

.orb-blue {
    width: 420px;
    height: 420px;
    background: var(--crt-primary);
    bottom: -80px;
    left: -60px;
}

/* === الحاوية الرئيسية === */
.sumer-cert-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
}

/* === الهيدر الرئيسي === */
.sumer-cert-header {
    text-align: center;
    margin-bottom: 45px;
}

.sumer-cert-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--crt-primary), var(--crt-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54, 66, 149, 0.25);
}

.sumer-cert-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--crt-text-heading);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-cert-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--crt-text-muted);
    max-width: 840px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-cert-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-cert-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--crt-primary), var(--crt-accent));
}

/* === شبكة الشهادات الـ 3 (ISO 45001, ISO 9001, GMP) === */
.sumer-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 45px;
}

.sumer-cert-card {
    display: flex;
    flex-direction: column;
    background: var(--crt-glass-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--crt-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 26px;
    padding: 28px 24px;
    box-shadow: var(--crt-glass-shadow);
    transition: var(--crt-transition-spring);
    overflow: hidden;
    position: relative;
}

.sumer-cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, var(--crt-primary), var(--crt-accent));
}

.sumer-cert-card:hover {
    background: var(--crt-glass-hover);
    border-color: rgba(52, 168, 218, 0.5);
    transform: translate3d(0, -6px, 0);
    box-shadow: var(--crt-glass-shadow-hover);
}

.cert-card-seal {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--crt-transition-spring);
}

.gold-seal {
    background: linear-gradient(135deg, var(--crt-accent), var(--crt-primary));
}

.blue-seal {
    background: linear-gradient(135deg, var(--crt-primary), var(--crt-accent));
}

.green-seal {
    background: linear-gradient(135deg, #059669, #047857);
}

.sumer-cert-card:hover .cert-card-seal {
    transform: scale(1.1) rotate(-6deg);
}

.cert-issuer-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--crt-accent);
    background: rgba(52, 168, 218, 0.12);
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.cert-card-content h3 {
    font-size: 21px;
    font-weight: 900;
    color: var(--crt-primary);
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.cert-card-content h3 span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--crt-accent);
    margin-top: 2px;
}

.cert-card-content p {
    font-size: 14.5px;
    font-weight: 500;
    color: #4a4a5a;
    line-height: 1.75;
    margin: 0 0 18px 0;
}

.cert-scope-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.scope-pill {
    font-size: 12px;
    font-weight: 700;
    color: var(--crt-primary);
    background: rgba(54, 66, 149, 0.08);
    border: 1px solid rgba(54, 66, 149, 0.16);
    padding: 4px 10px;
    border-radius: 10px;
}

/* صور الشهادات مع خاصية الضغط للتكبير */
.cert-card-photo {
    margin-top: 24px;
}

.cert-photo-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(54, 66, 149, 0.14);
    cursor: pointer;
    margin: 0;
    width: 100%;
    aspect-ratio: 5 / 7;
    background: rgba(54, 66, 149, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cert-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    padding: 6px;
}

.cert-photo-item:hover img {
    transform: scale(1.08);
}

.cert-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(54, 66, 149, 0.95), transparent);
    padding: 24px 14px 12px;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cert-photo-item:hover .cert-caption {
    transform: translate3d(0, 0, 0);
}

.cert-caption span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
}

/* === البطاقة الكبرى المميزة: هوية اتحاد الصناعات العراقي (IFI ID Card) === */
.sumer-ifi-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.18));
    backdrop-filter: blur(28px) saturate(210%);
    -webkit-backdrop-filter: blur(28px) saturate(210%);
    border: 1.5px solid rgba(52, 168, 218, 0.45);
    border-radius: 28px;
    padding: 36px 32px;
    box-shadow: 0 20px 55px rgba(54, 66, 149, 0.15), 0 0 35px rgba(52, 168, 218, 0.18);
    position: relative;
    overflow: hidden;
}

.sumer-ifi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--crt-gold), var(--crt-accent), var(--crt-primary));
}

.ifi-card-inner {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 36px;
    align-items: center;
}

/* الشعار والهوية الرسمية */
.ifi-badge-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ifi-emblem {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crt-accent), var(--crt-primary));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(52, 168, 218, 0.4);
    margin-bottom: 12px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.emblem-star {
    font-size: 24px;
    line-height: 1;
}

.emblem-code {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
}

.ifi-badge-label {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--crt-primary);
    background: rgba(52, 168, 218, 0.12);
    padding: 4px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.ifi-photo-box {
    width: 100%;
}

/* تفاصيل بيانات الهوية الرسمية */
.ifi-header-box {
    margin-bottom: 20px;
}

.ifi-sub-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--crt-primary);
    background: rgba(54, 66, 149, 0.12);
    padding: 3px 14px;
    border-radius: 12px;
    margin-bottom: 6px;
}

.ifi-header-box h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--crt-primary);
    margin: 0;
}

.ifi-header-box h3 span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--crt-accent);
    margin-top: 2px;
}

.ifi-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.data-item {
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.data-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--crt-text-muted);
}

.data-val {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--crt-primary);
}

.highlight-val {
    font-size: 17px;
    font-weight: 900;
    color: var(--crt-accent);
}

.ifi-footer-note {
    background: rgba(52, 168, 218, 0.10);
    border: 1px solid rgba(52, 168, 218, 0.25);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--crt-primary);
}

/* === Lightbox Modal نافذة التكبير للشهادات === */
.sumer-cert-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 15, 45, 0.85);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.sumer-cert-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.sumer-cert-lightbox-close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--crt-transition-spring);
}

.sumer-cert-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.sumer-cert-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sumer-cert-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.sumer-cert-lightbox-caption {
    color: #fff;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

/* === أنيميشن الظهور === */
.sumer-cert-anim {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.sumer-cert-anim.sumer-cert-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* === التجاوب للشاشات المختلفة === */
@media (max-width: 1024px) {
    .sumer-cert-grid {
        grid-template-columns: 1fr;
    }

    .ifi-card-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sumer-cert-section {
        padding: 45px 12px;
    }

    .sumer-cert-title {
        font-size: 25px;
    }

    .ifi-data-grid {
        grid-template-columns: 1fr;
    }

    .sumer-ifi-card {
        padding: 24px 18px;
    }
}

.sumer-vision-section {
    --vsn-primary: #364295;
    --vsn-primary-dark: #2a3578;
    --vsn-accent: #34A8DA;
    --vsn-accent-glow: rgba(52, 168, 218, 0.35);
    --vsn-gold: #d97706;
    --vsn-text-heading: #364295;
    --vsn-text-body: #3a3a4a;
    --vsn-text-muted: #555;
    --vsn-glass-bg: rgba(255, 255, 255, 0.24);
    --vsn-glass-hover: rgba(255, 255, 255, 0.36);
    --vsn-glass-border: rgba(255, 255, 255, 0.58);
    --vsn-glass-shadow: 0 16px 45px rgba(54, 66, 149, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    --vsn-glass-shadow-hover: 0 24px 60px rgba(54, 66, 149, 0.22), 0 8px 24px rgba(52, 168, 218, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    --vsn-transition-spring: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    padding: 85px 20px;
    overflow: hidden;
    color: var(--vsn-text-body);
}

/* === خلفية شبكة التدفق والآفاق المستقبلية === */
.sumer-vision-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-vision-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.sumer-vision-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.14;
    pointer-events: none;
}

.orb-top {
    width: 440px;
    height: 440px;
    background: var(--vsn-accent);
    top: -80px;
    right: -70px;
}

.orb-bottom {
    width: 440px;
    height: 440px;
    background: var(--vsn-primary);
    bottom: -80px;
    left: -70px;
}

/* === الحاوية الرئيسية === */
.sumer-vision-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
}

/* === الهيدر الرئيسي === */
.sumer-vision-header {
    text-align: center;
    margin-bottom: 45px;
}

.sumer-vision-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--vsn-primary), var(--vsn-accent));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(54, 66, 149, 0.25);
}

.sumer-vision-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--vsn-text-heading);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.sumer-vision-subtitle {
    font-size: 16.5px;
    font-weight: 400;
    color: var(--vsn-text-muted);
    max-width: 860px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.sumer-vision-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sumer-vision-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--vsn-primary), var(--vsn-accent));
}

/* === البطاقة الذهبية الرئيسية: تعهد سومر والخبرة منذ 2013 === */
.sumer-vision-hero-card {
    background: var(--vsn-glass-bg);
    backdrop-filter: blur(28px) saturate(210%);
    -webkit-backdrop-filter: blur(28px) saturate(210%);
    border: 1.5px solid var(--vsn-glass-border);
    border-top: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: 38px 36px;
    margin-bottom: 45px;
    box-shadow: var(--vsn-glass-shadow);
    transition: var(--vsn-transition-spring);
    position: relative;
    overflow: hidden;
}

.sumer-vision-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vsn-primary), var(--vsn-accent), var(--vsn-gold));
}

.sumer-vision-hero-card:hover {
    background: var(--vsn-glass-hover);
    transform: translate3d(0, -4px, 0);
    box-shadow: var(--vsn-glass-shadow-hover);
}

.hero-card-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}

/* جانب الختم والإحصائية */
.hero-badge-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 28px 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.experience-seal {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vsn-primary), var(--vsn-accent));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(54, 66, 149, 0.3);
    margin-bottom: 16px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.seal-year {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.seal-lbl {
    font-size: 11.5px;
    font-weight: 700;
    opacity: 0.9;
    margin-top: 2px;
}

.experience-stats .stat-num {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--vsn-primary);
}

.experience-stats .stat-txt {
    font-size: 13px;
    font-weight: 700;
    color: var(--vsn-text-muted);
}

/* جانب النص التعهدي */
.hero-sub-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--vsn-accent);
    background: rgba(52, 168, 218, 0.12);
    padding: 4px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.hero-text-side h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--vsn-primary);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.hero-text-side h3 span {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--vsn-accent);
    margin-top: 2px;
}

.hero-text-side p {
    font-size: 16px;
    font-weight: 500;
    color: #3a3a4a;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--vsn-primary);
}

.hl-icon {
    font-size: 16px;
}

/* === شبكة الركائز الثلاث (Engineering, Manufacturing, Execution) === */
.sumer-vision-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 45px;
}

.vision-pillar-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--vsn-glass-bg);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid var(--vsn-glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: var(--vsn-glass-shadow);
    transition: var(--vsn-transition-spring);
}

.vision-pillar-card:hover {
    background: var(--vsn-glass-hover);
    border-color: rgba(52, 168, 218, 0.5);
    transform: translate3d(0, -6px, 0);
    box-shadow: var(--vsn-glass-shadow-hover);
}

.pillar-icon-box {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 16px rgba(54,66,149,0.1);
    transition: var(--vsn-transition-spring);
}

.vision-pillar-card:hover .pillar-icon-box {
    background: linear-gradient(135deg, var(--vsn-primary), var(--vsn-accent));
    border-color: transparent;
    transform: scale(1.08) rotate(-4deg);
}

.vision-pillar-card:hover .pillar-icon-box svg {
    stroke: #fff;
}

.vision-pillar-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--vsn-primary);
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.vision-pillar-card h3 span {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--vsn-accent);
    margin-top: 2px;
}

.vision-pillar-card p {
    font-size: 14.5px;
    font-weight: 500;
    color: #4a4a5a;
    line-height: 1.75;
    margin: 0 0 20px 0;
}

.pillar-footer-tag {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--vsn-primary);
    background: rgba(54, 66, 149, 0.08);
    border: 1px solid rgba(54, 66, 149, 0.16);
    padding: 6px 14px;
    border-radius: 12px;
    text-align: center;
    margin-top: auto;
}

/* === بانر الجاهزية والتعاون (Partner Banner) === */
.sumer-vision-partner-banner {
    margin-top: 10px;
}

.partner-banner-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, var(--vsn-primary), var(--vsn-primary-dark));
    color: #fff;
    border-radius: 28px;
    padding: 32px 38px;
    box-shadow: 0 18px 50px rgba(54, 66, 149, 0.25);
}

.partner-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-text-box {
    flex: 1;
}

.partner-text-box h3 {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.partner-text-box h3 span {
    display: block;
    font-size: 14.5px;
    font-weight: 500;
    opacity: 0.82;
}

.partner-text-box p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin: 0;
}

.sumer-vision-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, var(--vsn-accent), #2589b8);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(52, 168, 218, 0.35);
    transition: var(--vsn-transition-spring);
    white-space: nowrap;
}

.sumer-vision-btn:hover {
    transform: translate3d(0, -3px, 0) scale(1.03);
    box-shadow: 0 10px 30px rgba(52, 168, 218, 0.5);
    color: #fff;
    text-decoration: none;
}

/* === أنيميشن الظهور === */
.sumer-vision-anim {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.sumer-vision-anim.sumer-vision-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* === التجاوب للشاشات المختلفة === */
@media (max-width: 1024px) {
    .hero-card-inner {
        grid-template-columns: 1fr;
    }

    .sumer-vision-pillars-grid {
        grid-template-columns: 1fr;
    }

    .partner-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .partner-icon-box {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .sumer-vision-section {
        padding: 45px 12px;
    }

    .sumer-vision-title {
        font-size: 25px;
    }

    .sumer-vision-hero-card {
        padding: 26px 20px;
    }

    .partner-banner-inner {
        padding: 24px 18px;
    }
}

.sumer-footer-section {
    --ftr-bg-dark: #12193b;
    --ftr-bg-card: rgba(255, 255, 255, 0.06);
    --ftr-bg-card-hover: rgba(255, 255, 255, 0.12);
    --ftr-border: rgba(255, 255, 255, 0.14);
    --ftr-primary: #364295;
    --ftr-accent: #34A8DA;
    --ftr-gold: #d97706;
    --ftr-text-light: #ffffff;
    --ftr-text-muted: rgba(255, 255, 255, 0.72);
    --ftr-transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #182046 0%, #0d122b 100%);
    color: var(--ftr-text-light);
    padding: 85px 20px 30px;
    overflow: hidden;
    border-top: 1px solid rgba(52, 168, 218, 0.25);
}

/* === خلفية شبكة التدفق الكوني === */
.sumer-ftr-bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.sumer-ftr-grid-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.sumer-ftr-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.18;
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--ftr-accent);
    top: -100px;
    right: -80px;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: var(--ftr-primary);
    bottom: -80px;
    left: -80px;
}

/* === الحاوية الرئيسية === */
.sumer-ftr-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
}

/* === الشبكة الرئيسية للفووتر (عمودين رئيسيين) === */
.sumer-ftr-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.ftr-col-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px 0;
    position: relative;
    padding-bottom: 10px;
}

.ftr-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--ftr-accent), var(--ftr-primary));
}

/* العمود 1: هوية الشركة والمدير العام */
.ftr-brand-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.ftr-logo-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(52, 168, 218, 0.15);
    border: 1px solid rgba(52, 168, 218, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(52, 168, 218, 0.2);
}

.ftr-brand-title h3 {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.ftr-brand-title h3 span {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ftr-accent);
}

.ftr-brand-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--ftr-gold);
    display: block;
    margin-top: 2px;
}

.ftr-brand-desc {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--ftr-text-muted);
    line-height: 1.8;
    margin: 0 0 24px 0;
}

/* بطاقة المالك والمدير العام */
.ftr-gm-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--ftr-bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--ftr-border);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--ftr-transition);
}

.ftr-gm-card:hover {
    background: var(--ftr-bg-card-hover);
    border-color: rgba(52, 168, 218, 0.4);
    transform: translate3d(0, -3px, 0);
}

.gm-icon {
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(217, 119, 6, 0.18);
    border: 1px solid rgba(217, 119, 6, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gm-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gm-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ftr-accent);
}

.gm-name {
    font-size: 15.5px;
    font-weight: 800;
    color: #fff;
}

/* كروت التواصل المباشر المكدسة تحت المالك */
.ftr-contact-cards-stacked {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ftr-sub-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
    position: relative;
    padding-bottom: 6px;
}

.ftr-sub-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2.5px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ftr-accent), var(--ftr-primary));
}

.ftr-ccard {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--ftr-bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--ftr-border);
    border-radius: 18px;
    padding: 14px 18px;
    transition: var(--ftr-transition);
}

.ftr-ccard:hover {
    background: var(--ftr-bg-card-hover);
    border-color: rgba(52, 168, 218, 0.45);
    transform: translate3d(0, -3px, 0);
}

.ccard-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(52, 168, 218, 0.15);
    border: 1px solid rgba(52, 168, 218, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ccard-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ccard-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ftr-accent);
}

.ccard-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.phone-link,
.email-link {
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: var(--ftr-accent);
    text-decoration: underline;
}

.sep {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.address-text {
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

/* === العمود 2: بطاقة وخارطة جوجل البارزة المكبرة === */
.col-map-hero {
    display: flex;
    flex-direction: column;
}

.ftr-map-hero-card {
    background: var(--ftr-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ftr-border);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
    transition: var(--ftr-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ftr-map-hero-card:hover {
    border-color: rgba(52, 168, 218, 0.5);
    background: var(--ftr-bg-card-hover);
    box-shadow: 0 20px 55px rgba(52, 168, 218, 0.2);
}

.map-hero-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
    flex-wrap: wrap;
}

.map-hero-title h4 {
    margin-bottom: 4px;
}

.map-hero-sub {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ftr-accent);
    display: block;
}

.map-hero-btn {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--ftr-accent), var(--ftr-primary));
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(52, 168, 218, 0.3);
    transition: var(--ftr-transition);
    white-space: nowrap;
}

.map-hero-btn:hover {
    transform: translate3d(0, -2px, 0) scale(1.03);
    box-shadow: 0 8px 25px rgba(52, 168, 218, 0.45);
    color: #fff;
    text-decoration: none;
}

.map-hero-iframe-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-height: 380px;
}

.map-hero-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

/* العمود 3: روابط الوصول السريع */
.ftr-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ftr-links-list a {
    color: var(--ftr-text-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--ftr-transition);
    position: relative;
    padding-right: 14px;
}

.ftr-links-list a::before {
    content: '❮';
    position: absolute;
    right: 0;
    top: 1px;
    font-size: 10px;
    color: var(--ftr-accent);
    transition: transform 0.3s ease;
}

.ftr-links-list a:hover {
    color: #fff;
    transform: translate3d(-4px, 0, 0);
}

.ftr-links-list a:hover::before {
    color: #fff;
}

/* === البانر التفاعلي السفلي للاتصال السريع === */
.sumer-ftr-cta-banner {
    background: linear-gradient(135deg, rgba(54, 66, 149, 0.45), rgba(52, 168, 218, 0.25));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 28px 36px;
    margin-bottom: 40px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.cta-text p {
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.ftr-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--ftr-transition);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
    transform: translate3d(0, -3px, 0) scale(1.03);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.45);
    color: #fff;
    text-decoration: none;
}

.btn-call {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    transform: translate3d(0, -3px, 0);
}

/* === الشريط السفلي للحقوق === */
.sumer-ftr-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.bottom-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.b-badge {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ftr-accent);
    background: rgba(52, 168, 218, 0.12);
    border: 1px solid rgba(52, 168, 218, 0.25);
    padding: 3px 12px;
    border-radius: 10px;
}

/* === أنيميشن الظهور === */
.sumer-ftr-anim {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.sumer-ftr-anim.sumer-ftr-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* === التجاوب للشاشات المختلفة === */
@media (max-width: 1024px) {
    .sumer-ftr-main-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .sumer-footer-section {
        padding: 50px 12px 25px;
    }

    .sumer-ftr-cta-banner {
        padding: 22px 18px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .ftr-btn {
        width: 100%;
        text-align: center;
    }

    .sumer-ftr-bottom-bar {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* .sumer-bg {
} */
sumer-bg {
    background-image: url('assets/images/sumer_logo_transparent.png'),;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70%;
    background-attachment: fixed;
    background-origin: border-box;
    background-clip: padding-box;
}

/* ==========================
   SUMER GLOBAL BACKGROUND
========================== */
.sumer-global-bg {
    position: fixed;
    inset: 0;
    z-index: -999;
    overflow: hidden;
    pointer-events: none;
}

/* التدرج */
.sumer-global-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgb(238,244,250) 8%,
        rgb(136,218,255) 98%
    );
    background-size: 400% 400%;
    animation: sumerGradient 12s ease infinite;
}

/* اللوجو */
.sumer-global-logo {
    position: absolute;
    inset: 0;
    background: url("../images/sumer_logo_transparent.png")
        center center/55% no-repeat;
    opacity: .85;
}

@keyframes sumerGradient{
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}