/* ═════════════════════════════════════════════════════════════════════
   آفاق الجدوى للاستشارات الاقتصادية | AFAQ ALJADWAA
   Official Brand Blue (#0055b8) • Balanced Clean Modern Design
   ═════════════════════════════════════════════════════════════════════ */

/* Google Fonts loaded asynchronously via wp_enqueue_style in enqueue-scripts.php */

:root {
    /* Official Brand Colors */
    --brand-blue: #0055b8;
    --brand-blue-dark: #004394;
    --brand-blue-deeper: #00316e;
    --brand-blue-light: #2575dc;
    --brand-blue-soft: #edf5ff;
    --brand-blue-soft-2: #e0efff;
    --brand-blue-border: rgba(0, 85, 184, 0.18);

    /* Canvas Backgrounds */
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --bg-alt: #f1f5f9;

    /* Executive Navy Palette */
    --navy-950: #071326;
    --navy-900: #0a1c36;
    --navy-850: #0f2547;
    --navy-800: #17355f;
    --navy-700: #334155;
    --navy-600: #475569;

    /* Accents */
    --accent-gold: #d97706;
    --accent-green: #10b981;
    --whatsapp: #25d366;
    --whatsapp-dark: #1ea952;

    /* Text Colors */
    --text-heading: #0a1c36;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Borders */
    --border-color: #e2e8f0;
    --border-card: #e5edf5;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(10, 28, 54, 0.04);
    --shadow-sm: 0 3px 10px rgba(10, 28, 54, 0.05);
    --shadow-md: 0 8px 24px rgba(10, 28, 54, 0.08);
    --shadow-lg: 0 16px 40px rgba(10, 28, 54, 0.12);
    --shadow-card-hover: 0 14px 30px rgba(0, 85, 184, 0.12), 0 3px 8px rgba(10, 28, 54, 0.04);

    /* Radii */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    /* Balanced Typography */
    --font-title: 'Alexandria', sans-serif;
    --font-text: 'Tajawal', sans-serif;

    /* Transitions */
    --trans: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═════════════════════════════════════════════════════════════════════
   BASE & RESET
   ═════════════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Balanced base size */
}

body {
    font-family: var(--font-text);
    background-color: var(--bg-body);
    color: var(--text-body);
    direction: rtl;
    text-align: right;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--trans);
}

button {
    font-family: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═════════════════════════════════════════════════════════════════════
   BALANCED TYPOGRAPHY (NO OVERLY LARGE FONTS)
   ═════════════════════════════════════════════════════════════════════ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.38;
}

h1 {
    font-size: clamp(1.22rem, 3.6vw, 2.05rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.08rem, 2.8vw, 1.65rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(0.96rem, 2.2vw, 1.25rem);
    font-weight: 700;
}

h4 {
    font-size: clamp(0.88rem, 1.8vw, 1.05rem);
    font-weight: 700;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* ═════════════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═════════════════════════════════════════════════════════════════════ */

section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    align-self: flex-start;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-blue);
    background: var(--brand-blue-soft);
    border: 1px solid var(--brand-blue-border);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.section-header .section-subtitle {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    color: var(--navy-900);
    margin-bottom: 8px;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.section-description {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.78;
}

/* ── Global Typography Responsive for Mobile/Tablet ── */
@media (max-width: 768px) {
    section {
        padding: 38px 0;
    }

    .section-header {
        margin-bottom: 22px;
    }

    .section-title {
        font-size: 1.18rem;
    }

    .section-description {
        font-size: 0.86rem;
    }

    h1 {
        font-size: 1.28rem;
        line-height: 1.4;
    }

    h2 {
        font-size: 1.12rem;
        line-height: 1.4;
    }

    h3 {
        font-size: 0.96rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.72;
    }
}

@media (max-width: 480px) {
    section {
        padding: 32px 0;
    }

    .section-header {
        margin-bottom: 18px;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    h2 {
        font-size: 1.05rem;
        line-height: 1.4;
    }

    h3 {
        font-size: 0.92rem;
    }

    h4 {
        font-size: 0.86rem;
    }
}

/* ═════════════════════════════════════════════════════════════════════
   BUTTONS
   ═════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-title);
    border-radius: var(--radius-xs);
    transition: all var(--trans);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--brand-blue);
    color: #ffffff;
    border: 1px solid var(--brand-blue-dark);
    box-shadow: 0 3px 12px rgba(0, 85, 184, 0.25);
}

.btn-primary:hover {
    background-color: var(--brand-blue-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 85, 184, 0.35);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--brand-blue);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    background-color: var(--brand-blue-soft);
    border-color: var(--brand-blue);
    color: var(--brand-blue-dark);
    transform: translateY(-2px);
}

/* ═════════════════════════════════════════════════════════════════════
   HEADER & NAVBAR
   ═════════════════════════════════════════════════════════════════════ */

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(10, 28, 54, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px !important;
    gap: clamp(8px, 1.2vw, 16px);
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.header-content .btn {
    padding: 9px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0 !important;
    min-width: 130px;
}

.logo img {
    height: 50px;
    width: auto;
    max-height: 56px;
    object-fit: contain;
    display: block;
    flex-shrink: 0 !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1px;
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: visible;
}

.nav-link {
    padding: 7px clamp(6px, 0.75vw, 10px);
    font-size: clamp(0.91rem, 0.98vw, 0.98rem);
    font-weight: 600;
    color: var(--text-heading);
    border-radius: var(--radius-xs);
    white-space: nowrap !important;
    transition: all var(--trans);
    flex-shrink: 0;
}

.has-dropdown {
    white-space: nowrap !important;
}

.nav-link:hover {
    color: var(--brand-blue);
    background: var(--brand-blue-soft);
}

.nav-link.active {
    color: var(--brand-blue);
    font-weight: 700;
    background: var(--brand-blue-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    order: 3;
}

/* CTA Button labels: العربية تظهر النص الكامل، باقي اللغات تظهر النص القصير */
.btn-label-short {
    display: none;
}

.btn-label-full {
    display: inline;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--navy-900);
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-card);
    background: var(--bg-light);
    white-space: nowrap;
    transition: all var(--trans);
    flex-shrink: 0;
}

.header-phone i {
    color: var(--brand-blue);
}

.header-phone:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background: var(--brand-blue-soft);
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
    color: var(--brand-blue);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-card);
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all var(--trans);
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: var(--brand-blue-soft);
    border-color: var(--brand-blue-border);
}

/* ── Dropdown Navigation ── */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}

.nav-arrow {
    font-size: 0.65rem;
    margin-top: 1px;
    transition: transform var(--trans);
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 230px;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 36px rgba(10, 28, 54, 0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-heading);
    transition: all var(--trans);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--brand-blue);
    font-size: 1rem;
    flex-shrink: 0;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    padding-right: 18px;
    font-weight: 700;
}

.dropdown-item:hover i,
.dropdown-item.active i {
    color: var(--brand-blue-dark);
}


/* ═════════════════════════════════════════════════════════════════════
   HERO SLIDER
   ═════════════════════════════════════════════════════════════════════ */

.hero-slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.slider-track {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(6, 17, 36, 0.92) 0%,
            rgba(0, 70, 150, 0.78) 55%,
            rgba(6, 17, 36, 0.88) 100%);
}

.hero-slider .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-subtitle-tag {
    display: inline-block;
    width: fit-content;
    color: #93c5fd;
    font-size: 0.9rem;
    font-weight: 700;
}

.slider-text-track {
    position: relative;
    min-height: 185px;
}

.slide-text-item {
    display: none;
    animation: heroTextFade 0.5s ease-out both;
}

.slide-text-item.active {
    display: block;
}

@keyframes heroTextFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-text-item h1 {
    font-size: clamp(1.25rem, 4.5vw, 2.35rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 10px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    color: #93c5fd;
}

.slide-text-item p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 580px;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 0.94rem;
    font-weight: 700;
    font-family: var(--font-title);
    background: var(--brand-blue);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xs);
    box-shadow: 0 6px 20px rgba(0, 85, 184, 0.45);
    transition: all var(--trans);
}

.btn-hero-primary:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 85, 184, 0.6);
    color: #ffffff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.94rem;
    font-weight: 700;
    font-family: var(--font-title);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-xs);
    backdrop-filter: blur(8px);
    transition: all var(--trans);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Google Floating Pill Card */
.hero-badge-col {
    display: flex;
    justify-content: flex-end;
}

.google-floating-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    min-width: 240px;
}

.gf-top {
    margin-bottom: 8px;
}

.gf-score {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--navy-900);
    line-height: 1;
    margin-bottom: 4px;
}

.gf-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.gf-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
}

.gf-label i {
    color: #ea4335;
    font-size: 1rem;
}

/* Slider Controls */
.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 14px;
    pointer-events: none;
    z-index: 4;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(6px);
    transition: all var(--trans);
}

.slider-arrow:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    transform: scale(1.08);
}

.slider-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 5px;
}

/* ═════════════════════════════════════════════════════════════════════
   STATS STRIP (MODERN CAPSULE)
   ═════════════════════════════════════════════════════════════════════ */

.stats-strip-wrapper {
    padding: 0;
    margin-top: -26px;
    position: relative;
    z-index: 10;
}

.stats-capsule-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    box-shadow: var(--shadow-md);
}

.stat-item-box {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    justify-content: flex-start;
    text-align: right;
}

.stat-item-box:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--border-color);
}

.stat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-text-wrap {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.55rem;
    font-weight: 800;
    font-family: var(--font-title);
    color: var(--brand-blue);
    line-height: 1.1;
}

.stat-lbl {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-heading);
}

/* ═════════════════════════════════════════════════════════════════════
   ABOUT US SECTION (من نحن)
   ═════════════════════════════════════════════════════════════════════ */

.about-section {
    background: #ffffff;
    padding: 85px 0 75px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.about-text-col {
    display: flex;
    flex-direction: column;
}

.about-main-title {
    font-size: clamp(1.22rem, 2.2vw, 1.68rem);
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.45;
    margin-bottom: 14px;
}

.text-blue-highlight {
    background: linear-gradient(135deg, #0055b8 0%, #2575dc 60%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    font-weight: 800;
    position: relative;
}

.about-lead-wrap {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 14px;
}

.about-lead:last-child {
    margin-bottom: 0;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.about-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 14px;
    transition: all var(--trans);
}

.about-pillar-item:hover {
    border-color: var(--brand-blue);
    background: var(--brand-blue-soft);
    transform: translateY(-2px);
}

.pillar-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-xs);
    background: var(--brand-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-pillar-item h3,
.about-pillar-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 3px;
}

.about-pillar-item p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Image Column & Floating Badges */
.about-img-col {
    display: flex;
    justify-content: center;
}

.about-img-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-img-frame img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-card);
}

.about-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-card);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(10, 28, 54, 0.15);
    z-index: 2;
    transition: all var(--trans);
}

.about-float-badge:hover {
    transform: scale(1.04);
}

.about-float-badge.badge-experience {
    top: 24px;
    right: -24px;
}

.about-float-badge.badge-acceptance {
    bottom: 24px;
    left: -24px;
}

.afb-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-xs);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.afb-icon.green {
    background: #ecfdf5;
    color: #059669;
}

.about-float-badge strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-title);
    color: var(--navy-900);
    line-height: 1.1;
}

.about-float-badge span {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 990px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-img-col {
        order: -1;
    }

    .about-float-badge.badge-experience {
        right: 10px;
    }

    .about-float-badge.badge-acceptance {
        left: 10px;
    }
}

@media (max-width: 600px) {
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-img-frame img {
        height: 340px;
    }
}

/* ═════════════════════════════════════════════════════════════════════
   CORE SERVICES SECTION
   ═════════════════════════════════════════════ */

.services-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.srv-tab-btn {
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-heading);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--trans);
}

.srv-tab-btn:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.srv-tab-btn.active {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 3px 10px rgba(0, 85, 184, 0.25);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 18px;
    left: 18px;
    height: 3px;
    background: var(--brand-blue);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: all var(--trans);
}

.service-card:hover {
    border-color: var(--brand-blue-border);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
    transition: all var(--trans);
}

.service-card:hover .service-icon-box {
    background: var(--brand-blue);
    color: #ffffff;
}

.service-card h3 {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
    line-height: 1.45;
    min-height: 2.9em;
}

.service-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 18px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-top: auto;
}

.service-card:hover .service-link {
    color: var(--brand-blue-dark);
}

/* ═════════════════════════════════════════════════════════════════════
   ADVANCED SERVICES: SIMPLE CLEAN BLUE CARDS (LIKE REFERENCE)
   ═════════════════════════════════════════════════════════════════════ */

.adv-services-section {
    background: var(--bg-body);
    border-top: 1px solid var(--border-color);
    padding: 75px 0;
}

.adv-simple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.adv-simple-card {
    background: linear-gradient(145deg, #0055b8 0%, #003e8a 100%);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 85, 184, 0.25);
    transition: all var(--trans);
    position: relative;
    overflow: hidden;
}

.adv-simple-card::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.adv-simple-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 85, 184, 0.35);
}

/* Large Icon */
.adv-card-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: all var(--trans);
}

.adv-simple-card:hover .adv-card-icon {
    background: #ffffff;
    color: var(--brand-blue);
    transform: scale(1.05);
}

/* Title */
.adv-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 16px;
}

/* Description */
.adv-card-desc {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    flex: 1;
}

/* White CTA Button */
.adv-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    background: #ffffff;
    color: var(--brand-blue);
    font-size: 0.92rem;
    font-weight: 800;
    font-family: var(--font-title);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: all var(--trans);
    align-self: stretch;
    justify-content: center;
}

.adv-card-btn:hover {
    background: #f0f7ff;
    color: var(--brand-blue-dark);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

.adv-card-btn i.fa-arrow-left {
    font-size: 0.88rem;
    transition: transform 0.3s ease;
}

.adv-card-btn:hover i.fa-arrow-left {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .adv-simple-grid {
        grid-template-columns: 1fr;
    }

    .adv-simple-card {
        padding: 32px 26px;
    }
}

/* ═════════════════════════════════════════════════════════════════════
   HOW WE WORK: FEASIBILITY STUDY STAGES TIMELINE
   ═════════════════════════════════════════════════════════════════════ */

.stages-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    padding: 80px 0;
}

.stages-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 860px;
    margin: 0 auto 48px;
}

/* Each stage row */
.stage-item {
    display: flex;
    gap: 0;
    position: relative;
}

/* Left column: number + connecting line */
.stage-number-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 64px;
    margin-left: 24px;
}

.stage-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    font-family: var(--font-title);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.28);
    z-index: 1;
    position: relative;
}

.stage-number.final {
    background: #10b981;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.28);
}

.stage-line {
    width: 2px;
    flex: 1;
    min-height: 36px;
    background: linear-gradient(to bottom, var(--brand-blue) 0%, rgba(0, 85, 184, 0.2) 100%);
    margin: 4px 0;
}

/* Right column: card body */
.stage-body {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(10, 28, 54, 0.04);
    transition: all var(--trans);
}

.stage-item:hover .stage-body {
    box-shadow: 0 6px 20px rgba(0, 85, 184, 0.1);
    border-color: var(--brand-blue-border);
    transform: translateX(-4px);
}

/* Stage small icon */
.stage-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all var(--trans);
}

.stage-icon.success-icon {
    background: #ecfdf5;
    color: #10b981;
}

.stage-item:hover .stage-icon {
    background: var(--brand-blue);
    color: #ffffff;
    transform: scale(1.08);
}

.stage-item:hover .stage-icon.success-icon {
    background: #10b981;
    color: #ffffff;
}

.stage-info {
    flex: 1;
}

.stage-info h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 5px;
    line-height: 1.35;
}

.stage-info p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* Time badge */
.stage-badge {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-blue);
    background: var(--brand-blue-soft);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 2px;
}

.stage-badge.success-badge {
    color: #059669;
    background: #ecfdf5;
}

/* Bottom CTA */
.stages-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #003e8a 100%);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    max-width: 860px;
    margin: 0 auto;
}

.stages-cta p {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: #ffffff;
    color: var(--brand-blue);
    font-size: 0.92rem;
    font-weight: 800;
    font-family: var(--font-title);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: all var(--trans);
    flex-shrink: 0;
}

.btn-primary-cta:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
}

