/* ============================================
   I-BUILD EGYPT — Corporate Website
   Brand: Teal #19A9AF · Green #81CB27
   ============================================ */

:root {
  /* Brand */
  --teal: #19a9af;
  --teal-600: #128a8f;
  --teal-700: #0e6f73;
  --green: #81cb27;
  --green-600: #6fb01d;
  --ink: #0f2226;

  /* Light theme (default) */
  --bg: #ffffff;
  --bg-soft: #f4f8f8;
  --bg-card: #ffffff;
  --surface-line: #e3eded;
  --text: #14323a;
  --text-soft: #5a7077;
  --text-faint: #8aa0a6;
  --hero-overlay: rgba(10, 40, 44, 0.55);
  --shadow-sm: 0 2px 10px rgba(15, 50, 58, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 50, 58, 0.10);
  --shadow-teal: 0 14px 38px rgba(25, 169, 175, 0.28);

  /* Type */
  --font-en: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-ar: "Cairo", system-ui, sans-serif;
  --font: var(--font-en);

  /* Scale */
  --container: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --bg: #081417;
  --bg-soft: #0c1f23;
  --bg-card: #0f2429;
  --surface-line: #1c3a40;
  --text: #eaf4f4;
  --text-soft: #9db8bd;
  --text-faint: #6a888d;
  --hero-overlay: rgba(4, 18, 20, 0.68);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-teal: 0 14px 38px rgba(25, 169, 175, 0.22);
}

[lang="ar"], [dir="rtl"] { --font: var(--font-ar); }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

h1, h2, h3 { line-height: 1.2; font-weight: 800; color: var(--text); letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; }

/* ---- Language visibility ---- */
.en-only { display: none; }
.ar-only { display: none; }
[lang="en"] .en-only { display: revert; }
[lang="ar"] .ar-only { display: revert; }
[lang="en"] .en-flex { display: flex; }
[lang="ar"] .ar-flex { display: flex; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, padding 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--surface-line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.15rem; color: var(--text); }
.brand img { height: 38px; width: auto; }
.brand .mark-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand .mark-text small { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; color: var(--teal); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 600; color: var(--text-soft); white-space: nowrap;
  padding: 8px 11px; border-radius: 10px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--teal); background: var(--bg-soft); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 11px; border: 1px solid var(--surface-line);
  background: var(--bg-card); color: var(--text-soft); cursor: pointer;
  transition: all 0.2s var(--ease); font-size: 0.8rem; font-weight: 700;
}
.icon-btn:hover { color: var(--teal); border-color: var(--teal); transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 0.92rem;
  padding: 11px 22px; border-radius: 12px; border: none;
  transition: all 0.25s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-teal); }
.btn-primary:hover { background: var(--teal-600); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--surface-line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

.menu-toggle { display: none; }
.mobile-cta-li { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-block: 120px 60px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg video {
  position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%;
  object-fit: cover; object-position: center; background: var(--ink);
}
.hero-bg .hero-poster { z-index: 0; opacity: 1; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease-in-out; }
.hero-bg img.active { opacity: 1; }
.hero-bg img:only-child { opacity: 1; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(105deg, var(--hero-overlay) 0%, var(--hero-overlay) 45%, color-mix(in srgb, var(--hero-overlay) 60%, transparent) 100%);
}
[lang="ar"] .hero-bg::after { background: linear-gradient(255deg, var(--hero-overlay) 0%, var(--hero-overlay) 45%, color-mix(in srgb, var(--hero-overlay) 60%, transparent) 100%); }
@media (prefers-reduced-motion: reduce) {
  .hero-bg video { display: none; }
}
.hero-blob {
  position: absolute; z-index: -1; border-radius: 50%; filter: blur(60px); opacity: 0.5;
}
.hero-blob.b1 { width: 460px; height: 460px; background: var(--teal); inset-block-start: -120px; inset-inline-end: -80px; }
.hero-blob.b2 { width: 360px; height: 360px; background: var(--green); inset-block-end: -120px; inset-inline-start: -60px; opacity: 0.4; }

.hero-content { max-width: 680px; color: #fff; position: relative; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px); padding: 7px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 24px;
}
.hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(129,203,39,0.3); }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: #fff; margin-bottom: 20px; }
.hero h1 .accent { color: var(--green); }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255,255,255,0.9); max-width: 560px; margin-bottom: 34px; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats .stat .num { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; }
.hero-stats .stat .num span { color: var(--green); }
.hero-stats .stat .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ============ SECTION SHELL ============ */
.section-pad { padding-block: clamp(70px, 9vw, 120px); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.eyebrow-line::before { content: ""; width: 28px; height: 2px; background: var(--green); border-radius: 2px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 18px; }
.section-head p { font-size: 1.06rem; color: var(--text-soft); }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 22px; }
.about-text p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 18px; }
.about-vm { display: grid; gap: 18px; margin-top: 30px; }
.vm-card {
  background: var(--bg-card); border: 1px solid var(--surface-line);
  border-radius: var(--radius); padding: 22px 24px;
  border-inline-start: 4px solid var(--teal); box-shadow: var(--shadow-sm);
}
.vm-card:nth-child(2) { border-inline-start-color: var(--green); }
.vm-card h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.vm-card h4 svg { width: 20px; height: 20px; color: var(--teal); }
.vm-card:nth-child(2) h4 svg { color: var(--green); }
.vm-card p { color: var(--text-soft); font-size: 0.97rem; margin: 0; }

