/* ==================== EXECUTIVE LEADERSHIP BRAND (SOPHISTICATED MODERN) ==================== */

:root {
    /* Architectural Theme Palette */
    --executive-navy: #0F172A;
    /* Deeper Navy */
    --executive-navy-bg: #0F172A;
    --executive-gold: #926A2D;
    /* Richer Bronze/Gold */
    --executive-gold-alt: #B88E2F;
    --surface-light: #FFFFFF;
    --surface-off: #F8FAFC;
    /* Softer Blue-Gray Tint */
    --text-main: #1E293B;
    --text-slate: #64748B;
    --border-soft: #E2E8F0;

    /* Legacy Sync Enhancement */
    --primary-dark: var(--executive-navy);
    --primary-navy: #1E293B;
    --primary-light: var(--surface-off);
    --accent-gold: var(--executive-gold);
    --white: #ffffff;
    --text-dark: var(--text-main);
    --text-light: var(--text-slate);
    --border-light: var(--border-soft);
    --bg-light: var(--surface-off);

    --font-heading: 'IBM Plex Sans Arabic', sans-serif;
    --font-body: 'Inter', 'IBM Plex Sans Arabic', sans-serif;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* Smoother expansion feel */
}

/* ==================== DARK MODE OVERRIDES ==================== */
body.dark-theme {
    --surface-light: hsl(228, 12%, 8%);
    --surface-off: hsl(228, 12%, 10%);
    --text-main: hsl(228, 8%, 95%);
    --text-slate: hsl(228, 8%, 70%);
    --border-soft: hsl(228, 16%, 14%);

    /* Sync Legacy Vars in Dark Mode */
    --primary-dark: #fff;
    --primary-navy: hsl(228, 8%, 85%);
    --primary-light: rgba(255, 255, 255, 0.05);
    --white: var(--surface-light);
    --text-dark: var(--text-main);
    --text-light: var(--text-slate);
    --border-light: var(--border-soft);
    --bg-light: var(--surface-off);

    /* Force high contrast for titles in dark mode */
    --executive-navy: #fff;
    --executive-navy-bg: hsl(228, 12%, 6%);
}

/* ==================== DARK MODE COMPONENT REFINEMENTS ==================== */
body.dark-theme .hero-exec {
    background: linear-gradient(to right, var(--surface-light) 50%, var(--surface-off) 50%) !important;
}

[dir="rtl"].dark-theme .hero-exec {
   /* background: linear-gradient(to left, var(--surface-light) 50%, var(--surface-off) 50%) !important;*/
}

body.dark-theme .hero-exec__badge {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-theme .obj-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

body.dark-theme .obj-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--executive-gold) !important;
}

body.dark-theme .btn-exec--outline {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

body.dark-theme .btn-exec--outline:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: #fff !important;
}

body.dark-theme .logo-exec__mark {
    background: var(--executive-gold) !important;
    color: var(--executive-navy) !important;
}

body.dark-theme .logo-exec__name {
    color: #fff !important;
}

body.dark-theme .page-header {
    background: var(--surface-off) !important;
}

body.dark-theme .vision-quote {
    background: var(--surface-off) !important;
}

body {
    background-color: var(--surface-light);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ==================== PROFESSIONAL LOGO ==================== */
.logo-exec {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-exec__mark {
    width: 45px;
    height: 45px;
    background: var(--executive-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--executive-gold);
    font-weight: 800;
    font-size: 20px;
    border-radius: 4px;
    position: relative;
}

.logo-exec__mark::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--executive-gold);
    border-radius: 4px;
    z-index: -1;
}

.logo-exec__text {
    display: flex;
    flex-direction: column;
}

.logo-exec__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--executive-navy);
    letter-spacing: 0.5px;
}

.logo-exec__tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--executive-gold);
    font-weight: 600;
}

/* ==================== EXECUTIVE HERO ==================== */
.hero-exec {
    padding: 110px 0 60px;
    background: linear-gradient(135deg, #0332ee0f 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-exec::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(-- executive-gold) 0%, transparent 70%);
    opacity: 0.03;
    z-index: 0;
}

.hero-exec__container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-exec__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--border-soft);
    color: var(--executive-navy);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    border-radius: 50px;
}

.hero-exec__badge i {
    color: var(--executive-gold);
}

.hero-exec__title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--executive-navy);
    margin-bottom: 30px;
}

.hero-exec__title span {
    color: var(--executive-gold);
}

.hero-exec__description {
    font-size: 18px;
    color: var(--text-slate);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 580px;
}

.hero-exec__image-wrap {
    position: relative;
}