.btn-primary-cta i.fa-arrow-left {
    font-size: 0.78rem;
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover i.fa-arrow-left {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .stages-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 22px;
    }

    .btn-primary-cta {
        width: 100%;
        justify-content: center;
    }

    .stage-number-wrap {
        width: 48px;
        margin-left: 14px;
    }

    .stage-number {
        width: 44px;
        height: 44px;
        font-size: 0.88rem;
    }

    .stage-body {
        flex-wrap: wrap;
        padding: 16px 16px;
    }

    .stage-badge {
        margin-top: 8px;
    }
}

/* ═════════════════════════════════════════════════════════════════════
   INDEPENDENT SECTION 1: DETAILED STUDY TYPES
   ═════════════════════════════════════════════════════════════════════ */

.study-types-section {
    background: var(--bg-body);
    border-top: 1px solid var(--border-color);
}

.detailed-studies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .detailed-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .detailed-studies-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .study-detail-card {
        padding: 22px 18px;
    }
}


.study-detail-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    position: relative;
}

.study-detail-card:hover {
    border-color: var(--brand-blue-border);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.study-card-thumb {
    position: relative;
    height: 125px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.study-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.study-detail-card:hover .study-card-thumb img {
    transform: scale(1.06);
}

.study-card-body {
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.study-detail-card:hover {
    border-color: var(--brand-blue-border);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.study-detail-card:hover::before {
    opacity: 1;
}

.study-detail-card.featured {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-sm);
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-blue-soft) 100%);
}

.study-detail-card.featured::before {
    opacity: 1;
}

.study-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.study-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all var(--trans);
}

.study-detail-card:hover .study-icon-wrap {
    background: var(--brand-blue);
    color: #ffffff;
}

.study-type-badge {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--brand-blue);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 4px;
}

.study-type-badge.highlight {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

.study-card-head h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.3;
}

.study-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 18px;
}

.study-points-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.study-pt-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--text-heading);
    line-height: 1.6;
}

.study-pt-item i {
    color: var(--brand-blue);
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.study-output-tag {
    background: var(--bg-light);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xs);
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--text-heading);
    line-height: 1.6;
    margin-top: auto;
}

.study-output-tag i {
    color: var(--brand-blue);
    margin-left: 4px;
}

/* ═════════════════════════════════════════════════════════════════════
   SECTORS SECTION (القطاعات الاستثمارية)
   ═════════════════════════════════════════════════════════════════════ */

.sectors-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sector-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border-card);
    transition: all var(--trans);
    position: relative;
    background: var(--navy-900);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--brand-blue);
}

.sector-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sector-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sector-card:hover .sector-img-wrap img {
    transform: scale(1.08);
}

.sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 17, 36, 0.2) 0%, rgba(6, 17, 36, 0.92) 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    color: #ffffff;
}

.sector-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    background: var(--brand-blue);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.sector-overlay h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.sector-overlay p {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1100px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* ═════════════════════════════════════════════════════════════════════
   INDEPENDENT SECTION 2: CITIES COVERAGE ACROSS SAUDI ARABIA
   ═════════════════════════════════════════════════════════════════════ */

.cities-coverage-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.coverage-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

@media (max-width: 900px) {
    .coverage-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coverage-map-card {
        order: 2;
    }

    .coverage-data-col {
        order: 1;
    }

    .cities-matrix-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cov-hl-num {
        font-size: 2rem;
    }

    .cov-hl-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cities-matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-highlight-box {
        padding: 20px 16px;
    }
}


.coverage-map-card {
    background: var(--bg-body);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-xs);
}

.coverage-map-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 16px;
}

.coverage-map-head i {
    color: var(--brand-blue);
    font-size: 1.15rem;
}

.coverage-map-svg-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-card);
    padding: 16px;
}

.coverage-map-svg-wrap svg {
    width: 100%;
    max-height: 250px;
}

.coverage-map-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.coverage-map-footer i {
    color: var(--brand-blue);
}

.coverage-data-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coverage-highlight-box {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: 0 8px 24px rgba(0, 85, 184, 0.3);
}

.cov-hl-num {
    font-size: 2.6rem;
    font-weight: 900;
    font-family: var(--font-title);
    line-height: 1;
    margin-bottom: 6px;
    color: #ffffff;
}

.cov-hl-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cov-hl-desc {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.cities-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.city-card-item {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.city-card-item:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 6px 20px rgba(0, 85, 184, 0.12);
    transform: translateY(-3px);
}

.c-num-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.city-card-item .c-num {
    font-size: 1.45rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--brand-blue);
    line-height: 1;
}

.city-card-item .c-flag {
    font-size: 1.15rem;
    line-height: 1;
    display: inline-block;
}

.city-card-item .c-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy-900);
}

/* ═════════════════════════════════════════════════════════════════════
   PORTFOLIO SECTION
   ═════════════════════════════════════════════════════════════════════ */

.portfolio-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.portfolio-img-box {
    position: relative;
    height: 175px;
    overflow: hidden;
}

.portfolio-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img-box img {
    transform: scale(1.06);
}

.portfolio-cat-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffffff;
    color: var(--brand-blue);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow-sm);
}

.portfolio-info-box {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-info-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.portfolio-city-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.portfolio-city-tag i {
    color: var(--brand-blue);
}

.portfolio-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-top: auto;
}

/* ═════════════════════════════════════════════════════════════════════
   TRIPLE BANNER (WHY US + TESTIMONIAL + GOOGLE)
   ═════════════════════════════════════════════════════════════════════ */

.triple-section {
    background: var(--bg-body);
    border-top: 1px solid var(--border-color);
}

.triple-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.85fr;
    gap: 22px;
    align-items: stretch;
}

.why-us-card {
    background: var(--navy-900);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.why-us-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: #e2e8f0;
}

.why-feat-item i {
    color: #60a5fa;
    margin-top: 4px;
    flex-shrink: 0;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-xs);
}

.test-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.test-header-row h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-900);
}

.test-quote-icon {
    color: var(--brand-blue);
    font-size: 1.3rem;
    opacity: 0.4;
}

.test-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 16px;
}

.test-author-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.test-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.test-meta h5 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy-900);
}

.test-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.test-stars {
    color: #f59e0b;
    font-size: 0.88rem;
}

.google-rating-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs);
}

.google-card-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.google-card-badge i {
    color: #ea4335;
    font-size: 1.1rem;
}

.google-card-score {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--navy-900);
    line-height: 1;
    margin-bottom: 4px;
}

.google-card-stars {
    font-size: 1.15rem;
    color: #f59e0b;
    margin-bottom: 4px;
}

.google-card-count {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.btn-read-reviews {
    display: inline-block;
    padding: 7px 16px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue);
    border-radius: var(--radius-xs);
    transition: all var(--trans);
}

.btn-read-reviews:hover {
    background: var(--brand-blue);
    color: #ffffff;
}

/* ═════════════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════════════ */

.footer {
    background: var(--navy-950);
    padding: 55px 0 20px;
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-brand-title {
    font-family: var(--font-title);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-about p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #94a3b8;
}

.footer-col h3,
.footer-col h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    position: relative;
}

.footer-col h3::after,
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 24px;
    height: 2px;
    background: var(--brand-blue);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links a,
.footer-links span {
    color: #94a3b8;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--trans);
}

.footer-links a i,
.footer-links span i {
    color: var(--brand-blue-light);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #60a5fa;
    padding-right: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    text-align: center;
    font-size: 0.84rem;
    color: #cbd5e1;
}

.footer-bottom strong {
    color: #e2e8f0;
}

/* ═════════════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═════════════════════════════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.7rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all var(--trans);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

/* ═════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ═════════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dual-widgets-grid {
        grid-template-columns: 1fr;
    }

    .triple-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-badge-col {
        justify-content: flex-start;
    }

    .stats-capsule-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item-box:nth-child(2)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-inline-start: auto;
        order: 99;
    }

    .header-phone {
        display: none;
    }

    .header-actions {
        display: none !important;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        background: #ffffff;
        border-bottom: 2px solid var(--border-color);
        padding: 16px 20px 22px;
        gap: 4px;
        box-shadow: 0 16px 36px rgba(10, 28, 54, 0.12);
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        text-align: right;
        direction: rtl;
        z-index: 99999;
    }

    .nav-menu.show {
        display: flex !important;
        z-index: 99999 !important;
    }

    .nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 12px 14px;
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--navy-900);
        border-radius: var(--radius-xs);
        border-bottom: 1px solid #f1f5f9;
        transition: all 0.2s ease;
        text-align: right;
    }

    .nav-link:hover,
    .nav-link:active {
        background: var(--brand-blue-soft);
        color: var(--brand-blue);
    }

    .nav-link.active {
        background: var(--brand-blue-soft);
        color: var(--brand-blue);
        border-bottom-color: var(--brand-blue-border);
    }

    .nav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-dropdown .has-dropdown {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-arrow {
        font-size: 0.75rem;
        color: var(--brand-blue);
        transition: transform 0.25s ease;
        padding: 4px 8px;
    }

    .nav-dropdown.open .nav-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: 1px solid #e2e8f0;
        background: #f8fafc;
        border-radius: var(--radius-xs);
        padding: 6px;
        margin: 4px 0 8px;
    }

    .nav-dropdown.open .dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-heading);
        border-radius: var(--radius-xs);
        transition: all 0.18s ease;
    }

    .dropdown-item i {
        font-size: 0.85rem;
        color: var(--brand-blue);
        width: 18px;
        text-align: center;
    }

    .dropdown-item:hover,
    .dropdown-item.active {
        background: #ffffff;
        color: var(--brand-blue);
        padding-right: 14px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
        font-weight: 700;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-slider {
        padding: 30px 0 40px;
        min-height: auto;
    }

    .hero-badge-col {
        display: none;
    }

    .slide-text-item h1 {
        font-size: clamp(1.1rem, 6vw, 1.7rem);
    }

    .slide-text-item p {
        font-size: 0.88rem;
    }

    .slider-text-track {
        min-height: 120px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .stats-capsule-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px 16px;
    }

    .stat-item-box {
        justify-content: flex-start;
        text-align: right;
        padding: 10px 14px;
        background: #f8fafc;
        border: 1px solid #f1f5f9;
        border-radius: var(--radius-sm);
        width: 100%;
    }

    .stat-item-box::after {
        display: none !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .widget-checklist-body {
        grid-template-columns: 1fr;
    }

    .widget-cities-body {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════
   HOMEPAGE MOBILE EXTRA POLISH (≤900px)
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {

    /* Services filter tabs → horizontal scroll */
    .services-filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .srv-tab-btn {
        flex-shrink: 0;
        font-size: 0.82rem;
        padding: 7px 14px;
    }

    /* Advanced services cards → 1 column */
    .adv-simple-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .adv-simple-card {
        padding: 28px 22px;
    }

    /* About section image adjustment */
    .about-img-frame img {
        height: 280px;
    }

    /* About actions → stack buttons */
    .about-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .about-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Steps / Process grid → single column */
    .steps-grid,
    .service-steps-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Section headings */
    .section-title {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 0.82rem;
    }

    /* Contact section form → full width */
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Portfolio / blog small adjustments */
    .portfolio-card-thumb {
        height: 180px;
    }

    /* Stats numbers */
    .stat-num {
        font-size: 1.8rem;
    }

    /* Whatsapp float → smaller on mobile */
    .whatsapp-float {
        width: 46px;
        height: 46px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 16px;
    }
}

@media (max-width: 480px) {

    /* Hero adjustments for very small screens */
    .hero-subtitle-tag {
        font-size: 0.78rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    /* Services filter → smaller text */
    .srv-tab-btn {
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    /* About pillars compact */
    .about-pillar-item {
        gap: 10px;
    }

    .pillar-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    /* Section padding */
    .about-section,
    .services-section,
    .adv-services-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}



/* ═════════════════════════════════════════════════════════════════════
   SUB-PAGES GLOBAL STYLES (MERGED INTO SINGLE STYLE.CSS)
   ═════════════════════════════════════════════════════════════════════ */

/* ── Page Hero Banner ── */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--brand-blue-deeper) 60%, var(--brand-blue) 100%);
    padding: 60px 0 65px;
    color: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(37, 117, 220, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--trans);
}

.breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.65rem;
    opacity: 0.6;
}

.breadcrumb span {
    color: #ffffff;
    font-weight: 700;
}

.page-hero h1 {
    font-size: clamp(1.25rem, 3.2vw, 1.85rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 8px;
}

.page-hero p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 680px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0 44px;
    }

    .page-hero h1 {
        font-size: 1.25rem;
    }

    .page-hero p {
        font-size: 0.86rem;
        line-height: 1.65;
    }
}

/* ── Common Page Section ── */
.page-section {
    padding: 70px 0;
}

.page-section.bg-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* ── 1. About Page Styles ── */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.about-intro-text p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-body);
}

.about-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--brand-blue-soft);
    border: 1px solid var(--brand-blue-border);
    border-radius: var(--radius-full);
    color: var(--brand-blue-dark);
    font-size: 0.85rem;
    font-weight: 700;
}

.about-stats-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: #ffffff;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-md);
}

.astat-item {
    text-align: center;
    padding: 16px 10px;
    background: var(--bg-body);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.astat-num {
    font-size: 1.9rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--brand-blue);
    line-height: 1.2;
}

.astat-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 4px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.value-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue-border);
    box-shadow: var(--shadow-card-hover);
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-body);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.team-card {
    background: #ffffff;
    padding: 26px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-card-hover);
}

.team-card.featured {
    border-top: 4px solid var(--brand-blue);
}

.team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.team-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.team-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.team-count {
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-blue);
    background: var(--brand-blue-soft);
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.team-count span {
    font-size: 0.95rem;
    font-weight: 900;
}

.page-cta-section {
    padding: 60px 0;
    background: var(--bg-body);
}

.page-cta-box {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #00377a 100%);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 12px 36px rgba(0, 85, 184, 0.28);
}

.page-cta-box h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.page-cta-box p {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
}

.cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: #ffffff;
    color: var(--brand-blue);
    font-size: 0.95rem;
    font-weight: 800;
    font-family: var(--font-title);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: all var(--trans);
}

.cta-btn-white:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-title);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--trans);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ── 2. Contact Page Styles ── */
.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.contact-channel-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    color: var(--text-body);
}

.contact-channel-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-card-hover);
}

.contact-channel-card.whatsapp-card:hover {
    border-color: var(--whatsapp);
}

.channel-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.whatsapp-card .channel-icon {
    background: #ecfdf5;
    color: var(--whatsapp);
}

.contact-channel-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.contact-channel-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.channel-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.channel-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--brand-blue);
    transition: gap var(--trans);
}

.whatsapp-card .channel-action {
    color: var(--whatsapp-dark);
}

.contact-channel-card:hover .channel-action {
    gap: 10px;
}

.channel-action-static {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 32px;
}

.contact-form-box {
    background: #ffffff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-sm);
}

.contact-form-box h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-900);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xs);
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-heading);
    background: #ffffff;
    transition: all var(--trans);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 85, 184, 0.12);
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    font-family: var(--font-title);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.25);
    transition: all var(--trans);
    margin-top: 6px;
}

.form-submit-btn:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 85, 184, 0.35);
}

.contact-side-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-card {
    background: #ffffff;
    padding: 22px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-xs);
}

.contact-info-card h3 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-card h3 i {
    color: var(--brand-blue);
}

.work-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.work-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.work-row span {
    color: var(--text-muted);
}

.work-row strong {
    color: var(--navy-900);
}

.response-times {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-body);
}

.rt-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rt-item i {
    color: var(--brand-blue);
    width: 18px;
}

.guarantee-card {
    background: var(--brand-blue-soft);
    border-color: var(--brand-blue-border);
}

.guarantee-icon {
    font-size: 1.8rem;
    color: var(--brand-blue);
    margin-bottom: 8px;
}

.guarantee-card p {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--navy-800);
}

/* ═════════════════════════════════════════════════════════════════════
   2.5 SERVICES & STUDIES HUB PAGES (SERVICES.HTML & STUDIES.HTML)
   ═════════════════════════════════════════════════════════════════════ */

/* KPI Strip */
.service-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-kpi-card {
    background: var(--bg-body);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
    transition: all var(--trans);
}

.service-kpi-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xs);
}

.service-kpi-num {
    font-size: 1.55rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--brand-blue);
    line-height: 1.1;
    margin-bottom: 4px;
}

.service-kpi-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Services.html Cards Grid */
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.svc-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    transition: all var(--trans);
}

.svc-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue-border);
    box-shadow: var(--shadow-card-hover);
}

.svc-card-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.svc-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.svc-card:hover .svc-card-thumb img {
    transform: scale(1.06);
}

