/* ═══════════════════════════════════════════════════════════
   EPC – REAL ESTATE  |  style.css
   Palette: #045454 (teal) · #fff (white) · #0a0a0a (black)
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:    #045454;
  --teal-lt: #065f5f;
  --teal-dk: #022e2e;
  --white:   #ffffff;
  --off:     #f5f3ef;
  --ink:     #0a0a0a;
  --mid:     #4a4a4a;
  --line:    rgba(4,84,84,.15);
  --gold:    #c4a46b;         /* single warm accent for highlights */

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;

  --ease-out:   cubic-bezier(.22,1,.36,1);
  --ease-in:    cubic-bezier(.64,0,.78,0);
  --ease-circ:  cubic-bezier(.785,.135,.15,.86);

  --nav-h: 80px;
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 60px);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── CURSOR ───────────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s, width .3s var(--ease-out), height .3s var(--ease-out), background .3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s var(--ease-out), width .4s var(--ease-out), height .4s var(--ease-out), opacity .3s;
  opacity: .6;
}
a:hover ~ .cursor, button:hover ~ .cursor { width: 20px; height: 20px; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
#site-header-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all .5s var(--ease-out);
}

#top-bar-inner { height: 100%; }
.top-bar-inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
#top-bar-text {
  font-size: .75rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 24px;
}
#top-bar-text .fa { color: var(--gold); margin-right: 6px; }

.top-bar-socials .icons {
  display: flex;
  gap: 14px;
}
.top-bar-socials a {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  transition: color .3s;
}
.top-bar-socials a:hover { color: var(--gold); }

/* main header — always dark by default for safety */
#site-header {
  height: var(--nav-h);
  background: rgba(10,10,10,.97);
  box-shadow: 0 2px 40px rgba(0,0,0,.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .5s var(--ease-out), box-shadow .5s;
}
/* On hero pages only: start transparent, JS will handle scroll */
body.has-hero #site-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* scrolled state */
body.has-hero.scrolled #site-header {
  background: rgba(10,10,10,.97);
  box-shadow: 0 2px 40px rgba(0,0,0,.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* top bar always teal-dark */
#top-bar {
  background: var(--teal-dk);
  height: 36px;
  transition: height .5s var(--ease-out), opacity .5s;
  overflow: hidden;
}
/* collapse topbar only on hero pages when scrolled */
body.has-hero.scrolled #top-bar { height: 0; opacity: 0; }

/* nav links always white — header is always dark so this is always safe */
.menu-item a { color: rgba(255,255,255,.8); }

/* hero pages: header starts transparent, fixed */
body.has-hero #site-header-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
}

#site-header-inner { height: 100%; }
.wrap-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

/* logo */
#site-logo { flex-shrink: 0; }
#site-logo img { height: 40px; width: auto; }

/* ── TEXT LOGO ────────────────────────────────────────────── */
.text-logo,
.footer-text-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  letter-spacing: -.01em;
  line-height: 1;
}

/* NAVBAR text logo */
.text-logo {
  position: relative;
  isolation: isolate;
  padding: 2px 6px 4px;
}

/* Brush-stroke white background — organic, hand-painted shape */
.text-logo::before {
  content: '';
  position: absolute;
  inset: -9px -22px -11px -22px;
  background: #ffffff;
  border-radius: 62% 38% 46% 54% / 58% 44% 56% 42%;
  transform-origin: left center;
  z-index: -1;
  pointer-events: none;
  animation: brushStroke .9s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes brushStroke {
  0%   { transform: scaleX(0) rotate(-2deg); opacity: .45; }
  55%  { opacity: 1; }
  100% { transform: scaleX(1) rotate(-1deg); opacity: 1; }
}

.text-logo .logo-arabia {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: color .3s;
}
.text-logo .logo-epc {
  font-family: var(--ff-head);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .3s;
  font-style: italic;
}
.text-logo:hover .logo-arabia { color: #000; }
.text-logo:hover .logo-epc    { color: #d4b47e; }

/* FOOTER text logo */
.footer-text-logo {
  display: inline-flex;
  margin-bottom: 20px;
}
.footer-text-logo .logo-arabia {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .3s;
}
.footer-text-logo .logo-epc {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  font-style: italic;
  transition: color .3s;
}
.footer-text-logo:hover .logo-arabia { color: rgba(255,255,255,.85); }
.footer-text-logo:hover .logo-epc    { color: #d4b47e; }

/* ── NAV — desktop ───────────────────────────────────────── */
#main-nav {
  display: block !important;
  margin-left: auto;
  visibility: visible !important;
  opacity: 1 !important;
}
#main-nav .menu {
  display: flex !important;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  visibility: visible !important;
  opacity: 1 !important;
}
#main-nav .menu-item {
  display: list-item !important;
  visibility: visible !important;
}
#main-nav .menu-item a {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.menu-item a {
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 6px 14px;
  border-radius: 3px;
  transition: color .3s, background .3s;
  position: relative;
}
.menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .4s var(--ease-out);
  transform-origin: left;
}
.menu-item a:hover,
.menu-item.current-menu-item a { color: var(--white); }
.menu-item a:hover::after,
.menu-item.current-menu-item a::after { transform: scaleX(1); }

/* search */
#header-search { position: relative; }
.header-search-icon {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  cursor: pointer;
  transition: color .3s;
}
.header-search-icon:hover { color: var(--white); }

.header-search-form {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  width: 320px;
  overflow: hidden;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.header-search-form.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.header-search-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .85rem;
}
.header-search-field::placeholder { color: rgba(255,255,255,.35); }
.header-search-submit {
  background: var(--teal);
  border: none;
  color: var(--white);
  padding: 0 18px;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .3s;
}
.header-search-submit:hover { background: var(--teal-lt); }

/* mobile button */
.mobile-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.mobile-button span,
.mobile-button span::before,
.mobile-button span::after {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .4s var(--ease-out);
  position: relative;
}
.mobile-button span::before,
.mobile-button span::after {
  content: '';
  position: absolute;
}
.mobile-button span::before { top: -8px; width: 20px; left: 0; }
.mobile-button span::after  { top:  8px; width: 16px; left: 0; }
.mobile-button.active span  { background: transparent; }
.mobile-button.active span::before { transform: rotate(45deg); top: 0; width: 26px; }
.mobile-button.active span::after  { transform: rotate(-45deg); top: 0; width: 26px; }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
#hero-section {
  position: relative;
  height: 100svh;
  height: 100vh; /* fallback */
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

/* slideshow backgrounds — z-index 0 */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s var(--ease-out), transform 9s linear;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
/* slide going out */
.hero-slide.leaving {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s var(--ease-in), transform 1.4s var(--ease-in);
}

/* dark overlay — z-index 1 */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(2,46,46,.82) 0%,
    rgba(4,84,84,.55) 40%,
    rgba(10,10,10,.72) 40%
  );
}

