    /* ===========================================================
       E-SOLUTION EGY — BRAND TOKENS
       =========================================================== */
    :root {
      --midnight: #0E1721;
      --charcoal: #1A2332;
      --charcoal-2: #232E40;
      --gold: #B99A6D;
      --gold-bright: #D4B176;
      --crimson: #A72519;
      --logo-red: #C0291C;
      --white: #FFFFFF;
      --silver: #C8CDD2;
      --silver-dim: #8B939E;
      --bone: #E5E4E3;
      --hairline: rgba(185, 154, 109, 0.18);
      --hairline-soft: rgba(255, 255, 255, 0.06);

      --ff-ar-display: 'Tajawal', 'Cairo', system-ui, sans-serif;
      --ff-ar-body: 'Cairo', 'Tajawal', system-ui, sans-serif;
      --ff-en-display: 'Montserrat', system-ui, sans-serif;
      --ff-en-body: 'Inter', system-ui, sans-serif;

      --container: 1280px;
      --gutter: clamp(20px, 4vw, 56px);

      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--midnight);
      color: var(--white);
      font-family: var(--ff-ar-body);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    [data-lang="en"] body { font-family: var(--ff-en-body); }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    /* Show/hide by language */
    [data-lang="ar"] .en { display: none !important; }
    [data-lang="en"] .ar { display: none !important; }

    /* ===========================================================
       BACKGROUND ATMOSPHERE
       =========================================================== */
    .bg-grid {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image:
        radial-gradient(circle at 20% 10%, rgba(185, 154, 109, 0.08), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(185, 154, 109, 0.06), transparent 45%),
        linear-gradient(to right, var(--hairline-soft) 1px, transparent 1px),
        linear-gradient(to bottom, var(--hairline-soft) 1px, transparent 1px);
      background-size: auto, auto, 80px 80px, 80px 80px;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    }
    .bg-noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      opacity: 0.035;
      background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    }

    /* ===========================================================
       NAVIGATION
       =========================================================== */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(14, 23, 33, 0.7);
      backdrop-filter: blur(20px) saturate(140%);
      -webkit-backdrop-filter: blur(20px) saturate(140%);
      border-bottom: 1px solid var(--hairline);
      transition: padding 0.3s var(--ease);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 0;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
    }
    .logo-mark {
      height: 46px; width: auto;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .nav-logo:hover .logo-mark {
      transform: scale(1.06);
    }
    .nav-logo-text { line-height: 1.1; }
    .nav-logo-text .top {
      font-family: var(--ff-en-display);
      font-weight: 800;
      letter-spacing: 0.12em;
      font-size: 16px;
      color: var(--white);
    }
    .nav-logo-text .sub {
      font-family: var(--ff-en-body);
      font-size: 10px;
      letter-spacing: 0.18em;
      color: var(--gold);
      text-transform: uppercase;
      margin-top: 3px;
    }

    .nav-links {
      display: flex; gap: 32px; align-items: center;
    }
    .nav-links a {
      font-size: 14px;
      color: var(--silver);
      font-weight: 500;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a:hover { color: var(--gold-bright); }
    .nav-links a::after {
      content: ""; position: absolute; bottom: -6px; right: 0;
      height: 1px; width: 0; background: var(--gold);
      transition: width 0.3s var(--ease);
    }
    [data-lang="en"] .nav-links a::after { right: auto; left: 0; }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      display: flex; align-items: center; gap: 14px;
    }
    .lang-toggle {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 14px;
      border: 1px solid var(--hairline);
      border-radius: 999px;
      font-family: var(--ff-en-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--gold);
      transition: all 0.2s;
    }
    .lang-toggle:hover {
      border-color: var(--gold);
      background: rgba(185, 154, 109, 0.08);
    }
    .nav-menu-btn {
      display: none;
      width: 40px; height: 40px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
    }
    .nav-menu-btn span {
      width: 22px; height: 2px;
      background: var(--white);
      transition: 0.3s;
    }

    @media (max-width: 880px) {
      .nav-links { display: none; }
      .nav-menu-btn { display: flex; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; right: 0; left: 0;
        background: rgba(14, 23, 33, 0.98);
        padding: 24px var(--gutter);
        border-bottom: 1px solid var(--hairline);
        gap: 20px;
      }
    }

    /* ===========================================================
       HERO
       =========================================================== */
    .hero {
      position: relative;
      z-index: 2;
      min-height: 100vh;
      display: flex; align-items: center;
      padding-top: 120px; padding-bottom: 80px;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 64px;
      align-items: center;
    }
    @media (max-width: 980px) {
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 7px 16px;
      border: 1px solid var(--hairline);
      border-radius: 999px;
      font-family: var(--ff-en-body);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 12px var(--gold);
    }

    .hero h1 {
      font-family: var(--ff-ar-display);
      font-size: clamp(38px, 5.5vw, 76px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }
    [data-lang="en"] .hero h1 { font-family: var(--ff-en-display); }
    .hero h1 .gold { color: var(--gold-bright); }
    .hero h1 .line {
      display: block;
      opacity: 0;
      transform: translateY(30px);
      animation: rise 0.9s var(--ease) forwards;
    }
    .hero h1 .line:nth-child(1) { animation-delay: 0.1s; }
    .hero h1 .line:nth-child(2) { animation-delay: 0.25s; }
    .hero h1 .line:nth-child(3) { animation-delay: 0.4s; }

    @keyframes rise {
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-lede {
      font-size: 18px;
      color: var(--silver);
      max-width: 540px;
      margin-bottom: 40px;
      line-height: 1.75;
      opacity: 0; transform: translateY(20px);
      animation: rise 0.9s var(--ease) 0.55s forwards;
    }
    .hero-ctas {
      display: flex; gap: 14px; flex-wrap: wrap;
      opacity: 0; transform: translateY(20px);
      animation: rise 0.9s var(--ease) 0.7s forwards;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 28px;
      font-family: var(--ff-en-body);
      font-size: 14px; font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 4px;
      transition: all 0.3s var(--ease);
      position: relative;
      overflow: hidden;
    }
    [data-lang="ar"] .btn { font-family: var(--ff-ar-body); letter-spacing: 0; text-transform: none; font-weight: 700; }

    .btn-primary {
      background: var(--gold);
      color: var(--midnight);
    }
    .btn-primary:hover {
      background: var(--gold-bright);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px -8px rgba(185, 154, 109, 0.5);
    }
    .btn-ghost {
      border: 1px solid var(--hairline);
      color: var(--white);
    }
    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold-bright);
    }
    .btn .arrow { transition: transform 0.3s; }
    .btn:hover .arrow { transform: translateX(4px); }
    [data-lang="ar"] .btn:hover .arrow { transform: translateX(-4px); }

    /* Hero visual side */
    .hero-visual {
      position: relative;
      aspect-ratio: 4 / 5;
      max-height: 600px;
    }
    .hero-card {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--charcoal) 100%);
      border: 1px solid var(--hairline);
      border-radius: 8px;
      padding: 40px;
      overflow: hidden;
    }
    .hero-card::before {
      content: "";
      position: absolute;
      top: -50%; right: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle, rgba(185, 154, 109, 0.12) 0%, transparent 50%);
      animation: pulse 6s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(0.8); opacity: 0.4; }
      50% { transform: scale(1.2); opacity: 0.8; }
    }
    .hero-card-label {
      font-family: var(--ff-en-body);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      position: relative; z-index: 1;
    }
    .hero-card h2 {
      font-family: var(--ff-en-display);
      font-size: 38px; font-weight: 800;
      line-height: 1.1; margin-top: 14px;
      position: relative; z-index: 1;
    }
    [data-lang="ar"] .hero-card h2 { font-family: var(--ff-ar-display); }
    .hero-card .num {
      font-family: var(--ff-en-display);
      font-size: clamp(80px, 12vw, 160px);
      font-weight: 900;
      color: var(--gold-bright);
      line-height: 1;
      letter-spacing: -0.04em;
      position: absolute;
      bottom: 40px; right: 40px;
      z-index: 1;
    }
    [data-lang="en"] .hero-card .num { right: auto; left: 40px; }
    .hero-card .num small {
      font-size: 0.35em;
      vertical-align: top;
      margin-top: 20px;
      display: inline-block;
    }
    .hero-card-meta {
      position: absolute;
      bottom: 40px; left: 40px;
      font-size: 13px;
      color: var(--silver-dim);
      line-height: 1.5;
      z-index: 1;
    }
    [data-lang="en"] .hero-card-meta { left: auto; right: 40px; }

    /* Floating accent */
    .hero-accent {
      position: absolute;
      width: 120px; height: 120px;
      top: -30px; left: -30px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      opacity: 0.3;
    }
    [data-lang="en"] .hero-accent { left: auto; right: -30px; }

    /* ===========================================================
       STATS STRIP
       =========================================================== */
    .stats {
      position: relative; z-index: 2;
      background: var(--charcoal);
      border-top: 1px solid var(--hairline);
      border-bottom: 1px solid var(--hairline);
      padding: 56px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    @media (max-width: 780px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    }
    .stat {
      text-align: center;
      position: relative;
    }
    .stat:not(:last-child)::after {
      content: ""; position: absolute;
      top: 20%; bottom: 20%; left: 0;
      width: 1px; background: var(--hairline);
    }
    [data-lang="en"] .stat:not(:last-child)::after { left: auto; right: 0; }
    @media (max-width: 780px) {
      .stat::after { display: none !important; }
    }
    .stat-num {
      font-family: var(--ff-en-display);
      font-size: clamp(40px, 6vw, 64px);
      font-weight: 900;
      color: var(--gold-bright);
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .stat-label {
      margin-top: 12px;
      font-size: 13px;
      letter-spacing: 0.05em;
      color: var(--silver);
    }

    /* ===========================================================
       SECTION HEADER
       =========================================================== */
    section { position: relative; z-index: 2; padding: 100px 0; }
    @media (max-width: 680px) { section { padding: 72px 0; } }

    .section-head {
      max-width: 760px;
      margin-bottom: 64px;
    }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: var(--ff-en-body);
      font-size: 12px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .section-eyebrow::before {
      content: ""; width: 32px; height: 1px;
      background: var(--gold);
    }
    .section-head h2 {
      font-family: var(--ff-ar-display);
      font-size: clamp(32px, 4.5vw, 56px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    [data-lang="en"] .section-head h2 { font-family: var(--ff-en-display); }
    .section-head h2 .gold { color: var(--gold-bright); }
    .section-head p {
      margin-top: 20px;
      font-size: 17px;
      color: var(--silver);
      line-height: 1.75;
    }

    /* ===========================================================
       ABOUT
       =========================================================== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    @media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

    .about-text p {
      font-size: 17px;
      color: var(--silver);
      line-height: 1.85;
      margin-bottom: 20px;
    }
    .about-text strong { color: var(--white); font-weight: 600; }

    .about-pillars {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 36px;
    }
    .pillar {
      padding: 24px;
      background: var(--charcoal);
      border: 1px solid var(--hairline);
      border-radius: 6px;
      transition: all 0.3s var(--ease);
    }
    .pillar:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .pillar-num {
      font-family: var(--ff-en-display);
      font-size: 13px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }
    .pillar h4 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .pillar p {
      font-size: 13px;
      color: var(--silver-dim);
      line-height: 1.6;
    }

    .about-timeline {
      position: relative;
      padding-right: 32px;
      border-right: 1px solid var(--hairline);
    }
    [data-lang="en"] .about-timeline { padding-right: 0; padding-left: 32px; border-right: 0; border-left: 1px solid var(--hairline); }
    .timeline-item {
      position: relative;
      margin-bottom: 36px;
    }
    .timeline-item::before {
      content: ""; position: absolute;
      right: -38px; top: 8px;
      width: 12px; height: 12px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(185, 154, 109, 0.15);
    }
    [data-lang="en"] .timeline-item::before { right: auto; left: -38px; }
    .timeline-year {
      font-family: var(--ff-en-display);
      font-size: 14px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.1em;
      margin-bottom: 6px;
    }
    .timeline-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
    .timeline-item p { font-size: 14px; color: var(--silver); }

    /* ===========================================================
       DIVISIONS / SERVICES
       =========================================================== */
    .divisions {
      background: linear-gradient(180deg, transparent 0%, var(--charcoal) 100%);
    }
    .divisions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 980px) { .divisions-grid { grid-template-columns: 1fr; } }

    .division-card {
      position: relative;
      padding: 40px 36px;
      background: var(--charcoal);
      border: 1px solid var(--hairline);
      border-radius: 6px;
      overflow: hidden;
      transition: all 0.4s var(--ease);
    }
    .division-card::before {
      content: ""; position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(185, 154, 109, 0.1) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .division-card:hover {
      border-color: var(--gold);
      transform: translateY(-6px);
    }
    .division-card:hover::before { opacity: 1; }

    .division-num {
      font-family: var(--ff-en-display);
      font-size: 64px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      opacity: 0.4;
      margin-bottom: 24px;
    }
    .division-card h3 {
      font-family: var(--ff-ar-display);
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 16px;
      line-height: 1.3;
      position: relative; z-index: 1;
    }
    [data-lang="en"] .division-card h3 { font-family: var(--ff-en-display); }
    .division-card p {
      color: var(--silver);
      font-size: 15px;
      line-height: 1.75;
      position: relative; z-index: 1;
    }
    .division-list {
      list-style: none;
      margin-top: 24px;
      position: relative; z-index: 1;
    }
    .division-list li {
      padding: 10px 0;
      border-top: 1px solid var(--hairline);
      font-size: 14px;
      color: var(--silver);
      display: flex; align-items: center; gap: 12px;
    }
    .division-list li::before {
      content: "✦"; color: var(--gold);
      font-size: 12px;
    }

    /* ===========================================================
       PROJECTS
       =========================================================== */
    .projects-tabs {
      display: flex; gap: 8px;
      margin-bottom: 40px;
      border-bottom: 1px solid var(--hairline);
      flex-wrap: wrap;
    }
    .tab {
      padding: 14px 22px;
      font-size: 14px;
      font-weight: 600;
      color: var(--silver-dim);
      position: relative;
      transition: color 0.2s;
    }
    .tab:hover { color: var(--silver); }
    .tab.active { color: var(--gold-bright); }
    .tab.active::after {
      content: ""; position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 2px; background: var(--gold);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 980px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 620px) { .projects-grid { grid-template-columns: 1fr; } }

    .project {
      position: relative;
      aspect-ratio: 4 / 5;
      border-radius: 6px;
      overflow: hidden;
      background: var(--charcoal);
      border: 1px solid var(--hairline);
      cursor: pointer;
      transition: all 0.4s var(--ease);
    }
    .project:hover {
      transform: translateY(-6px);
      border-color: var(--gold);
    }
    .project-visual {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--midnight) 100%);
      overflow: hidden;
    }
    .project-visual::before {
      content: ""; position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 30% 20%, rgba(185, 154, 109, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(167, 37, 25, 0.1) 0%, transparent 50%);
    }
    .project-glyph {
      position: absolute;
      top: 24px; right: 24px;
      font-family: var(--ff-en-display);
      font-size: 80px;
      font-weight: 900;
      color: var(--gold);
      opacity: 0.15;
      line-height: 1;
    }
    [data-lang="en"] .project-glyph { right: auto; left: 24px; }
    .project-tag {
      position: absolute;
      top: 24px; left: 24px;
      padding: 6px 12px;
      background: rgba(14, 23, 33, 0.7);
      backdrop-filter: blur(8px);
      border: 1px solid var(--hairline);
      border-radius: 999px;
      font-family: var(--ff-en-body);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }
    [data-lang="en"] .project-tag { left: auto; right: 24px; }
    .project-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px;
      background: linear-gradient(to top, var(--midnight) 0%, rgba(14, 23, 33, 0.6) 70%, transparent 100%);
    }
    .project-location {
      font-family: var(--ff-en-body);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .project h3 {
      font-family: var(--ff-ar-display);
      font-size: 22px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 10px;
    }
    [data-lang="en"] .project h3 { font-family: var(--ff-en-display); }
    .project-desc {
      font-size: 13px;
      color: var(--silver);
      line-height: 1.55;
    }

    /* Available projects layout */
    .available-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 24px;
    }
    .available-card {
      padding: 32px;
      background: var(--charcoal);
      border: 1px solid var(--hairline);
      border-radius: 6px;
      transition: all 0.3s var(--ease);
    }
    .available-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .available-status {
      display: inline-block;
      padding: 5px 12px;
      background: rgba(185, 154, 109, 0.12);
      border: 1px solid var(--gold);
      border-radius: 999px;
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--gold-bright);
      margin-bottom: 18px;
    }
    .available-card h3 { font-size: 22px; margin-bottom: 10px; font-weight: 800; }
    .available-card .loc { font-size: 13px; color: var(--silver-dim); margin-bottom: 16px; }
    .available-card p { font-size: 14px; color: var(--silver); line-height: 1.7; }

    .placeholder-note {
      grid-column: 1 / -1;
      padding: 40px;
      border: 2px dashed var(--hairline);
      border-radius: 8px;
      text-align: center;
      color: var(--silver-dim);
      font-size: 14px;
    }
    .placeholder-note strong { color: var(--gold); }

    /* ===========================================================
       WHY US — quote band
       =========================================================== */
    .why-band {
      background: var(--charcoal);
      padding: 80px 0;
      border-top: 1px solid var(--hairline);
      border-bottom: 1px solid var(--hairline);
      position: relative; overflow: hidden;
    }
    .why-band::before {
      content: ""; position: absolute;
      top: -50%; right: -10%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(185, 154, 109, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .why-quote {
      max-width: 900px; margin: 0 auto;
      text-align: center;
      position: relative;
    }
    .why-quote .mark {
      font-family: var(--ff-en-display);
      font-size: 120px;
      color: var(--gold);
      opacity: 0.3;
      line-height: 1;
      margin-bottom: -30px;
    }
    .why-quote h3 {
      font-family: var(--ff-ar-display);
      font-size: clamp(24px, 3.5vw, 38px);
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: 24px;
    }
    [data-lang="en"] .why-quote h3 { font-family: var(--ff-en-display); }
    .why-quote .sig {
      font-family: var(--ff-en-body);
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ===========================================================
       CONTACT
       =========================================================== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    @media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

    .contact-info {
      display: flex; flex-direction: column; gap: 24px;
    }
    .contact-item {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 24px;
      background: var(--charcoal);
      border: 1px solid var(--hairline);
      border-radius: 6px;
      transition: all 0.3s;
    }
    .contact-item:hover { border-color: var(--gold); }
    .contact-icon {
      width: 44px; height: 44px;
      flex-shrink: 0;
      background: rgba(185, 154, 109, 0.12);
      border: 1px solid var(--gold);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
    }
    .contact-label {
      font-size: 12px;
      color: var(--silver-dim);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .contact-value {
      font-size: 16px;
      color: var(--white);
      font-weight: 500;
      line-height: 1.5;
    }
    .contact-value a:hover { color: var(--gold-bright); }

    .contact-form {
      padding: 36px;
      background: var(--charcoal);
      border: 1px solid var(--hairline);
      border-radius: 6px;
    }
    .form-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin-bottom: 16px;
    }
    @media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
    .form-field { margin-bottom: 16px; }
    .form-field label {
      display: block;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--silver-dim);
      margin-bottom: 8px;
    }
    .form-field input,
    .form-field textarea,
    .form-field select {
      width: 100%;
      padding: 14px 16px;
      background: var(--midnight);
      border: 1px solid var(--hairline);
      border-radius: 4px;
      color: var(--white);
      font-family: inherit;
      font-size: 15px;
      transition: border-color 0.2s;
    }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      outline: none; border-color: var(--gold);
    }
    .form-field textarea { resize: vertical; min-height: 120px; }

    /* ===========================================================
       FOOTER
       =========================================================== */
    footer {
      position: relative; z-index: 2;
      padding: 60px 0 32px;
      border-top: 1px solid var(--hairline);
      background: var(--midnight);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    @media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
    @media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }

    .footer-brand img {
      height: 56px;
      margin-bottom: 20px;
      border-radius: 6px;
    }
    .footer-brand p {
      font-size: 14px;
      color: var(--silver);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .footer-parent {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border: 1px solid var(--gold);
      border-radius: 4px;
      font-size: 13px;
      color: var(--gold);
      transition: all 0.3s;
    }
    .footer-parent:hover {
      background: rgba(185, 154, 109, 0.1);
      color: var(--gold-bright);
    }

    .footer-col h5 {
      font-size: 13px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      font-weight: 700;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 12px; }
    .footer-col a {
      font-size: 14px;
      color: var(--silver);
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold-bright); }

    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 28px;
      border-top: 1px solid var(--hairline);
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-bottom p {
      font-size: 13px;
      color: var(--silver-dim);
    }
    .social {
      display: flex; gap: 12px;
    }
    .social a {
      width: 38px; height: 38px;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--hairline);
      border-radius: 4px;
      color: var(--silver);
      transition: all 0.2s;
    }
    .social a:hover {
      border-color: var(--gold);
      color: var(--gold-bright);
    }

    /* ===========================================================
       PLACEHOLDER STYLING (so user spots them)
       =========================================================== */
    .ph {
      display: inline-block;
      padding: 2px 8px;
      background: rgba(167, 37, 25, 0.18);
      border: 1px dashed var(--crimson);
      border-radius: 3px;
      color: #FFB4AB;
      font-family: var(--ff-en-body);
      font-size: 0.85em;
      font-weight: 500;
    }

    /* ===========================================================
       REVEAL ON SCROLL
       =========================================================== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s var(--ease);
    }
    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

/* ===========================================================
   ADDITIONAL COMPONENTS — Project pages, News, Available filter
   =========================================================== */