.svc-card-body {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.svc-badge {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    font-size: 0.74rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.svc-badge-neutral {
    background: var(--bg-light);
    color: var(--navy-800);
    border: 1px solid var(--border-color);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.svc-card h3 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.svc-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.svc-features {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-heading);
    font-weight: 600;
}

.svc-features li i {
    color: var(--brand-blue);
    font-size: 0.88rem;
}

.svc-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: var(--radius-xs);
    border: 1px solid var(--brand-blue-border);
    transition: all var(--trans);
}

.svc-btn:hover {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
}

/* Studies.html Listing Grid */
.all-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.study-listing-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    transition: all var(--trans);
}

.study-listing-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue-border);
    box-shadow: var(--shadow-card-hover);
}

.study-listing-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.study-listing-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.study-listing-card:hover .study-listing-thumb img {
    transform: scale(1.06);
}

.study-listing-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.study-listing-body h3 {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.study-listing-body p {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Studies Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-sm);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Responsive for Services & Studies Hub */
@media (max-width: 1100px) {
    .all-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-kpi-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .all-services-grid {
        grid-template-columns: 1fr;
    }

    .all-studies-grid {
        grid-template-columns: 1fr;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .svc-card-thumb,
    .study-listing-thumb {
        height: 160px;
    }

    .svc-card-body,
    .study-listing-body {
        padding: 18px 16px;
    }
}

/* ── 3. Opportunities Page Styles ── */
.filter-tabs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-heading);
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--trans);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 4px 12px rgba(0, 85, 184, 0.2);
}

.opp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.opp-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    transition: all var(--trans);
}

.opp-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue-border);
    box-shadow: var(--shadow-card-hover);
}

.opp-img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.opp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.opp-card:hover .opp-img-wrap img {
    transform: scale(1.05);
}

.opp-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.opp-irr-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(10, 28, 54, 0.88);
    backdrop-filter: blur(6px);
    color: #10b981;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    gap: 4px;
}

.opp-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.opp-city {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.opp-body h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1.45;
    margin-bottom: 8px;
    transition: color var(--trans);
}

.opp-body h3 a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color var(--trans);
}

.opp-body h3 a:hover,
.opp-card:hover .opp-body h3 a {
    color: var(--brand-blue-dark);
}

.opp-body p {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 16px;
}

.opp-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: var(--bg-body);
    padding: 12px;
    border-radius: var(--radius-xs);
    margin-bottom: 18px;
}

.opp-metric-item {
    display: flex;
    flex-direction: column;
}

.opp-metric-item span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.opp-metric-item strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--navy-900);
}

.opp-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: var(--radius-xs);
    transition: all var(--trans);
}

.opp-btn:hover {
    background: var(--brand-blue);
    color: #ffffff;
}

/* ── 4. Blog & Articles Styles ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 26px;
}

.blog-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    transition: all var(--trans);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue-border);
    box-shadow: var(--shadow-card-hover);
}

.blog-img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.blog-category,
.blog-tag {
    position: static !important;
    display: inline-block !important;
    background: transparent !important;
    color: var(--brand-blue, #0055b8) !important;
    font-size: 0.86rem !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.blog-date {
    color: #64748b !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
}

.blog-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-body h3 {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-body p {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-read-more {
    margin-top: auto;
    margin-inline-start: auto;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-decoration: none;
    transition: all var(--trans);
}

.blog-card:hover .blog-read-more {
    gap: 10px;
}

/* ═════════════════════════════════════════════════════════════════════
   5. SINGLE BLOG ARTICLE DETAILS PAGE (BLOG-DETAIL.HTML)
   ═════════════════════════════════════════════════════════════════════ */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

/* Article Main Area */
.article-main {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    padding: 36px 32px;
    box-shadow: var(--shadow-xs);
}

.article-header {
    margin-bottom: 24px;
}

.article-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.article-cat-badge {
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--brand-blue-border);
}

.article-header h1 {
    font-size: clamp(1.18rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.42;
    margin-bottom: 14px;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.84rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-meta-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta-bar i {
    color: var(--brand-blue);
}

.article-featured-img {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border-card);
}

.article-featured-img img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* Rich Article Body Content */
.article-content {
    font-size: 0.96rem;
    line-height: 1.95;
    color: var(--text-body);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h1,
.article-content h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 32px 0 16px;
    padding-right: 14px;
    border-right: 4px solid var(--brand-blue);
    line-height: 1.4;
}

.article-content h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 26px 0 12px;
}

.article-content h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 20px 0 10px;
}

/* Lists */
.article-content ul,
.article-content ol {
    margin: 6px 0 22px 0;
    padding-right: 28px;
}

.article-content ul {
    list-style: none;
    padding-right: 0;
}

.article-content ul li {
    position: relative;
    padding-right: 22px;
    margin-bottom: 10px;
    line-height: 1.85;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-blue);
    flex-shrink: 0;
}

.article-content ol {
    list-style: none;
    counter-reset: ol-counter;
    padding-right: 0;
}

.article-content ol li {
    position: relative;
    padding-right: 36px;
    margin-bottom: 10px;
    line-height: 1.85;
    counter-increment: ol-counter;
}

.article-content ol li::before {
    content: counter(ol-counter);
    position: absolute;
    right: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-content li strong {
    color: var(--navy-900);
}

/* Blockquote */
.article-content blockquote {
    background: var(--brand-blue-soft);
    border-right: 4px solid var(--brand-blue);
    border-radius: var(--radius-xs);
    padding: 18px 22px;
    margin: 24px 0;
    font-size: 0.97rem;
    color: var(--navy-900);
    font-style: normal;
    font-weight: 500;
    line-height: 1.75;
}

.article-content blockquote::before {
    content: '\201C';
    font-size: 2.5rem;
    line-height: 0;
    vertical-align: -0.5em;
    color: var(--brand-blue);
    margin-left: 8px;
    font-family: serif;
}

/* Strong inside content */
.article-content strong {
    color: var(--navy-900);
    font-weight: 800;
}

/* Horizontal rule */
.article-content hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

.article-callout {
    background: var(--brand-blue-soft);
    border-right: 4px solid var(--brand-blue);
    border-radius: var(--radius-xs);
    padding: 18px 22px;
    margin: 24px 0;
    font-size: 0.94rem;
    color: var(--navy-900);
}

.article-callout strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-blue-dark);
    margin-bottom: 6px;
}

.article-steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 26px;
}

.article-step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-body);
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.step-num-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 900;
    flex-shrink: 0;
}

.step-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.step-text span {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Article Table */
.article-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.article-table th {
    background: var(--navy-900);
    color: #ffffff;
    padding: 12px 16px;
    font-weight: 700;
    text-align: right;
}

.article-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.article-table tr:nth-child(even) td {
    background: var(--bg-body);
}

/* Article Tags & Share */
.article-footer-meta {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.article-tags-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.article-tag-chip {
    background: var(--bg-body);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    transition: all var(--trans);
}

.article-tag-chip:hover {
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border-color: var(--brand-blue-border);
}

.article-share-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--trans);
}

.share-btn.share-wa:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

.share-btn.share-x:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.share-btn.share-in:hover {
    background: #0077b5;
    color: #ffffff;
    border-color: #0077b5;
}

/* Author Box */
.article-author-card {
    background: var(--bg-body);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.author-avatar-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 6px;
    display: block;
}

.author-details p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* Sidebar Widgets */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-xs);
}

.sidebar-widget h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-blue-soft);
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 32px;
    height: 2px;
    background: var(--brand-blue);
}

/* Table of contents widget */
.toc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--text-body);
    transition: all var(--trans);
    padding: 6px 10px;
    border-radius: var(--radius-xs);
}

.toc-link i {
    font-size: 0.65rem;
    color: var(--brand-blue);
}

.toc-link:hover {
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    padding-right: 14px;
}

/* Sidebar CTA Consultation Widget */
.sidebar-cta-widget {
    background: linear-gradient(145deg, #0055b8 0%, #003e8a 100%);
    color: #ffffff;
    border: none;
    text-align: center;
    padding: 30px 22px;
}

.sidebar-cta-widget h3 {
    color: #ffffff;
    border-bottom: none;
    font-size: 1.15rem;
    margin-bottom: 10px;
    padding-bottom: 0;
}

.sidebar-cta-widget h3::after {
    display: none;
}

.sidebar-cta-widget p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    margin-bottom: 18px;
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    background: #ffffff;
    color: var(--brand-blue);
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-title);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    transition: all var(--trans);
}

.sidebar-cta-btn:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

/* Related articles widget */
.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.related-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all var(--trans);
}

.related-post-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xs);
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-info h4 {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color var(--trans);
}

.related-post-item:hover .related-post-info h4 {
    color: var(--brand-blue);
}

.related-post-date {
    font-size: 0.74rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   ABOUT PAGE — Photo, Gallery & Visual Styles
   ══════════════════════════════════════════════ */

/* Intro grid: text + photo side-by-side */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.about-intro-text p {
    font-size: 0.96rem;
    line-height: 1.9;
    color: var(--text-body);
}

/* Photo wrapper with floating badge */
.about-photo-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
}

.about-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(10, 28, 54, 0.14);
    border: 1px solid var(--border-card);
    display: block;
}

.about-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 28px rgba(0, 85, 184, 0.2);
    min-width: 200px;
}

.about-badge-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-badge-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--brand-blue);
    line-height: 1.2;
}

.about-badge-text span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy-700);
}

/* Badges row under intro text */
.about-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--brand-blue-soft);
    border: 1px solid var(--brand-blue-border);
    border-radius: var(--radius-full);
    color: var(--brand-blue-dark);
    font-size: 0.84rem;
    font-weight: 700;
}

/* Stats block — 4-column strip below intro */
.about-stats-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
    background: #ffffff;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-md);
}

.astat-item {
    text-align: center;
    padding: 16px 10px;
    background: var(--bg-body);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.astat-num {
    font-size: 1.9rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--brand-blue);
    line-height: 1.1;
}

.astat-label {
    font-size: 0.79rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 5px;
    line-height: 1.4;
}

/* Dual visual: image + content side-by-side */
.about-dual-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-dual-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(10, 28, 54, 0.12);
    border: 1px solid var(--border-card);
}

.about-dual-img-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 500ms ease;
}

.about-dual-img-box:hover img {
    transform: scale(1.04);
}

.about-dual-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.35;
    margin-bottom: 16px;
    margin-top: 10px;
}

.about-dual-content p {
    font-size: 0.94rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 14px;
}

/* Checklist 2-column grid */
.about-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 11px 13px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-900);
}

.about-check-item i {
    color: var(--brand-blue);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Photo gallery 4-column grid */
.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 240px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-card);
    transition: all var(--trans);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 450ms ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 19, 38, 0.92) 0%, rgba(10, 28, 54, 0.18) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 16px;
}

.gallery-overlay span {
    font-size: 0.74rem;
    font-weight: 700;
    color: #93c5fd;
    margin-bottom: 4px;
    display: block;
}

.gallery-overlay h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 85, 184, 0.22);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.value-card {
    background: #ffffff;
    padding: 28px 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue-border);
    box-shadow: var(--shadow-card-hover);
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.87rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.team-card {
    background: #ffffff;
    padding: 26px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-card-hover);
}

.team-card.featured {
    border-top: 4px solid var(--brand-blue);
}

.team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.team-card h3 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.team-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.team-count {
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-blue);
    background: var(--brand-blue-soft);
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.team-count span {
    font-size: 0.92rem;
    font-weight: 900;
}

/* CTA Section */
.page-cta-section {
    padding: 60px 0;
    background: var(--bg-body);
}

.page-cta-box {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #00377a 100%);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 12px 36px rgba(0, 85, 184, 0.3);
}

.page-cta-box h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.page-cta-box p {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: #ffffff;
    color: var(--brand-blue);
    font-size: 0.95rem;
    font-weight: 800;
    font-family: var(--font-title);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: all var(--trans);
}

.cta-btn-white:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

/* ── Responsive for Subpages ── */
@media (max-width: 1024px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-block {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {

    .about-intro-grid,
    .about-dual-visual,
    .contact-main-grid,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .about-floating-badge {
        bottom: 16px;
        left: 16px;
    }

    .about-dual-img-box img {
        height: 260px;
    }

    .blog-sidebar {
        position: static;
        margin-top: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .article-featured-img img {
        height: 260px;
    }
}

@media (max-width: 640px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-gallery-grid .gallery-card {
        height: 180px;
    }

    .about-stats-block {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px 14px;
    }

    .about-checklist-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-grid {
        gap: 28px;
    }

    .about-main-img {
        height: 280px;
    }
}

/* ══════════════════════════════════════════════════════
   OPPORTUNITY DETAIL PAGE — Clean Modern Styles
   ══════════════════════════════════════════════════════ */

/* Hero Badges & Header */
.opp-hero-clean-header {
    margin-top: 8px;
}

.opp-hero-badges-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.opp-badge-sector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.opp-badge-city {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.opp-badge-ready {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.22);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.45);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.opp-hero-clean-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 12px;
}

.opp-hero-clean-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 760px;
    line-height: 1.75;
}

/* ── KPI Strip (Below Hero) ── */
.opp-metrics-strip-section {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.opp-kpi-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.opp-kpi-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(10, 28, 54, 0.08);
    transition: all var(--trans);
}

.opp-kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 85, 184, 0.15);
    border-color: var(--brand-blue-border);
}

.opp-kpi-card.highlight-card {
    border-color: var(--brand-blue);
    background: linear-gradient(to bottom, #ffffff 0%, var(--brand-blue-soft) 100%);
}

.opp-kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.opp-kpi-card.highlight-card .opp-kpi-icon {
    background: var(--brand-blue);
    color: #ffffff;
}

.opp-kpi-info {
    display: flex;
    flex-direction: column;
}

.opp-kpi-title {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
}

.opp-kpi-number {
    font-size: 1.3rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--navy-900);
    line-height: 1.2;
}

.opp-kpi-number small {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-body);
}

/* ── Main Layout (Main + Sidebar) ── */
.opp-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.opp-detail-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Featured Media Card */
.opp-featured-media-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-card);
}

.opp-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.opp-media-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(10, 28, 54, 0.9);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.opp-media-badge i {
    color: #60a5fa;
}

/* Common Section Card in Main */
.opp-card-section {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-xs);
}

.opp-section-header-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.opp-section-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.opp-section-header-row h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.2;
    margin-bottom: 2px;
}

.opp-section-header-row span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.opp-card-p {
    font-size: 0.94rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 14px;
}

.opp-card-p:last-of-type {
    margin-bottom: 20px;
}

/* Feature Chips */
.opp-features-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.opp-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--navy-900);
}

.opp-chip i {
    color: var(--brand-blue);
}

/* Study Inclusions Bento Grid */
.opp-study-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.study-item-box {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    transition: all var(--trans);
}

.study-item-box:hover {
    border-color: var(--brand-blue-border);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.study-item-num {
    font-size: 1.1rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--brand-blue);
    opacity: 0.5;
    margin-bottom: 6px;
}

.study-item-box h4 {
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.study-item-box p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Clean Components Grid */
.opp-components-clean-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.opp-clean-comp {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: all var(--trans);
}

.opp-clean-comp:hover {
    background: var(--brand-blue-soft);
    border-color: var(--brand-blue-border);
}

.opp-clean-comp i {
    font-size: 1.25rem;
    color: var(--brand-blue);
    margin-top: 3px;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.opp-clean-comp strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.opp-clean-comp span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── SIDEBAR STYLING ── */
.opp-detail-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Action Box */
.opp-sidebar-action-card {
    background: linear-gradient(145deg, #0055b8 0%, #00377a 100%);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 85, 184, 0.28);
}

.action-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.action-card-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.action-card-header p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 20px;
}

.action-card-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-sidebar-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    background: var(--whatsapp);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    font-family: var(--font-title);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all var(--trans);
}

.btn-sidebar-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.btn-sidebar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    font-family: var(--font-title);
    border-radius: var(--radius-sm);
    transition: all var(--trans);
}

.btn-sidebar-phone:hover {
    background: rgba(255, 255, 255, 0.2);
}

.action-guarantee-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 14px;
    text-align: center;
}

/* Specs Snapshot Card */
.opp-sidebar-specs-card,
.opp-sidebar-related-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    box-shadow: var(--shadow-xs);
}

.opp-sidebar-specs-card h4,
.opp-sidebar-related-card h4 {
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.opp-sidebar-specs-card h4 i,
.opp-sidebar-related-card h4 i {
    color: var(--brand-blue);
}

.opp-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.84rem;
}