/* bottom fade into page — z-index 2 */
.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  z-index: 2;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-inline: var(--gutter);
  max-width: 900px;
  width: 100%;
}

/* slide counter dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  right: clamp(20px, 4vw, 60px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-dot {
  width: 3px;
  height: 24px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  cursor: pointer;
  transition: background .3s, height .3s var(--ease-out);
  overflow: hidden;
  position: relative;
}
.hero-dot.active {
  height: 40px;
  background: rgba(255,255,255,.2);
}
.hero-dot.active::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: dotFill 6s linear forwards;
}
@keyframes dotFill {
  from { height: 0; }
  to   { height: 100%; }
}

.hero-content h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp .9s .3s var(--ease-out) forwards;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-content .links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .6s var(--ease-out) forwards;
}

.hero-content .link,
.hero-content .wprt-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.hero-content .link {
  background: var(--gold);
  color: var(--ink);
}
.hero-content .link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
  z-index: 0;
}
.hero-content .link:hover::before { transform: scaleX(1); }
.hero-content .link span,
.hero-content .link { position: relative; z-index: 1; }
.hero-content .link:hover { color: var(--teal); }

/* hero scroll arrow */
.arrow.scroll-target {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2.2s ease-in-out infinite;
}
.arrow.scroll-target::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: rotate(45deg) translateY(-2px);
}

/* hero progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 5;
  animation: heroProgress 4s linear infinite;
}

@keyframes heroProgress {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}
@keyframes fadeUp {
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  to { opacity:1; }
}
@keyframes slideInLeft {
  from { opacity:0; transform:translateX(-60px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes slideInRight {
  from { opacity:0; transform:translateX(60px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes scaleIn {
  from { opacity:0; transform:scale(.88); }
  to   { opacity:1; transform:scale(1); }
}

/* ── REVEAL ON SCROLL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.from-left  { transform: translateX(-60px); }
.reveal.from-right { transform: translateX(60px); }
.reveal.scale-up   { transform: scale(.9); }
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════════════════════
   MAIN CONTENT WRAPPER
══════════════════════════════════════════════════════════ */
#main-content { padding-top: 0; }

/* ══════════════════════════════════════════════════════════
   SECTION: INTRO / SERVICES
══════════════════════════════════════════════════════════ */
.wprt-section.intro {
  background: var(--white);
  padding-block: var(--section-pad);
}

.service-item {
  text-align: center;
  padding: 50px 32px 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all .5s var(--ease-out);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  transform: translateY(100%);
  transition: transform .55s var(--ease-out);
  z-index: 0;
}
.service-item:hover { border-color: var(--teal); box-shadow: 0 24px 80px rgba(4,84,84,.18); transform: translateY(-8px); }
.service-item:hover::before { transform: translateY(0); }
.service-item:hover .title a,
.service-item:hover .desc { color: var(--white); }

.service-item > * { position: relative; z-index: 1; }

.service-item .thumb {
  width: 90px; height: 90px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--line);
  transition: border-color .4s;
}
.service-item:hover .thumb { border-color: rgba(255,255,255,.3); }
.service-item .thumb img { width: 100%; height: 100%; object-fit: cover; }

.service-item .title {
  font-family: var(--ff-head);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.service-item .title a { color: var(--ink); transition: color .3s; }
.service-item .desc {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.75;
  transition: color .3s;
}

/* ══════════════════════════════════════════════════════════
   SECTION HEADINGS (shared)
══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  position: relative;
  padding-inline: 20px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--teal);
}
.section-eyebrow::before { right: 100%; margin-right: -20px; }
.section-eyebrow::after  { left:  100%; margin-left: -20px; }

h2.text-center,
.section-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 0;
}
.wprt-lines.style-2 { display: none; } /* replaced by section-eyebrow */
.wprt-subtitle {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.8;
  margin-top: 18px;
}

/* ══════════════════════════════════════════════════════════
   SECTION: FACTS (PARALLAX)
══════════════════════════════════════════════════════════ */
#facts.wprt-section {
  background: var(--teal-dk);
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}
#facts.wprt-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(4,84,84,.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(196,164,107,.08) 0%, transparent 70%);
}
#facts .wprt-counter {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}
#facts .wprt-counter .number {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
}
#facts .wprt-counter.has-plus .number::after { content: '+'; }
#facts .wprt-counter .text {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}

/* separator between counters */
#facts .col-md-3:not(:last-child) .wprt-counter::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,.1);
}

/* ══════════════════════════════════════════════════════════
   SECTION: PROJECTS / WORKS
══════════════════════════════════════════════════════════ */
#works.wprt-section {
  padding-block: var(--section-pad);
  background: var(--off);
}

/* filter tabs */
#project-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.cbp-filter-item {
  cursor: pointer;
}
.cbp-filter-item span {
  display: inline-block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 8px 22px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 2px;
  transition: all .35s var(--ease-out);
  background: var(--white);
}
.cbp-filter-item:hover span,
.cbp-filter-item.active span {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* project grid */
#projects.cbp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cbp-item {
  transition: opacity .4s, transform .4s var(--ease-out);
}
.cbp-item.hidden {
  display: none;
}

.project-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.project-item .grid { width: 100%; height: 100%; }
.project-item figure { width: 100%; height: 100%; margin: 0; position: relative; overflow: hidden; }
.project-item figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.project-item:hover figure img { transform: scale(1.1); }