.hero-exec__photo {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(10%) contrast(105%);
    box-shadow: 40px -40px 0px -20px rgba(146, 106, 45, 0.08);
    position: relative;
    z-index: 1;
}

.hero-exec__image-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--executive-gold);
    border-left: 2px solid var(--executive-gold);
    z-index: 2;
}

/* ==================== STRATEGIC OBJECTIVES SECTION ==================== */
.objectives {
    padding: 120px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-head__label {
    color: var(--executive-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
    text-align:center;
}

.section-head__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--executive-navy);
}

.obj-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 40px auto 0;
}

.obj-card {
    padding: 60px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-soft);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    transition: var(--transition);
    position: relative;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.obj-card:last-child {
    border-bottom: none;
}

.obj-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--executive-gold);
    transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.obj-card:hover::after {
    width: 100%;
}

.obj-card__num {
    display: block !important;
    font-size: 14px;
    font-weight: 700;
    color: var(--executive-gold);
    letter-spacing: 2px;
    padding-top: 8px;
}

.obj-card__content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--executive-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.obj-card__content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-slate);
    max-width: 700px;
}

/* ==================== CALL TO ACTION ==================== */
.btn-exec {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: #2d2e30;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid var(--executive-navy);
    min-height: 54px; /* Ensure equal height */
}

.btn-exec:hover {
    background: transparent;
    color: var(--executive-navy);
}

.hero-exec__cta {
    display: flex;
    flex-wrap: nowrap; /* Force same row */
    gap: 15px;
    padding-bottom: 50px;
    justify-content: center;
}

@media (max-width: 600px) {
    .hero-exec__cta {
        flex-direction: row;
        width: 100%;
    }
    .btn-exec {
        flex: 1;
        min-width: 0; /* Allow shrinking */
        padding: 10px 5px;
        font-size: 12px;
        line-height: 1.2;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.btn-exec--outline {
    background: #87622d;
    color: var(--executive-navy);
    border: 1px solid var(--border-soft);
}

.btn-exec--outline:hover {
    border-color: var(--executive-navy);
}

/* ==================== RTL STUFF ==================== */
[dir="rtl"] .hero-exec {
   /* background: linear-gradient(to left, var(--surface-off) 50%, #fff 50%);*/
}

[dir="rtl"] .logo-exec__mark::after {
    right: auto;
    left: -4px;
}

[dir="rtl"] .hero-exec__photo {
    box-shadow: -30px 30px 0px var(--executive-gold-alt);
}

/* ==================== EXECUTIVE FOOTER ==================== */
.footer-exec {
    background: #121317 !important;
    color: #fff;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-exec .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-exec__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 20px;
   /* margin-bottom: 40px;*/
    text-align: left;
}

[dir="rtl"] .footer-exec__grid {
    text-align: right;
}

.footer-exec__about {
    max-width: 320px;
}

.footer-exec__logo {
    margin-bottom: 25px;
}

.footer-exec__logo .logo-exec__name {
    color: #fff;
}

.footer-exec__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-exec__social {
    display: flex;
    gap: 15px;
}

.footer-exec__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
    transition: var(--transition);
}

.footer-exec__social-link:hover {
    background: var(--executive-gold);
    color: #fff;
    transform: translateY(-3px);
}

.footer-exec__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-exec__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--executive-gold);
}

[dir="rtl"] .footer-exec__title::after {
    left: auto;
    right: 0;
}

.footer-exec__links {
    list-style: none;
    padding: 0;
}

.footer-exec__links li {
    margin-bottom: 15px;
}

.footer-exec__link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-exec__link:hover {
    color: var(--executive-gold);
    padding-left: 8px;
}

[dir="rtl"] .footer-exec__link:hover {
    padding-left: 0;
    padding-right: 8px;
}

.footer-exec__contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-exec__contact-item i {
    color: var(--executive-gold);
    font-size: 18px;
}

.footer-exec__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== UTILITIES FOR ALL PAGES ==================== */
.page-header {
    padding: 180px 0 100px;
    background: var(--surface-off);
    text-align: center;
}

.page-header__title {
    font-size: 48px;
    font-weight: 800;
    color: var(--executive-navy);
    margin-bottom: 20px;
}

.page-header__breadcrumb {
    color: var(--text-slate);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.exec-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    padding: 40px;
    border-radius: 8px;
    transition: var(--transition);
}

.exec-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .footer-exec__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-exec {
        /*background: var(--surface-off) !important;*/
    }

    .hero-exec__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-exec__description {
        margin: 0 auto 50px;
    }

    .obj-grid {
        grid-template-columns: 1fr;
    }

    .hero-exec__title {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .footer-exec__grid {
        grid-template-columns: 1fr;
    }

    .footer-exec__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}