.about-visual { position: relative; }
.about-visual .photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.about-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; inset-block-end: -26px; inset-inline-start: -26px;
  background: var(--teal); color: #fff; border-radius: var(--radius);
  padding: 20px 26px; box-shadow: var(--shadow-teal);
}
.about-badge .big { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-badge .small { font-size: 0.82rem; opacity: 0.9; margin-top: 4px; }

/* ============ FEATURES (Why us) ============ */
.why { background: var(--bg-soft); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card {
  background: var(--bg-card); border: 1px solid var(--surface-line);
  border-radius: var(--radius); padding: 34px 30px; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--teal) 12%, transparent); color: var(--teal); margin-bottom: 20px;
}
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.why-card p { color: var(--text-soft); font-size: 0.98rem; }

/* ============ SERVICES ============ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card {
  position: relative; overflow: hidden; background: var(--bg-card);
  border: 1px solid var(--surface-line); border-radius: var(--radius-lg);
  padding: 38px 34px; transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.svc-card::before {
  content: ""; position: absolute; inset-block-start: 0; inset-inline-start: 0;
  width: 100%; height: 4px; background: linear-gradient(90deg, var(--teal), var(--green));
  transform: scaleX(0); transform-origin: inline-start; transition: transform 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num { font-size: 0.85rem; font-weight: 800; color: var(--text-faint); letter-spacing: 0.1em; }
.svc-icon { width: 60px; height: 60px; margin: 16px 0 18px; color: var(--teal); }
.svc-icon svg { width: 100%; height: 100%; }
.svc-card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.svc-card p { color: var(--text-soft); font-size: 0.98rem; }

/* ============ STATS BAND ============ */
.stats-band { background: linear-gradient(120deg, var(--teal-700), var(--teal)); color: #fff; }
.stats-band .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; }
.stat-item .n { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1; }
.stat-item .n span { color: var(--green); }
.stat-item .l { font-size: 0.95rem; opacity: 0.85; margin-top: 8px; }

/* ============ CERTIFICATIONS ============ */
.certs-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--surface-line);
  padding: 14px 24px; border-radius: 100px; font-weight: 700; font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
}
.cert-chip svg { width: 20px; height: 20px; color: var(--green); }
.quality-gallery { margin-top: 42px; }

/* ============ CLIENTS ============ */
.clients { background: var(--bg-soft); }
.clients-marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 20px; width: max-content; animation: marquee 58s linear infinite; padding-block: 8px; }
.clients:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
[dir="rtl"] .marquee-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }
.client-pill {
  flex: none; display: grid; place-items: center; width: 124px; height: 124px; padding: 10px;
  background: #fff; border: 1px solid var(--surface-line); border-radius: 22px;
  box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.client-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.client-pill img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
@media (max-width: 600px) {
  .clients-marquee { -webkit-mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
  .marquee-track { gap: 12px; animation-duration: 48s; }
  .client-pill { width: 96px; height: 96px; padding: 7px; border-radius: 18px; }
}

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.contact-info > p { color: var(--text-soft); margin-bottom: 30px; font-size: 1.05rem; }
.contact-list { display: grid; gap: 18px; }
.contact-row { display: flex; align-items: center; gap: 16px; }
.contact-row .ci {
  flex: none; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--teal) 12%, transparent); color: var(--teal);
}
.contact-row .ci svg { width: 22px; height: 22px; }
.contact-row .ct .k { font-size: 0.8rem; color: var(--text-faint); font-weight: 600; }
.contact-row .ct .v { font-size: 1.04rem; font-weight: 700; color: var(--text); }
.contact-row a.v:hover { color: var(--teal); }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-soft); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 0.98rem; color: var(--text);
  background: var(--bg-soft); border: 1px solid var(--surface-line);
  border-radius: 12px; padding: 13px 16px; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--text-faint); margin-top: 14px; text-align: center; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: #cfe3e4; padding-block: 60px 30px; }