figcaption {
    position: absolute;
    inset: 0;
    z-index: 2; /* تحت الـ <a> */
    background: linear-gradient(to top, rgba(4,84,84,.92) 0%, rgba(4,84,84,.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px 24px;
    opacity: 0;
    transition: opacity .45s var(--ease-out);
    pointer-events: none; /* الـ <a> هو اللي بيستقبل الكليك */
}
.project-item .grid a:hover figcaption { opacity: 1; }
.project-item:hover .grid a figcaption,
.project-item .grid a:hover figcaption {
    opacity: 1;
}

.project-item .grid a {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
}

figcaption h2 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
figcaption h2 a { color: var(--white); }
figcaption p {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.project-zoom {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .85rem;
  opacity: 0;
  transform: scale(.7) rotate(-45deg);
  transition: all .4s var(--ease-out);
  z-index: 2;
}
.project-item:hover .project-zoom {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* ══════════════════════════════════════════════════════════
   SECTION: WHAT WE OFFER
══════════════════════════════════════════════════════════ */
#features.wprt-section {
  padding-block: var(--section-pad);
  background: var(--white);
}

/* top 6 icon grid */
.wprt-icon-text {
  text-align: center;
  padding: 32px 16px;
  border-radius: 4px;
  transition: background .35s;
}
.wprt-icon-text:hover { background: var(--off); }
.wprt-icon-text .icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  background: rgba(4,84,84,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s, transform .35s;
}
.wprt-icon-text:hover .icon { background: var(--teal); transform: scale(1.08); }
.wprt-icon-text:hover .icon img { filter: brightness(0) invert(1); }
.wprt-icon-text h3 {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
.wprt-icon-text h3 a { color: inherit; transition: color .3s; }
.wprt-icon-text:hover h3 a { color: var(--teal); }

/* bottom 4 icon-box cards */
.wprt-icon-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  border-radius: 6px;
  margin-bottom: 24px;
  background: var(--off);
  border-left: 3px solid transparent;
  transition: all .4s var(--ease-out);
}
.wprt-icon-box:hover {
  border-left-color: var(--teal);
  background: var(--white);
  box-shadow: 0 8px 40px rgba(4,84,84,.1);
  transform: translateX(6px);
}
.wprt-icon-box.accent-background { background: rgba(4,84,84,.04); }
.wprt-icon-box .icon-wrap {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wprt-icon-box .icon-wrap img { filter: brightness(0) invert(1); }
.wprt-icon-box .content-wrap .dd-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.wprt-icon-box .content-wrap .dd-title a { color: var(--ink); transition: color .3s; }
.wprt-icon-box:hover .content-wrap .dd-title a { color: var(--teal); }
.wprt-icon-box .content-wrap p {
  font-size: .84rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   SECTION: PROMOTION / CTA STRIP
══════════════════════════════════════════════════════════ */
#promotion.wprt-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  padding-block: 60px;
  position: relative;
  overflow: hidden;
}
#promotion.wprt-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
#promotion .text-white {
  color: var(--white) !important;
  font-family: var(--ff-head);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}
.wprt-button.white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--teal);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all .4s var(--ease-out);
  white-space: nowrap;
}
.wprt-button.white:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.text-center-mobile { /* handled in mq */ }
.text-right { text-align: right; }

/* ══════════════════════════════════════════════════════════
   SECTION: TESTIMONIALS
══════════════════════════════════════════════════════════ */
#testimonials.wprt-section {
  padding-block: var(--section-pad);
  background: var(--off);
}

#testimonials-wrap.cbp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.customer .inner {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid transparent;
  transition: all .5s var(--ease-out);
  position: relative;
}
.customer .inner::before {
  content: '\201C';
  font-family: var(--ff-head);
  font-size: 5rem;
  line-height: .8;
  color: var(--teal);
  opacity: .12;
  position: absolute;
  top: 20px; left: 24px;
}
.customer .inner:hover {
  border-color: var(--teal);
  box-shadow: 0 20px 60px rgba(4,84,84,.12);
  transform: translateY(-6px);
}

.customer .image {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--teal);
}
.customer .image img { width: 100%; height: 100%; object-fit: cover; }
.customer .name {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.customer .position {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.customer blockquote.whisper {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.8;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   SECTION: WHY CHOOSE US
══════════════════════════════════════════════════════════ */
#why-us.wprt-section { overflow: hidden; }
#why-us .col-md-6:first-child {
  position: relative;
  overflow: hidden;
}
#why-us .col-md-6:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  transition: transform 8s linear;
}
#why-us:hover .col-md-6:first-child img { transform: scale(1.04); }

.wprt-content-box.style-2 {
  padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 72px);
  background: var(--ink);
  height: 100%;
}
.wprt-content-box.style-2 h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.wprt-lines.style-1 { display: none; } /* replaced by h2 underline */
.wprt-content-box.style-2 h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 16px;
}

/* toggles (accordion) */
.wprt-toggle {
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.wprt-toggle.bg-white { background: transparent; }
.toggle-title {
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .3s;
  user-select: none;
}
.toggle-title::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .4s var(--ease-out), color .3s;
  color: var(--gold);
}
.wprt-toggle.active .toggle-title { color: var(--white); }
.wprt-toggle.active .toggle-title::after { transform: rotate(45deg); }

.toggle-content {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), padding .4s;
  padding-bottom: 0;
}
.wprt-toggle.active .toggle-content {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════
   BOTTOM BAR (inside home page)
══════════════════════════════════════════════════════════ */
#bottom {
  background: var(--ink);
  padding-block: 20px;
}
.bottom-bar-inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
#copyright {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}
.bottom-nav {
  display: flex;
  gap: 24px;
}
.bottom-nav a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: color .3s;
}
.bottom-nav a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   FOOTER — full redesign
══════════════════════════════════════════════════════════ */
#footer {
  background: #080e0e;
  position: relative;
  overflow: hidden;
}

/* top teal accent line */
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 30%, var(--gold) 60%, var(--teal) 80%, transparent 100%);
  z-index: 1;
}

/* background watermark */
#footer::after {
  content: 'EPC';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--ff-head);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 900;
  color: rgba(4,84,84,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
}

/* ── FOOTER TOP BAND ─────────────────────────── */
.footer-top-band {
  background: var(--teal-dk);
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
.footer-top-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-top-band-profile { display: flex; flex-direction: column; gap: 4px; }
.footer-top-band-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .85;
}
.footer-top-band-text {
  font-family: var(--ff-head);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  margin: 0;
}
.footer-top-band-text span { color: var(--gold); }
.footer-top-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  transition: all .4s var(--ease-out);
  white-space: nowrap;
}
.footer-top-cta:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

/* ── FOOTER WIDGETS ──────────────────────────── */
#footer-widgets {
  padding: clamp(60px, 8vw, 96px) 0 clamp(40px, 5vw, 60px);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* col 1 — brand */
.footer-brand {}
.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 24px;
}
.footer-brand-desc {
  font-size: .87rem;
  color: rgba(255,255,255,.42);
  line-height: 1.85;
  max-width: 280px;
  margin-bottom: 28px;
}

/* contact info */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(4,84,84,.25);
  border: 1px solid rgba(4,84,84,.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: .78rem;
  transition: background .3s;
}
.footer-contact-item:hover .footer-contact-icon {
  background: var(--teal);
  color: var(--white);
}
.footer-contact-text {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  padding-top: 6px;
}

/* widget title */
.footer-col-title {
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  padding-bottom: 14px;
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

/* tag cloud */
.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tagcloud a {
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 3px;
  padding: 7px 13px;
  transition: all .3s var(--ease-out);
  line-height: 1;
}
.tagcloud a:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* useful links */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-links-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .3s, gap .3s;
}
.footer-links-list li a .link-arrow {
  font-size: .65rem;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .3s, transform .3s;
}
.footer-links-list li a:hover {
  color: var(--white);
  gap: 14px;
}
.footer-links-list li a:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* social icons */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.footer-socials .social-item {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  transition: all .35s var(--ease-out);
  background: rgba(255,255,255,.03);
}
.footer-socials .social-item:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(4,84,84,.4);
}

/* ── FOOTER DIVIDER ──────────────────────────── */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07) 30%, rgba(255,255,255,.07) 70%, transparent);
  position: relative;
  z-index: 2;
  margin: 0;
}