/* Breadcrumbs */
.crumbs {
  font-family: var(--ff-en-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.crumbs a { color: var(--gold); transition: color 0.2s; }
.crumbs a:hover { color: var(--gold-bright); }
.crumbs .sep { opacity: 0.5; }

/* Project hero (for detail pages) */
.proj-hero {
  position: relative; z-index: 2;
  padding-top: 140px; padding-bottom: 60px;
}
.proj-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .proj-hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.proj-tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.proj-tag-row .tag-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: var(--ff-en-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.proj-tag-row .tag-pill.solid { background: var(--gold); color: var(--midnight); border-color: var(--gold); }

.proj-hero h1 {
  font-family: var(--ff-ar-display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
[data-lang="en"] .proj-hero h1 { font-family: var(--ff-en-display); }
.proj-hero .lede {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

.proj-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--midnight) 100%);
  border: 1px solid var(--hairline);
}
.proj-image::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(185, 154, 109, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(167, 37, 25, 0.08) 0%, transparent 50%);
}
.proj-image-glyph {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-en-display);
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 900;
  color: var(--gold);
  opacity: 0.18;
  letter-spacing: -0.04em;
}
.proj-image-meta {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 1;
}
[data-lang="en"] .proj-image-meta { left: auto; right: 24px; }
.proj-image-meta .place {
  font-family: var(--ff-en-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Project specs grid */
.specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin: 0;
  background: var(--charcoal);
}
@media (max-width: 780px) { .specs { grid-template-columns: repeat(2, 1fr); } }
.spec {
  padding: 32px 24px;
  position: relative;
}
.spec:not(:last-child) {
  border-inline-end: 1px solid var(--hairline);
}
@media (max-width: 780px) {
  .spec:nth-child(2) { border-inline-end: 0; }
  .spec:nth-child(1), .spec:nth-child(2) { border-bottom: 1px solid var(--hairline); }
}
.spec-label {
  font-family: var(--ff-en-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 10px;
}
.spec-value {
  font-family: var(--ff-en-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.2;
}
[data-lang="ar"] .spec-value:not(.keep-en) { font-family: var(--ff-ar-display); }

/* Project body content */
.proj-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  padding: 80px 0;
}
@media (max-width: 980px) { .proj-body { grid-template-columns: 1fr; gap: 48px; padding: 56px 0; } }

.proj-narrative h2 {
  font-family: var(--ff-ar-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.25;
}
[data-lang="en"] .proj-narrative h2 { font-family: var(--ff-en-display); }
.proj-narrative h2 .gold { color: var(--gold-bright); }
.proj-narrative p {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.85;
  margin-bottom: 18px;
}
.proj-narrative strong { color: var(--white); font-weight: 600; }
.proj-narrative .pull {
  margin: 32px 0;
  padding: 24px 28px;
  border-inline-start: 3px solid var(--gold);
  background: var(--charcoal);
  font-size: 18px;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
}

.proj-side {
  position: sticky;
  top: 100px;
  align-self: start;
}
.proj-side-card {
  padding: 28px;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  margin-bottom: 16px;
}
.proj-side-card h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}
.proj-side-card ul { list-style: none; }
.proj-side-card li {
  padding: 10px 0;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--silver);
  display: flex; align-items: flex-start; gap: 10px;
}
.proj-side-card li:first-child { border-top: 0; }
.proj-side-card li::before {
  content: "▸"; color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 60px 0;
}
@media (max-width: 780px) { .gallery { grid-template-columns: 1fr 1fr; } }
.gallery-item {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--midnight) 100%);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.gallery-item::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(185, 154, 109, 0.18) 0%, transparent 50%);
}
.gallery-item.tall { aspect-ratio: 4 / 5; grid-row: span 2; }
@media (max-width: 780px) { .gallery-item.tall { grid-row: auto; aspect-ratio: 4 / 3; } }
.gallery-note {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--ff-en-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 1;
}