.opp-spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    color: var(--text-muted);
    font-weight: 600;
}

.spec-value {
    font-weight: 700;
    color: var(--navy-900);
}

.spec-value.highlight-val {
    color: var(--brand-blue);
    font-weight: 900;
}

.spec-value.text-emerald {
    color: #059669;
    font-weight: 900;
}

.spec-value.status-ready {
    color: #059669;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
}

.spec-value.status-ready i {
    font-size: 0.45rem;
}

/* Related Mini List */
.opp-mini-related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
}

.opp-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--trans);
}

.opp-mini-card img {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-xs);
    object-fit: cover;
    flex-shrink: 0;
}

.opp-mini-card h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.35;
    margin-bottom: 2px;
    transition: color var(--trans);
}

.opp-mini-card:hover h5 {
    color: var(--brand-blue);
}

.opp-mini-card span {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 600;
}

.opp-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--brand-blue);
    padding: 8px 12px;
    background: var(--brand-blue-soft);
    border-radius: var(--radius-xs);
    transition: all var(--trans);
}

.opp-all-link:hover {
    background: var(--brand-blue);
    color: #ffffff;
}

/* ── Opportunity Responsive ── */
@media (max-width: 1024px) {
    .opp-detail-layout {
        grid-template-columns: 1fr;
    }

    .opp-detail-sidebar {
        position: static;
    }

    .opp-kpi-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .opp-kpi-cards-grid {
        grid-template-columns: 1fr;
    }

    .opp-study-items-grid,
    .opp-components-clean-grid,
    .opp-features-chips {
        grid-template-columns: 1fr;
    }

    .opp-featured-media-card {
        height: 220px;
    }

    .opp-hero-clean-header h1 {
        font-size: 1.55rem;
    }
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE — Unified Brand Blue 4-Card Styles
   ══════════════════════════════════════════════════════ */

.contact-channels-4grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.c4card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    position: relative;
}

.c4card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue);
    box-shadow: 0 14px 32px rgba(0, 85, 184, 0.12);
}

.c4card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.c4pill {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue-border);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.c4pill i {
    font-size: 0.4rem;
    color: var(--brand-blue);
}

.c4icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all var(--trans);
}

.c4card:hover .c4icon {
    background: var(--brand-blue);
    color: #ffffff;
}

.c4card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.c4card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.c4val {
    font-size: 1.05rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--brand-blue);
    margin-bottom: 18px;
}

.c4val.email-text {
    font-size: 0.88rem;
    font-family: inherit;
    color: var(--brand-blue);
}

.c4val.location-text {
    font-size: 0.86rem;
    font-family: inherit;
    color: var(--navy-900);
}

.c4btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 44px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue-border);
    border-radius: var(--radius-xs);
    font-size: 0.86rem;
    font-weight: 800;
    font-family: var(--font-title);
    text-decoration: none;
    transition: all var(--trans);
    box-sizing: border-box;
}

.c4btn:hover {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.25);
}

.c4btn.c4btn-static {
    background: var(--bg-body);
    color: var(--text-muted);
    border-color: var(--border-color);
    cursor: default;
}

.c4btn.c4btn-static:hover {
    background: var(--bg-body);
    color: var(--text-muted);
    border-color: var(--border-color);
    box-shadow: none;
}

/* ── Contact Form (Executive Clean) ── */
.contact-form-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-xs);
}

.form-box-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.form-box-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    font-family: var(--font-title);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.25);
    transition: all var(--trans);
    margin-top: 8px;
}

.contact-submit-btn:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 85, 184, 0.35);
}

/* ── Side Cards (Corporate Trust) ── */
.contact-side-trust-box {
    background: linear-gradient(145deg, #0055b8 0%, #00377a 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    box-shadow: 0 10px 28px rgba(0, 85, 184, 0.22);
}

.trust-box-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.contact-side-trust-box h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-side-trust-box p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 14px;
}

.trust-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 700;
}

.trust-badge-row span i {
    color: #a7f3d0;
}

/* Clean Info Card */
.contact-side-clean-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 22px 20px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-xs);
}

.contact-side-clean-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-side-clean-card h4 i {
    color: var(--brand-blue);
}

.side-info-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sinfo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
}

.sinfo-row span {
    color: var(--text-muted);
}

.sinfo-row strong {
    color: var(--navy-900);
}

.text-emerald {
    color: #059669 !important;
    font-weight: 800;
}

.text-brand {
    color: var(--brand-blue) !important;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-channels-4grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .contact-channels-4grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 22px 18px;
    }
}

/* ══════════════════════════════════════════════════════
   OPPORTUNITIES CATALOG PAGE — opportunities.html
   ══════════════════════════════════════════════════════ */

/* Filter Tabs */
.filter-tabs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}

.filter-tab {
    padding: 9px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-heading);
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font-title);
    cursor: pointer;
    transition: all var(--trans);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.25);
    transform: translateY(-1px);
}

/* Opportunities Grid */
.opp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 26px;
}

.opp-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-card);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    transition: all var(--trans);
}

.opp-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue-border);
    box-shadow: var(--shadow-card-hover);
}

.opp-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.opp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
    display: block;
}

.opp-card:hover .opp-img-wrap img {
    transform: scale(1.06);
}

.opp-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--navy-900);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.opp-irr-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(10, 28, 54, 0.9);
    backdrop-filter: blur(6px);
    color: #10b981;
    font-size: 0.78rem;
    font-weight: 900;
    font-family: var(--font-title);
    padding: 5px 12px;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.opp-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.opp-city {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.opp-city i {
    color: var(--brand-blue);
}

.opp-body h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1.45;
    margin-bottom: 8px;
    transition: color var(--trans);
}

.opp-body h3 a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color var(--trans);
}

.opp-body h3 a:hover,
.opp-card:hover .opp-body h3 a {
    color: var(--brand-blue-dark);
}

.opp-body p {
    font-size: 0.87rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

/* Metrics strip inside card */
.opp-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: var(--bg-body);
    padding: 12px 14px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.opp-metric-item {
    display: flex;
    flex-direction: column;
}

.opp-metric-item span {
    font-size: 0.73rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.opp-metric-item strong {
    font-size: 0.92rem;
    font-weight: 800;
    font-family: var(--font-title);
    color: var(--navy-900);
}

/* ── Fixed Rock-Solid Dual Button Row ── */
.opp-btns-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: auto !important;
}

.opp-btn-detail {
    flex: 1 1 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 11px 16px !important;
    background: var(--brand-blue-soft) !important;
    color: var(--brand-blue) !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    font-family: var(--font-title) !important;
    border-radius: var(--radius-xs) !important;
    border: 1px solid var(--brand-blue-border) !important;
    transition: all var(--trans) !important;
    text-decoration: none !important;
    height: 44px !important;
    box-sizing: border-box !important;
}

.opp-btn-detail:hover {
    background: var(--brand-blue) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 85, 184, 0.25);
}

.opp-btn-wa {
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ecfdf5 !important;
    color: var(--whatsapp) !important;
    border: 1px solid #a7f3d0 !important;
    border-radius: var(--radius-xs) !important;
    font-size: 1.3rem !important;
    transition: all var(--trans) !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.opp-btn-wa:hover {
    background: var(--whatsapp) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

@media (max-width: 640px) {
    .opp-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════
   SERVICES & STUDIES DETAIL PAGES
   ══════════════════════════════════════════════════════ */

/* Service/Study Hero Strip */
.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

/* ── KPI Strip (أرقام بارزة) ── */
.service-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.service-kpi-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
}

.service-kpi-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue-border);
    box-shadow: 0 10px 28px rgba(0, 85, 184, 0.1);
}

.service-kpi-num {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--brand-blue);
    line-height: 1;
    margin-bottom: 6px;
}

.service-kpi-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ── Features Grid (ما تشمله الخدمة) ── */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 26px 20px;
    transition: all var(--trans);
    box-shadow: var(--shadow-xs);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: 0 12px 28px rgba(0, 85, 184, 0.1);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: all var(--trans);
}

.feature-card:hover .feature-card-icon {
    background: var(--brand-blue);
    color: #ffffff;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Process Steps (مراحل الخدمة) ── */
.service-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.service-step-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    transition: all var(--trans);
}

.service-step-row:hover {
    border-color: var(--brand-blue-border);
    box-shadow: 0 6px 20px rgba(0, 85, 184, 0.08);
}

.service-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    flex-shrink: 0;
    font-family: var(--font-title);
}

.service-step-content h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 5px;
}

.service-step-content p {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

/* ── Target Audience (لمن هذه الخدمة) ── */
.target-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    transition: all var(--trans);
}

.target-item:hover {
    border-color: var(--brand-blue);
    background: var(--brand-blue-soft);
}

.target-item i {
    color: var(--brand-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── FAQ Accordion ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--trans);
}

.faq-item.open {
    border-color: var(--brand-blue-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-900);
    gap: 14px;
    user-select: none;
}

.faq-question i {
    font-size: 0.88rem;
    color: var(--brand-blue);
    transition: transform var(--trans);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── Page Two-Column Layout for Service Detail ── */
.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}

.service-featured-banner {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(10, 28, 54, 0.08);
    border: 1px solid var(--border-card);
}

.service-featured-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 90px;
}

.service-sidebar-cta {
    background: linear-gradient(145deg, #0055b8 0%, #003677 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 10px 28px rgba(0, 85, 184, 0.22);
    text-align: center;
}

.service-sidebar-cta i.main-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}

.service-sidebar-cta h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.service-sidebar-cta p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: #ffffff;
    color: var(--brand-blue);
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1rem;
    font-family: var(--font-title);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all var(--trans);
    margin-bottom: 10px;
}

.service-sidebar-btn:hover {
    background: var(--brand-blue-soft);
    transform: translateY(-2px);
}

.service-sidebar-btn.wa-btn {
    background: #25d366;
    color: #ffffff;
}

.service-sidebar-btn.wa-btn:hover {
    background: #1fbc5a;
}

.service-info-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    box-shadow: var(--shadow-xs);
}

.service-info-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-info-card h4 i {
    color: var(--brand-blue);
}

.service-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    padding: 7px 0;
    border-bottom: 1px solid var(--bg-body);
}

.service-info-row:last-child {
    border-bottom: none;
}

.service-info-row span {
    color: var(--text-muted);
}

.service-info-row strong {
    color: var(--navy-900);
    font-weight: 800;
}

/* Responsive */
@media (max-width: 960px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-kpi-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .target-list {
        grid-template-columns: 1fr;
    }

    .service-kpi-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════════════════
   SERVICES LISTING PAGE (services.html)
   ══════════════════════════════════════════════════════ */

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.svc-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    position: relative;
    overflow: hidden;
}

.svc-card-thumb {
    width: 100%;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.svc-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms ease;
}

.svc-card:hover .svc-card-thumb img {
    transform: scale(1.06);
}

.svc-card-body {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: 0 12px 28px rgba(0, 85, 184, 0.1);
}

.svc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.svc-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-xs);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--trans);
}

.svc-card:hover .svc-icon {
    background: var(--brand-blue);
    color: #ffffff;
}

.svc-badge {
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}

.svc-badge-neutral {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue-border);
}

.svc-card h3 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
    line-height: 1.35;
}

.svc-card>p,
.svc-card-body>p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.svc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-body);
    font-weight: 600;
    line-height: 1.4;
}

.svc-features li i {
    color: var(--brand-blue);
    font-size: 0.72rem;
    flex-shrink: 0;
}

.svc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue-border);
    border-radius: var(--radius-xs);
    font-size: 0.84rem;
    font-weight: 800;
    font-family: var(--font-title);
    text-decoration: none;
    transition: all var(--trans);
}

.svc-btn:hover {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.25);
}

.svc-btn i {
    transition: transform var(--trans);
}

.svc-btn:hover i {
    transform: translateX(-4px);
}

/* ══════════════════════════════════════════════════════
   GLOBAL RESPONSIVE SYSTEM (DESKTOP, TABLET, MOBILE)
   ══════════════════════════════════════════════════════ */

/* ── 1. LAPTOP & SMALL DESKTOP (992px – 1199px) ── */
@media (max-width: 1199px) {
    .all-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .all-studies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .service-detail-layout {
        grid-template-columns: 1fr 280px;
        gap: 28px;
    }
}

/* ── 2. TABLET (768px – 991px) ── */
@media (max-width: 991px) {
    .all-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .all-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .service-kpi-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-sidebar {
        position: static;
        margin-top: 10px;
    }

    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-featured-banner {
        height: 220px;
        margin-bottom: 26px;
    }

    .page-hero {
        padding: 50px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.7rem;
    }
}

/* ── 3. MOBILE (481px – 767px) ── */
@media (max-width: 767px) {
    .all-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .all-studies-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-kpi-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-kpi-card {
        padding: 16px 12px;
    }

    .service-kpi-num {
        font-size: 1.6rem;
    }

    .service-kpi-label {
        font-size: 0.78rem;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .target-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-featured-banner {
        height: 180px;
        margin-bottom: 22px;
        border-radius: var(--radius-md);
    }

    .service-step-row {
        padding: 16px 14px;
        gap: 12px;
    }

    .service-step-num {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }

    .page-hero {
        padding: 40px 0 32px;
    }

    .page-hero h1 {
        font-size: 1.45rem;
        line-height: 1.35;
    }

    .page-hero p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .breadcrumb {
        flex-wrap: wrap;
        font-size: 0.78rem;
        margin-bottom: 12px;
        gap: 6px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.88rem;
    }

    .faq-answer {
        padding: 0 16px 14px;
        font-size: 0.84rem;
    }

    .page-cta-box {
        padding: 32px 20px;
    }

    .page-cta-box h2 {
        font-size: 1.3rem;
    }

    .page-cta-box p {
        font-size: 0.88rem;
    }
}

/* ── 4. SMALL MOBILE (< 480px) ── */
@media (max-width: 480px) {
    .service-kpi-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .service-kpi-card {
        padding: 14px 8px;
        border-radius: var(--radius-sm);
    }

    .service-kpi-num {
        font-size: 1.4rem;
    }

    .service-kpi-label {
        font-size: 0.72rem;
    }

    .service-featured-banner {
        height: 150px;
        margin-bottom: 18px;
    }

    .feature-card {
        padding: 18px 14px;
    }

    .feature-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .feature-card h4 {
        font-size: 0.95rem;
    }

    .feature-card p {
        font-size: 0.82rem;
    }

    .service-step-content h4 {
        font-size: 0.92rem;
    }

    .service-step-content p {
        font-size: 0.88rem;
    }

    .service-sidebar-cta {
        padding: 22px 16px;
    }

    .service-sidebar-btn {
        padding: 11px 16px;
        font-size: 0.84rem;
    }

    .page-cta-box {
        padding: 26px 14px;
        border-radius: var(--radius-md);
    }

    .page-cta-box h2 {
        font-size: 1.18rem;
    }

    .cta-btn-white {
        padding: 11px 18px;
        font-size: 0.84rem;
        width: 100%;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════════════
   SITE-WIDE RESPONSIVE POLISH (ALL PAGES & COMPONENTS)
   ══════════════════════════════════════════════════════ */

/* Container adaptation */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Section Spacing */
    .page-section {
        padding: 36px 0;
    }

    .section-header {
        margin-bottom: 22px;
    }

    .section-title {
        font-size: 1.15rem;
    }

    .section-description {
        font-size: 0.84rem;
        line-height: 1.65;
    }

    /* Service and Study Detail Page Titles */
    .service-detail-title,
    .page-hero h1 {
        font-size: 1.22rem !important;
        line-height: 1.4 !important;
    }

    .feature-card h4,
    .service-step-content h4 {
        font-size: 0.92rem;
    }

    .faq-question {
        font-size: 0.88rem;
        padding: 13px 16px;
    }

    /* Header Actions */
    .header-phone {
        display: none !important;
    }

    .header .btn-primary {
        padding: 8px 14px;
        font-size: 0.88rem;
    }

    /* Footer Grid */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-about {
        padding-bottom: 10px;
    }

    /* Floating WhatsApp Button */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        bottom: 20px;
        left: 18px;
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-thumb {
        height: 180px;
    }

    /* Opportunities Grid */
    .opp-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .opp-thumb {
        height: 180px;
    }

    /* Filter Tabs Row */
    .filter-tabs-row {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
    }

    .filter-tab {
        padding: 7px 15px;
        font-size: 0.82rem;
        flex-shrink: 0;
    }

    /* Article Header & Main on Mobile */
    .article-main {
        padding: 22px 18px;
        border-radius: var(--radius-md);
    }

    .article-header h1 {
        font-size: 1.15rem !important;
        line-height: 1.45 !important;
        margin-bottom: 12px;
    }

    .article-meta-bar {
        padding: 10px 0;
        gap: 12px;
        font-size: 0.78rem;
    }

    .article-featured-img img {
        height: 220px;
    }

    /* Article Content on Mobile */
    .article-content h2 {
        font-size: 1.08rem;
        margin: 22px 0 10px;
    }

    .article-content h3 {
        font-size: 0.94rem;
    }

    .article-content p {
        font-size: 0.88rem;
        line-height: 1.8;
    }

    .article-content blockquote {
        padding: 12px 14px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .header-content {
        padding: 12px 0;
    }

    .logo img {
        height: 40px;
    }

    .section-title {
        font-size: 1.08rem;
    }

    .page-hero h1 {
        font-size: 1.15rem !important;
    }

    .header .btn-primary span {
        display: none;
    }

    .header .btn-primary {
        padding: 8px 12px;
        border-radius: var(--radius-xs);
    }

    .header .btn-primary i {
        font-size: 1.1rem;
        margin: 0;
    }
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS SLIDER SECTION (afaq/testimonials-slider Repeater Block)
══════════════════════════════════════════════════════════════ */
.testimonials-slider-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 60%, #f8fafc 100%);
}

.testimonial-slider-container {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.test-slides-wrapper {
    position: relative;
    min-height: 280px;
}

.test-slide-item {
    display: none;
    animation: testFadeIn 0.55s ease forwards;
}

.test-slide-item.active {
    display: block;
}

@keyframes testFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.test-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 40px rgba(0, 85, 184, 0.08);
    position: relative;
    transition: box-shadow 0.3s;
}

.test-card:hover {
    box-shadow: 0 12px 50px rgba(0, 85, 184, 0.14);
}

.test-card-quote {
    position: absolute;
    top: 24px;
    left: 30px;
    font-size: 48px;
    color: #0055b8;
    opacity: 0.10;
    line-height: 1;
}

.test-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.test-stars i {
    color: #f59e0b;
    font-size: 16px;
}

.test-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #334155;
    margin-bottom: 28px;
    font-style: italic;
}

.test-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.test-avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0055b8, #0a1c36);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.test-author-info {
    flex: 1;
}

.test-author-info h3,
.test-author-info h5 {
    margin: 0 0 3px 0;
    font-size: 15px;
    font-weight: 700;
    color: #0a1c36;
}

.test-author-info span {
    display: block;
    font-size: 13px;
    color: #64748b;
}

.test-city {
    margin-top: 3px;
    color: #0055b8 !important;
    font-size: 12px !important;
}

.test-city i {
    margin-left: 3px;
}

.test-google-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4285f4;
    font-size: 16px;
    flex-shrink: 0;
}