[data-theme="dark"] .site-footer { background: #04101280; border-top: 1px solid var(--surface-line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 46px; margin-bottom: 16px; }
.footer-brand p { color: #9fbabc; font-size: 0.96rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: #9fbabc; font-size: 0.94rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: #cfe3e4; transition: all 0.2s; }
.footer-social a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.88rem; color: #7f9b9d; }

/* ============ TECH ECOSYSTEM ============ */
.tech {
  background:
    radial-gradient(900px 500px at 80% -10%, color-mix(in srgb, var(--teal) 14%, transparent), transparent),
    radial-gradient(700px 500px at 0% 110%, color-mix(in srgb, var(--green) 12%, transparent), transparent),
    var(--ink);
  color: #eaf4f4; position: relative; overflow: hidden;
}
.tech .eyebrow-line { color: var(--green); }
.tech .eyebrow-line::before { background: var(--green); }
.tech .section-head h2 { color: #fff; }
.tech .section-head p { color: rgba(255,255,255,0.72); }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tech-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 22px; transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.tech-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--teal), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.3s;
}
.tech-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.tech-card:hover::after { opacity: 1; }
.tech-card .ti {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 14px;
  background: color-mix(in srgb, var(--teal) 20%, transparent); color: var(--green);
}
.tech-card .ti svg { width: 22px; height: 22px; }
.tech-card h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.tech-card p { color: rgba(255,255,255,0.62); font-size: 0.86rem; line-height: 1.5; }

/* ============ ECOSYSTEM ORBIT ============ */
.eco { background: var(--bg-soft); }
.eco-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.eco-core {
  position: relative; aspect-ratio: 1; max-width: 460px; margin-inline: auto; width: 100%;
  display: grid; place-items: center;
}
.eco-hub {
  position: absolute; width: 130px; height: 130px; border-radius: 50%; z-index: 3;
  background: linear-gradient(135deg, var(--teal), var(--teal-700)); color: #fff;
  display: grid; place-items: center; text-align: center; box-shadow: var(--shadow-teal); padding: 10px;
}
.eco-hub b { font-size: 1.15rem; line-height: 1.1; display: block; }
.eco-hub span { font-size: 0.62rem; letter-spacing: 0.1em; opacity: 0.9; text-transform: uppercase; margin-top: 3px; display: block; }
.eco-ring { position: absolute; border: 1.5px dashed var(--surface-line); border-radius: 50%; }
.eco-ring.r1 { width: 72%; height: 72%; animation: spin 40s linear infinite; }
.eco-ring.r2 { width: 100%; height: 100%; animation: spin 60s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .eco-ring { animation: none; } }
.eco-node {
  position: absolute; width: 52px; height: 52px; border-radius: 14px; z-index: 2;
  background: var(--bg-card); border: 1px solid var(--surface-line); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; color: var(--teal);
}
.eco-node svg { width: 24px; height: 24px; }
.eco-list { columns: 2; column-gap: 24px; }
.eco-list li { list-style: none; display: flex; align-items: center; gap: 10px; padding: 8px 0; font-weight: 600; font-size: 0.96rem; break-inside: avoid; }
.eco-list li .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); flex: none; }
.eco-list li:nth-child(even) .dot { background: var(--green); }

