/* =========================================================================
   SMART ENGINE — Widget CSS
   Arabic/RTL, navy + gold palette. Loaded site-wide and inside Elementor
   editor/preview so the site always renders consistently.
   ========================================================================= */

:root {
    --se-primary:            #061543;   /* navy deep */
    --se-primary-glow:       #102e6a;   /* navy mid */
    --se-accent:             #e4ad3c;   /* gold */
    --se-accent-dark:        #d78d00;   /* gold deep */
    --se-accent-light:       #eebc4a;   /* gold light */
    --se-gold-fg:            #061543;   /* text on gold */
    --se-bg:                 #fcfaf4;   /* cream */
    --se-bg-soft:            #f5f2e9;   /* slightly deeper cream */
    --se-card:               #ffffff;
    --se-fg:                 #061543;
    --se-muted:              #e7f0f8;
    --se-muted-fg:           #48566c;
    --se-border:             #d8dfe8;
    --se-destructive:        #d40c1a;

    --se-font:               'Cairo', 'Tajawal', sans-serif;
    --se-font-display:       'Playfair Display', 'Cairo', serif;

    --se-radius:             0.625rem;
    --se-radius-lg:          1rem;
    --se-radius-xl:          1.5rem;
    --se-radius-2xl:         2rem;

    --se-shadow-card:        0 2px 8px -2px rgba(6,21,67,0.08), 0 8px 24px -8px rgba(6,21,67,0.08);
    --se-shadow-elegant:     0 20px 50px -20px rgba(6,21,67,0.25);
    --se-shadow-gold:        0 10px 30px -10px rgba(228,173,60,0.45);

    --se-transition:         all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --se-gradient-hero:      linear-gradient(135deg, #020c34 0%, #102e6a 100%);
    --se-gradient-gold:      linear-gradient(135deg, #eebc4a 0%, #d78d00 100%);
    --se-gradient-soft:      linear-gradient(180deg, #fcfaf4 0%, #f5f2e9 100%);
}

/* -------------------------------------------------------------------------
   Root wrapper — every widget's top-level element gets .se class so we can
   scope styles without leaking into the WP theme.
   ------------------------------------------------------------------------- */
.se {
    font-family: var(--se-font);
    color: var(--se-fg);
    direction: rtl;
    text-align: right;
    box-sizing: border-box;
}
.se *, .se *::before, .se *::after { box-sizing: border-box; }
.se img { max-width: 100%; height: auto; display: block; }
.se a { text-decoration: none; color: inherit; }
.se p { margin: 0; }
.se ul { list-style: none; padding: 0; margin: 0; }

.se-container {
    width: 100%;
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
    .se-container { padding-inline: 2.5rem; }
}

/* Gold gradient text */
.se-gold-text {
    background: var(--se-gradient-gold);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}

.se-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--se-accent);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}
.se-eyebrow .se-eyebrow-line {
    display: inline-block;
    width: 2.5rem;
    height: 1px;
    background: var(--se-accent);
}

/* =========================================================================
   1. HEADER
   ========================================================================= */
.se-header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 50;
    width: 100%;
    background: rgba(6, 21, 67, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    font-family: var(--se-font);
    direction: rtl;
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
/* Scrolled state — switches to cream with dark logo + dark links */
.se-header.is-scrolled {
    background: rgba(252, 250, 244, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(216,223,232,0.6);
}
/* Hide the dark logo by default; show it when scrolled. Inverse for light logo. */
.se .se-header-logo-dark,
.se-header .se-header-logo-dark  { display: none !important; }
.se .se-header-logo-light,
.se-header .se-header-logo-light { display: block !important; }
.se-header.is-scrolled .se-header-logo-dark  { display: block !important; }
.se-header.is-scrolled .se-header-logo-light { display: none !important; }
.se-header-inner {
    max-width: 80rem;
    margin-inline: auto;
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
@media (min-width: 1024px) {
    .se-header-inner { padding: 0 2.5rem; }
}
.se-header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.se-header-logo img,
.se .se-header-logo img {
    height: 3rem !important;
    max-height: 3rem !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain;
}
.se-header-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}
.se-header-nav a {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.90);
    transition: var(--se-transition);
    white-space: nowrap;
}
.se-header-nav a:hover,
.se-header-nav a.active {
    color: var(--se-accent);
    background: rgba(255,255,255,0.10);
}
.se-header.is-scrolled .se-header-nav a {
    color: rgba(6,21,67,0.85);
}
.se-header.is-scrolled .se-header-nav a:hover,
.se-header.is-scrolled .se-header-nav a.active {
    color: var(--se-accent);
    background: var(--se-muted);
}
.se-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.se-header-cta {
    white-space: nowrap;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--se-gradient-gold);
    color: var(--se-gold-fg);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--se-shadow-gold);
    transition: transform 0.3s;
}
.se-header-cta:hover { transform: translateY(-2px); color: var(--se-gold-fg); }
.se-header-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.75rem;
    width: 2.75rem;
    border-radius: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.30);
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.se-header-toggle:hover { background: rgba(255,255,255,0.10); }
.se-header.is-scrolled .se-header-toggle {
    border-color: var(--se-border);
    color: var(--se-primary);
}
.se-header.is-scrolled .se-header-toggle:hover { background: var(--se-muted); }