.test-slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.test-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.test-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 48px;
    min-height: 48px;
}

.test-dot.active {
    background: #0055b8;
    transform: scale(1.35);
}

@media (max-width: 640px) {
    .test-card {
        padding: 24px 20px;
    }

    .test-text {
        font-size: 0.94rem;
    }

    .testimonials-slider-section {
        padding: 50px 0;
    }
}

/* ═════════════════════════════════════════════════════════════════════
   MULTILINGUAL & LTR DIRECTION SYSTEM (ENGLISH, FRENCH, SPANISH, ETC.)
   ═════════════════════════════════════════════════════════════════════ */

html[dir="ltr"],
html.is-ltr,
html.translated-ltr,
body.is-ltr {
    direction: ltr !important;
    text-align: left !important;
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

html[dir="ltr"] body,
html.is-ltr body,
html.translated-ltr body {
    direction: ltr !important;
    text-align: left !important;
    line-height: 1.65 !important;
}

/* Typography in LTR */
html[dir="ltr"] h1,
html[dir="ltr"] h2,
html[dir="ltr"] h3,
html[dir="ltr"] h4,
html[dir="ltr"] h5,
html[dir="ltr"] h6,
html.translated-ltr h1,
html.translated-ltr h2,
html.translated-ltr h3,
html.translated-ltr h4,
html.translated-ltr h5,
html.translated-ltr h6,
body.is-ltr h1,
body.is-ltr h2,
body.is-ltr h3,
body.is-ltr h4,
body.is-ltr h5,
body.is-ltr h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
    letter-spacing: -0.015em;
    text-align: left;
}

html[dir="ltr"] p,
html[dir="ltr"] span,
html[dir="ltr"] li,
html.translated-ltr p,
html.translated-ltr span,
html.translated-ltr li,
body.is-ltr p,
body.is-ltr span,
body.is-ltr li {
    text-align: left;
}

/* Keep intentional center alignments in LTR */
html[dir="ltr"] .text-center,
html[dir="ltr"] .section-header,
html[dir="ltr"] .section-header h1,
html[dir="ltr"] .section-header h2,
html[dir="ltr"] .section-header h3,
html[dir="ltr"] .section-header h4,
html[dir="ltr"] .section-header p,
html[dir="ltr"] .section-header .section-subtitle,
html[dir="ltr"] .afaq-partners-header,
html[dir="ltr"] .afaq-partners-title,
html[dir="ltr"] .afaq-partners-desc,
html[dir="ltr"] .page-hero.text-center,
html[dir="ltr"] .page-hero.text-center h1,
html[dir="ltr"] .page-hero.text-center p,
html[dir="ltr"] .service-category-main .page-hero h1,
html[dir="ltr"] .service-category-main .page-hero p,
html[dir="ltr"] .study-category-main .page-hero h1,
html[dir="ltr"] .study-category-main .page-hero p,
html[dir="ltr"] .text-center h1,
html[dir="ltr"] .text-center h2,
html[dir="ltr"] .text-center h3,
html[dir="ltr"] .text-center p,
html.translated-ltr .text-center,
html.translated-ltr .section-header,
html.translated-ltr .section-header h1,
html.translated-ltr .section-header h2,
html.translated-ltr .section-header h3,
html.translated-ltr .section-header h4,
html.translated-ltr .section-header p,
html.translated-ltr .section-header .section-subtitle,
html.translated-ltr .afaq-partners-header,
html.translated-ltr .afaq-partners-title,
html.translated-ltr .afaq-partners-desc,
html.translated-ltr .page-hero.text-center,
html.translated-ltr .page-hero.text-center h1,
html.translated-ltr .page-hero.text-center p,
html.translated-ltr .service-category-main .page-hero h1,
html.translated-ltr .service-category-main .page-hero p,
html.translated-ltr .study-category-main .page-hero h1,
html.translated-ltr .study-category-main .page-hero p,
html.translated-ltr .text-center h1,
html.translated-ltr .text-center h2,
html.translated-ltr .text-center h3,
html.translated-ltr .text-center p,
body.is-ltr .text-center,
body.is-ltr .section-header,
body.is-ltr .section-header h1,
body.is-ltr .section-header h2,
body.is-ltr .section-header h3,
body.is-ltr .section-header h4,
body.is-ltr .section-header p,
body.is-ltr .section-header .section-subtitle,
body.is-ltr .afaq-partners-header,
body.is-ltr .afaq-partners-title,
body.is-ltr .afaq-partners-desc,
body.is-ltr .page-hero.text-center,
body.is-ltr .page-hero.text-center h1,
body.is-ltr .page-hero.text-center p,
body.is-ltr .service-category-main .page-hero h1,
body.is-ltr .service-category-main .page-hero p,
body.is-ltr .study-category-main .page-hero h1,
body.is-ltr .study-category-main .page-hero p,
body.is-ltr .text-center h1,
body.is-ltr .text-center h2,
body.is-ltr .text-center h3,
body.is-ltr .text-center p {
    text-align: center !important;
}

html[dir="ltr"] .section-header .section-subtitle,
html.translated-ltr .section-header .section-subtitle,
body.is-ltr .section-header .section-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
}

/* Breadcrumbs (LTR: flip arrows to point forward) */
html[dir="ltr"] .breadcrumb i,
html.translated-ltr .breadcrumb i,
body.is-ltr .breadcrumb i {
    transform: scaleX(-1) !important;
    display: inline-block !important;
}

/* Service Details & Inner Section Titles (LTR: align to left naturally) */
html[dir="ltr"] .afaq-service-details-block-content .section-title,
html.translated-ltr .afaq-service-details-block-content .section-title,
body.is-ltr .afaq-service-details-block-content .section-title,
html[dir="ltr"] .service-main .section-title,
html.translated-ltr .service-main .section-title,
body.is-ltr .service-main .section-title,
html[dir="ltr"] .about-intro-text .section-title,
html.translated-ltr .about-intro-text .section-title,
body.is-ltr .about-intro-text .section-title {
    text-align: left !important;
}

/* ── Header & Navigation (LTR) ── */
html[dir="ltr"] .header-content,
html.translated-ltr .header-content,
body.is-ltr .header-content {
    flex-direction: row !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: clamp(6px, 1vw, 12px) !important;
    padding: 10px clamp(12px, 1.5vw, 20px) !important;
}

html[dir="ltr"] .logo,
html.translated-ltr .logo,
body.is-ltr .logo {
    flex-shrink: 0 !important;
    min-width: 110px !important;
}

html[dir="ltr"] .logo img,
html.translated-ltr .logo img,
body.is-ltr .logo img {
    height: 46px !important;
}

html[dir="ltr"] .nav-menu,
html.translated-ltr .nav-menu,
body.is-ltr .nav-menu {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: clamp(2px, 0.5vw, 8px) !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
}

html[dir="ltr"] .nav-link,
html.translated-ltr .nav-link,
body.is-ltr .nav-link {
    font-size: clamp(0.88rem, 0.94vw, 0.95rem) !important;
    font-weight: 600 !important;
    padding: 6px clamp(5px, 0.7vw, 10px) !important;
    white-space: nowrap !important;
}

html[dir="ltr"] .nav-dropdown .dropdown-menu,
html.translated-ltr .nav-dropdown .dropdown-menu,
body.is-ltr .nav-dropdown .dropdown-menu {
    right: auto !important;
    left: 0 !important;
    text-align: left !important;
}

html[dir="ltr"] .dropdown-item,
html.translated-ltr .dropdown-item,
body.is-ltr .dropdown-item {
    text-align: left !important;
    flex-direction: row !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    white-space: nowrap !important;
}

html[dir="ltr"] .dropdown-item:hover,
html.translated-ltr .dropdown-item:hover,
body.is-ltr .dropdown-item:hover {
    padding-left: 18px !important;
    padding-right: 14px !important;
}

html[dir="ltr"] .header-actions,
html.translated-ltr .header-actions,
body.is-ltr .header-actions {
    flex-direction: row !important;
    flex-shrink: 0 !important;
    gap: 6px !important;
}

html[dir="ltr"] .header-phone,
html.translated-ltr .header-phone,
body.is-ltr .header-phone {
    flex-direction: row !important;
    font-size: 0.82rem !important;
    padding: 6px 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

html[dir="ltr"] .header-actions .btn,
html.translated-ltr .header-actions .btn,
body.is-ltr .header-actions .btn,
html[dir="ltr"] .header-content .btn,
html.translated-ltr .header-content .btn,
body.is-ltr .header-content .btn {
    padding: 7px 12px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* في اللغات غير العربية: اظهر النص القصير فقط */
html[dir="ltr"] .header-cta-btn .btn-label-full,
html.translated-ltr .header-cta-btn .btn-label-full,
body.is-ltr .header-cta-btn .btn-label-full {
    display: none !important;
}

html[dir="ltr"] .header-cta-btn .btn-label-short,
html.translated-ltr .header-cta-btn .btn-label-short,
body.is-ltr .header-cta-btn .btn-label-short {
    display: inline !important;
}

@media (max-width: 1250px) {
    html[dir="ltr"] .header-phone span,
    html.translated-ltr .header-phone span,
    body.is-ltr .header-phone span {
        display: none !important;
    }
    html[dir="ltr"] .header-phone,
    html.translated-ltr .header-phone,
    body.is-ltr .header-phone {
        padding: 7px 10px !important;
    }
    html[dir="ltr"] .nav-link,
    html.translated-ltr .nav-link,
    body.is-ltr .nav-link {
        font-size: 0.84rem !important;
        padding: 5px 6px !important;
    }
    html[dir="ltr"] .nav-menu,
    html.translated-ltr .nav-menu,
    body.is-ltr .nav-menu {
        gap: 3px !important;
    }
}

@media (max-width: 900px) {
    html[dir="ltr"] .nav-menu,
    html.translated-ltr .nav-menu,
    body.is-ltr .nav-menu {
        flex-direction: column !important;
        text-align: left !important;
        direction: ltr !important;
    }
    html[dir="ltr"] .nav-menu:not(.show),
    html.translated-ltr .nav-menu:not(.show),
    body.is-ltr .nav-menu:not(.show) {
        display: none !important;
    }
    html[dir="ltr"] .nav-menu.show,
    html.translated-ltr .nav-menu.show,
    body.is-ltr .nav-menu.show {
        display: flex !important;
    }
    html[dir="ltr"] .nav-link,
    html.translated-ltr .nav-link,
    body.is-ltr .nav-link {
        font-size: 1rem !important;
        padding: 12px 14px !important;
        justify-content: flex-start !important;
    }
}

html[dir="ltr"] .btn,
html.translated-ltr .btn,
body.is-ltr .btn {
    flex-direction: row !important;
    font-size: 0.84rem !important;
    padding: 8px 14px !important;
}

html[dir="ltr"] .btn i,
html[dir="ltr"] .header-phone i,
html.translated-ltr .btn i,
html.translated-ltr .header-phone i,
body.is-ltr .btn i,
body.is-ltr .header-phone i {
    margin-left: 0 !important;
    margin-right: 6px !important;
}

/* ── Hero Section & Sliders (LTR) ── */
html[dir="ltr"] .slider-text-track,
html[dir="ltr"] .slide-text-item,
html.translated-ltr .slider-text-track,
html.translated-ltr .slide-text-item,
body.is-ltr .slider-text-track,
body.is-ltr .slide-text-item {
    text-align: left !important;
}

html[dir="ltr"] .hero-badge,
html.translated-ltr .hero-badge,
body.is-ltr .hero-badge {
    margin-right: auto !important;
    margin-left: 0 !important;
}

html[dir="ltr"] .hero-actions,
html.translated-ltr .hero-actions,
body.is-ltr .hero-actions {
    justify-content: flex-start !important;
}

html[dir="ltr"] .hero-stats-pill,
html.translated-ltr .hero-stats-pill,
body.is-ltr .hero-stats-pill {
    left: 20px !important;
    right: auto !important;
}

/* ── Detailed Study Cards (LTR) ── */
html[dir="ltr"] .study-card-head,
html.translated-ltr .study-card-head,
body.is-ltr .study-card-head {
    flex-direction: row !important;
    text-align: left !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

html[dir="ltr"] .study-card-title-wrap,
html.translated-ltr .study-card-title-wrap,
body.is-ltr .study-card-title-wrap {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    text-align: left !important;
}

html[dir="ltr"] .study-card-title-wrap h3,
html.translated-ltr .study-card-title-wrap h3,
body.is-ltr .study-card-title-wrap h3 {
    text-align: left !important;
    word-break: break-word !important;
    font-size: 1.1rem !important;
}

html[dir="ltr"] .study-type-badge,
html.translated-ltr .study-type-badge,
body.is-ltr .study-type-badge {
    display: inline-block !important;
    text-align: left !important;
    margin-bottom: 6px !important;
}

html[dir="ltr"] .study-intro,
html.translated-ltr .study-intro,
body.is-ltr .study-intro {
    text-align: left !important;
}

html[dir="ltr"] .study-output-tag,
html.translated-ltr .study-output-tag,
body.is-ltr .study-output-tag {
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

html[dir="ltr"] .study-output-tag i,
html.translated-ltr .study-output-tag i,
body.is-ltr .study-output-tag i {
    margin-left: 0 !important;
    margin-right: 6px !important;
    flex-shrink: 0 !important;
}

/* ── Cards & Section Components (LTR) ── */
html[dir="ltr"] .service-card,
html[dir="ltr"] .opportunity-card,
html[dir="ltr"] .sector-card,
html[dir="ltr"] .study-card,
html[dir="ltr"] .blog-card,
html[dir="ltr"] .feature-card,
html[dir="ltr"] .stat-card,
html[dir="ltr"] .stats-box,
html.translated-ltr .service-card,
html.translated-ltr .opportunity-card,
html.translated-ltr .sector-card,
html.translated-ltr .study-card,
html.translated-ltr .blog-card,
html.translated-ltr .feature-card,
html.translated-ltr .stat-card,
html.translated-ltr .stats-box,
body.is-ltr .service-card,
body.is-ltr .opportunity-card,
body.is-ltr .sector-card,
body.is-ltr .study-card,
body.is-ltr .blog-card,
body.is-ltr .feature-card,
body.is-ltr .stat-card,
body.is-ltr .stats-box {
    text-align: left !important;
}

html[dir="ltr"] .card-meta,
html[dir="ltr"] .opportunity-meta,
html[dir="ltr"] .blog-meta,
html.translated-ltr .card-meta,
html.translated-ltr .opportunity-meta,
html.translated-ltr .blog-meta,
body.is-ltr .card-meta,
body.is-ltr .opportunity-meta,
body.is-ltr .blog-meta {
    justify-content: flex-start !important;
    flex-direction: row !important;
}

html[dir="ltr"] .card-meta span i,
html[dir="ltr"] .opportunity-meta span i,
html[dir="ltr"] .blog-meta span i,
html.translated-ltr .card-meta span i,
html.translated-ltr .opportunity-meta span i,
html.translated-ltr .blog-meta span i,
body.is-ltr .card-meta span i,
body.is-ltr .opportunity-meta span i,
body.is-ltr .blog-meta span i {
    margin-left: 0 !important;
    margin-right: 5px !important;
}

/* ── Forms (LTR) ── */
html[dir="ltr"] input,
html[dir="ltr"] textarea,
html[dir="ltr"] select,
html.translated-ltr input,
html.translated-ltr textarea,
html.translated-ltr select,
body.is-ltr input,
body.is-ltr textarea,
body.is-ltr select {
    text-align: left !important;
    direction: ltr !important;
}

html[dir="ltr"] input::placeholder,
html[dir="ltr"] textarea::placeholder,
html.translated-ltr input::placeholder,
html.translated-ltr textarea::placeholder,
body.is-ltr input::placeholder,
body.is-ltr textarea::placeholder {
    text-align: left !important;
    direction: ltr !important;
}

html[dir="ltr"] .contact-form-card,
html.translated-ltr .contact-form-card,
body.is-ltr .contact-form-card {
    text-align: left !important;
}

/* ── Testimonials (LTR) ── */
html[dir="ltr"] .test-card,
html.translated-ltr .test-card,
body.is-ltr .test-card {
    text-align: left !important;
}

html[dir="ltr"] .test-author,
html.translated-ltr .test-author,
body.is-ltr .test-author {
    flex-direction: row !important;
}

html[dir="ltr"] .test-author-info,
html.translated-ltr .test-author-info,
body.is-ltr .test-author-info {
    text-align: left !important;
}

html[dir="ltr"] .test-city i,
html.translated-ltr .test-city i,
body.is-ltr .test-city i {
    margin-left: 0 !important;
    margin-right: 4px !important;
}

/* ── Footer (LTR) ── */
html[dir="ltr"] .footer,
html[dir="ltr"] .footer-col,
html.translated-ltr .footer,
html.translated-ltr .footer-col,
body.is-ltr .footer,
body.is-ltr .footer-col {
    text-align: left !important;
}

/* Footer col heading underline: flip from right to left in LTR */
html[dir="ltr"] .footer-col h3::after,
html[dir="ltr"] .footer-col h4::after,
html.translated-ltr .footer-col h3::after,
html.translated-ltr .footer-col h4::after,
body.is-ltr .footer-col h3::after,
body.is-ltr .footer-col h4::after {
    right: auto !important;
    left: 0 !important;
}

/* Footer links icons: correct spacing direction in LTR */
html[dir="ltr"] .footer-links a i,
html[dir="ltr"] .footer-links span i,
html.translated-ltr .footer-links a i,
html.translated-ltr .footer-links span i,
body.is-ltr .footer-links a i,
body.is-ltr .footer-links span i {
    margin-left: 0 !important;
    margin-right: 6px !important;
}

/* Footer links hover: shift left instead of right in LTR */
html[dir="ltr"] .footer-links a:hover,
html.translated-ltr .footer-links a:hover,
body.is-ltr .footer-links a:hover {
    padding-right: 0 !important;
    padding-left: 4px !important;
}

/* Footer about title & text: left align */
html[dir="ltr"] .footer-brand-title,
html[dir="ltr"] .footer-about p,
html.translated-ltr .footer-brand-title,
html.translated-ltr .footer-about p,
body.is-ltr .footer-brand-title,
body.is-ltr .footer-about p {
    text-align: left !important;
}

html[dir="ltr"] .footer-bottom,
html.translated-ltr .footer-bottom,
body.is-ltr .footer-bottom {
    flex-direction: row !important;
    text-align: left !important;
}

/* ── Floating Actions Balance (LTR) ── */
html[dir="ltr"] .whatsapp-float,
html.translated-ltr .whatsapp-float,
body.is-ltr .whatsapp-float {
    right: 25px !important;
    left: auto !important;
}

html[dir="ltr"] #gt_float_wrapper,
html.translated-ltr #gt_float_wrapper,
body.is-ltr #gt_float_wrapper {
    left: 25px !important;
    right: auto !important;
}

/* ═════════════════════════════════════════════════════════════════════
   SERVICES PAGE SHOWCASE & CARDS (services.html design)
   ═════════════════════════════════════════════════════════════════════ */

/* Service KPI / Stats Strip */
.service-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.service-kpi-card {
    padding: 16px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--trans);
}

.service-kpi-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--brand-blue-border);
}