/* Map embed */
.map-wrap {
  margin-top: 28px;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(0.92) hue-rotate(180deg) brightness(1.05) contrast(0.95);
}
.map-wrap::after {
  content: ""; position: absolute; inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(14, 23, 33, 0.4);
}

/* Filter bar (Available units) */
.filter-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px;
  padding: 24px;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  margin-bottom: 32px;
}
@media (max-width: 880px) {
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .filter-bar .filter-reset { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .filter-bar { grid-template-columns: 1fr; }
}
.filter-field { display: flex; flex-direction: column; gap: 6px; }
.filter-field label {
  font-family: var(--ff-en-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.filter-field select,
.filter-field input {
  padding: 12px 14px;
  background: var(--midnight);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
}
.filter-field select:focus, .filter-field input:focus {
  outline: none; border-color: var(--gold);
}
.filter-reset {
  align-self: flex-end;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-reset:hover { border-color: var(--gold); background: rgba(185, 154, 109, 0.08); }

.filter-count {
  font-size: 13px;
  color: var(--silver-dim);
  margin-bottom: 24px;
}
.filter-count strong { color: var(--gold-bright); }

/* News cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.news-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.news-cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, var(--midnight) 100%);
  position: relative;
  overflow: hidden;
}
.news-cover::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(185, 154, 109, 0.2) 0%, transparent 50%);
}
.news-cat {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 10px;
  background: rgba(14, 23, 33, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: var(--ff-en-body);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
[data-lang="en"] .news-cat { right: auto; left: 16px; }
.news-body { padding: 24px 24px 28px; }
.news-date {
  font-family: var(--ff-en-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 12px;
}
.news-card h3 {
  font-family: var(--ff-ar-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}
[data-lang="en"] .news-card h3 { font-family: var(--ff-en-display); }
.news-card p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.65;
}

/* Featured news (first item large) */
.news-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  padding: 32px;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 8px;
}
@media (max-width: 880px) { .news-featured { grid-template-columns: 1fr; gap: 24px; padding: 24px; } }
.news-featured .news-cover {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}
.news-featured h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.news-featured p { font-size: 15px; line-height: 1.75; margin-bottom: 20px; }
.news-featured-body { display: flex; flex-direction: column; justify-content: center; }

/* Related projects band */
.related {
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 780px) { .related-grid { grid-template-columns: 1fr; } }


/* ===========================================================
   IMAGE-AWARE PROJECT CARDS
   When data-image attribute is present, the gradient stays as
   a fallback and the image shows above it (cover, centered).
   =========================================================== */
.project[data-image] .project-visual {
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
}
.project[data-image] .project-visual::before {
  background: linear-gradient(to top, rgba(14, 23, 33, 0.75) 0%, rgba(14, 23, 33, 0.2) 50%, transparent 100%);
}
.project[data-image] .project-glyph { display: none; }

/* Hero image on project detail pages */
.proj-image[data-image] {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}
.proj-image[data-image]::before {
  background: linear-gradient(135deg, rgba(14, 23, 33, 0.45) 0%, rgba(14, 23, 33, 0.7) 100%);
}
.proj-image[data-image] .proj-image-glyph { display: none; }

/* Gallery with images */
.gallery-item[data-image] {
  background-image: var(--gallery-image);
  background-size: cover;
  background-position: center;
}
.gallery-item[data-image]::before {
  background: linear-gradient(to top, rgba(14, 23, 33, 0.6) 0%, transparent 50%);
}

/* ===========================================================
   WIDGETS: WhatsApp Float + Chatbot
   =========================================================== */

/* Floating WhatsApp button */
#floating-wa {
  position: fixed;
  bottom: 24px;
  z-index: 9998;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: wa-pulse 2.4s infinite;
}
[dir="rtl"] #floating-wa { left: 24px; }
[dir="ltr"] #floating-wa { right: 24px; }

#floating-wa svg { width: 32px; height: 32px; }
#floating-wa:hover { transform: scale(1.08); animation: none; }

@keyframes wa-pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Chatbot toggle */
#esoln-chatbot-toggle {
  position: fixed;
  bottom: 100px;
  z-index: 9998;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--midnight);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(185, 154, 109, 0.4);
  transition: transform 0.2s;
}
[dir="rtl"] #esoln-chatbot-toggle { left: 24px; }
[dir="ltr"] #esoln-chatbot-toggle { right: 24px; }

