/* ════════════════════════════════════════════════════════════════
   SAWAAED NAJD ENGINEERING CONSULTANCY — ABOUT US PAGE STYLES (about.css)
   ================================================================ */

/* ─── 01. INNER HERO BANNER ─── */
.abt-hero {
    position: relative;
    padding: 9rem 0 5rem;
    background-color: var(--brand-green, #0C382C);
    background-image: linear-gradient(135deg, rgba(7, 35, 27, 0.95) 0%, rgba(12, 56, 44, 0.9) 100%),
        url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80&fm=webp');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    overflow: hidden;
}

.abt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.abt-hero-inner {
    position: relative;
    z-index: 2;
}

.abt-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.abt-breadcrumbs a {
    color: var(--brand-gold, #C5A059);
    text-decoration: none;
    transition: color 0.3s ease;
}

.abt-breadcrumbs a:hover {
    color: #FFFFFF;
}

.abt-bc-sep {
    color: rgba(255, 255, 255, 0.4);
}

.abt-bc-active {
    color: #FFFFFF;
    font-weight: 600;
}

.abt-hero-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 1rem !important;
}

.abt-hero-tag span {
    color: #FFFFFF !important;
}

.abt-tag-dot {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background-color: var(--brand-gold, #C5A059) !important;
    box-shadow: 0 0 8px var(--brand-gold, #C5A059) !important;
    flex-shrink: 0 !important;
}

.abt-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.25;
    color: #FFFFFF;
    max-width: 800px;
}


/* ─── 02. WHO WE ARE (Overview Section) ─── */
.abt-who-sec {
    padding: 6rem 0;
    background-color: #FAFCFB;
}

.abt-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.abt-who-text {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(12, 56, 44, 0.04);
    border: 1px solid rgba(12, 56, 44, 0.06);
}

.abt-who-text .sec-eyebrow span:not(.sec-eyebrow-line) {
    color: #0C382C !important;
    font-weight: 800 !important;
}

.abt-who-text .sec-title {
    color: #0C382C !important;
    font-size: 2rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1.5rem !important;
}

.abt-who-lead {
    font-size: 1.12rem !important;
    font-weight: 700 !important;
    color: #0C382C !important;
    line-height: 1.85 !important;
    margin-bottom: 1.2rem !important;
}

.abt-who-body {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #2C3532 !important;
    line-height: 1.85 !important;
    margin-bottom: 2rem !important;
}

.abt-who-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(12, 56, 44, 0.08);
}

.abt-hl-item {
    text-align: center;
    background: rgba(12, 56, 44, 0.03);
    padding: 1rem 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(12, 56, 44, 0.05);
}

.abt-hl-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-gold, #C5A059);
    font-family: 'Montserrat', 'Cairo', sans-serif;
    margin-bottom: 0.3rem;
}

.abt-hl-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0C382C;
    line-height: 1.4;
}

.abt-who-img-wrap {
    position: relative;
}

.abt-img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(12, 56, 44, 0.12);
}

.abt-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.abt-img-frame:hover .abt-img {
    transform: scale(1.04);
}

.abt-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: 2rem;
    background: var(--brand-green, #0C382C);
    color: #FFFFFF;
    padding: 1.2rem 1.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 12px 28px rgba(12, 56, 44, 0.25);
    border: 1px solid var(--brand-gold, #C5A059);
    max-width: 300px;
}

body[dir="ltr"] .abt-img-badge {
    right: auto;
    left: 2rem;
}

.abt-img-badge svg {
    color: var(--brand-gold, #C5A059);
    flex-shrink: 0;
}

.abt-img-badge span {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
}


/* ─── 03. VISION & MISSION SECTION ─── */
.abt-vm-sec {
    padding: 6rem 0;
    background-color: var(--brand-green, #0C382C);
    background-image: radial-gradient(circle at 10% 90%, rgba(197, 160, 89, 0.1) 0%, transparent 50%);
    color: #FFFFFF;
}

.abt-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.abt-vm-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.35s ease;
}

.abt-vm-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--brand-gold, #C5A059);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.custom-brand-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
    transition: transform 0.3s ease;
}

.abt-vm-icon {
    width: 75px;
    height: 75px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.abt-vm-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.abt-vm-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--brand-gold, #C5A059);
}

body[dir="rtl"] .abt-vm-title::after {
    right: 0;
}

body[dir="ltr"] .abt-vm-title::after {
    left: 0;
}

.abt-vm-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}


/* ─── 04. OUR VALUES SECTION ─── */
.abt-val-sec {
    padding: 6rem 0;
    background-color: #FAFCFB;
}

.abt-val-sec .sec-eyebrow span:not(.sec-eyebrow-line) {
    color: #0C382C !important;
    font-weight: 800 !important;
}