.service-kpi-num {
    font-size: 1.65rem;
    font-weight: 800;
    font-family: var(--font-title);
    color: var(--brand-blue);
    line-height: 1.2;
    margin-bottom: 4px;
}

.service-kpi-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* 4 Core Services Grid (Matches services.html 4-column compact layout) */
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.svc-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue-border);
}

.svc-card-thumb {
    width: 100%;
    height: 175px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.svc-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.svc-card:hover .svc-card-thumb img {
    transform: scale(1.05);
}

.svc-card-body {
    padding: 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.svc-icon {
    width: 38px;
    height: 38px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--trans);
}

.svc-card:hover .svc-icon {
    background: var(--brand-blue);
    color: #ffffff;
}

.svc-badge {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.svc-badge-neutral {
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.svc-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.svc-card p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 14px;
    min-height: 48px;
}

.svc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-heading);
    font-weight: 500;
    line-height: 1.35;
}

.svc-features li i {
    color: #10b981;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 14px;
    background: #eff6ff;
    color: var(--brand-blue);
    border: 1px solid rgba(0, 85, 184, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--trans);
    margin-top: auto;
}

.svc-btn:hover {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
}

.svc-btn i {
    transition: transform var(--trans);
}

.svc-btn:hover i {
    transform: translateX(-4px);
}

/* Service Features Grid (Why Us) */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--brand-blue-border);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

/* Page CTA Box */
.page-cta-section {
    padding: 40px 0 60px;
}

.page-cta-box {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--navy-900) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.page-cta-box h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    color: #ffffff;
    margin-bottom: 12px;
}

.page-cta-box p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: #ffffff;
    color: var(--brand-blue);
    border-radius: var(--radius-xs);
    font-size: 0.96rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all var(--trans);
}

.cta-btn-white:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

@media (max-width: 992px) {
    .all-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-kpi-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .all-services-grid {
        grid-template-columns: 1fr;
    }

    .service-kpi-strip {
        grid-template-columns: 1fr;
    }

    .svc-card-thumb {
        height: 180px;
    }

    .svc-card-body {
        padding: 20px;
    }
}

/* ═════════════════════════════════════════════════════════════════════
   1. STUDIES PAGE (studies.html)
   ═════════════════════════════════════════════════════════════════════ */
.all-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
}

.study-listing-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
}

.study-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue-border);
}

.study-listing-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.study-listing-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.study-listing-card:hover .study-listing-thumb img {
    transform: scale(1.05);
}

.study-listing-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.study-listing-body h3 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.study-listing-body p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

/* ═════════════════════════════════════════════════════════════════════
   2. OPPORTUNITIES PAGE (opportunities.html)
   ═════════════════════════════════════════════════════════════════════ */
.filter-tabs-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.filter-tab {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-title);
    cursor: pointer;
    transition: all var(--trans);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.25);
}

.opp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.opp-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
}

.opp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue-border);
}

.opp-img-wrap {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #f1f5f9;
}

.opp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.opp-card:hover .opp-img-wrap img {
    transform: scale(1.05);
}

.opp-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(10, 28, 54, 0.75);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.opp-irr-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    top: auto;
    right: auto;
    background: rgba(10, 28, 54, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #10b981;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(16, 185, 129, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: auto;
    line-height: 1.2;
    z-index: 2;
}

.opp-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.opp-city {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.opp-body h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 8px;
    line-height: 1.45;
    transition: color var(--trans);
}

.opp-body h3 a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color var(--trans);
}

.opp-body h3 a:hover,
.opp-card:hover .opp-body h3 a {
    color: var(--brand-blue-dark);
}

.opp-body p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.opp-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 18px;
}

.opp-metric-item span {
    display: block;
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.opp-metric-item strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--navy-900);
    font-family: var(--font-title);
}

.opp-btns-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.opp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--trans);
    text-decoration: none;
}

.opp-btn-detail {
    flex: 1;
    padding: 10px 16px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue-border);
    gap: 8px;
}

.opp-btn-detail:hover {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
}

.opp-btn-wa {
    width: 42px;
    height: 42px;
    background: #25d366;
    color: #ffffff;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.opp-btn-wa:hover {
    background: #1ebc57;
    transform: scale(1.05);
}

/* ═════════════════════════════════════════════════════════════════════
   3. BLOG PAGE (blog.html)
   ═════════════════════════════════════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue-border);
}

.blog-img-wrap {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-tag {
    position: static !important;
    display: inline-flex;
    align-items: center;
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: var(--radius-full);
    width: fit-content;
    white-space: nowrap;
}

.blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-body h3 {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 10px;
    line-height: 1.45;
}

.blog-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--trans);
}

.blog-body h3 a:hover {
    color: var(--brand-blue);
}

.blog-body p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    margin-top: auto;
    margin-inline-start: auto;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-decoration: none;
    transition: all var(--trans);
}

.blog-read-more:hover {
    color: var(--navy-900);
    gap: 12px;
}

/* ═════════════════════════════════════════════════════════════════════
   4. ABOUT PAGE (about.html)
   ═════════════════════════════════════════════════════════════════════ */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.about-intro-text p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-body);
}

.about-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid var(--brand-blue-border);
}

.about-photo-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-floating-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(10, 28, 54, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.about-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-badge-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.about-badge-text span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-stats-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xs);
}

.astat-item {
    text-align: center;
    padding: 10px;
}

.astat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-blue);
    font-family: var(--font-title);
    line-height: 1.2;
    margin-bottom: 6px;
}

.astat-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
}

.about-dual-visual {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.about-dual-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-dual-img-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.about-dual-content h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 14px;
}

.about-dual-content p {
    font-size: 0.96rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 12px;
}

.about-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy-900);
}

.about-check-item i {
    color: #10b981;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    box-shadow: var(--shadow-xs);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 28, 54, 0.9) 0%, transparent 100%);
    color: #ffffff;
}

.gallery-overlay span {
    font-size: 0.74rem;
    color: var(--accent-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.gallery-overlay h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.value-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue-border);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.team-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
}

.team-card.featured {
    border-color: var(--brand-blue);
    box-shadow: 0 4px 18px rgba(0, 85, 184, 0.12);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.team-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-count {
    font-size: 0.84rem;
    color: var(--text-muted);
    font-weight: 600;
}

.team-count span {
    color: var(--brand-blue);
    font-weight: 800;
    font-size: 1.05rem;
}

/* ═════════════════════════════════════════════════════════════════════
   5. CONTACT PAGE (contact.html)
   ═════════════════════════════════════════════════════════════════════ */
.contact-channels-4grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.c4card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
}

.c4card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue-border);
}

.c4card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.c4pill {
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.c4pill i {
    font-size: 0.55rem;
    color: #10b981;
}

.c4icon {
    width: 42px;
    height: 42px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.c4card:hover .c4icon {
    background: var(--brand-blue);
    color: #ffffff;
}

.c4card h3 {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.c4card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.c4val {
    font-size: 1.05rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--brand-blue);
    margin-bottom: 18px;
}

.c4val.email-text {
    font-size: 0.88rem;
    font-family: inherit;
    color: var(--brand-blue);
}

.c4val.location-text {
    font-size: 0.86rem;
    font-family: inherit;
    color: var(--navy-900);
}

.c4btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 44px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue-border);
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all var(--trans);
    margin-top: auto;
}

.c4btn:hover {
    background: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
}

.c4btn-static {
    background: var(--bg-body);
    color: var(--text-muted);
    border-color: var(--border-color);
    cursor: default;
}

.c4btn-static:hover {
    background: var(--bg-body);
    color: var(--text-muted);
    border-color: var(--border-color);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 36px;
    align-items: flex-start;
}

.contact-form-box {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-xs);
}

.form-box-header {
    margin-bottom: 24px;
}

.form-box-header h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy-900);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xs);
    font-size: 0.92rem;
    font-family: inherit;
    background: #ffffff;
    transition: all var(--trans);
    color: var(--text-heading);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 85, 184, 0.12);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--brand-blue);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-xs);
    font-size: 0.96rem;
    font-weight: 800;
    font-family: var(--font-title);
    cursor: pointer;
    transition: all var(--trans);
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.22);
}

.contact-submit-btn:hover {
    background: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 85, 184, 0.32);
}

.contact-side-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-side-trust-box {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--navy-900) 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.trust-box-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.contact-side-trust-box h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-side-trust-box p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 16px;
}

.trust-badge-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-badge-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
}

.trust-badge-row i {
    color: #10b981;
}

.contact-side-clean-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-xs);
}

.contact-side-clean-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-900);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.contact-side-clean-card h4 i {
    color: var(--brand-blue);
}

.side-info-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sinfo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--border-color);
}

.sinfo-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sinfo-row span {
    color: var(--text-muted);
}

.sinfo-row strong {
    color: var(--navy-900);
    font-weight: 700;
}

.sinfo-row strong.text-brand {
    color: var(--brand-blue);
}

/* ═════════════════════════════════════════════════════════════════════
   RESPONSIVE QUERIES FOR ALL 5 PAGES
   ═════════════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {

    .all-studies-grid,
    .opp-grid,
    .blog-grid,
    .values-grid,
    .team-grid,
    .about-gallery-grid,
    .contact-channels-4grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro-grid,
    .about-dual-visual,
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-block {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .all-studies-grid,
    .opp-grid,
    .blog-grid,
    .values-grid,
    .team-grid,
    .about-gallery-grid,
    .contact-channels-4grid,
    .about-stats-block,
    .about-checklist-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .about-main-img {
        height: 280px;
    }

    .about-dual-img-box img {
        height: 240px;
    }

    .contact-form-box {
        padding: 22px;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE BLOG POST – Full Premium Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero Banner ────────────────────────────────────────────────────────── */