#esoln-chatbot-toggle:hover { transform: scale(1.08); }
#esoln-chatbot-toggle svg { width: 28px; height: 28px; }

.bubble-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: #25D366;
  border: 2px solid var(--midnight);
  border-radius: 50%;
}
[dir="ltr"] .bubble-dot { right: auto; left: 8px; }

#esoln-chatbot-toggle.cb-open { transform: rotate(45deg); }

/* Chatbot window */
#esoln-chatbot {
  position: fixed;
  bottom: 100px;
  z-index: 9999;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 140px);
  background: var(--midnight);
  border: 1px solid rgba(185, 154, 109, 0.3);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.25s, transform 0.25s;
}
[dir="rtl"] #esoln-chatbot { left: 24px; }
[dir="ltr"] #esoln-chatbot { right: 24px; }

#esoln-chatbot.cb-hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

@media (max-width: 480px) {
  #esoln-chatbot {
    left: 12px !important;
    right: 12px !important;
    width: auto;
    bottom: 84px;
    height: calc(100vh - 120px);
  }
}

.cb-header {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--midnight) 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(185, 154, 109, 0.2);
}

.cb-title {
  font-family: 'Cairo', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.cb-status {
  font-size: 12px;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cb-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.cb-close {
  background: transparent;
  border: none;
  color: var(--silver);
  font-size: 28px;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
}
.cb-close:hover { color: var(--gold); }

.cb-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--midnight);
}