/* ============ DASHBOARD MOCKUP ============ */
.dash { background: var(--ink); color: #eaf4f4; }
.dash .section-head h2 { color: #fff; }
.dash .section-head p { color: rgba(255,255,255,0.72); }
.dash .eyebrow-line { color: var(--green); }
.dash .eyebrow-line::before { background: var(--green); }
.dash-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.dash-frame {
  background: #0b1d21; border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
  overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.dash-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); }
.dash-bar .d { width: 11px; height: 11px; border-radius: 50%; }
.dash-bar .d.r { background: #ff5f57; } .dash-bar .d.y { background: #febc2e; } .dash-bar .d.g { background: #28c840; }
.dash-bar .t { margin-inline-start: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.dash-body { padding: 18px; display: grid; gap: 14px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpi { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px; }
.kpi .k { font-size: 0.68rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }
.kpi .v { font-size: 1.5rem; font-weight: 800; color: #fff; margin-top: 4px; }
.kpi .v.teal { color: var(--teal); } .kpi .v.green { color: var(--green); }
.kpi .bar { height: 4px; border-radius: 4px; background: rgba(255,255,255,0.1); margin-top: 8px; overflow: hidden; }
.kpi .bar i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--teal), var(--green)); }
.dash-chart { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; }
.dash-chart .ct { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; display: flex; justify-content: space-between; }
.dash-chart .ct b { color: var(--green); }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; }
.bars span { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(var(--teal), color-mix(in srgb, var(--teal) 40%, transparent)); transition: height 1s var(--ease); }
.bars span:nth-child(even) { background: linear-gradient(var(--green), color-mix(in srgb, var(--green) 40%, transparent)); }
.dash-rows { display: grid; gap: 8px; }
.drow { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.03); border-radius: 9px; padding: 9px 12px; font-size: 0.82rem; }
.drow .nm { color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; }
.drow .nm .ic { width: 7px; height: 7px; border-radius: 50%; }
.badge { font-size: 0.7rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.badge.ok { background: rgba(40,200,64,0.16); color: #4ade80; }
.badge.warn { background: rgba(254,188,46,0.16); color: #fbbf24; }
.dash-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 10px; }
.dash-features li { list-style: none; display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: rgba(255,255,255,0.82); }
.dash-features li svg { width: 17px; height: 17px; color: var(--green); flex: none; }

/* ============ MESSAGE STRIP ============ */
.msg-strip { background: linear-gradient(120deg, var(--teal-700), var(--teal)); color: #fff; overflow: hidden; }
.msg-track { display: flex; gap: 60px; width: max-content; animation: msgmarq 30s linear infinite; padding-block: 4px; }
[dir="rtl"] .msg-track { animation-name: msgmarq-rtl; }
@keyframes msgmarq { to { transform: translateX(-50%); } }
@keyframes msgmarq-rtl { to { transform: translateX(50%); } }
.msg-track .m { display: flex; align-items: center; gap: 18px; font-size: 1.15rem; font-weight: 700; white-space: nowrap; }
.msg-track .m .star { color: var(--green); font-size: 1.3rem; }

@media (max-width: 980px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-wrap, .dash-wrap { grid-template-columns: 1fr; gap: 36px; }
  .eco-core { max-width: 380px; }
  .dash-wrap .dash-frame { order: 2; }
}
@media (max-width: 560px) {
  .tech-grid { grid-template-columns: 1fr; }
  .eco-list { columns: 1; }
  .dash-kpis { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .kpi { padding: 10px; }
  .kpi .v { font-size: 1.15rem; }
  .dash-features { grid-template-columns: 1fr; }
}

/* ============ IFM POSITIONING BANNER ============ */
.ifm-banner {
  background: linear-gradient(120deg, var(--ink), var(--teal-700));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px);
  position: relative; overflow: hidden; margin-bottom: 56px;
}
.ifm-banner::before {
  content: ""; position: absolute; inset-block-start: -40%; inset-inline-end: -10%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(129,203,39,0.25), transparent 70%);
}
.ifm-banner .eyebrow-line { color: var(--green); }
.ifm-banner .eyebrow-line::before { background: var(--green); }
.ifm-banner h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.5rem); margin-bottom: 16px; max-width: 800px; position: relative; }
.ifm-banner h2 .hl { color: var(--green); }
.ifm-banner p { color: rgba(255,255,255,0.85); font-size: 1.08rem; max-width: 720px; position: relative; }