/* ── FOOTER BOTTOM ───────────────────────────── */
#footer-bottom {
  padding: 22px 0;
  position: relative;
  z-index: 2;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copyright {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .06em;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  transition: color .3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* keep old selectors working too */
.widget-title { /* map to new style */
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  padding-bottom: 14px;
  position: relative;
}
.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: .5;
}

.info-wrap { display: flex; flex-direction: column; gap: 14px; }
.info-wrap .item {
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.info-wrap .address.item::before { content: '◉'; color: var(--teal); flex-shrink: 0; }
.info-wrap .phone.item::before   { content: '◎'; color: var(--teal); flex-shrink: 0; }
.info-wrap .email.item::before   { content: '◈'; color: var(--teal); flex-shrink: 0; }

/* keep .links.col2 but restyle */
.links.col2 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.links.col2 li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .3s, padding-left .3s;
}
.links.col2 li a::before {
  content: '→';
  font-size: .7rem;
  color: var(--teal);
  transition: transform .3s;
}
.links.col2 li a:hover { color: var(--white); padding-left: 4px; }
.links.col2 li a:hover::before { transform: translateX(4px); }

/* socials (old selector) */
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.social-item {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  transition: all .35s var(--ease-out);
  background: rgba(255,255,255,.03);
}
.social-item:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(4,84,84,.4);
}

/* footer bottom old selector */
#footer-bottom .row { display: flex; justify-content: center; }
#footer-bottom #copyright {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .06em;
  width: 100%;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — HERO
══════════════════════════════════════════════════════════ */
#featured-title { margin-top: calc(var(--nav-h) + 36px); }

.about-hero {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 50%, var(--ink) 100%);
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 600px; height: 600px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
  animation: slowRotate 20s linear infinite;
}
.about-hero::after {
  content: '';
  position: absolute;
  top: -20%; right: 5%;
  width: 400px; height: 400px;
  border: 1px solid rgba(196,164,107,.08);
  border-radius: 50%;
  pointer-events: none;
  animation: slowRotate 30s linear infinite reverse;
}
@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-hero-decoration {
  position: absolute;
  top: 30px; left: 5%;
  display: flex;
  gap: 8px;
}
.about-hero-decoration span {
  display: block;
  border-radius: 2px;
}
.about-hero-decoration span:nth-child(1) { width: 3px; height: 40px; background: var(--gold); }
.about-hero-decoration span:nth-child(2) { width: 3px; height: 28px; background: var(--white); opacity: .4; margin-top: 6px; }
.about-hero-decoration span:nth-child(3) { width: 3px; height: 18px; background: var(--teal); opacity: .5; margin-top: 12px; }

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.about-hero-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  border: 1px solid rgba(196,164,107,.3);
  padding: 6px 14px;
  border-radius: 2px;
  animation: fadeUp .6s .1s var(--ease-out) both;
}
.about-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  animation: fadeUp .7s .2s var(--ease-out) both;
}
.about-hero-title em { font-style: italic; color: var(--gold); }

.about-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
  animation: fadeUp .7s .35s var(--ease-out) both;
}
.about-hero-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  animation: fadeUp .7s .45s var(--ease-out) both;
}
.about-hero-breadcrumbs a { color: var(--gold); transition: color .3s; }
.about-hero-breadcrumbs a:hover { color: var(--white); }
.about-hero-breadcrumbs .sep { opacity: .4; }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — ALTERNATING SECTIONS
══════════════════════════════════════════════════════════ */
section.ab {
  padding-block: clamp(80px, 10vw, 130px);
  overflow: hidden;
}
section.ab--light { background: var(--white); }
section.ab--cream { background: var(--off); }
section.ab--dark  { background: var(--ink); }

.ab-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
section.ab--rev .ab-inner { direction: rtl; }
section.ab--rev .ab-inner > * { direction: ltr; }

/* image side */
.ab-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ab-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
}
section.ab:hover .ab-img img { transform: scale(1.06); }

.ab-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,84,84,.2), transparent 60%);
  transition: opacity .5s;
}
section.ab:hover .ab-img-overlay { opacity: .6; }

/* corner brackets */
.ab-img-bracket {
  position: absolute;
  width: 36px; height: 36px;
  z-index: 2;
}
.ab-img-bracket--tl {
  top: 16px; left: 16px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.ab-img-bracket--br {
  bottom: 16px; right: 16px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

/* content side */
.ab-content { position: relative; }

.ab-num {
  position: absolute;
  top: -30px; right: -10px;
  font-family: var(--ff-head);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: var(--teal);
  opacity: .06;
  pointer-events: none;
  user-select: none;
}
section.ab--dark .ab-num { color: var(--white); }

.ab-vlabel {
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: .35;
  white-space: nowrap;
}
section.ab--dark .ab-vlabel { color: var(--white); }

.ab-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
section.ab--dark .ab-tag { color: var(--gold); }
.ab-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1.5px;
  background: currentColor;
}

.ab-title {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
section.ab--dark .ab-title { color: var(--white); }

.ab-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  margin-bottom: 24px;
}

.ab-desc {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.85;
}
section.ab--dark .ab-desc { color: rgba(255,255,255,.55); }

/* ── REVEAL CLASSES (used in about.blade JS) ──────────────── */
.rv-l {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.rv-r {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.rv-l.in, .rv-r.in { opacity: 1; transform: none; }

/* ── CTA (about page) ─────────────────────────────────────── */
.about-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  padding-block: 70px;
}
.about-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.about-cta-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.about-cta-title {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--teal);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 2px;
  white-space: nowrap;
  transition: all .4s var(--ease-out);
  flex-shrink: 0;
}
.about-cta-btn .arr {
  transition: transform .4s var(--ease-out);
}
.about-cta-btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.about-cta-btn:hover .arr { transform: translateX(6px); }

/* ══════════════════════════════════════════════════════════
   GRID / ROW UTILITIES
══════════════════════════════════════════════════════════ */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -15px;
}
.row > [class*="col-"] { padding-inline: 15px; }

.col-md-2  { width: 16.666%; }
.col-md-3  { width: 25%; }
.col-md-4  { width: 33.333%; }
.col-md-6  { width: 50%; }
.col-md-8  { width: 66.666%; }
.col-md-12 { width: 100%; }

.no-padding  { padding: 0 !important; }
.no-margin   { margin: 0 !important; }

/* wprt spacer */
.wprt-spacer[data-desktop="0"]   { height: 0; }
.wprt-spacer[data-desktop="36"]  { height: 36px; }
.wprt-spacer[data-desktop="40"]  { height: 40px; }
.wprt-spacer[data-desktop="43"]  { height: 43px; }
.wprt-spacer[data-desktop="50"]  { height: 50px; }
.wprt-spacer[data-desktop="80"]  { height: 80px; }
.wprt-spacer[data-desktop="100"] { height: 100px; }
.wprt-spacer[data-desktop="103"] { height: 103px; }
.wprt-spacer[data-desktop="110"] { height: 110px; }
.wprt-spacer[data-desktop="118"] { height: 118px; }
.wprt-spacer[data-desktop="8"]   { height: 8px; }