.cb-msg {
  display: flex;
  max-width: 85%;
}

.cb-msg-bot { align-self: flex-start; }
.cb-msg-user { align-self: flex-end; }

.cb-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  font-family: 'Cairo', 'Inter', sans-serif;
}

.cb-msg-bot .cb-bubble {
  background: var(--charcoal);
  color: #fff;
  border: 1px solid rgba(185, 154, 109, 0.2);
}

.cb-msg-user .cb-bubble {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--midnight);
  font-weight: 600;
}

.cb-quick-replies {
  padding: 0 16px 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cb-qr-btn {
  background: transparent;
  border: 1px solid rgba(185, 154, 109, 0.4);
  color: var(--gold-bright);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.cb-qr-btn:hover {
  background: rgba(185, 154, 109, 0.15);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.cb-input-bar {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(185, 154, 109, 0.2);
  background: var(--charcoal);
}

#cb-input {
  flex: 1;
  background: var(--midnight);
  border: 1px solid rgba(185, 154, 109, 0.2);
  color: #fff;
  padding: 10px 14px;
  border-radius: 20px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  outline: none;
}

#cb-input:focus { border-color: var(--gold); }

.cb-input-bar button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--midnight);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-input-bar button svg { width: 18px; height: 18px; }

[dir="ltr"] .cb-input-bar button svg { transform: scaleX(1); }
[dir="rtl"] .cb-input-bar button svg { transform: scaleX(-1); }

/* ===========================================================
   LEAD CAPTURE FORMS
   =========================================================== */
.lead-form {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--midnight) 100%);
  border: 1px solid rgba(185, 154, 109, 0.25);
  border-radius: 16px;
  padding: 32px;
  max-width: 560px;
  margin: 0 auto;
}