.se-header-mobile-nav {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    background: rgba(6, 21, 67, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.10);
}
.se-header.is-scrolled .se-header-mobile-nav {
    background: var(--se-bg);
    border-top: 1px solid var(--se-border);
}
.se-header.is-open .se-header-mobile-nav {
    max-height: 80vh;
    opacity: 1;
}
.se-header-mobile-nav nav {
    max-width: 80rem;
    margin-inline: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.se-header-mobile-nav a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    transition: var(--se-transition);
}
.se-header-mobile-nav a:hover,
.se-header-mobile-nav a.active {
    background: rgba(255,255,255,0.10);
    color: var(--se-accent);
}
.se-header.is-scrolled .se-header-mobile-nav a {
    color: var(--se-fg);
}
.se-header.is-scrolled .se-header-mobile-nav a:hover,
.se-header.is-scrolled .se-header-mobile-nav a.active {
    background: var(--se-muted);
    color: var(--se-accent);
}
.se-header-mobile-cta {
    margin-top: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    background: var(--se-gradient-gold);
    color: var(--se-gold-fg);
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--se-shadow-gold);
}

/* Desktop visibility overrides */
@media (min-width: 1024px) {
    .se-header-nav   { display: flex !important; }
    .se-header-cta   { display: inline-flex !important; }
    .se-header-toggle { display: none !important; }
    .se-header-mobile-nav { display: none !important; }
}
@media (max-width: 1023px) {
    .se-header-nav   { display: none !important; }
    .se-header-cta   { display: none !important; }
}

/* =========================================================================
   2. HERO
   ========================================================================= */