/* ══════════════════════════════════════════════════════════
   PAGE TRANSITION OVERLAY
══════════════════════════════════════════════════════════ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--teal-dk);
  z-index: 9000;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform .7s var(--ease-out);
  pointer-events: none;
}
.page-transition.out {
  transform: scaleY(0);
  transform-origin: bottom;
}

/* ══════════════════════════════════════════════════════════
   LIGHTBOX (cbp-lightbox override)
══════════════════════════════════════════════════════════ */
.cbp-l-lightbox-title {
  font-family: var(--ff-head) !important;
  letter-spacing: .06em;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #projects.cbp { grid-template-columns: repeat(3, 1fr); }
  #testimonials-wrap.cbp { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* old row selector */
  #footer-widgets .row { display: flex; flex-wrap: wrap; gap: 0; }
  #footer-widgets .col-md-3 { width: 50%; padding: 0 20px 40px; }
  .ab-vlabel { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* ── NAV — mobile drawer ─────────────────────── */
  #main-nav {
    display: block;          /* keep in DOM */
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 82vw);
    height: 100vh;
    background: rgba(8,14,14,.98);
    padding: 100px 40px 40px;
    border-left: 1px solid rgba(255,255,255,.06);
    z-index: 900;
    transform: translateX(100%);   /* hidden off-screen to the right */
    transition: transform .45s var(--ease-out);
    overflow-y: auto;
  }
  #main-nav.open { transform: translateX(0); }  /* slide in */

  .menu { flex-direction: column; align-items: flex-start; gap: 4px; }
  .menu-item a {
    font-size: 1rem;
    letter-spacing: .06em;
    padding: 12px 0;
    color: rgba(255,255,255,.8);
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .menu-item a::after { left: 0; right: 0; }
  .mobile-button { display: flex; }
  #header-search { display: none; }

  /* hero */
  .hero-content h1 { font-size: clamp(2rem, 9vw, 3.5rem); }
  .arrow.scroll-target { display: none; }
  .hero-dots { display: none; }

  /* grid */
  .col-md-2, .col-md-3, .col-md-4, .col-md-6, .col-md-8 { width: 100%; }
  .col-md-12 { width: 100%; }

  #projects.cbp { grid-template-columns: repeat(2, 1fr); }
  #testimonials-wrap.cbp { grid-template-columns: 1fr; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  #footer-widgets .col-md-3 { width: 100%; padding: 0 0 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-top-band-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-top-cta { width: 100%; justify-content: center; }

  /* about */
  .ab-inner { grid-template-columns: 1fr; }
  section.ab--rev .ab-inner { direction: ltr; }
  .ab-img { aspect-ratio: 16/9; }
  .ab-num { display: none; }

  .about-cta-wrap { flex-direction: column; align-items: flex-start; }
  .about-cta-btn { width: 100%; justify-content: center; }

  /* promotion */
  #promotion .text-right { text-align: center; }

  /* why choose us */
  #why-us .col-md-6:first-child img { min-height: 260px; }

  /* spacers reduced */
  .wprt-spacer[data-mobi="0"]  { height: 0 !important; }
  .wprt-spacer[data-mobi="30"] { height: 30px !important; }
  .wprt-spacer[data-mobi="40"] { height: 40px !important; }
  .wprt-spacer[data-mobi="60"] { height: 60px !important; }
  .wprt-spacer[data-mobi="80"] { height: 80px !important; }
}

@media (max-width: 480px) {
  #projects.cbp { grid-template-columns: 1fr; }
  .links.col2 { grid-template-columns: 1fr; }
  .wprt-icon-box { flex-direction: column; gap: 14px; }

  .wprt-spacer[data-smobi="0"]  { height: 0 !important; }
  .wprt-spacer[data-smobi="20"] { height: 20px !important; }
  .wprt-spacer[data-smobi="30"] { height: 30px !important; }
  .wprt-spacer[data-smobi="40"] { height: 40px !important; }
}

/* ══════════════════════════════════════════════════════════
   INNER PAGE — SHARED FEATURED TITLE / BREADCRUMBS
══════════════════════════════════════════════════════════ */

/* Push content below fixed nav on all inner pages */
body.no-hero #main-content,
body.no-hero .page-content { padding-top: 0; }

#featured-title.clearfix {
  margin-top: calc(var(--nav-h) + 36px); /* account for topbar + nav */
  background: linear-gradient(120deg, var(--teal-dk) 0%, var(--teal) 55%, #034040 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 8vw, 90px) 0 clamp(40px, 6vw, 68px);
}

/* geometric decoration rings */
#featured-title::before {
  content: '';
  position: absolute;
  top: -60%; right: -8%;
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
#featured-title::after {
  content: '';
  position: absolute;
  top: -30%; right: 3%;
  width: 300px; height: 300px;
  border: 1px solid rgba(196,164,107,.08);
  border-radius: 50%;
  pointer-events: none;
}

#featured-title-inner { position: relative; z-index: 2; }
.featured-title-inner-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.featured-title-heading-wrap {}
.featured-title-heading {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  position: relative;
  padding-bottom: 18px;
  animation: fadeUp .7s .1s var(--ease-out) both;
}
.featured-title-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* breadcrumbs */
#breadcrumbs { animation: fadeUp .7s .25s var(--ease-out) both; }
.breadcrumbs-inner {}
.breadcrumb-trail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.breadcrumb-trail .trail-begin,
.breadcrumb-trail a {
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.breadcrumb-trail a:hover { color: var(--gold); }
.breadcrumb-trail .sep { color: rgba(255,255,255,.25); font-size: .7rem; }
.breadcrumb-trail .trail-end { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-section-wrap {
  padding: clamp(70px, 10vw, 120px) 0;
}

/* section title on contact */
.contact-section-wrap h2.text-center {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 0;
}
.contact-section-wrap .wprt-subtitle {
  font-size: .95rem;
  color: var(--mid);
  max-width: 580px;
  margin: 16px auto 0;
  text-align: center;
  line-height: 1.8;
}

/* info column */
.contact-info-col {
  padding-right: clamp(20px, 4vw, 50px);
}
.contact-info-col h5 {
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  margin-top: 28px;
}
.contact-info-col h5:first-child { margin-top: 0; }
.contact-info-col p {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.7;
}

/* info cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--off);
  border-radius: 6px;
  border-left: 3px solid var(--teal);
  transition: box-shadow .35s, transform .35s;
}
.contact-info-card:hover {
  box-shadow: 0 8px 32px rgba(4,84,84,.1);
  transform: translateX(4px);
}
.contact-info-card-icon {
  width: 42px; height: 42px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  flex-shrink: 0;
}
.contact-info-card-body {}
.contact-info-card-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.contact-info-card-value {
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.6;
}

/* alerts */
.alert {
  padding: 14px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: .88rem;
  position: relative;
}
.alert-success {
  background: rgba(4,84,84,.08);
  border: 1px solid rgba(4,84,84,.2);
  color: var(--teal-dk);
}
.alert-danger {
  background: rgba(180,40,40,.06);
  border: 1px solid rgba(180,40,40,.15);
  color: #8b1a1a;
}
.alert ul { padding-left: 16px; margin: 0; }
.alert .close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: .5;
  transition: opacity .2s;
  color: inherit;
  line-height: 1;
}
.alert .close:hover { opacity: 1; }

/* contact form */
.wprt-contact-form { width: 100%; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 4px 40px rgba(4,84,84,.06);
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-wrap,
.message-wrap,
.send-wrap {
  margin-bottom: 16px;
}

.input-wrap input,
.message-wrap textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--ink);
  background: var(--off);
  border: 1.5px solid transparent;
  border-radius: 5px;
  padding: 14px 18px;
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  -webkit-appearance: none;
}
.input-wrap input::placeholder,
.message-wrap textarea::placeholder {
  color: rgba(74,74,74,.45);
  font-size: .85rem;
}
.input-wrap input:focus,
.message-wrap textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(4,84,84,.07);
}