/* ============ IFM SECTOR BLOCKS ============ */
.sector { padding-block: clamp(60px, 8vw, 100px); border-bottom: 1px solid var(--surface-line); }
.sector:last-of-type { border-bottom: none; }
.sector-head { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 38px; }
.sector-ico {
  flex: none; width: 68px; height: 68px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-600)); color: #fff; box-shadow: var(--shadow-teal);
}
.sector-ico svg { width: 34px; height: 34px; }
.sector:nth-child(even) .sector-ico { background: linear-gradient(135deg, var(--green), var(--green-600)); box-shadow: 0 14px 38px rgba(129,203,39,0.3); }
.sector-head .st-num { font-size: 0.82rem; font-weight: 800; color: var(--text-faint); letter-spacing: 0.14em; }
.sector-head h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 4px 0 10px; }
.sector-head h3 .em { color: var(--teal); font-weight: 600; font-style: italic; display: block; font-size: 0.62em; margin-top: 4px; }
.sector:nth-child(even) .sector-head h3 .em { color: var(--green-600); }
.sector-head .intro { color: var(--text-soft); font-size: 1.06rem; max-width: 760px; }

.sector-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.sector-services h4, .sector-side h4 {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.sector:nth-child(even) .sector-services h4, .sector:nth-child(even) .sector-side h4 { color: var(--green-600); }
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.svc-list li { list-style: none; display: flex; align-items: flex-start; gap: 9px; font-size: 0.96rem; color: var(--text); }
.svc-list li svg { flex: none; width: 16px; height: 16px; color: var(--teal); margin-top: 4px; }
.sector:nth-child(even) .svc-list li svg { color: var(--green); }

.sector-side { display: grid; gap: 26px; align-content: start; }
.side-card {
  background: var(--bg-card); border: 1px solid var(--surface-line);
  border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.side-card .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.side-card .chip {
  font-size: 0.82rem; font-weight: 600; padding: 5px 12px; border-radius: 100px;
  background: var(--bg-soft); color: var(--text-soft); border: 1px solid var(--surface-line);
}
.benefit-list { display: grid; gap: 11px; }
.benefit-list li { list-style: none; display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text-soft); }
.benefit-list li svg { flex: none; width: 18px; height: 18px; color: var(--green); margin-top: 2px; }
.sector-cta {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.96rem;
  color: var(--teal); margin-top: 4px; transition: gap 0.2s;
}
.sector:nth-child(even) .sector-cta { color: var(--green-600); }
.sector-cta:hover { gap: 13px; }
.sector-cta svg { width: 17px; height: 17px; }
[dir="rtl"] .sector-cta svg { transform: scaleX(-1); }

.sector-gallery {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 280px;
  gap: 14px; margin-top: 44px;
}
.sector-gallery figure {
  margin: 0; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  box-shadow: var(--shadow-sm); background: var(--bg-card);
}
.sector-gallery figure:last-child:nth-child(odd) { grid-column: 1 / -1; }
.sector-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.sector-gallery figure:hover img { transform: scale(1.045); }

@media (max-width: 900px) {
  .sector-body { grid-template-columns: 1fr; gap: 30px; }
  .sector-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
}
@media (max-width: 560px) {
  .svc-list { grid-template-columns: 1fr; }
  .sector-head { gap: 16px; }
  .sector-ico { width: 56px; height: 56px; }
  .sector-ico svg { width: 28px; height: 28px; }
  .sector-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .sector-gallery figure:last-child:nth-child(odd) { grid-column: auto; }
}

/* ============ PORTFOLIO GALLERY ============ */
.folio { background: var(--bg-soft); }
.folio-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.folio-tab {
  font-family: inherit; font-weight: 700; font-size: 0.92rem; cursor: pointer;
  padding: 10px 22px; border-radius: 100px; border: 1px solid var(--surface-line);
  background: var(--bg-card); color: var(--text-soft); transition: all 0.25s var(--ease);
}
.folio-tab:hover { border-color: var(--teal); color: var(--teal); }
.folio-tab.active { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: var(--shadow-teal); }
.folio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.folio-item {
  position: relative; cursor: pointer; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.folio-item.hide { display: none; }
.folio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.folio-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.folio-item:hover img { transform: scale(1.06); }
.folio-item .folio-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px;
  background: linear-gradient(transparent 55%, rgba(8,20,23,0.8));
  opacity: 0; transition: opacity 0.3s;
}
.folio-item:hover .folio-overlay { opacity: 1; }
.folio-overlay .tag {
  color: #fff; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
}
.folio-overlay .tag svg { width: 18px; height: 18px; color: var(--green); }

/* ============ TIMELINE ============ */
.timeline { position: relative; max-width: 900px; margin-inline: auto; padding-block: 10px; }
.timeline::before {
  content: ""; position: absolute; inset-inline-start: 50%; inset-block: 0;
  width: 2px; background: linear-gradient(var(--teal), var(--green)); transform: translateX(-50%);
}
.tl-item { position: relative; width: 50%; padding: 18px 36px; }
.tl-item:nth-child(odd) { inset-inline-start: 0; text-align: end; }
.tl-item:nth-child(even) { inset-inline-start: 50%; }
.tl-item::after {
  content: ""; position: absolute; inset-block-start: 26px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--teal); border: 3px solid var(--bg);
}
.tl-item:nth-child(odd)::after { inset-inline-end: -8px; }
.tl-item:nth-child(even)::after { inset-inline-start: -8px; background: var(--green); }
.tl-year { font-size: 1.5rem; font-weight: 800; color: var(--teal); line-height: 1; }
.tl-item:nth-child(even) .tl-year { color: var(--green); }
.tl-text { color: var(--text-soft); font-size: 0.98rem; margin-top: 6px; font-weight: 500; }