.se-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
    text-align: center;
}
.se-hero::before,
.se-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.se-hero::before {
    background: rgba(6,21,67,0.75);
    z-index: 1;
}
.se-hero::after {
    background: linear-gradient(to bottom, rgba(6,21,67,0.60), rgba(6,21,67,0.40), rgba(6,21,67,0.90));
    z-index: 1;
}
.se-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 64rem;
    margin-inline: auto;
    padding: 8rem 1.5rem 5rem;
    width: 100%;
}
.se-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.se-hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--se-accent);
    animation: se-pulse 2s ease-in-out infinite;
}
@keyframes se-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}
.se-hero h1 {
    font-family: var(--se-font);
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
}
.se-hero-title {
    display: block;
    font-size: 3rem;
}
@media (min-width: 768px) { .se-hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .se-hero-title { font-size: 6rem; } }
.se-hero-subtitle {
    display: block;
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: rgba(228,173,60,0.9);
}
@media (min-width: 768px) { .se-hero-subtitle { font-size: 1.5rem; } }
.se-hero-title-suffix {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    line-height: 1.2;
}
@media (min-width: 768px) { .se-hero-title-suffix { font-size: 2rem; } }
@media (min-width: 1024px) { .se-hero-title-suffix { font-size: 2.5rem; } }
.se-hero-desc,
.se .se-hero-desc,
.se-hero p.se-hero-desc {
    margin-top: 2rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.90);
    max-width: 48rem !important;
    text-align: center !important;
    display: block;
}
@media (min-width: 768px) { .se-hero-desc { font-size: 1.5rem; } }
.se-hero-desc .accent { color: var(--se-accent); font-weight: 600; }
.se-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2.5rem;
    justify-content: center;
}
.se-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.se-btn-gold {
    background: var(--se-gradient-gold);
    color: var(--se-gold-fg);
    box-shadow: var(--se-shadow-gold);
}
.se-btn-gold:hover { transform: translateY(-2px); color: var(--se-gold-fg); }
.se-btn-ghost {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.30);
    color: #fff;
}
.se-btn-ghost:hover { background: rgba(255,255,255,0.20); color: #fff; }
.se-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(228,173,60,0.80);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    z-index: 2;
}
@media (max-width: 767px) {
    .se-hero { background-attachment: scroll !important; min-height: 100svh; }
    .se-hero-inner { padding-top: 6rem; padding-bottom: 4rem; }
}

/* =========================================================================
   3. PAGE HERO (smaller inner-page hero)
   ========================================================================= */
.se-page-hero {
    position: relative;
    padding: 10rem 1.5rem 4rem;
    background: var(--se-gradient-hero);
    color: #fff;
    overflow: hidden;
    text-align: center !important;
    direction: rtl;
}
.se .se-page-hero-inner,
.se-page-hero .se-page-hero-inner {
    position: relative;
    max-width: 64rem !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}
.se-page-hero h1,
.se-page-hero .se-page-hero-desc,
.se-page-hero p {
    text-align: center !important;
}
.se-page-hero .se-eyebrow {
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 1.25rem;
}
.se-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.08;
    pointer-events: none;
}
.se-page-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}
@media (min-width: 768px) { .se-page-hero h1 { font-size: 3.75rem; } }
.se-page-hero-desc,
.se .se-page-hero-desc,
.se-page-hero p.se-page-hero-desc {
    margin-top: 1.25rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    max-width: 40rem !important;
    text-align: center !important;
    display: block;
}
@media (min-width: 768px) { .se-page-hero-desc { font-size: 1.125rem; } }

/* =========================================================================
   4. ABOUT
   ========================================================================= */
.se-about {
    padding: 6rem 0;
    background: var(--se-gradient-soft);
}
@media (min-width: 768px) { .se-about { padding: 8rem 0; } }
.se-about-grid {
    max-width: 80rem;
    margin-inline: auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .se-about-grid { grid-template-columns: 1fr 1fr; padding: 0 2.5rem; }
}
.se-about-image-wrap {
    position: relative;
    order: 2;
}
@media (min-width: 1024px) { .se-about-image-wrap { order: 1; } }
.se-about-image-glow {
    position: absolute;
    inset: -1rem;
    background: var(--se-gradient-gold);
    opacity: 0.2;
    filter: blur(30px);
    border-radius: var(--se-radius-2xl);
}
.se-about-image {
    position: relative;
    border-radius: var(--se-radius-2xl);
    overflow: hidden;
    box-shadow: var(--se-shadow-elegant);
    border: 1px solid var(--se-border);
}
.se-about-image img { width: 100%; height: auto; display: block; }
.se-about-badge {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--se-primary);
    color: #fff;
    border-radius: var(--se-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--se-shadow-elegant);
    max-width: 220px;
    display: none;
}
@media (min-width: 768px) { .se-about-badge { display: block; } }
.se-about-badge-num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}
.se-about-badge-label { font-size: 0.875rem; margin-top: 0.5rem; font-weight: 600; }