.lead-form-header {
  text-align: center;
  margin-bottom: 24px;
}

.lead-form-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 8px;
  font-family: 'Cairo', 'Montserrat', sans-serif;
}

.lead-form-sub {
  font-size: 14px;
  color: var(--silver);
}

.lead-form .field {
  margin-bottom: 16px;
}

.lead-form label {
  display: block;
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 6px;
  font-weight: 500;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  background: var(--midnight);
  border: 1px solid rgba(185, 154, 109, 0.25);
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: 'Cairo', 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
}

.lead-form textarea { min-height: 90px; resize: vertical; }

.lead-form button.submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--midnight);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Cairo', 'Montserrat', sans-serif;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lead-form button.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(185, 154, 109, 0.35);
}

.lead-form button.submit svg { width: 20px; height: 20px; }

.form-success {
  display: none;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid #25D366;
  color: #25D366;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
}

/* ===========================================================
   TANTA / DELTA SECTION
   =========================================================== */
.tanta-section {
  background: linear-gradient(180deg, var(--midnight) 0%, var(--charcoal) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tanta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.tanta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185, 154, 109, 0.12);
  border: 1px solid rgba(185, 154, 109, 0.4);
  color: var(--gold-bright);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.tanta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.tanta-title .gold { color: var(--gold-bright); }

.tanta-lede {
  font-size: 17px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 32px;
  max-width: 720px;
}

.tanta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.tanta-card {
  background: var(--charcoal);
  border: 1px solid rgba(185, 154, 109, 0.2);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.25s, border-color 0.25s;
}

.tanta-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.tanta-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(185, 154, 109, 0.2) 0%, rgba(185, 154, 109, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin-bottom: 14px;
  font-size: 22px;
}

.tanta-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 6px;
}

.tanta-card-text {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}

