section {
    background: linear-gradient(rgba(245,243,239,0.75), rgba(245,243,239,0.8)),
                url('https://www.eijarat.com/images/equipment.jpg') center/cover no-repeat;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-align: center;
}
.section-subtitle {
    font-size: 0.95rem;
    color: var(--steel);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.7;
}
/* Section label accent */
.section-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--signal);
    text-align: center;
    margin-bottom: 12px;
}
.section-dark .section-subtitle, .sec-dark .section-subtitle { color: rgba(255,255,255,0.5); }
.section-dark .section-title, .sec-dark .section-title { color: var(--white); }
.section-dark .section-label, .sec-dark .section-label { color: var(--signal-bright); }

/* ── SERVICES GRID (new card-based) ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 3px solid var(--coal);
}
.service-card {
    padding: 36px 28px;
    border-right: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
}
.service-card:hover {
    background: var(--sand);
}
.service-card:nth-child(3n) {
    border-right: none;
}
.service-card:nth-child(n+4) {
    border-bottom: none;
}
.service-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--signal);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--steel);
}
/* Staggered fade-in for service cards */
.service-card.fade-in:nth-child(1) { transition-delay: 0s; }
.service-card.fade-in:nth-child(2) { transition-delay: 0.08s; }
.service-card.fade-in:nth-child(3) { transition-delay: 0.16s; }
.service-card.fade-in:nth-child(4) { transition-delay: 0.24s; }
.service-card.fade-in:nth-child(5) { transition-delay: 0.32s; }
.service-card.fade-in:nth-child(6) { transition-delay: 0.4s; }

/* ── SERVICES PAGE — Category Cards ── */
.svc-category {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 16px;
    border-radius: 2px;
}
.svc-category-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}
.svc-category-num {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--signal);
    letter-spacing: 2px;
    min-width: 28px;
    padding-top: 4px;
}
.svc-category-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 6px;
    color: var(--coal);
}
.svc-category-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--steel);
    max-width: 640px;
}
.svc-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.svc-item {
    background: #F5F5F5;
    padding: 14px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--coal);
    border-left: 3px solid var(--signal);
    transition: background 0.2s;
}
.svc-item:hover {
    background: #EFEFEF;
}
[dir="rtl"] .svc-item {
    border-left: none;
    border-right: 3px solid var(--signal);
}

/* ── SERVICES PAGE — Advantage Grid ── */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border: 3px solid var(--coal);
}
.advantage-card {
    padding: 36px 28px;
    border-right: 1px solid rgba(0,0,0,0.08);
}
.advantage-card:last-child { border-right: none; }
.advantage-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--signal);
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.advantage-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.advantage-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--steel);
}

/* ── STAT ITEMS (new) ── */
.stat-item {
    text-align: center;
    padding: 0 20px;
}
.stat-item + .stat-item {
    border-left: 1px solid rgba(255,255,255,0.15);
}
.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--signal-bright);
}
.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
}

/* ── CATEGORIES GRID (new) ── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 3px solid var(--coal);
}
.category-card {
    padding: 28px 16px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: background 0.2s;
    cursor: default;
}
.category-card:nth-child(5n) {
    border-right: none;
}
.category-card:nth-child(n+6) {
    border-bottom: none;
}
.category-card:hover {
    background: var(--white);
}
/* Staggered fade-in for stat items */
.stat-item.fade-in:nth-child(1) { transition-delay: 0s; }
.stat-item.fade-in:nth-child(2) { transition-delay: 0.15s; }
.stat-item.fade-in:nth-child(3) { transition-delay: 0.3s; }
.stat-item.fade-in:nth-child(4) { transition-delay: 0.45s; }

/* ── CLIENT CARDS (new) ── */
.client-card {
    padding: 32px 24px;
    border-right: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    text-align: center;
}
.client-card:nth-child(4n) {
    border-right: none;
}
.client-logo-img {
    height: 48px;
    width: auto;
    margin: 0 auto 12px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}
.client-card:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}
.client-name {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.client-type {
    font-size: 0.8rem;
    color: var(--concrete);
    font-weight: 500;
}

/* ── CTA SECTION (new) ── */
.cta-section {
    background: var(--signal);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 50%, rgba(255,255,255,0.06) 100%);
    pointer-events: none;
}
.cta-section .cta-info h2 { color: var(--white); }
.cta-section .cta-info > p { color: rgba(255,255,255,0.85); }
.cta-section .cta-label { color: rgba(255,255,255,0.65); letter-spacing: 2px; }
.cta-section .cta-item a,
.cta-section .cta-item span { color: var(--white); }
.cta-section .cta-item a:hover { color: var(--coal); }
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.cta-info h2 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.cta-info > p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--steel);
    margin-bottom: 32px;
}
.cta-contact-items {
    display: flex;
    flex-dire