.message-wrap textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.7;
}

.send-wrap {
  margin-bottom: 0;
}
.send-wrap .submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.send-wrap .submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out);
  z-index: 0;
}
.send-wrap .submit span,
.send-wrap .submit { position: relative; z-index: 1; }
.send-wrap .submit:hover::before { transform: scaleX(1); }
.send-wrap .submit:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(4,84,84,.2); }
.send-wrap .submit:active { transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   PROJECT DETAIL PAGE
══════════════════════════════════════════════════════════ */
.project-detail-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}

/* image gallery column */
.wprt-galleries {
  position: relative;
}

/* main slider */
#wprt-slider {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  aspect-ratio: 16/10;
  margin-bottom: 10px;
}
#wprt-slider .slides { list-style: none; margin: 0; padding: 0; }
#wprt-slider .slides li {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s var(--ease-out);
}
#wprt-slider .slides li.flex-active-slide {
  opacity: 1;
  position: relative;
}
#wprt-slider .slides li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* zoom icon */
#wprt-slider .zoom {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 4;
  width: 40px; height: 40px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .85rem;
  backdrop-filter: blur(4px);
  transition: background .3s, transform .3s;
  opacity: 0;
}
#wprt-slider .slides li:hover .zoom,
#wprt-slider:hover .zoom { opacity: 1; }
.zoom:hover { background: var(--teal) !important; transform: scale(1.1); }

/* thumbnail carousel */
#wprt-carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) rgba(0,0,0,.06);
}
#wprt-carousel::-webkit-scrollbar { height: 4px; }
#wprt-carousel::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }
#wprt-carousel .slides { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; }
#wprt-carousel .slides li {
  flex-shrink: 0;
  width: 88px; height: 66px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .3s, transform .3s;
  opacity: .65;
}
#wprt-carousel .slides li:hover,
#wprt-carousel .slides li.active {
  border-color: var(--teal);
  opacity: 1;
  transform: scale(1.04);
}
#wprt-carousel .slides li img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* project info sidebar */
.project-info-sidebar {
  padding-left: clamp(16px, 3vw, 36px);
}
.project-sidebar-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(4,84,84,.25);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.project-sidebar-title {
  font-family: var(--ff-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.project-sidebar-divider {
  width: 42px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  margin-bottom: 22px;
}
.project-sidebar-desc {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* meta list */
.wprt-list.style-2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.wprt-list.style-2 li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-size: .87rem;
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.wprt-list.style-2 li:last-child { border-bottom: none; }
.wprt-list.style-2 li:hover { background: rgba(4,84,84,.03); }
.wprt-list.style-2 li strong {
  font-weight: 600;
  color: var(--ink);
  min-width: 90px;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal);
}
.wprt-list.style-2 li span,
.wprt-list.style-2 li:not(:has(strong)) { color: var(--mid); }

/* wprt-lines style-1 (small decorative) */
.wprt-lines.style-1,
.wprt-lines.custom-3,
.wprt-lines.custom-4 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.wprt-lines .line-1 {
  height: 2px;
  width: 36px;
  background: var(--teal);
  border-radius: 2px;
}
.wprt-lines .line-2 {
  height: 2px;
  width: 18px;
  background: var(--gold);
  border-radius: 2px;
}

/* slider prev/next arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  background: rgba(10,10,10,.55);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .3s, transform .3s var(--ease-out);
  opacity: 0;
}
#wprt-slider:hover .slider-arrow { opacity: 1; }
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-arrow:hover { background: var(--teal); transform: translateY(-50%) scale(1.08); }

/* ── SIMILAR PROJECTS ────────────────────────────── */
.similar-projects-section {
  padding: clamp(50px, 7vw, 80px) 0;
  background: var(--off);
}
.similar-projects-section h3 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 36px;
}
.similar-projects-section h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
}

.project-item.similar-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: all .45s var(--ease-out);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.project-item.similar-card:hover {
  box-shadow: 0 16px 50px rgba(4,84,84,.14);
  transform: translateY(-6px);
}
.project-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.project-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
  display: block;
}
.project-item.similar-card:hover .project-thumb img { transform: scale(1.08); }
.project-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,84,84,.5), transparent 50%);
  opacity: 0;
  transition: opacity .4s;
}
.project-item.similar-card:hover .project-thumb::after { opacity: 1; }

.project-info {
  padding: 18px 20px 22px;
}
.project-info h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.project-info h4 a {
  color: var(--ink);
  transition: color .3s;
}
.project-item.similar-card:hover .project-info h4 a { color: var(--teal); }
.project-info .project-category {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

/* ── SLIDER JS (simple vanilla) ──────────────────── */
/* slides default hidden; JS controls active */
.flex-active-slide { display: block !important; }
#wprt-slider .slides li:not(.flex-active-slide) { display: none; }
/* override for carousel — show all */
#wprt-carousel .slides li { display: block !important; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — CONTACT & PROJECT
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #featured-title.clearfix {
    margin-top: calc(var(--nav-h) + 36px);
  }
  .featured-title-heading { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* contact */
  .contact-info-col { padding-right: 0; margin-bottom: 36px; }
  .form-row-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }

  /* project detail */
  .project-info-sidebar { padding-left: 0; margin-top: 32px; }
  #wprt-slider { aspect-ratio: 16/11; }
}