.abt-val-sec .sec-title {
    color: #0C382C !important;
    margin-bottom: 3.5rem;
}

.abt-val-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.abt-val-card {
    background: #FFFFFF;
    padding: 2.2rem 1.8rem;
    border-radius: 10px;
    border: 1px solid rgba(12, 56, 44, 0.08);
    box-shadow: 0 6px 20px rgba(12, 56, 44, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.abt-val-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(12, 56, 44, 0.08);
    border-color: rgba(197, 160, 89, 0.4);
}

.abt-val-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.abt-val-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0C382C !important;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.abt-val-desc {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2C3532 !important;
    line-height: 1.75;
}


/* ─── 05. WHY CHOOSE US SECTION ─── */
.abt-why-sec {
    padding: 6rem 0;
    background-color: #FFFFFF;
    border-top: 1px solid rgba(12, 56, 44, 0.06);
}

.abt-why-sec .sec-eyebrow span:not(.sec-eyebrow-line) {
    color: #0C382C !important;
    font-weight: 800 !important;
}

.abt-why-sec .sec-title {
    color: #0C382C !important;
    margin-bottom: 3.5rem;
}

.abt-why-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.abt-why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    background: #FAFCFB;
    padding: 1.6rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(12, 56, 44, 0.06);
    transition: all 0.3s ease;
}

.abt-why-item:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(12, 56, 44, 0.06);
    border-color: rgba(197, 160, 89, 0.35);
    transform: translateX(-4px);
}

body[dir="ltr"] .abt-why-item:hover {
    transform: translateX(4px);
}

.abt-why-check {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid var(--brand-gold, #C5A059);
    color: var(--brand-gold, #C5A059);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.abt-why-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: #0C382C !important;
    margin-bottom: 0.4rem;
}

.abt-why-desc {
    font-size: 0.98rem;
    font-weight: 500;
    color: #2C3532 !important;
    line-height: 1.7;
}


/* ─── RESPONSIVE BREAKPOINTS ─── */
@media (max-width: 1024px) {
    .abt-val-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 868px) {
    .abt-who-grid,
    .abt-vm-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .abt-who-text {
        padding: 2rem;
    }

    .abt-img {
        height: 360px;
    }

    .abt-img-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        max-width: 100%;
    }

    body[dir="ltr"] .abt-img-badge {
        left: 0;
    }

    .abt-why-item {
        padding: 1.2rem 1.4rem;
    }
}

@media (max-width: 576px) {
    .abt-hero {
        padding: 7rem 0 3.5rem;
    }

    .abt-who-highlights {
        grid-template-columns: 1fr;
    }

    .abt-val-grid {
        grid-template-columns: 1fr;
    }

    .abt-vm-card {
        padding: 2rem 1.5rem;
    }
}

/* ════════════════════════════════════════════════
   CTA BAND (.idx-cta-band) FULL SECTION STYLES
════════════════════════════════════════════════ */
.idx-cta-band {
    position: relative !important;
    overflow: hidden !important;
    padding: 100px 0 !important;
    background-color: #07231B !important;
}

.idx-cta-bg {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 0 !important;
}

.idx-cta-bg-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.idx-cta-bg-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(12, 56, 44, 0.95) 0%, rgba(7, 35, 27, 0.85) 100%) !important;
}

.idx-cta-band .container {
    position: relative !important;
    z-index: 2 !important;
}

.idx-cta-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
}

.idx-cta-text {
    flex: 1 !important;
    min-width: 300px !important;
}

.idx-cta-title {
    color: #FFFFFF !important;
    font-weight: 800 !important;
    margin-bottom: 0.8rem !important;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem) !important;
    line-height: 1.3 !important;
}

.idx-cta-sub {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-top: 0.8rem !important;
}

.idx-cta-btn {
    flex-shrink: 0 !important;
    padding: 1rem 2rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    background: #C5A059 !important;
    color: #0C382C !important;
    border: 1px solid #C5A059 !important;
    border-radius: 6px !important;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    text-decoration: none !important;
}

.idx-cta-btn:hover {
    background: #0C382C !important;
    color: #FFFFFF !important;
    border-color: #C5A059 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(12, 56, 44, 0.4) !important;
}

.idx-cta-band .idx-cta-btn,
.idx-cta-band .idx-cta-btn span,
.idx-cta-band .idx-cta-btn svg {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

@media (max-width: 768px) {
    .idx-cta-inner {
        flex-direction: column !important;
        text-align: center !important;
    }

    .idx-cta-text {
        min-width: 100% !important;
    }

    .idx-cta-btn {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 1.5rem !important;
    }
}