/* ============ GALLERY (certificates) ============ */
.gallery { background: var(--bg-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.gallery-item {
  position: relative; cursor: pointer; border-radius: var(--radius);
  overflow: hidden; background: var(--bg-card); border: 1px solid var(--surface-line);
  box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; aspect-ratio: 3/4; object-fit: contain; object-position: center; background: #fff; padding: 8px; transition: transform 0.4s var(--ease); }
.quality-gallery .gallery-item,
.gallery-item.recognition-item {
  padding: 12px; border: 0; border-radius: 10px;
  background: linear-gradient(135deg, #76501d 0%, #d8ad55 12%, #f5dfa0 25%, #9c7028 45%, #edcc79 67%, #76501d 100%);
  box-shadow: 0 18px 45px rgba(54, 37, 12, 0.24), inset 0 0 0 2px rgba(255,255,255,0.38);
}
.quality-gallery .gallery-item::before,
.gallery-item.recognition-item::before {
  content: ""; position: absolute; inset: 5px; z-index: 3; pointer-events: none;
  border: 1px solid rgba(255, 245, 206, 0.8); border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgba(82, 52, 12, 0.35);
}
.quality-gallery .gallery-item img,
.gallery-item.recognition-item img {
  position: relative; z-index: 1; padding: 10px; object-fit: contain;
  background: #f5f0e6; border: 1px solid #cfbc8f;
  box-shadow: inset 0 0 18px rgba(87, 65, 25, 0.13), 0 3px 8px rgba(44, 29, 7, 0.2);
}
.gallery-item.recognition-item img { aspect-ratio: 4/3; }
.quality-gallery .gallery-item:hover,
.gallery-item.recognition-item:hover {
  transform: translateY(-7px) rotate(-0.25deg);
  box-shadow: 0 26px 58px rgba(54, 37, 12, 0.3), inset 0 0 0 2px rgba(255,255,255,0.45);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-cap {
  position: absolute; inset-inline: 0; inset-block-end: 0; padding: 26px 16px 14px;
  background: linear-gradient(transparent, rgba(8,20,23,0.82));
  color: #fff; font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 8px;
}
.gallery-cap svg { width: 16px; height: 16px; color: var(--green); flex: none; }
.gallery-item .zoom-hint {
  position: absolute; inset-block-start: 12px; inset-inline-end: 12px; width: 34px; height: 34px;
  border-radius: 10px; background: rgba(255,255,255,0.92); color: var(--teal);
  display: grid; place-items: center; opacity: 0; transition: opacity 0.25s;
}
.gallery-item:hover .zoom-hint { opacity: 1; }
.gallery-item .zoom-hint svg { width: 18px; height: 18px; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(4, 14, 16, 0.88); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; animation: fadeIn 0.25s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: min(92vw, 640px); max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute; inset-block-start: 22px; inset-inline-end: 22px;
  width: 48px; height: 48px; border-radius: 13px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.12); color: #fff; display: grid; place-items: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-close svg { width: 24px; height: 24px; }
.lightbox-nav {
  position: absolute; inset-block-start: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.14); color: #fff; display: grid; place-items: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--teal); }
.lightbox-nav.prev { inset-inline-start: 22px; }
.lightbox-nav.next { inset-inline-end: 22px; }
.lightbox-nav svg { width: 26px; height: 26px; }
[dir="rtl"] .lightbox-nav.prev svg, [dir="rtl"] .lightbox-nav.next svg { transform: scaleX(-1); }

/* ============ WORK / APPRECIATION ============ */
.work-grid {
  columns: 4; column-gap: 18px;
}
.work-item {
  break-inside: avoid; margin-bottom: 18px; position: relative; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; background: var(--bg-card);
  border: 1px solid var(--surface-line); box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.work-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-item img { width: 100%; height: auto; display: block; transition: transform 0.4s var(--ease); }
.work-item:hover img { transform: scale(1.03); }
.work-item .zoom-hint {
  position: absolute; inset-block-start: 10px; inset-inline-end: 10px; width: 32px; height: 32px;
  border-radius: 9px; background: rgba(255,255,255,0.92); color: var(--teal);
  display: grid; place-items: center; opacity: 0; transition: opacity 0.25s;
}
.work-item:hover .zoom-hint { opacity: 1; }
.work-item .zoom-hint svg { width: 17px; height: 17px; }
.work-cap {
  position: absolute; inset-inline: 0; inset-block-end: 0; padding: 24px 14px 12px;
  background: linear-gradient(transparent, rgba(8,20,23,0.85));
  color: #fff; font-weight: 600; font-size: 0.85rem; opacity: 0; transition: opacity 0.3s;
}
.work-item:hover .work-cap { opacity: 1; }

/* ============ MAP ============ */
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--surface-line); box-shadow: var(--shadow-md);
  height: 420px; position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(1.05); }
[data-theme="dark"] .map-wrap iframe { filter: invert(0.9) hue-rotate(180deg) saturate(0.8); }
.map-card {
  position: absolute; inset-block-start: 20px; inset-inline-start: 20px; z-index: 2;
  background: var(--bg-card); border: 1px solid var(--surface-line);
  border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-md); max-width: 290px;
}
.map-card h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text); }
.map-card p { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 12px; }
.map-card a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.9rem; color: var(--teal); }
.map-card a svg { width: 16px; height: 16px; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; inset-block-end: 24px; inset-inline-end: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 38px rgba(37, 211, 102, 0.6); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
.wa-float .wa-tip {
  position: absolute; inset-inline-end: 72px; inset-block: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 10px;
  font-size: 0.85rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.25s; box-shadow: var(--shadow-md);
}
[dir="rtl"] .wa-float .wa-tip { inset-inline-end: auto; inset-inline-start: 72px; }
.wa-float:hover .wa-tip { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* ============ REVEAL ANIM ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-visual { max-width: 420px; margin-inline: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { columns: 2; }
  .folio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; }
  .nav-actions > .btn-primary { display: none; }
  .nav { gap: 10px; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; inset-block-start: 72px; inset-inline: 12px;
    background: var(--bg-card); border: 1px solid var(--surface-line);
    border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-md); gap: 4px;
  }
  .nav-links.open a { padding: 12px 16px; }
  .nav-links.open .mobile-cta-li { display: block; margin-top: 4px; }
  .nav-links.open .mobile-cta-li a { padding: 13px 16px; color: #fff; }
  .hero-stats { gap: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-badge { inset-inline-start: 50%; transform: translateX(-50%); inset-block-end: -22px; }
  [lang="ar"] .about-badge { transform: translateX(50%); }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .work-grid { columns: 2; column-gap: 12px; }
  .work-item { margin-bottom: 12px; }
  .work-cap { opacity: 1; font-size: 0.72rem; padding: 18px 10px 9px; }
  .work-item .zoom-hint { display: none; }
  .folio-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .folio-item .folio-overlay { opacity: 1; background: linear-gradient(transparent 65%, rgba(8,20,23,0.75)); }
  .folio-overlay .tag { font-size: 0.75rem; }
  .timeline::before { inset-inline-start: 8px; }
  .tl-item { width: 100%; padding-inline-start: 36px; padding-inline-end: 0; text-align: start !important; inset-inline-start: 0 !important; }
  .tl-item::after { inset-inline-start: 1px !important; inset-inline-end: auto !important; }
  .map-card { position: static; max-width: none; margin-bottom: 16px; }
  .map-wrap { height: auto; }
  .map-wrap iframe { height: 320px; }
  .wa-float { width: 54px; height: 54px; inset-block-end: 18px; inset-inline-end: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-float .wa-tip { display: none; }
}