.tanta-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* TULIP 2 specific hero band */
.tulip-banner {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--charcoal) 50%, var(--midnight) 100%);
  border: 1px solid rgba(185, 154, 109, 0.3);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .tulip-banner {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

.tulip-banner::after {
  content: 'TULIP 2';
  position: absolute;
  font-size: 180px;
  font-weight: 900;
  color: rgba(185, 154, 109, 0.04);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -8px;
  top: 50%;
  transform: translateY(-50%);
}
[dir="rtl"] .tulip-banner::after { right: -20px; }
[dir="ltr"] .tulip-banner::after { left: -20px; }

.tulip-eyebrow {
  display: inline-block;
  background: rgba(185, 154, 109, 0.15);
  color: var(--gold-bright);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.tulip-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.tulip-sub {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.tulip-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.tulip-spec {
  background: rgba(14, 23, 33, 0.6);
  border: 1px solid rgba(185, 154, 109, 0.2);
  border-radius: 10px;
  padding: 14px;
}

.tulip-spec-label {
  font-size: 11px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.tulip-spec-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-bright);
  font-family: 'Montserrat', sans-serif;
}

.tulip-visual {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(185, 154, 109, 0.1) 0%, rgba(185, 154, 109, 0.02) 100%);
  border: 1px solid rgba(185, 154, 109, 0.2);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tulip-visual-icon {
  font-size: 64px;
  margin-bottom: 12px;
}

.tulip-visual-text {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.tulip-visual-sub {
  color: var(--silver);
  font-size: 13px;
}

/* ===========================================================
   NEWS ARTICLE PAGES
   =========================================================== */

.article-page { padding-bottom: 80px; }

.article-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-cat {
  background: rgba(185, 154, 109, 0.15);
  border: 1px solid rgba(185, 154, 109, 0.4);
  color: var(--gold-bright);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.article-date {
  font-size: 14px;
  color: var(--silver);
}

.article-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Cairo', 'Montserrat', sans-serif;
}

.article-lede {
  font-size: 18px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 24px;
  font-weight: 400;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(185, 154, 109, 0.2);
  border-bottom: 1px solid rgba(185, 154, 109, 0.2);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--midnight);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}

.article-author strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}

.article-author small {
  font-size: 13px;
  color: var(--silver);
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 24px;
}

.article-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--midnight) 100%);
  border: 1px solid rgba(185, 154, 109, 0.25);
  border-radius: 14px;
  padding: 60px 32px;
  text-align: center;
  margin-bottom: 40px;
}

.article-hero-label {
  margin-top: 14px;
  font-size: 14px;
  color: var(--gold-bright);
  font-weight: 600;
}

.article-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--gold-bright);
  margin: 36px 0 16px;
  font-family: 'Cairo', 'Montserrat', sans-serif;
  line-height: 1.3;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--silver);
  margin-bottom: 18px;
}

.article-body p strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.article-body a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: rgba(185, 154, 109, 0.4);
  text-underline-offset: 3px;
}
.article-body a:hover {
  text-decoration-color: var(--gold);
}

.article-quote {
  background: linear-gradient(90deg, rgba(185, 154, 109, 0.1) 0%, transparent 100%);
  border-right: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 18px;
  font-style: italic;
  color: #fff;
  line-height: 1.7;
  border-radius: 8px;
}

[dir="ltr"] .article-quote {
  border-right: none;
  border-left: 4px solid var(--gold);
}

.article-list {
  margin: 16px 0 24px;
  padding-right: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding-right: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--silver);
}

.article-list li::before {
  content: '◆';
  position: absolute;
  right: 0;
  top: 4px;
  color: var(--gold);
  font-size: 12px;
}

[dir="ltr"] .article-list li {
  padding-right: 0;
  padding-left: 28px;
}
[dir="ltr"] .article-list li::before {
  right: auto;
  left: 0;
}

.article-list strong {
  color: var(--gold-bright);
}

.article-cta {
  background: linear-gradient(135deg, rgba(185, 154, 109, 0.15) 0%, rgba(185, 154, 109, 0.05) 100%);
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 32px;
  margin: 48px 0 24px;
  text-align: center;
}

.article-cta h3 {
  color: var(--gold-bright);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
}

.article-cta p {
  color: var(--silver);
  font-size: 15px;
  margin-bottom: 20px;
}

/* News card links */
.news-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card-link:hover .news-card {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.news-card {
  transition: transform 0.25s, border-color 0.25s;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--silver);
  padding: 12px 0;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--gold-bright);
}

.breadcrumbs span:not(:has(a)) {
  color: var(--gold);
}

/* ===========================================================
   VIDEOS PAGE
   =========================================================== */

/* Featured video block */
.featured-video-wrap {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--midnight) 100%);
  border: 1px solid rgba(185, 154, 109, 0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.fb-video-embed {
  position: relative;
  background: #000;
  overflow: hidden;
}

.featured-video-wrap .fb-video-embed {
  padding-top: 56.25%; /* 16:9 aspect */
  height: 0;
}

.featured-video-wrap .fb-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.featured-video-info {
  padding: 28px 32px;
}

.featured-video-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185, 154, 109, 0.15);
  border: 1px solid rgba(185, 154, 109, 0.4);
  color: var(--gold-bright);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.featured-video-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: 'Cairo', 'Montserrat', sans-serif;
}

.featured-video-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 20px;
}

.featured-video-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Category filter buttons */
.video-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.vcat-btn {
  background: transparent;
  border: 1px solid rgba(185, 154, 109, 0.35);
  color: var(--silver);
  padding: 9px 18px;
  border-radius: 22px;
  font-size: 14px;
  font-family: 'Cairo', 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vcat-btn:hover {
  background: rgba(185, 154, 109, 0.1);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.vcat-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--midnight);
  border-color: var(--gold-bright);
  font-weight: 700;
}

/* Videos grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--charcoal);
  border: 1px solid rgba(185, 154, 109, 0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  background: #000;
  overflow: hidden;
}

.video-thumb iframe {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* Placeholder thumbnails */
.video-thumb-placeholder {
  background: linear-gradient(135deg, rgba(185,154,109,0.08), rgba(14,23,33,0.6));
  border-bottom: 1px dashed rgba(185, 154, 109, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56.25%;
}

.placeholder-icon {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  opacity: 0.5;
}

.placeholder-label {
  position: absolute;
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 0 12px;
  width: 100%;
}

.video-placeholder {
  opacity: 0.7;
  border-style: dashed;
}

.video-placeholder:hover {
  opacity: 1;
}

/* Video info */
.video-info {
  padding: 18px 20px 22px;
}

.video-cat {
  display: inline-block;
  background: rgba(185, 154, 109, 0.12);
  color: var(--gold-bright);
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.video-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
  font-family: 'Cairo', 'Montserrat', sans-serif;
}

.video-info p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
  margin: 0;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .featured-video-info { padding: 20px; }
  .videos-grid { grid-template-columns: 1fr; }
  .video-categories { gap: 6px; }
  .vcat-btn { padding: 7px 14px; font-size: 13px; }
}