.se-about-body {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (min-width: 1024px) { .se-about-body { order: 2; } }
.se-about-body h2 {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--se-primary);
    margin: 0;
}
@media (min-width: 768px) { .se-about-body h2 { font-size: 3rem; } }
.se-about-p1 {
    font-size: 1.125rem;
    line-height: 1.9;
    color: rgba(6,21,67,0.85);
}
.se-about-p2 {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--se-muted-fg);
}
.se-about-p2 .accent { font-weight: 700; color: var(--se-primary); }
.se-about-pillars {
    display: grid;
    gap: 1rem;
    padding-top: 1rem;
}
@media (min-width: 640px) {
    .se-about-pillars { grid-template-columns: repeat(3, 1fr); }
}
.se-about-pillar {
    background: var(--se-card);
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius-lg);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--se-shadow-card);
    transition: var(--se-transition);
}
.se-about-pillar:hover {
    box-shadow: var(--se-shadow-elegant);
    transform: translateY(-4px);
}
.se-about-pillar-en {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--se-accent);
    letter-spacing: 0.1em;
}
.se-about-pillar-ar {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--se-primary);
    margin-top: 0.25rem;
}

/* =========================================================================
   5. SECTORS
   ========================================================================= */
.se-sectors {
    position: relative;
    padding: 6rem 0;
    background: var(--se-primary);
    color: #fff;
    overflow: hidden;
}
@media (min-width: 768px) { .se-sectors { padding: 8rem 0; } }
.se-sectors::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.04;
    pointer-events: none;
}
.se-sectors-inner {
    position: relative;
    max-width: 80rem;
    margin-inline: auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) { .se-sectors-inner { padding: 0 2.5rem; } }
.se-sectors-head {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}
.se-sectors-head h2 {
    font-size: 2.25rem;
    font-weight: 900;
    margin: 0 0 1rem;
}
@media (min-width: 768px) { .se-sectors-head h2 { font-size: 3rem; } }
.se-sectors-desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}
.se-sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 768px) { .se-sectors-grid { grid-template-columns: repeat(4, 1fr); } }
.se-sector {
    position: relative;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--se-radius-xl);
    padding: 1.75rem;
    text-align: center;
    transition: var(--se-transition);
}
.se-sector:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(228,173,60,0.50);
    transform: translateY(-6px);
}
.se-sector-icon {
    margin: 0 auto 1.25rem;
    height: 4rem;
    width: 4rem;
    display: grid;
    place-items: center;
    border-radius: var(--se-radius-xl);
    background: var(--se-gradient-gold);
    box-shadow: var(--se-shadow-gold);
    transition: transform 0.3s;
}
.se-sector:hover .se-sector-icon { transform: scale(1.1); }
.se-sector-icon i { font-size: 1.5rem; color: var(--se-gold-fg); }
.se-sector-ar {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.se-sector-en {
    font-size: 0.75rem;
    color: rgba(228,173,60,0.90);
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* =========================================================================
   6. SERVICES
   ========================================================================= */
.se-services {
    padding: 6rem 0;
    background: var(--se-bg);
}
@media (min-width: 768px) { .se-services { padding: 8rem 0; } }
.se-services-inner {
    max-width: 80rem;
    margin-inline: auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) { .se-services-inner { padding: 0 2.5rem; } }
.se-services-head {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}
.se-services-head h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--se-primary);
    margin: 0;
}
@media (min-width: 768px) { .se-services-head h2 { font-size: 3rem; } }
.se-services-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.se-service-row {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .se-service-row { grid-template-columns: 1fr 1fr; }
    .se-service-row.is-reversed > .se-service-image-wrap { order: 2; }
}
.se-service-image-wrap { position: relative; }
.se-service-image-wrap::before {
    content: "";
    position: absolute;
    inset: -0.75rem;
    background: var(--se-gradient-gold);
    opacity: 0.15;
    filter: blur(30px);
    border-radius: var(--se-radius-2xl);
}
.se-service-image {
    position: relative;
    border-radius: var(--se-radius-2xl);
    overflow: hidden;
    box-shadow: var(--se-shadow-elegant);
    border: 1px solid var(--se-border);
}
.se-service-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.se-service-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.se-service-en {
    font-size: 0.75rem;
    color: var(--se-accent);
    font-weight: 700;
    letter-spacing: 0.25em;
}
.se-service-body h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--se-primary);
    margin: 0;
}
@media (min-width: 768px) { .se-service-body h3 { font-size: 2.25rem; } }
.se-service-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--se-muted-fg);
}
.se-service-points {
    display: grid;
    gap: 0.75rem;
    padding-top: 0.5rem;
}
@media (min-width: 640px) {
    .se-service-points { grid-template-columns: 1fr 1fr; }
}
.se-service-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--se-fg);
}
.se-check {
    flex-shrink: 0;
    height: 1.75rem;
    width: 1.75rem;
    display: grid;
    place-items: center;
    border-radius: 9999px;
    background: rgba(228,173,60,0.15);
    color: var(--se-accent);
    font-weight: 900;
}