@media (max-width: 480px) {
  .contact-info-cards { gap: 12px; }
  .contact-info-card { flex-direction: column; gap: 10px; }
  .wprt-list.style-2 li { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ══════════════════════════════════════════════════════════
   RTL — CONTACT & PROJECT
══════════════════════════════════════════════════════════ */
[dir="rtl"] .featured-title-heading::after { left: auto; right: 0; }
[dir="rtl"] .contact-info-col { padding-right: 0; padding-left: clamp(20px, 4vw, 50px); }
[dir="rtl"] .contact-info-card { border-left: none; border-right: 3px solid var(--teal); }
[dir="rtl"] .contact-info-card:hover { transform: translateX(-4px); }
[dir="rtl"] .project-info-sidebar { padding-left: 0; padding-right: clamp(16px, 3vw, 36px); }
[dir="rtl"] .similar-projects-section h3::after { left: auto; right: 0; }
[dir="rtl"] .project-sidebar-divider { margin-left: auto; }
[dir="rtl"] .footer-col-title::after { left: auto; right: 0; }
[dir="rtl"] .footer-contact-list { direction: rtl; }

[dir="rtl"] .ab-vlabel { left: auto; right: -48px; transform: translateY(-50%) rotate(90deg); }
[dir="rtl"] .ab-tag { padding-left: 0; padding-right: 28px; }
[dir="rtl"] .ab-tag::before { left: auto; right: 0; }
[dir="rtl"] .section-eyebrow::before { right: auto; left: 100%; margin-right: 0; margin-left: -20px; }
[dir="rtl"] .section-eyebrow::after  { left: auto;  right: 100%; margin-left: 0; margin-right: -20px; }
[dir="rtl"] .wprt-icon-box { border-left: none; border-right: 3px solid transparent; }
[dir="rtl"] .wprt-icon-box:hover { border-right-color: var(--teal); transform: translateX(-6px); }
[dir="rtl"] .links.col2 li a::before { content: '←'; }
[dir="rtl"] .links.col2 li a:hover { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .links.col2 li a:hover::before { transform: translateX(-4px); }
/* RTL mobile nav — drawer from left side */
[dir="rtl"] #main-nav { right: auto; left: 0; transform: translateX(-100%); border-left: none; border-right: 1px solid rgba(255,255,255,.06); }
[dir="rtl"] #main-nav.open { transform: translateX(0); }
[dir="rtl"] .wprt-content-box.style-2 h2::after { margin-left: auto; margin-right: 0; }

/* ══════════════════════════════════════════════════════════
   SECTORS SECTION
══════════════════════════════════════════════════════════ */
#sectors.wprt-section {
  padding-block: var(--section-pad);
  background: var(--off);
}
.sectors-grid { row-gap: 28px; }
.sector-card {
  text-align: center;
  padding: 36px 20px 32px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(4,84,84,.08);
  transition: border-color .35s var(--ease-out), transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  height: 100%;
}
.sector-card:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(4,84,84,.12);
}
.sector-icon {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  background: rgba(4,84,84,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--teal);
  transition: background .35s, color .35s, transform .35s;
}
.sector-card:hover .sector-icon {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.1);
}
.sector-card h3 {
  font-family: var(--ff-head);
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.sector-card p {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   PARTNERSHIP / BOT / PPP SECTION (Homepage)
══════════════════════════════════════════════════════════ */
#partnerships-home.wprt-section {
  padding-block: var(--section-pad);
  background: var(--teal-dk);
  position: relative;
  overflow: hidden;
}
#partnerships-home::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 700px; height: 700px;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.partnerships-heading {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.partnerships-desc {
  font-size: .96rem;
  color: rgba(255,255,255,.6);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 460px;
}
.partnerships-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,164,107,.35);
  padding: 13px 28px;
  border-radius: 2px;
  transition: all .35s var(--ease-out);
}
.partnerships-cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.partnerships-cards { row-gap: 20px; }
.partnership-card {
  padding: 28px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  transition: background .35s, border-color .35s, transform .35s;
  height: 100%;
}
.partnership-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(196,164,107,.3);
  transform: translateY(-4px);
}
.partnership-card-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.partnership-card h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.partnership-card p {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}
#partnerships-home .section-eyebrow { color: var(--gold); }
#partnerships-home .section-eyebrow::before,
#partnerships-home .section-eyebrow::after { background: var(--gold); }

/* ══════════════════════════════════════════════════════════
   WHY ARABIA EPC (About page)
══════════════════════════════════════════════════════════ */
.why-arabia-section {
  padding-block: var(--section-pad);
  background: var(--white);
}
.why-arabia-grid { row-gap: 28px; }
.why-card {
  padding: 34px 28px;
  border-radius: 6px;
  background: var(--off);
  border-left: 3px solid transparent;
  transition: border-color .35s, transform .35s var(--ease-out), box-shadow .35s;
  height: 100%;
}
.why-card:hover {
  border-left-color: var(--teal);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(4,84,84,.09);
}
.why-card-icon {
  font-size: 1.65rem;
  color: var(--teal);
  margin-bottom: 18px;
  display: inline-block;
  transition: transform .35s;
}
.why-card:hover .why-card-icon { transform: scale(1.15); }
.why-card h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.why-card p {
  font-size: .87rem;
  color: var(--mid);
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   ABOUT STATS SECTION
══════════════════════════════════════════════════════════ */
.about-stats-section {
  padding-block: clamp(60px, 8vw, 100px);
  background: var(--teal-dk);
  position: relative;
  overflow: hidden;
}
.about-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 30% 50%, rgba(4,84,84,.5) 0%, transparent 70%);
}
.about-stat {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 12px;
}
.about-stat-number {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
}
.about-stat-number span {
  color: var(--gold);
  font-size: .7em;
}
.about-stat-label {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
}
.about-stats-section .col-md-2:not(:last-child) .about-stat::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: rgba(255,255,255,.08);
}