/* ===========================================================
   LOCAL VIDEO PLAYER STYLES
   =========================================================== */

.local-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

.local-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-video-thumb {
  position: relative;
  background: #000;
}

.local-video-thumb video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom video controls styling */
video::-webkit-media-controls-panel {
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.8));
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-mute-button {
  filter: hue-rotate(180deg) brightness(1.2);
}

/* Hover effect on video cards */
.video-card video {
  transition: transform 0.4s ease;
}

.video-card:hover video {
  transform: scale(1.02);
}

/* ===========================================================
   CITY TABS & COMING SOON (Real Estate Section)
   =========================================================== */

.city-tab-btn {
  background: transparent;
  border: 1px solid rgba(185, 154, 109, 0.35);
  color: var(--silver);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-family: 'Cairo', 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.city-tab-btn:hover {
  background: rgba(185, 154, 109, 0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.city-tab-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--midnight);
  border-color: var(--gold-bright);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(185, 154, 109, 0.3);
}

.city-content {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cairo Coming Soon block */
.cairo-coming-soon {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--charcoal) 50%, var(--midnight) 100%);
  border: 1px dashed rgba(185, 154, 109, 0.4);
  border-radius: 20px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .cairo-coming-soon { padding: 40px 24px; }
}

.cairo-coming-soon::before {
  content: 'CAIRO';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 220px;
  color: rgba(185, 154, 109, 0.04);
  letter-spacing: -10px;
  z-index: 0;
}
[dir="rtl"] .cairo-coming-soon::before { right: -30px; }
[dir="ltr"] .cairo-coming-soon::before { left: -30px; }

.coming-soon-icon {
  font-size: 64px;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.coming-soon-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-family: 'Cairo', 'Montserrat', sans-serif;
}

.coming-soon-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: var(--silver);
  margin: 0 auto 32px;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

/* Notify-me box */
.notify-box {
  background: linear-gradient(135deg, rgba(185, 154, 109, 0.15) 0%, rgba(185, 154, 109, 0.03) 100%);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 28px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.notify-box h4 {
  color: var(--gold-bright);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  font-family: 'Cairo', 'Montserrat', sans-serif;
}

.notify-box p {
  color: var(--silver);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

.notify-box input:focus {
  border-color: var(--gold) !important;
}


/* ===========================================================
   HERO ENHANCED
   =========================================================== */
.hero-enhanced {
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.28;
}

/* When no image is set, show an elegant gradient instead */
.hero-bg-image:not([style*="url"]) {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(185,154,109,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(167,37,25,0.12) 0%, transparent 50%),
    linear-gradient(135deg, var(--midnight) 0%, var(--charcoal) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,23,33,0.55) 0%, rgba(14,23,33,0.82) 100%);
  z-index: 1;
}

.hero-enhanced .hero-grid {
  position: relative;
  z-index: 2;
}

/* Pulse dot in eyebrow */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  margin-left: 8px;
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}

/* Trust badges */
.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(185,154,109,0.25);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s, border-color 0.25s;
}
.hero-badge:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.hero-badge-icon { font-size: 26px; }
.hero-badge-text { display: flex; flex-direction: column; line-height: 1.3; }
.hero-badge-text strong {
  color: var(--gold-bright);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}
.hero-badge-text span { font-size: 11px; color: var(--silver); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.7;
}
.scroll-arrow {
  font-size: 20px;
  color: var(--gold);
  animation: bounce 2s infinite;
  margin-top: 4px;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

@media (max-width: 768px) {
  .scroll-hint { display: none; }
  .hero-badge { padding: 8px 12px; }
  .hero-badge-icon { font-size: 22px; }
}

/* ===========================================================
   TRUST STRIP (animated marquee)
   =========================================================== */
.trust-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(185,154,109,0.15);
  border-bottom: 1px solid rgba(185,154,109,0.15);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}
.trust-strip::before,
.trust-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.trust-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--charcoal), transparent);
}
.trust-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--charcoal), transparent);
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: scroll-trust 30s linear infinite;
  width: max-content;
}
[dir="rtl"] .trust-track { animation-direction: reverse; }
@keyframes scroll-trust {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-item {
  color: var(--silver);
  font-size: 15px;
  font-weight: 600;
}
.trust-item .en { color: var(--silver); }
.trust-sep { color: var(--gold); font-size: 10px; }

/* ===========================================================
   PROJECT CARD IMAGE PLACEHOLDERS
   =========================================================== */
.project-visual[data-img] {
  position: relative;
  background: linear-gradient(135deg, rgba(185,154,109,0.08) 0%, rgba(14,23,33,0.6) 100%);
}

/* The "place image here" hint shown only when no real image is set */
.project-visual[data-img]:not([style*="url"])::after {
  content: '🖼️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  opacity: 0.25;
}

/* When a real image is loaded via inline style, it shows as background */
.project-visual[style*="url"] {
  background-size: cover !important;
  background-position: center !important;
}
.project-visual[style*="url"]::after { display: none; }

/* ===========================================================
   COUNTER ANIMATION (stat numbers)
   =========================================================== */
.stat-num[data-count] {
  font-variant-numeric: tabular-nums;
}

/* ===========================================================
   LINKEDIN BADGE ON NEWS CARDS
   =========================================================== */
.news-cover { position: relative; }

.linkedin-badge {
  position: absolute;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.95);
  color: #0077B5;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
}
[dir="rtl"] .linkedin-badge { left: 12px; }
[dir="ltr"] .linkedin-badge { right: 12px; }

/* External link arrow indicator on news cards that go to LinkedIn */
.news-card-link[href*="linkedin"] .news-card::after {
  content: '↗';
  position: absolute;
  top: 12px;
  font-size: 18px;
  color: var(--gold-bright);
  opacity: 0.7;
  z-index: 3;
}
[dir="rtl"] .news-card-link[href*="linkedin"] .news-card::after { left: 14px; }
[dir="ltr"] .news-card-link[href*="linkedin"] .news-card::after { right: 14px; }

.news-card { position: relative; }