/* =========================================================================
   7. PAIN POINTS
   ========================================================================= */
.se-pain {
    padding: 6rem 0;
    background: var(--se-gradient-soft);
}
.se-pain-inner {
    max-width: 80rem;
    margin-inline: auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) { .se-pain-inner { padding: 0 2.5rem; } }
.se-pain-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3.5rem;
}
.se-pain-head h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--se-primary);
    margin: 0;
}
@media (min-width: 768px) { .se-pain-head h2 { font-size: 3rem; } }
.se-pain-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .se-pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-pain-grid { grid-template-columns: repeat(4, 1fr); } }
.se-pain-card {
    background: var(--se-card);
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--se-shadow-card);
    transition: var(--se-transition);
}
.se-pain-card:hover {
    box-shadow: var(--se-shadow-elegant);
    transform: translateY(-4px);
}
.se-pain-num {
    font-size: 2.25rem;
    font-weight: 900;
    color: rgba(228,173,60,0.30);
    margin-bottom: 0.75rem;
    line-height: 1;
}
.se-pain-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--se-primary);
    margin: 0 0 0.5rem;
}
.se-pain-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--se-muted-fg);
    margin: 0;
}

/* =========================================================================
   8. METHODOLOGY
   ========================================================================= */
.se-method {
    position: relative;
    padding: 6rem 0;
    background: var(--se-primary);
    color: #fff;
    overflow: hidden;
}
@media (min-width: 768px) { .se-method { padding: 8rem 0; } }
.se-method::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(228,173,60,0.10);
    filter: blur(80px);
    border-radius: 9999px;
    pointer-events: none;
}
.se-method-inner {
    position: relative;
    max-width: 80rem;
    margin-inline: auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) { .se-method-inner { padding: 0 2.5rem; } }