/* ══════════════════════════════════════════════════════════
   CERTIFICATIONS / TRUST SECTION
══════════════════════════════════════════════════════════ */
.certs-section {
  padding-block: var(--section-pad);
  background: var(--off);
}
.certs-grid { row-gap: 24px; }
.cert-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: 6px;
  border-top: 3px solid var(--teal);
  text-align: center;
  transition: transform .35s var(--ease-out), box-shadow .35s;
  height: 100%;
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(4,84,84,.1);
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 50%;
  margin: 0 auto 18px;
}
.cert-icon {
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 18px;
}
.cert-card h4 {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.cert-card p {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════ */
.services-page-section {
  padding-block: var(--section-pad);
  background: var(--white);
}
.services-grid { row-gap: 28px; }
.service-card-page {
  padding: 36px 28px;
  background: var(--off);
  border-radius: 6px;
  border-bottom: 3px solid transparent;
  transition: border-color .35s, transform .35s var(--ease-out), box-shadow .35s;
  height: 100%;
}
.service-card-page:hover {
  border-bottom-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(4,84,84,.1);
}
.service-card-page .svc-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 20px;
}
.service-card-page h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card-page p {
  font-size: .87rem;
  color: var(--mid);
  line-height: 1.8;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   HSE PAGE
══════════════════════════════════════════════════════════ */
.hse-hero-band {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%);
  padding: clamp(70px, 10vw, 130px) 0 clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.hse-hero-band::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
}
.hse-hero-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hse-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hse-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 600px;
}
.hse-content-section {
  padding-block: var(--section-pad);
  background: var(--white);
}
.hse-grid { row-gap: 28px; }
.hse-card {
  padding: 34px 28px;
  background: var(--off);
  border-radius: 6px;
  border-left: 4px solid var(--teal);
  height: 100%;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.hse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4,84,84,.09);
}
.hse-card .hse-card-icon {
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 18px;
}
.hse-card h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.hse-card p {
  font-size: .87rem;
  color: var(--mid);
  line-height: 1.8;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   CAREERS PAGE
══════════════════════════════════════════════════════════ */
.careers-hero-band {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2a2a 100%);
  padding: clamp(70px, 10vw, 130px) 0 clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.careers-hero-band::before {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 500px; height: 500px;
  border: 1px solid rgba(4,84,84,.15);
  border-radius: 50%;
}
.careers-content-section {
  padding-block: var(--section-pad);
  background: var(--white);
}
.careers-grid { row-gap: 24px; }
.career-card {
  padding: 32px 26px;
  background: var(--off);
  border-radius: 6px;
  border-top: 3px solid transparent;
  height: 100%;
  transition: border-color .35s, transform .35s var(--ease-out), box-shadow .35s;
}
.career-card:hover {
  border-top-color: var(--teal);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(4,84,84,.1);
}
.career-card .career-icon {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 16px;
}
.career-card h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.career-card p {
  font-size: .86rem;
  color: var(--mid);
  line-height: 1.75;
  margin: 0;
}
.careers-apply-band {
  padding-block: clamp(60px, 8vw, 100px);
  background: var(--teal-dk);
}
.careers-apply-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.careers-apply-title {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.careers-apply-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 520px;
}
.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 14px 30px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  flex-shrink: 0;
}
.btn-apply:hover { background: #d4b47e; transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   PARTNERSHIPS PAGE
══════════════════════════════════════════════════════════ */
.partnerships-hero-band {
  background: linear-gradient(135deg, var(--teal-dk) 0%, #0a1a1a 100%);
  padding: clamp(70px, 10vw, 130px) 0 clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.partnerships-page-section {
  padding-block: var(--section-pad);
  background: var(--white);
}
.partnerships-page-grid { row-gap: 28px; }
.partnership-page-card {
  padding: 36px 28px;
  background: var(--off);
  border-radius: 6px;
  border-right: 0;
  border-left: 4px solid var(--teal);
  height: 100%;
  transition: transform .35s var(--ease-out), box-shadow .35s, background .35s;
}
.partnership-page-card:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(4,84,84,.1);
}
.partnership-page-icon {
  font-size: 1.7rem;
  color: var(--teal);
  margin-bottom: 18px;
}
.partnership-page-card h3 {
  font-family: var(--ff-head);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.partnership-page-card p {
  font-size: .87rem;
  color: var(--mid);
  line-height: 1.8;
  margin: 0;
}
.vendor-band {
  padding-block: clamp(60px, 7vw, 90px);
  background: var(--off);
}

/* ══════════════════════════════════════════════════════════
   CONTACT — INQUIRY TYPE SELECT
══════════════════════════════════════════════════════════ */
.inquiry-type-wrap {
  margin-bottom: 0;
}
.inquiry-type-wrap select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(4,84,84,.18);
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23045454' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color .3s;
}
.inquiry-type-wrap select:focus {
  outline: none;
  border-color: var(--teal);
}

/* ══════════════════════════════════════════════════════════
   FEATURED TITLE — PAGE BANNER (Inner pages)
══════════════════════════════════════════════════════════ */
.page-hero-band {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 60%, #045f5f 100%);
  padding: clamp(80px, 11vw, 140px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--nav-h) + 36px);
}
.page-hero-band::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 600px; height: 600px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.page-hero-subtitle {
  font-size: 1.02rem;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  max-width: 580px;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.55); transition: color .3s; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb .sep { color: rgba(255,255,255,.25); }
.page-hero-breadcrumb .current { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  #partnerships-home .row > div:first-child { margin-bottom: 40px; }
  .partnerships-desc { max-width: 100%; }
  .about-stats-section .col-md-2:not(:last-child) .about-stat::after { display: none; }
}
@media (max-width: 767px) {
  .sector-card  { padding: 28px 16px 24px; }
  .why-card     { padding: 28px 20px; }
  .hse-card     { padding: 28px 20px; }
  .career-card  { padding: 24px 20px; }
  .partnership-page-card { padding: 28px 20px; }
  .careers-apply-inner { flex-direction: column; align-items: flex-start; }
  .page-hero-band { margin-top: calc(var(--nav-h) + 36px); }
}

/* ══════════════════════════════════════════════════════════
   RTL — NEW SECTIONS
══════════════════════════════════════════════════════════ */
[dir="rtl"] .why-card          { border-left: none; border-right: 3px solid transparent; }
[dir="rtl"] .why-card:hover    { border-right-color: var(--teal); }
[dir="rtl"] .hse-card          { border-left: none; border-right: 4px solid var(--teal); }
[dir="rtl"] .partnership-page-card { border-left: none; border-right: 4px solid var(--teal); }
[dir="rtl"] .inquiry-type-wrap select { background-position: left 16px center; padding-right: 18px; padding-left: 40px; }
[dir="rtl"] .partnerships-desc { max-width: 100%; }
[dir="rtl"] .page-hero-subtitle { max-width: 100%; }

/* ── Downloadable Documents ──────────────────────────────── */
.docs-section { background: var(--off); }
.docs-grid    { margin-top: clamp(32px, 4vw, 48px); }

.doc-card {
    background: #fff;
    border-radius: 10px;
    padding: clamp(24px, 3vw, 36px) 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(4,84,84,.07);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}
.doc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(4,84,84,.13); }

.doc-card-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dk));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.doc-card h4 {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}
.doc-card p {
    font-size: .88rem;
    color: var(--mid);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}
.doc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--teal);
    color: #fff;
    border-radius: 4px;
    padding: 9px 20px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s;
    margin-top: auto;
}
.doc-download-btn:hover { background: var(--teal-dk); color: #fff; text-decoration: none; }
.doc-coming-soon {
    display: inline-block;
    margin-top: auto;
    font-size: .8rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px dashed #ddd;
    border-radius: 4px;
    padding: 6px 16px;
}