.single-post-hero {
    position: relative;
    padding: 44px 0 36px;
    background: linear-gradient(135deg, #0a1c36 0%, #00316e 50%, #0055b8 100%);
    color: #ffffff;
    overflow: hidden;
}

.single-post-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(0, 85, 184, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.single-post-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.single-post-hero-content .breadcrumb {
    justify-content: center;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.single-post-cat-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.single-post-cat-badge a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.single-post-cat-badge a:hover {
    background: #ffffff;
    color: #0055b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.single-post-hero-content h1 {
    font-size: clamp(1.2rem, 2.3vw, 1.65rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.55;
    margin: 0 0 14px;
    max-width: 820px;
    margin-inline: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.single-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.single-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.single-post-meta i {
    color: #60a5fa;
    font-size: 0.88rem;
}

/* ── Page Layout ────────────────────────────────────────────────────────── */
.single-blog-layout {
    max-width: 900px !important;
    margin-inline: auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

.single-blog-content-col {
    width: 100%;
}

/* ── Featured Image ─────────────────────────────────────────────────────── */
.single-post-featured-img {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 36px;
    box-shadow: 0 8px 36px rgba(0, 40, 120, 0.12);
    border: 1px solid #e2e8f0;
}

.single-post-featured-img img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* ── Article Card ───────────────────────────────────────────────────────── */
.single-post-article {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 16px rgba(0, 40, 120, 0.06);
    overflow: hidden;
    margin-bottom: 32px;
}

/* ── Article Rich Body Typography ───────────────────────────────────────── */
.single-post-body {
    padding: 40px 44px;
    font-size: 1rem;
    line-height: 1.95;
    color: #334155;
    font-family: inherit;
}

/* Paragraphs */
.single-post-body p {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.95;
    color: #334155;
}

/* Headings */
.single-post-body h1,
.single-post-body h2 {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 800;
    color: #0a1c36;
    margin: 40px 0 18px;
    padding-right: 16px;
    border-right: 4px solid #0055b8;
    line-height: 1.45;
    text-align: right;
}

.single-post-body h3 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 800;
    color: #0a1c36;
    margin: 30px 0 14px;
    padding-right: 12px;
    border-right: 3px solid #3b82f6;
}

.single-post-body h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #1e3a6e;
    margin: 24px 0 12px;
}

.single-post-body h5,
.single-post-body h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e3a6e;
    margin: 18px 0 10px;
}

/* ── Unordered Lists ────────────────────────────────────────────────────── */
.single-post-body ul {
    list-style: none !important;
    padding-right: 0;
    margin: 6px 0 26px;
}

.single-post-body ul li {
    position: relative;
    padding-right: 26px;
    margin-bottom: 12px;
    line-height: 1.85;
    font-size: 0.98rem;
    color: #334155;
}

.single-post-body ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0055b8;
    flex-shrink: 0;
}

/* ── Ordered Lists ──────────────────────────────────────────────────────── */
.single-post-body ol {
    list-style: none !important;
    counter-reset: ol-counter;
    padding-right: 0;
    margin: 6px 0 26px;
}

.single-post-body ol li {
    position: relative;
    padding-right: 40px;
    margin-bottom: 12px;
    line-height: 1.85;
    font-size: 0.98rem;
    color: #334155;
    counter-increment: ol-counter;
}

.single-post-body ol li::before {
    content: counter(ol-counter);
    position: absolute;
    right: 0;
    top: 3px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0055b8;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nested lists */
.single-post-body ul ul,
.single-post-body ol ol,
.single-post-body ul ol,
.single-post-body ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.single-post-body li strong {
    color: #0a1c36;
}

/* ── Tables ─────────────────────────────────────────────────────────────── */
.single-post-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 28px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 40, 120, 0.08);
}

.single-post-body table th {
    background: #0a1c36;
    color: #ffffff;
    padding: 13px 18px;
    font-weight: 700;
    text-align: right;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}

.single-post-body table td {
    padding: 12px 18px;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    text-align: right;
}

.single-post-body table tr:nth-child(even) td {
    background: #f8faff;
}

.single-post-body table tr:last-child td {
    border-bottom: none;
}

.single-post-body table tr:hover td {
    background: #eef4ff;
    transition: background 0.2s;
}

/* Table wrap for horizontal scroll on mobile */
.single-post-body figure.wp-block-table,
.single-post-body .tablepress-table-wrap {
    overflow-x: auto;
    margin: 28px 0;
}

/* ── Blockquotes ────────────────────────────────────────────────────────── */
.single-post-body blockquote {
    background: #eef5ff;
    border-right: 5px solid #0055b8;
    border-radius: 0 10px 10px 0;
    padding: 20px 24px 20px 20px;
    margin: 28px 0;
    font-size: 1rem;
    color: #0a1c36;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    position: relative;
}

.single-post-body blockquote p {
    margin-bottom: 0;
    color: #0a1c36;
}

/* ── Highlight / Mark ───────────────────────────────────────────────────── */
.single-post-body mark {
    background: #fef9c3;
    color: #713f12;
    padding: 2px 5px;
    border-radius: 4px;
}

/* ── Strong / Bold ──────────────────────────────────────────────────────── */
.single-post-body strong,
.single-post-body b {
    color: #0a1c36;
    font-weight: 800;
}

/* ── Inline Code ────────────────────────────────────────────────────────── */
.single-post-body code {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 0.88rem;
    color: #0055b8;
    font-family: 'Courier New', monospace;
    direction: ltr;
    display: inline-block;
}

/* ── Horizontal Rule ────────────────────────────────────────────────────── */
.single-post-body hr {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 36px 0;
}

/* ── Links inside content ───────────────────────────────────────────────── */
.single-post-body a {
    color: #0055b8;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.single-post-body a:hover {
    color: #003d8a;
}

/* ── Images inside content ──────────────────────────────────────────────── */
.single-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 16px 0;
    display: block;
}

/* ── CTA Box ────────────────────────────────────────────────────────────── */
.single-post-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #0055b8 0%, #003580 100%);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 60, 150, 0.22);
}

.single-post-cta-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ffffff;
}

.single-post-cta-text {
    flex: 1;
}

.single-post-cta-text h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.single-post-cta-text p {
    font-size: 0.88rem;
    color: #c8dcf8;
    line-height: 1.6;
    margin: 0;
}

.single-post-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff !important;
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.single-post-cta-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .single-post-body {
        padding: 24px 22px;
    }

    .single-post-body h2 {
        font-size: 1.15rem;
    }

    .single-post-body h3 {
        font-size: 1rem;
    }

    .single-post-body table {
        font-size: 0.82rem;
    }

    .single-post-body table th,
    .single-post-body table td {
        padding: 10px 12px;
    }

    .single-post-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .single-post-cta-icon {
        margin: 0 auto;
    }

    .single-post-cta-text h3,
    .single-post-cta-text p {
        text-align: center;
    }

    .single-post-hero-content h1 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .single-post-body {
        padding: 18px 16px;
    }

    .single-post-body ul li::before {
        top: 8px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE OPPORTUNITY DETAILS & CONTENT STYLING (PREMIUM DESIGN)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero Badges ── */
.opp-hero-badge-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.opp-hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.opp-hero-badge i {
    color: #ffd700;
}

.opp-hero-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.opp-hero-location i {
    color: #60a5fa;
}

/* ── Main Layout Grid ── */
.opp-detail-section {
    padding: 50px 0 80px;
    background: #f8fafc;
}

.opp-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

/* ── Featured Visual ── */
.opp-featured-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 26px;
    box-shadow: 0 6px 24px rgba(10, 28, 54, 0.08);
    border: 1px solid #e2e8f0;
    max-height: 440px;
}

.opp-featured-media img {
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.opp-featured-overlay {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
}

.opp-irr-pill {
    background: rgba(10, 28, 54, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #10b981;
    font-size: 0.84rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── Financial KPIs Grid ── */
.opp-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.opp-kpi-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(10, 28, 54, 0.03);
    transition: all 0.2s ease;
}

.opp-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10, 28, 54, 0.07);
    border-color: #cbd5e1;
}

.opp-kpi-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eff6ff;
    color: #0055b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.opp-kpi-icon.green-icon {
    background: #ecfdf5;
    color: #10b981;
}

.opp-kpi-icon.blue-icon {
    background: #f0fdf4;
    color: #0284c7;
}

.opp-kpi-info {
    display: flex;
    flex-direction: column;
}

.opp-kpi-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 3px;
}

.opp-kpi-val {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0a1c36;
}

.opp-kpi-val.green-val {
    color: #059669;
}

/* ── Trust Guarantee Bar ── */
.opp-trust-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-right: 4px solid #0055b8;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(10, 28, 54, 0.03);
}

.opp-trust-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.opp-trust-left i {
    font-size: 1.6rem;
    color: #0055b8;
    flex-shrink: 0;
}

.opp-trust-left strong {
    display: block;
    font-size: 0.92rem;
    color: #0a1c36;
    margin-bottom: 2px;
}

.opp-trust-left span {
    font-size: 0.8rem;
    color: #64748b;
}

.opp-trust-btn {
    background: linear-gradient(135deg, #0055b8 0%, #003d99 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.opp-trust-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.3);
    color: #ffffff;
}

/* ── Rich Content Card & Typography ── */
.opp-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 4px 18px rgba(10, 28, 54, 0.04);
    margin-bottom: 32px;
}

.opp-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 2px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 12px;
}

.opp-content-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.opp-content-header-title i {
    font-size: 1.4rem;
    color: #0055b8;
}

.opp-content-header-title h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0a1c36;
    margin: 0;
    border: none;
    padding: 0;
}

.opp-content-tag {
    background: #eff6ff;
    color: #0055b8;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 85, 184, 0.15);
}

/* ── Content Typography Inside Article ── */
.opp-article-body {
    font-size: 1.02rem;
    line-height: 2.05;
    color: #334155;
}

.opp-article-body p {
    margin-bottom: 22px;
    font-size: 1.02rem;
    line-height: 2.05;
    color: #334155;
}

.opp-article-body h1,
.opp-article-body h2 {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 800;
    color: #0a1c36;
    margin: 38px 0 16px;
    padding-right: 14px;
    border-right: 4px solid #0055b8;
    line-height: 1.5;
}

.opp-article-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0055b8;
    margin: 28px 0 12px;
    padding-right: 10px;
    border-right: 3px solid #3b82f6;
    line-height: 1.45;
}

.opp-article-body h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0a1c36;
    margin: 22px 0 10px;
}

.opp-article-body strong,
.opp-article-body b {
    color: #0a1c36;
    font-weight: 800;
}

/* Lists */
.opp-article-body ul {
    list-style: none !important;
    padding-right: 0 !important;
    margin: 14px 0 28px !important;
}

.opp-article-body ul li {
    position: relative;
    padding-right: 28px;
    margin-bottom: 12px;
    line-height: 1.9;
    font-size: 0.98rem;
    color: #334155;
}

.opp-article-body ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0055b8;
    box-shadow: 0 0 0 3px rgba(0, 85, 184, 0.15);
}

.opp-article-body ol {
    list-style: none !important;
    counter-reset: opp-counter;
    padding-right: 0 !important;
    margin: 14px 0 28px !important;
}

.opp-article-body ol li {
    position: relative;
    padding-right: 36px;
    margin-bottom: 14px;
    line-height: 1.9;
    counter-increment: opp-counter;
    font-size: 0.98rem;
    color: #334155;
}

.opp-article-body ol li::before {
    content: counter(opp-counter);
    position: absolute;
    right: 0;
    top: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0055b8 0%, #003d99 100%);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blockquotes */
.opp-article-body blockquote {
    background: #eff6ff;
    border-right: 4px solid #0055b8;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 28px 0;
    font-size: 1rem;
    color: #0a1c36;
    line-height: 1.8;
}

/* Tables */
.opp-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.opp-article-body th {
    background: #0a1c36;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: right;
}

.opp-article-body td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.opp-article-body tr:nth-child(even) td {
    background: #f8fafc;
}

/* ── Bottom CTA Banner ── */
.opp-bottom-cta {
    background: linear-gradient(135deg, #0a1c36 0%, #00316e 50%, #0055b8 100%);
    border-radius: 16px;
    padding: 38px 40px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 85, 184, 0.2);
}

.opp-bottom-cta h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.opp-bottom-cta p {
    color: #e2e8f0;
    font-size: 0.94rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 24px;
}

.opp-bottom-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.opp-cta-btn-green {
    background: #25d366;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.2s ease;
}

.opp-cta-btn-green:hover {
    background: #1eb857;
    transform: translateY(-2px);
    color: #ffffff;
}

.opp-cta-btn-outline {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.opp-cta-btn-outline:hover {
    background: #ffffff;
    color: #0055b8;
    transform: translateY(-2px);
}

/* ── Sticky Sidebar ── */
.opp-sidebar {
    position: sticky;
    top: 24px;
}

.opp-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 4px 16px rgba(10, 28, 54, 0.04);
    margin-bottom: 24px;
}

.opp-request-widget {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    border: 1px solid rgba(0, 85, 184, 0.2);
    text-align: center;
}

.opp-widget-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0055b8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 16px;
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.25);
}

.opp-request-widget h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a1c36;
    margin-bottom: 10px;
}

.opp-request-widget p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
}

.opp-side-btn-wa {
    background: #25d366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: all 0.2s ease;
}

.opp-side-btn-wa:hover {
    background: #1eb857;
    transform: translateY(-2px);
    color: #ffffff;
}

.opp-side-btn-phone {
    background: #f1f5f9;
    color: #0a1c36;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.opp-side-btn-phone:hover {
    background: #e2e8f0;
}

.opp-sidebar-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.opp-sidebar-heading i {
    color: #0055b8;
    font-size: 1rem;
}

.opp-sidebar-heading h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0a1c36;
    margin: 0;
}

.opp-related-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.opp-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.opp-related-item:hover {
    background: #f8fafc;
    transform: translateX(-4px);
}

.opp-related-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.opp-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opp-related-info h5 {
    font-size: 0.84rem;
    font-weight: 700;
    color: #0a1c36;
    line-height: 1.45;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.opp-related-irr {
    font-size: 0.74rem;
    font-weight: 700;
    color: #059669;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .opp-detail-grid {
        grid-template-columns: 1fr;
    }

    .opp-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 640px) {
    .opp-kpi-grid {
        grid-template-columns: 1fr;
    }

    .opp-content-card {
        padding: 24px 20px;
    }

    .opp-bottom-cta {
        padding: 28px 20px;
    }
}

/* ══════════════════════════════════════════════
   SINGLE OPPORTUNITY — Rich Content Body
   ══════════════════════════════════════════════ */

/* Override the old single-opportunity classes */
.single-opp-page {
    background: #f8fafc;
}

/* Rich article content typography */
.opp-rich-content {
    color: #374151;
    font-size: 1rem;
    line-height: 1.85;
}

.opp-rich-content p {
    margin-bottom: 1.2em;
    color: #4b5563;
}

.opp-rich-content h1,
.opp-rich-content h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0a1c36;
    border-right: 4px solid #0055b8;
    padding-right: 14px;
    margin: 28px 0 14px;
    line-height: 1.4;
}

.opp-rich-content h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: #0a1c36;
    margin: 22px 0 10px;
}

.opp-rich-content h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 16px 0 8px;
}

.opp-rich-content ul {
    list-style: none;
    padding-right: 0;
    margin: 0 0 1.2em;
}

.opp-rich-content ul li {
    position: relative;
    padding-right: 22px;
    margin-bottom: 8px;
    color: #4b5563;
}

.opp-rich-content ul li::before {
    content: '';
    position: absolute;
    right: 4px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0055b8;
}

.opp-rich-content ol {
    padding-right: 22px;
    margin: 0 0 1.2em;
}

.opp-rich-content ol li {
    margin-bottom: 8px;
    color: #4b5563;
}

.opp-rich-content strong,
.opp-rich-content b {
    color: #0a1c36;
    font-weight: 700;
}

.opp-rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.opp-rich-content th {
    background: #0055b8;
    color: #fff;
    padding: 10px 14px;
    text-align: right;
    font-weight: 700;
}

.opp-rich-content td {
    padding: 9px 14px;
    border-bottom: 1px solid #e2e8f0;
    color: #374151;
}

.opp-rich-content tr:nth-child(even) td {
    background: #f8fafc;
}

.opp-rich-content blockquote {
    border-right: 4px solid #10b981;
    background: #f0fdf4;
    padding: 14px 18px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
    color: #065f46;
    font-style: italic;
}

/* Elementor content wrappers — flatten extra padding */
.opp-rich-content .elementor-widget-container,
.opp-rich-content .elementor-widget-wrap,
.opp-rich-content .elementor-section,
.opp-rich-content .elementor-container {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* ═════════════════════════════════════════════════════════════════════
   MODERN EXECUTIVE PAGINATION
   ═════════════════════════════════════════════════════════════════════ */

.afaq-pagination-container,
.pagination-wrapper,
.navigation.pagination {
    margin: 50px auto 30px;
    text-align: center;
    width: 100%;
    clear: both;
}

.navigation.pagination .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.navigation.pagination .nav-links,
.pagination-wrapper .page-numbers-wrap,
.pagination-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 60px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(10, 28, 54, 0.05);
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 50px;
    font-family: var(--font-title, 'Alexandria', sans-serif);
    font-size: 0.92rem;
    font-weight: 600;
    color: #1e293b;
    background: transparent;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
    line-height: 1;
}