.se-method-head {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}
.se-method-head h2 {
    font-size: 2.25rem;
    font-weight: 900;
    margin: 0;
}
@media (min-width: 768px) { .se-method-head h2 { font-size: 3rem; } }
.se-method-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .se-method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-method-grid { grid-template-columns: repeat(4, 1fr); } }
.se-method-step {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--se-radius-xl);
    padding: 1.75rem;
    transition: var(--se-transition);
}
.se-method-step:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(228,173,60,0.40);
}
.se-method-num {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.25rem;
}
.se-method-en {
    font-size: 0.75rem;
    color: var(--se-accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}
.se-method-ar {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}
.se-method-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* =========================================================================
   9. RESULTS / CASE STUDIES
   ========================================================================= */
.se-results {
    padding: 6rem 0;
    background: var(--se-bg);
}
@media (min-width: 768px) { .se-results { padding: 8rem 0; } }
.se-results-inner {
    max-width: 80rem;
    margin-inline: auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) { .se-results-inner { padding: 0 2.5rem; } }
.se-results-head {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}
.se-results-head h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--se-primary);
    margin: 0;
}
@media (min-width: 768px) { .se-results-head h2 { font-size: 3rem; } }
.se-results-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .se-results-grid { grid-template-columns: repeat(2, 1fr); } }
.se-result {
    position: relative;
    background: var(--se-gradient-hero);
    color: #fff;
    border-radius: var(--se-radius-2xl);
    padding: 2.5rem;
    overflow: hidden;
    box-shadow: var(--se-shadow-elegant);
    transition: transform 0.5s;
}
.se-result:hover { transform: translateY(-8px); }
.se-result::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 16rem; height: 16rem;
    background: rgba(228,173,60,0.15);
    filter: blur(80px);
    border-radius: 9999px;
    transform: translate(25%, -25%);
    pointer-events: none;
}
.se-result-body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.se-result-en {
    font-size: 0.75rem;
    color: var(--se-accent);
    font-weight: 700;
    letter-spacing: 0.25em;
}
.se-result h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0;
}
@media (min-width: 768px) { .se-result h3 { font-size: 1.875rem; } }
.se-result-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.80);
    margin: 0;
}
.se-result-stats {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}
.se-result-stat {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}
.se-result-stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.70);
    font-weight: 600;
}

/* =========================================================================
   10. QUICK CONTACT CARDS
   ========================================================================= */
.se-qcards {
    padding: 4rem 0;
    background: var(--se-bg);
}
.se-qcards-grid {
    max-width: 72rem;
    margin-inline: auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 1024px) { .se-qcards-grid { padding: 0 2.5rem; } }
@media (min-width: 640px) { .se-qcards-grid { grid-template-columns: repeat(3, 1fr); } }
.se-qcard {
    background: var(--se-card);
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--se-shadow-card);
    text-align: center;
    transition: var(--se-transition);
    display: block;
}
.se-qcard:hover {
    box-shadow: var(--se-shadow-elegant);
    transform: translateY(-4px);
}
.se-qcard-icon {
    display: inline-flex;
    height: 3.5rem;
    width: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: var(--se-radius-xl);
    background: var(--se-gradient-gold);
    box-shadow: var(--se-shadow-gold);
    margin-bottom: 1rem;
}
.se-qcard-icon i { font-size: 1.25rem; color: var(--se-gold-fg); }
.se-qcard-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--se-accent);
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}
.se-qcard-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--se-primary);
    word-break: break-word;
}

/* =========================================================================
   11. CONTACT FORM
   ========================================================================= */
.se-contact {
    position: relative;
    padding: 6rem 0;
    background: var(--se-gradient-soft);
    overflow: hidden;
}
@media (min-width: 768px) { .se-contact { padding: 8rem 0; } }
.se-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--se-primary) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.03;
    pointer-events: none;
}
.se-contact-inner {
    position: relative;
    max-width: 64rem;
    margin-inline: auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) { .se-contact-inner { padding: 0 2.5rem; } }
.se-contact-panel {
    background: var(--se-card);
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius-2xl);
    box-shadow: var(--se-shadow-elegant);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .se-contact-panel { grid-template-columns: 2fr 3fr; }
}
.se-contact-info {
    background: var(--se-gradient-hero);
    color: #fff;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}
.se-contact-info-eyebrow {
    font-size: 0.75rem;
    color: var(--se-accent);
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 0.75rem;
}
.se-contact-info h2 {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}
@media (min-width: 768px) { .se-contact-info h2 { font-size: 2.25rem; } }
.se-contact-info-desc {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.80);
}
.se-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}
.se-contact-info-list a { color: inherit; transition: color 0.2s; }
.se-contact-info-list a:hover { color: var(--se-accent); }
.se-contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.se-contact-info-item .bullet { color: var(--se-accent); }
.se-contact-info-item .ltr { direction: ltr; font-weight: 600; }

.se-contact-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.se-contact-form-head { margin-bottom: 0.5rem; }
.se-contact-form-head h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--se-primary);
    margin: 0;
}
.se-contact-form-head p {
    font-size: 0.875rem;
    color: var(--se-muted-fg);
    margin-top: 0.25rem;
}
.se-field { display: block; }
.se-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--se-primary);
    margin-bottom: 0.5rem;
}
.se-field-req { color: var(--se-accent); }
.se-input, .se-textarea, .se-select {
    width: 100%;
    background: var(--se-bg);
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius-lg);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--se-fg);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.se-input:focus, .se-textarea:focus, .se-select:focus {
    outline: none;
    border-color: var(--se-accent);
    box-shadow: 0 0 0 3px rgba(228,173,60,0.20);
}
.se-textarea { resize: vertical; min-height: 8rem; }
.se-form-submit {
    width: 100%;
    white-space: nowrap;
    background: var(--se-gradient-gold);
    color: var(--se-gold-fg);
    font-weight: 800;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--se-shadow-gold);
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.se-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(228,173,60,0.55);
}

/* Form alerts */
.se-form-alert {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--se-radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.5;
}
.se-form-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.se-form-alert-success i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.se-form-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.se-form-alert-error i {
    color: #ef4444;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* =========================================================================
   12. FOOTER
   ========================================================================= */
.se-footer {
    background: var(--se-primary);
    color: #fff;
    padding: 3.5rem 0;
    direction: rtl;
}
.se-footer-inner {
    max-width: 80rem;
    margin-inline: auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .se-footer-inner { padding: 0 2.5rem; } }
@media (min-width: 768px) { .se-footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .se-footer-inner { grid-template-columns: repeat(4, 1fr); } }
.se-footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.se .se-footer-logo,
.se-footer .se-footer-logo {
    height: 4rem !important;
    max-height: 4rem !important;
    max-width: 180px !important;
    width: auto !important;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
    display: block;
}
.se-footer-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--se-accent);
    line-height: 1.4;
}
.se-footer-brand-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.70);
    max-width: 20rem;
}
.se-footer-head {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--se-accent);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}
.se-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.80);
}
.se-footer-links a { transition: color 0.2s; }
.se-footer-links a:hover { color: var(--se-accent); }
.se-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.80);
}
.se-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.se-footer-contact-list i {
    color: var(--se-accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.se-footer-contact-list a { transition: color 0.2s; word-break: break-word; }
.se-footer-contact-list a:hover { color: var(--se-accent); }
.se-footer-contact-list .ltr { direction: ltr; font-weight: 600; }
.se-footer-registry {
    font-size: 0.875rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.80);
}
.se-footer-registry .num { color: var(--se-accent); font-weight: 700; }

.se-footer-bar {
    max-width: 80rem;
    margin-inline: auto;
    padding: 1.5rem 1.5rem 0;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.10);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.60);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}
@media (min-width: 1024px) { .se-footer-bar { padding: 1.5rem 2.5rem 0; } }
.se-footer-motto { letter-spacing: 0.2em; }
.se-agency-link {
    color: var(--se-accent);
    font-weight: 700;
    transition: color 0.2s;
}
.se-agency-link:hover { color: var(--se-accent-light); }

/* =========================================================================
   13. CTA STRIP
   ========================================================================= */