a.page-numbers:hover:not(.current):not(.dots) {
    background: #edf5ff;
    color: var(--brand-blue, #0055b8);
    border-color: rgba(0, 85, 184, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 85, 184, 0.12);
}

.page-numbers.current {
    background: linear-gradient(135deg, #0055b8 0%, #004394 100%) !important;
    color: #ffffff !important;
    border-color: #0055b8 !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.35);
    transform: scale(1.05);
    cursor: default;
}

.page-numbers.dots {
    color: #94a3b8;
    font-size: 1.1rem;
    min-width: 24px;
    padding: 0 4px;
    border: none;
    background: transparent;
    cursor: default;
    box-shadow: none;
}

.page-numbers.prev,
.page-numbers.next {
    font-weight: 700;
    font-size: 0.86rem;
    gap: 8px;
    padding: 0 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

.page-numbers.prev i,
.page-numbers.next i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

a.page-numbers.prev:hover,
a.page-numbers.next:hover {
    background: var(--brand-blue, #0055b8);
    color: #ffffff;
    border-color: var(--brand-blue, #0055b8);
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.25);
    transform: translateY(-2px);
}

a.page-numbers.prev:hover i {
    transform: translateX(3px);
}

a.page-numbers.next:hover i {
    transform: translateX(-3px);
}

@media (max-width: 640px) {

    .navigation.pagination .nav-links,
    .pagination-wrapper {
        border-radius: 20px;
        padding: 6px 8px;
        gap: 4px;
    }

    .page-numbers {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 0.84rem;
    }

    .page-numbers.prev,
    .page-numbers.next {
        padding: 0 12px;
        font-size: 0.8rem;
    }
}

/* ═════════════════════════════════════════════════════════════════════
   FEASIBILITY STUDY SINGLE — EXECUTIVE EDITORIAL DESIGN
   ═════════════════════════════════════════════════════════════════════ */

.single-study-main {
    background: #f8fafc;
}

.study-article-wrap {
    min-width: 0;
}

.study-main-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(10, 28, 54, 0.03);
}

@media (max-width: 768px) {
    .study-main-card {
        padding: 24px 18px;
        border-radius: 14px;
    }
}

/* Feature Image Container */
.study-featured-banner {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: #f1f5f9;
    position: relative;
    max-height: 440px;
}

.study-featured-banner img {
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Trust / Accreditation Strip */
.study-trust-badge-strip {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    border: 1px solid rgba(0, 85, 184, 0.2);
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(0, 85, 184, 0.04);
}

.study-trust-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.study-trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #0055b8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 85, 184, 0.25);
}

.study-trust-text strong {
    color: #0a1c36;
    font-size: 14.5px;
    font-weight: 750;
    display: block;
    margin-bottom: 3px;
}

.study-trust-text span {
    color: #475569;
    font-size: 12.5px;
}

.study-trust-btn {
    background: #0055b8;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.25);
}

.study-trust-btn:hover {
    background: #004394;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 85, 184, 0.35);
}

/* Feasibility Study Article Content Typography */
.study-article-content {
    font-size: 1.02rem;
    line-height: 2;
    color: #334155;
}

.study-article-content p {
    margin-bottom: 1.5em;
    color: #374151;
    text-align: justify;
    text-justify: inter-word;
}

.study-article-content p:first-of-type {
    font-size: 1.08rem;
    line-height: 2.05;
    color: #1e293b;
    font-weight: 500;
    background: #f8fafc;
    padding: 18px 22px;
    border-radius: 12px;
    border-right: 4px solid #0055b8;
    margin-bottom: 28px;
}

/* Headings */
.study-article-content h1:first-of-type {
    font-family: var(--font-title, 'Alexandria', sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a1c36;
    margin: 0 0 24px 0;
    padding: 0 0 16px 0;
    border-right: none;
    border-bottom: 2px solid #e2e8f0;
    background: none;
    border-radius: 0;
    line-height: 1.45;
}

.study-article-content h1,
.study-article-content h2 {
    font-family: var(--font-title, 'Alexandria', sans-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: #0a1c36;
    margin: 38px 0 18px;
    padding: 10px 18px 10px 14px;
    border-right: 5px solid #0055b8;
    background: linear-gradient(to left, rgba(0, 85, 184, 0.06), rgba(0, 85, 184, 0.01) 80%, transparent);
    border-radius: 0 10px 10px 0;
    line-height: 1.5;
    position: relative;
    clear: both;
}

.study-article-content h3 {
    font-family: var(--font-title, 'Alexandria', sans-serif);
    font-size: 1.15rem;
    font-weight: 750;
    color: #0055b8;
    margin: 28px 0 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.study-article-content h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0055b8;
    flex-shrink: 0;
}

.study-article-content h1 b,
.study-article-content h1 strong,
.study-article-content h2 b,
.study-article-content h2 strong,
.study-article-content h3 b,
.study-article-content h3 strong,
.study-article-content h4 b,
.study-article-content h4 strong,
.study-article-content h1 span,
.study-article-content h2 span,
.study-article-content h3 span,
.study-article-content h4 span {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    line-height: inherit !important;
}

.study-article-content h4 {
    font-family: var(--font-title, 'Alexandria', sans-serif);
    font-size: 1.02rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 22px 0 10px;
    line-height: 1.5;
}

/* Bold keywords */
.study-article-content strong,
.study-article-content b {
    color: #0a1c36;
    font-weight: 750;
}

/* Lists */
.study-article-content ul {
    list-style: none;
    padding-right: 0;
    margin: 0 0 1.6em 0;
}

.study-article-content ul li {
    position: relative;
    padding-right: 28px;
    margin-bottom: 12px;
    line-height: 1.9;
    color: #374151;
}

.study-article-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #edf5ff;
    color: #0055b8;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.study-article-content ol {
    list-style: none;
    counter-reset: study-ol-count;
    padding-right: 0;
    margin: 0 0 1.6em 0;
}

.study-article-content ol li {
    position: relative;
    padding-right: 36px;
    margin-bottom: 12px;
    line-height: 1.9;
    counter-increment: study-ol-count;
    color: #374151;
}

.study-article-content ol li::before {
    content: counter(study-ol-count);
    position: absolute;
    right: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #0055b8;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blockquotes */
.study-article-content blockquote {
    background: linear-gradient(135deg, #f0fdf4 0%, #e6f9ed 100%);
    border-right: 4px solid #10b981;
    border-radius: 0 14px 14px 0;
    padding: 20px 26px;
    margin: 30px 0;
    color: #065f46;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.85;
    position: relative;
}

/* Tables */
.study-article-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 26px 0;
    font-size: 0.92rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.study-article-content th {
    background: #0055b8;
    color: #ffffff;
    padding: 13px 16px;
    text-align: right;
    font-weight: 700;
    font-size: 0.94rem;
}

.study-article-content td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #374151;
}

.study-article-content tr:last-child td {
    border-bottom: none;
}

.study-article-content tr:nth-child(even) td {
    background: #f8fafc;
}

.study-article-content tr:hover td {
    background: #f0f7ff;
}

/* Share and Action Bar at Article Bottom */
.study-article-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.study-share-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.study-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.study-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.study-share-wa {
    background: #25d366;
}

.study-share-tw {
    background: #0f1419;
}

.study-share-in {
    background: #0077b5;
}

/* Sticky Sidebar Enhancements */
.study-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-box {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 26px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(10, 28, 54, 0.03);
}

.sidebar-box-title {
    font-size: 16px;
    font-weight: 800;
    color: #0a1c36;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0055b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.sidebar-checklist li {
    font-size: 13px;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.sidebar-checklist li i {
    color: #10b981;
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

.sidebar-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff !important;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
    transition: all 0.25s ease;
}

.sidebar-wa-btn:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.sidebar-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1f5f9;
    color: #0a1c36 !important;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.sidebar-phone-btn:hover {
    background: #e2e8f0;
    color: #0055b8 !important;
}

/* Related Study Item Card */
.related-study-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.related-study-link:hover {
    background: #f8fafc;
    transform: translateX(-3px);
}

.related-study-thumb {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.related-study-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-study-title {
    font-size: 13px;
    font-weight: 700;
    color: #0a1c36;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.related-study-link:hover .related-study-title {
    color: #0055b8;
}





/* ══════════════════════════════════════════════════════
   SERVICES & STUDIES DETAIL PAGES
   ══════════════════════════════════════════════════════ */

/* Service/Study Hero Strip */
.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

/* ── KPI Strip (أرقام بارزة) ── */
.service-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.service-kpi-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: all var(--trans);
}

.service-kpi-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue-border);
    box-shadow: 0 10px 28px rgba(0, 85, 184, 0.1);
}

.service-kpi-num {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--brand-blue);
    line-height: 1;
    margin-bottom: 6px;
}

.service-kpi-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ── Features Grid (ما تشمله الخدمة) ── */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 26px 20px;
    transition: all var(--trans);
    box-shadow: var(--shadow-xs);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-blue);
    box-shadow: 0 12px 28px rgba(0, 85, 184, 0.1);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: all var(--trans);
}

.feature-card:hover .feature-card-icon {
    background: var(--brand-blue);
    color: #ffffff;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Process Steps (مراحل الخدمة) ── */
.service-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.service-step-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    transition: all var(--trans);
}

.service-step-row:hover {
    border-color: var(--brand-blue-border);
    box-shadow: 0 6px 20px rgba(0, 85, 184, 0.08);
}

.service-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    flex-shrink: 0;
    font-family: var(--font-title);
}

.service-step-content h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 5px;
}

.service-step-content p {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

/* ── Target Audience (لمن هذه الخدمة) ── */
.target-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-900);
    transition: all var(--trans);
}

.target-item:hover {
    border-color: var(--brand-blue);
    background: var(--brand-blue-soft);
}

.target-item i {
    color: var(--brand-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── FAQ Accordion ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--trans);
}

.faq-item.open {
    border-color: var(--brand-blue-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-900);
    gap: 14px;
    user-select: none;
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--brand-blue);
    transition: transform var(--trans);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── Page Two-Column Layout for Service Detail ── */
.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}

.service-featured-banner {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(10, 28, 54, 0.08);
    border: 1px solid var(--border-card);
}

.service-featured-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 90px;
}

.service-sidebar-cta {
    background: linear-gradient(145deg, #0055b8 0%, #003677 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 10px 28px rgba(0, 85, 184, 0.22);
    text-align: center;
}

.service-sidebar-cta i.main-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}

.service-sidebar-cta h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.service-sidebar-cta p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: #ffffff;
    color: var(--brand-blue);
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.9rem;
    font-family: var(--font-title);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all var(--trans);
    margin-bottom: 10px;
}

.service-sidebar-btn:hover {
    background: var(--brand-blue-soft);
    transform: translateY(-2px);
}

.service-sidebar-btn.wa-btn {
    background: #25d366;
    color: #ffffff;
}

.service-sidebar-btn.wa-btn:hover {
    background: #1fbc5a;
}

.service-info-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    box-shadow: var(--shadow-xs);
}

.service-info-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-info-card h4 i {
    color: var(--brand-blue);
}

.service-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
    padding: 7px 0;
    border-bottom: 1px solid var(--bg-body);
}

.service-info-row:last-child {
    border-bottom: none;
}

.service-info-row span {
    color: var(--text-muted);
}

.service-info-row strong {
    color: var(--navy-900);
    font-weight: 800;
}

/* Responsive */
@media (max-width: 960px) {
    .service-detail-layout {
        grid-template-columns: 1fr;
    }
}

/* ── Page CTA Section ── */
.page-cta-section {
    padding: 45px 0 65px;
    background: transparent;
}

.page-cta-box {
    background: linear-gradient(135deg, var(--brand-blue, #0055b8) 0%, #00316e 100%);
    border-radius: 20px;
    padding: 55px 30px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 53, 115, 0.15);
    max-width: 1140px;
    margin: 0 auto;
}

.page-cta-box h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.page-cta-box p {
    font-size: 1.05rem;
    color: #e0efff;
    margin-bottom: 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-whatsapp,
.page-cta-box .cta-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background: #25d366;
    color: #ffffff !important;
    font-size: 1.02rem;
    font-weight: 800;
    font-family: var(--font-title);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
}

.cta-btn-whatsapp:hover,
.page-cta-box .cta-btn-white:hover {
    background: #20bd5a;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.6);
}

.cta-btn-whatsapp i,
.page-cta-box .cta-btn-white i {
    font-size: 1.25rem;
    color: #ffffff !important;
}

/* ==========================================================================
   Modern Category & Service Tabs Navigation Strip
   ========================================================================== */
.service-category-nav-strip,
.sector-tabs-wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.service-category-nav-strip .container,
.sector-tabs-wrapper .container {
    max-width: 1400px !important;
    width: 100% !important;
    overflow: visible !important;
}

.afaq-tabs-nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    overflow: visible;
}

.afaq-tabs-scroll {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding: 8px 16px !important;
    flex-grow: 1 !important;
    width: 100% !important;
    /* clip-path to avoid shadow clipping */
    clip-path: unset !important;
}

.afaq-tabs-scroll::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

@media (min-width: 1024px) {
    .afaq-tabs-scroll.justify-center-lg:not(.is-overflowing) {
        justify-content: center !important;
    }

    /* Scroll buttons allowed to show on desktop too when needed */
}

/* Tab Pills */
.afaq-tab-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 7px 16px !important;
    border-radius: 9999px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    background: #ffffff !important;
    color: #475569 !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    user-select: none !important;
    flex-shrink: 0 !important;
}

.afaq-tab-pill:hover {
    background: #f0f7ff !important;
    color: var(--brand-blue, #0055b8) !important;
    border-color: #93c5fd !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.12) !important;
}

.afaq-tab-pill.is-active,
.afaq-tab-pill.active {
    background: linear-gradient(135deg, #0055b8 0%, #003a82 100%) !important;
    color: #ffffff !important;
    border-color: #0055b8 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.32) !important;
    transform: translateY(-1px) !important;
}

.afaq-tab-pill .tab-pill-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    background: #f1f5f9 !important;
    color: #0055b8 !important;
    font-size: 0.8rem !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0 !important;
}

.afaq-tab-pill:hover .tab-pill-icon {
    background: #dbeafe !important;
    color: #0055b8 !important;
    transform: scale(1.08) !important;
}

.afaq-tab-pill.is-active .tab-pill-icon,
.afaq-tab-pill.active .tab-pill-icon {
    background: rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
}

.afaq-tab-pill .tab-pill-count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2px 8px !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
    transition: all 0.25s ease !important;
}

.afaq-tab-pill:hover .tab-pill-count {
    background: #dbeafe !important;
    color: #0055b8 !important;
}

.afaq-tab-pill.is-active .tab-pill-count,
.afaq-tab-pill.active .tab-pill-count {
    background: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

/* Arrow buttons */
.afaq-tabs-nav-wrapper .afaq-tab-nav-btn {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0055b8;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 5;
    transition: all 0.2s ease;
    padding: 0;
    font-size: 0.8rem;
}

.afaq-tabs-nav-wrapper.has-overflow .afaq-tab-nav-btn {
    display: inline-flex;
}

.afaq-tabs-nav-wrapper .afaq-tab-nav-btn:hover {
    background: #0055b8;
    color: #ffffff;
    border-color: #0055b8;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 85, 184, 0.25);
}

.afaq-tabs-nav-wrapper .afaq-tab-nav-btn.prev-btn {
    right: 4px;
}

.afaq-tabs-nav-wrapper .afaq-tab-nav-btn.next-btn {
    left: 4px;
}

/* Mask gradients */
.afaq-tabs-nav-wrapper::before,
.afaq-tabs-nav-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.afaq-tabs-nav-wrapper::before {
    right: 44px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.afaq-tabs-nav-wrapper::after {
    left: 44px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
}

.afaq-tabs-nav-wrapper.show-mask-right::before {
    opacity: 1;
}

.afaq-tabs-nav-wrapper.show-mask-left::after {
    opacity: 1;
}

@media (max-width: 767px) {
    .afaq-tabs-nav-wrapper.has-overflow {
        padding: 0 !important;
    }

    .afaq-tabs-nav-wrapper .afaq-tab-nav-btn {
        display: none !important;
    }

    .afaq-tabs-nav-wrapper::before {
        right: 0 !important;
    }

    .afaq-tabs-nav-wrapper::after {
        left: 0 !important;
    }

    .afaq-tab-pill {
        padding: 7px 14px !important;
        font-size: 0.84rem !important;
        gap: 6px !important;
    }
}

html[dir="ltr"] .header-content .btn,
html.translated-ltr .header-content .btn,
body.is-ltr .header-content .btn {
    padding: 10px 10px !important;
    font-size: 0.75rem !important;
}



/* ------ UI ENHANCEMENTS v2 - START ------ */