.se-cta {
    padding: 5rem 0;
    background: var(--se-bg);
    text-align: center;
}
.se-cta.is-soft { background: var(--se-gradient-soft); }
.se-cta-inner {
    max-width: 56rem;
    margin-inline: auto;
    padding: 0 1.5rem;
}
@media (min-width: 1024px) { .se-cta-inner { padding: 0 2.5rem; } }
.se-cta h2 {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--se-primary);
    margin: 0;
}
@media (min-width: 768px) { .se-cta h2 { font-size: 2.25rem; } }
.se-cta-desc {
    margin-top: 1rem;
    color: var(--se-muted-fg);
    font-size: 1rem;
}
.se-cta-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.se-btn-solid {
    background: #fff;
    color: var(--se-primary);
    border: 2px solid var(--se-primary);
    padding: 0.6875rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s, color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.se-btn-solid:hover {
    transform: translateY(-2px);
    background: var(--se-primary);
    color: #fff;
}

/* =========================================================================
   14. WHATSAPP FLOATING BUTTON
   ========================================================================= */
.se-whatsapp-fab {
    position: fixed !important;
    bottom: 1.5rem;
    z-index: 9990;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 9999px !important;
    background: #25d366;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.40), 0 4px 10px rgba(0,0,0,0.15);
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
    direction: rtl;
    font-family: var(--se-font);
}
.se-whatsapp-fab.is-left  { left: 1.5rem; right: auto; }
.se-whatsapp-fab.is-right { right: 1.5rem; left: auto; }

.se-whatsapp-fab:hover,
.se-whatsapp-fab:focus-visible {
    transform: translateY(-3px) scale(1.05);
    background: #1ebe5d;
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 6px 14px rgba(0,0,0,0.18);
}

.se-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}
.se-whatsapp-icon i {
    font-size: 1.875rem;
    color: #fff;
    line-height: 1;
}

/* Pulse rings */
.se-whatsapp-fab.is-pulse::before,
.se-whatsapp-fab.is-pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: rgba(37, 211, 102, 0.55);
    animation: se-wa-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
    z-index: -1;
}
.se-whatsapp-fab.is-pulse::after {
    animation-delay: 1.1s;
}
@keyframes se-wa-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.9); opacity: 0; }
}

/* Tooltip */
.se-whatsapp-tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--se-primary);
    color: #fff;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0,0,0,0.20);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-family: var(--se-font);
}
/* Tooltip on the opposite side of the button */
.se-whatsapp-fab.is-left  .se-whatsapp-tooltip { left:  calc(100% + 0.75rem); right: auto; transform: translate(-6px, -50%); }
.se-whatsapp-fab.is-right .se-whatsapp-tooltip { right: calc(100% + 0.75rem); left:  auto; transform: translate(6px,  -50%); }

.se-whatsapp-fab.is-left  .se-whatsapp-tooltip::before,
.se-whatsapp-fab.is-right .se-whatsapp-tooltip::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--se-primary);
    transform: translateY(-50%) rotate(45deg);
}
.se-whatsapp-fab.is-left  .se-whatsapp-tooltip::before { left:  -0.25rem; }
.se-whatsapp-fab.is-right .se-whatsapp-tooltip::before { right: -0.25rem; }

.se-whatsapp-fab:hover .se-whatsapp-tooltip,
.se-whatsapp-fab:focus-visible .se-whatsapp-tooltip {
    opacity: 1;
    pointer-events: auto;
}
.se-whatsapp-fab.is-left:hover  .se-whatsapp-tooltip,
.se-whatsapp-fab.is-left:focus-visible .se-whatsapp-tooltip { transform: translate(0, -50%); }
.se-whatsapp-fab.is-right:hover .se-whatsapp-tooltip,
.se-whatsapp-fab.is-right:focus-visible .se-whatsapp-tooltip { transform: translate(0, -50%); }

/* Responsive visibility helpers */
@media (max-width: 767px) {
    .se-whatsapp-fab.hide-mobile { display: none !important; }
    .se-whatsapp-fab {
        width: 3.25rem;
        height: 3.25rem;
        bottom: 1rem;
    }
    .se-whatsapp-fab.is-left  { left: 1rem; }
    .se-whatsapp-fab.is-right { right: 1rem; }
    .se-whatsapp-icon i { font-size: 1.625rem; }
    /* Hide tooltip on mobile — fingers don't hover */
    .se-whatsapp-tooltip { display: none !important; }
}
@media (min-width: 768px) {
    .se-whatsapp-fab.hide-desktop { display: none !important; }
}
