/*
Theme Name:  Sea Pearl Supply
Theme URI:   https://seapearlsupply.com
Author:      Sea Pearl Supply
Description: Custom theme for Sea Pearl Supply – Marine Services, Port Said, Egypt.
Version:     1.7.0
License:     Private
Text Domain: seapearl
*/

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --abyss:     #060E1A;
  --navy:      #0A1628;
  --ocean:     #0D3349;
  --teal:      #1B6CA8;
  --gold:      #C9A84C;
  --gold-lt:   #E2C47A;
  --parchment: #EDE8DF;
  --pearl:     #F7F5F2;
  --white:     #FFFFFF;
  --text:      #1A2033;
  --muted:     #5A6478;
  --rule:      rgba(201,168,76,0.25);
  --border:    #DDD8D0;
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.12;
  font-weight: 400;
}
.eyebrow {
  display: block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.sec-title {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  color: var(--navy); margin-bottom: 1.2rem;
}
.sec-sub {
  font-size: 1rem; line-height: 1.8;
  color: var(--muted); max-width: 520px;
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.section-pad { padding: 96px 0; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#sp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  background: rgba(6,14,26,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center;
}
#sp-nav .container {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%;
}
.sp-logo {
  display: flex; align-items: center; gap: 11px; text-decoration: none;
  padding: 6px 14px 6px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}
.sp-logo img {
  height: 40px; width: 40px; object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}
.sp-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.sp-wordmark strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: #fff; letter-spacing: 0.06em;
}
.sp-wordmark span {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}
#sp-nav ul { display: flex; gap: 2.5rem; list-style: none; }
#sp-nav ul a {
  text-decoration: none; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); transition: color .2s;
  position: relative;
}
#sp-nav ul a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s;
}
#sp-nav ul a:hover,
#sp-nav ul .current-menu-item a { color: #fff; }
#sp-nav ul a:hover::after,
#sp-nav ul .current-menu-item a::after { transform: scaleX(1); }
.nav-cta-btn {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold); padding: 9px 22px;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--gold); color: var(--abyss); }

/* Nav right cluster (lang toggle + CTA + hamburger) */
.nav-right { display: flex; align-items: center; gap: 1.4rem; }

/* Language toggle */
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
}
.lang-opt {
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color .2s; padding: 2px 1px;
}
.lang-opt:hover { color: rgba(255,255,255,0.8); }
.lang-opt.active { color: var(--gold); }
.lang-sep { color: rgba(255,255,255,0.25); font-size: 0.7rem; }

.mobile-lang-toggle {
  display: flex; align-items: center; gap: 10px;
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.85rem; font-weight: 500;
}
.mobile-lang-toggle .lang-opt { text-transform: none; letter-spacing: 0.02em; }
.mobile-cta { color: var(--gold) !important; }


/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column;
  gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--abyss);
  border-top: 1px solid var(--rule);
  z-index: 199; padding: 1.5rem 5vw;
  flex-direction: column; gap: 0;
}
.mobile-menu a {
  display: block; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none; color: rgba(255,255,255,0.7);
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--abyss); padding: 14px 34px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter .2s, transform .15s;
}
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-2px); color: var(--abyss); }
.btn-ghost {
  display: inline-block;
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 34px;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-navy {
  display: inline-block;
  background: var(--navy); color: #fff;
  padding: 14px 34px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.btn-navy:hover { background: var(--ocean); color: #fff; }

/* ══════════════════════════════════════════
   HERO — horizon signature
══════════════════════════════════════════ */
.sp-hero {
  min-height: 100vh;
  background: linear-gradient(180deg,
    var(--abyss) 0%, #0B1E35 35%,
    var(--ocean) 68%, #0E4060 85%, #0A2E45 100%);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-stars {
  position: absolute; top: 0; left: 0; right: 0; bottom: 42%;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 8%,  rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 67% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 25%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 28% 35%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 28%, rgba(201,168,76,0.5) 0%, transparent 100%);
  pointer-events: none;
}
.hero-horizon {
  position: absolute; top: 58%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(42,143,191,0.15) 10%,
    rgba(201,168,76,0.6) 30%, rgba(255,255,255,0.9) 50%,
    rgba(201,168,76,0.6) 70%, rgba(42,143,191,0.15) 90%, transparent 100%);
  box-shadow: 0 0 40px 6px rgba(201,168,76,0.15), 0 0 80px 20px rgba(27,108,168,0.1);
  animation: horizonPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes horizonPulse { 0%,100%{opacity:.7} 50%{opacity:1} }
.hero-deep-glow {
  position: absolute; top: 58%; left: 50%; transform: translateX(-50%);
  width: 60%; height: 180px;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(27,108,168,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-body {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center;
}
.hero-body .container { padding-top: 3rem; padding-bottom: 3rem; }
.hero-coords {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.hero-coords::before, .hero-coords::after {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.hero-h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400; color: #fff;
  line-height: 1.04; letter-spacing: -0.02em;
  margin-bottom: 1.6rem; max-width: 700px;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.6); max-width: 460px; margin-bottom: 2.8rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2;
  display: flex; border-top: 1px solid rgba(255,255,255,0.08);
}
.h-stat {
  flex: 1; padding: 1.8rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.h-stat:last-child { border-right: none; }
.h-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.h-stat-l {
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 4px;
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: #fff; margin-bottom: 1rem;
  opacity: 0; animation: fadeInUp .8s ease forwards; animation-delay: .2s;
}
.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  max-width: 520px; line-height: 1.75;
  opacity: 0; animation: fadeInUp .8s ease forwards; animation-delay: .4s;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp .8s ease forwards;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════════
   INTRO STRIP
══════════════════════════════════════════ */
.intro-strip {
  background: var(--parchment);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.intro-strip .container {
  display: flex; align-items: center; gap: 2rem;
}
.strip-rule { width: 3px; height: 48px; background: var(--gold); flex-shrink: 0; }
.intro-strip p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-style: italic;
  color: var(--ocean); line-height: 1.7;
}

/* ══════════════════════════════════════════
   SERVICES LIST (homepage)
══════════════════════════════════════════ */
.svc-list { display: flex; flex-direction: column; margin-top: 3.5rem; }
.svc-row {
  display: grid; grid-template-columns: 70px 1fr 60px;
  align-items: center; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid var(--parchment);
  transition: background .2s, padding .2s;
}
.svc-row:first-child { border-top: 1px solid var(--parchment); }
.svc-row:hover { background: var(--pearl); padding-left: 1.5rem; padding-right: 1.5rem; }
.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 400;
  color: var(--parchment); line-height: 1; user-select: none;
}
.svc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.35rem;
}
.svc-body p { font-size: 0.88rem; line-height: 1.7; color: var(--muted); }
.svc-icon { font-size: 1.8rem; opacity: 0.65; text-align: right; }

/* ══════════════════════════════════════════
   SUEZ BAND
══════════════════════════════════════════ */
.suez-band {
  background: var(--navy); padding: 80px 0;
}
.suez-band .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center;
}
.suez-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff; margin-bottom: 1.2rem;
}
.suez-band h2 em { font-style: italic; color: var(--gold); }
.suez-band > .container > div > p {
  font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.55);
}
.suez-facts { display: flex; flex-direction: column; gap: 1.2rem; }
.suez-fact {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.4rem; border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03); transition: border-color .2s;
}
.suez-fact:hover { border-color: var(--rule); }
.sf-icon { font-size: 1.4rem; flex-shrink: 0; }
.sf-body h4 { font-size: 0.88rem; font-weight: 600; color: #fff; margin-bottom: 0.3rem; }
.sf-body p { font-size: 0.82rem; line-height: 1.65; color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════
   WHY GRID
══════════════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
  margin-top: 3.5rem;
}
.why-card {
  background: var(--pearl); padding: 2.4rem 2rem;
  position: relative; overflow: hidden; transition: background .2s;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.why-card:hover { background: #fff; }
.why-card:hover::before { transform: scaleX(1); }
.wc-icon { font-size: 1.6rem; margin-bottom: 1.2rem; display: block; }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--navy); margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.85rem; line-height: 1.75; color: var(--muted); }

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 6vw; margin-top: 3rem;
}
.ci-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--ocean); line-height: 1.6; margin-bottom: 2rem;
}
.ci-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.ci-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0; margin-top: 7px;
}
.ci-row p { font-size: 0.9rem; line-height: 1.55; color: var(--text); }
.ci-row a { color: var(--teal); text-decoration: none; }
.ci-row a:hover { text-decoration: underline; }
.ci-avail {
  margin-top: 2rem; padding: 1.2rem 1.5rem;
  background: var(--navy); display: flex; align-items: center; gap: 1rem;
}
.ci-avail-dot {
  width: 8px; height: 8px; background: #3CCF91;
  border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 8px #3CCF91; animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.ci-avail p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.ci-avail strong { color: #fff; }

/* FORM */
.sp-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.sp-form label {
  font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.sp-form input,
.sp-form textarea,
.sp-form select {
  padding: 12px 14px; border: 1px solid var(--border);
  background: var(--pearl); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text); outline: none;
  transition: border-color .2s, background .2s; width: 100%;
  border-radius: 0;
}
.sp-form input:focus,
.sp-form textarea:focus,
.sp-form select:focus { border-color: var(--teal); background: #fff; }
.sp-form textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: var(--navy); color: #fff; border: none;
  padding: 14px 36px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  align-self: flex-start; transition: background .2s;
}
.form-submit:hover { background: var(--ocean); }
.form-submit.sent { background: #1A6B4A; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#sp-footer { background: var(--abyss); border-top: 1px solid var(--rule); }
.footer-top { padding: 3.5rem 0 2rem; }
.footer-top .container {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4vw;
}
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-brand-row img { height: 38px; width: 38px; object-fit: contain; opacity: 0.75; }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,0.85); letter-spacing: 0.05em;
}
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.7; }
.footer-col h5 {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.84rem; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-full { display: flex; flex-direction: column; gap: 0; }
.svc-full-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--parchment);
}
.svc-full-row:nth-child(even) .svc-full-img { order: -1; }
.svc-full-content { padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.svc-full-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--navy); margin-bottom: 1rem;
}
.svc-full-content p { font-size: 0.92rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.5rem; }
.svc-full-content ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.svc-full-content li {
  font-size: 0.88rem; color: var(--text);
  padding-left: 1.2rem; position: relative;
}
.svc-full-content li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.svc-full-img {
  background: var(--navy); min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.svc-full-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,108,168,0.2) 0%, transparent 60%);
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6vw; align-items: center;
}
.about-intro p { font-size: 0.95rem; line-height: 1.85; color: var(--muted); margin-bottom: 1.2rem; }
.about-visual {
  background: var(--navy); padding: 3.5rem;
  position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 80% 20%, rgba(27,108,168,0.3) 0%, transparent 60%);
}
.about-visual-tint {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.93) 0%, rgba(13,51,73,0.88) 100%);
}
.about-quote {
  position: relative; z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-style: italic; font-weight: 400;
  color: #fff; line-height: 1.45; margin-bottom: 1.5rem;
}
.about-quote::before { content: '\201C'; font-size: 3.5rem; color: var(--gold); line-height: 0; vertical-align: -0.8rem; margin-right: 4px; }
.about-attr { position: relative; z-index: 1; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.timeline { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 2rem; padding: 2rem 0;
  border-bottom: 1px solid var(--parchment);
}
.tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold);
}
.tl-body h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.tl-body p { font-size: 0.87rem; line-height: 1.7; color: var(--muted); }

/* ══════════════════════════════════════════
   FLEET / PARTNERS PAGE
══════════════════════════════════════════ */
.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.fleet-card {
  border: 1px solid var(--border); padding: 2rem;
  transition: border-color .2s, box-shadow .2s, transform .25s; position: relative;
}
.fleet-card:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-6px); }
.fleet-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height .3s;
}
.fleet-card:hover::before { height: 100%; }
.fleet-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.fleet-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.fleet-card p { font-size: 0.85rem; line-height: 1.7; color: var(--muted); }

.partners-strip {
  background: var(--parchment); padding: 64px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-top: 80px;
}
.partners-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1.5rem; margin-top: 2.5rem;
}
.partner-badge {
  padding: 1rem 2rem; border: 1px solid rgba(0,0,0,0.12);
  background: #fff; font-size: 0.85rem;
  font-weight: 600; color: var(--muted); letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   SCROLL REVEALS
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   HERO SLIDESHOW
══════════════════════════════════════════ */
.sp-hero-slideshow { background: var(--abyss); }
.slideshow-layer {
  position: absolute; inset: 0; z-index: 0;
}
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 7s ease;
  filter: saturate(0.9);
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
/* Per-slide focal points so each photo's embedded logo stays in frame and avoids text overlap */
.slide-1 { background-position: 75% 22%; }
.slide-2 { background-position: center 78%; }
.slide-3 { background-position: 65% 60%; }
.slideshow-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,14,26,0.75) 0%, rgba(6,14,26,0.4) 14%, rgba(6,14,26,0.25) 35%, rgba(6,14,26,0.5) 70%, rgba(6,14,26,0.92) 100%),
    linear-gradient(90deg, rgba(6,14,26,0.55) 0%, transparent 55%);
}
.sp-hero-slideshow .hero-stars { z-index: 1; bottom: 55%; }
.sp-hero-slideshow .hero-body { z-index: 2; }
.sp-hero-slideshow .hero-stats { z-index: 2; border-top-color: rgba(255,255,255,0.12); background: rgba(6,14,26,0.35); }

.slide-dots {
  position: absolute; bottom: 110px; right: 5vw; z-index: 3;
  display: flex; flex-direction: column; gap: 12px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer; padding: 0;
  transition: background .3s, border-color .3s, transform .3s;
}
.dot:hover { transform: scale(1.2); border-color: var(--gold); }
.dot.active { background: var(--gold); border-color: var(--gold); }

@media (max-width: 640px) {
  .slide-dots { bottom: auto; top: 90px; right: 4vw; flex-direction: row; }
}

/* ══════════════════════════════════════════
   ANIMATED COUNTERS
══════════════════════════════════════════ */
.h-stat-n { transition: none; }

/* ══════════════════════════════════════════
   ENTRANCE ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { opacity: 0; animation: fadeInUp .9s ease forwards; animation-delay: .15s; }
.fade-in-up.d1 { animation-delay: .35s; }
.fade-in-up.d2 { animation-delay: .55s; }
.fade-in-up.d3 { animation-delay: .75s; }

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.reveal.slide-from-left { transform: translateX(-40px); }
.reveal.slide-from-left.visible { animation: slideFromLeft .7s ease forwards; }
.reveal.slide-from-right { transform: translateX(40px); }
.reveal.slide-from-right.visible { animation: slideFromRight .7s ease forwards; }
.reveal.pop-in { transform: scale(0.92) translateY(16px); }
.reveal.pop-in.visible { animation: popIn .6s ease forwards; }

.reveal.d1.visible, .reveal.d1 { transition-delay: .08s; }
.reveal.d2.visible, .reveal.d2 { transition-delay: .16s; }
.reveal.d3.visible, .reveal.d3 { transition-delay: .24s; }
.reveal.d4.visible, .reveal.d4 { transition-delay: .32s; }
.reveal.d5.visible, .reveal.d5 { transition-delay: .4s; }

/* Icon spin on hover */
.spin-hover { transition: transform .5s ease; display: inline-block; }
.svc-row:hover .spin-hover { transform: rotate(20deg) scale(1.15); }

/* Pulsing CTA button */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.45); }
  50% { box-shadow: 0 0 0 14px rgba(201,168,76,0); }
}
.pulse-btn { animation: pulseGlow 2.6s ease-in-out infinite; }

/* Suez band background tint for image overlay version */
.suez-band { position: relative; overflow: hidden; }
.suez-band-tint {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.88) 45%, rgba(13,51,73,0.75) 100%);
}

/* Floating icon animation for suez facts + why cards */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.suez-fact:hover .sf-icon { animation: floatY 1.4s ease-in-out infinite; }
.why-card:hover .wc-icon { animation: floatY 1.4s ease-in-out infinite; }

/* Stat number pop */
.reveal-stat { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal-stat.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .suez-band .container,
  .about-intro,
  .svc-full-row { grid-template-columns: 1fr; }
  .svc-full-row:nth-child(even) .svc-full-img { order: 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-top .container { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   MOBILE TIGHTENING — tablet (≤768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 6vw; }
  .section-pad { padding: 64px 0; }
  .sec-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* Hero */
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-btns { width: 100%; }
  .hero-btns a { flex: 1; text-align: center; padding: 13px 16px; }
  .hero-coords { font-size: 0.6rem; gap: 6px; }
  .hero-coords::before, .hero-coords::after { width: 16px; }

  /* Page hero */
  .page-hero { padding: 110px 0 56px; }

  /* Services full */
  .svc-full-content { padding: 2.5rem 6vw; }
  .svc-full-img { min-height: 220px; font-size: 3.5rem; }

  /* Why grid stays 2-col until phone breakpoint */
  .why-card { padding: 1.8rem 1.4rem; }

  /* Timeline */
  .timeline { margin-top: 2.5rem; }
}

/* ══════════════════════════════════════════
   MOBILE TIGHTENING — phone (≤640px)
══════════════════════════════════════════ */
@media (max-width: 640px) {
  #sp-nav ul, .nav-cta-btn, .lang-toggle { display: none; }
  .nav-toggle { display: flex; }
  #sp-nav { height: 64px; }
  #sp-nav .container { padding: 0 5vw; }
  .sp-logo img { height: 34px; width: 34px; }
  .sp-logo { padding: 5px 10px 5px 6px; gap: 8px; }
  .sp-wordmark strong { font-size: 0.92rem; }
  .sp-wordmark span { font-size: 0.52rem; letter-spacing: 0.18em; }
  .mobile-menu { top: 64px; padding: 1.2rem 6vw; max-height: calc(100vh - 64px); overflow-y: auto; }

  /* Hero */
  .sp-hero { padding-top: 64px; }
  .hero-body .container { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .hero-h1 { font-size: 2rem; line-height: 1.12; margin-bottom: 1.1rem; }
  .hero-sub { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.8rem; }
  .hero-btns { flex-direction: column; gap: 0.7rem; }
  .hero-btns a { width: 100%; padding: 14px; font-size: 0.72rem; }
  .hero-coords { margin-bottom: 1.3rem; }

  .hero-stats { flex-wrap: wrap; }
  .h-stat { flex: 0 0 50%; padding: 1.2rem 0.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .h-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .h-stat-n { font-size: 1.5rem; }
  .h-stat-l { font-size: 0.58rem; }

  .slide-dots { top: 78px; right: 4vw; gap: 8px; }
  .dot { width: 8px; height: 8px; }

  /* Sections */
  .container { padding: 0 6vw; }
  .section-pad { padding: 52px 0; }
  .eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; }
  .sec-title { font-size: 1.6rem; margin-bottom: 1rem; }
  .sec-sub { font-size: 0.9rem; }

  .intro-strip { padding: 1.6rem 0; }
  .intro-strip .container { flex-direction: row; gap: 1rem; padding: 0 6vw; }
  .strip-rule { height: 36px; }
  .intro-strip p { font-size: 0.88rem; }

  /* Services list */
  .svc-row { grid-template-columns: 38px 1fr; gap: 1rem; padding: 1.5rem 0; }
  .svc-icon { display: none; }
  .svc-num { font-size: 1.6rem; }
  .svc-body h3 { font-size: 1.1rem; }
  .svc-body p { font-size: 0.84rem; }
  .svc-row:hover { padding-left: 0; padding-right: 0; margin: 0; }

  /* Suez band */
  .suez-band { padding: 56px 0; }
  .suez-band h2 { font-size: 1.5rem; }
  .suez-fact { padding: 1.1rem; }

  /* Why grid → single column on phone */
  .why-grid, .fleet-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.8rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .sp-form input, .sp-form textarea, .sp-form select { font-size: 16px; } /* prevents iOS zoom-on-focus */
  .form-submit { width: 100%; text-align: center; }

  /* Contact */
  .ci-lead { font-size: 1rem; }

  /* Footer */
  .footer-top { padding: 2.5rem 0 1.5rem; }
  .footer-top .container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

  /* Services full page */
  .svc-full-content { padding: 2rem 6vw; }
  .svc-full-content h2 { font-size: 1.4rem; }
  .svc-full-img { min-height: 160px; font-size: 2.8rem; }

  /* Timeline */
  .tl-item { grid-template-columns: 60px 1fr; gap: 1rem; padding: 1.5rem 0; }
  .tl-year { font-size: 1.2rem; }

  /* About */
  .about-visual { padding: 2.2rem; }
  .about-quote { font-size: 1.25rem; }

  /* Fleet partners strip */
  .partners-strip { padding: 44px 0; margin-top: 56px; }
  .partner-badge { padding: 0.75rem 1.3rem; font-size: 0.76rem; }

  /* CTA strips */
  .cta-strip { padding: 48px 0 !important; }
}

@media (max-width: 380px) {
  .hero-h1 { font-size: 1.75rem; }
  .h-stat { flex: 0 0 50%; }
}

/* ══════════════════════════════════════════
   RTL SUPPORT (Arabic)
══════════════════════════════════════════ */
html.is-rtl body { font-family: 'Tajawal', 'DM Sans', sans-serif; }
html.is-rtl h1, html.is-rtl h2, html.is-rtl h3, html.is-rtl h4 {
  font-family: 'Tajawal', 'Playfair Display', serif;
  font-weight: 700;
}
html.is-rtl .hero-h1 em,
html.is-rtl .suez-band h2 em { font-style: normal; }

/* Mirror nav */
html.is-rtl #sp-nav .container { flex-direction: row-reverse; }
html.is-rtl .sp-logo { flex-direction: row-reverse; }
html.is-rtl .nav-right { flex-direction: row-reverse; }
html.is-rtl #sp-nav ul { flex-direction: row-reverse; }
html.is-rtl .mobile-menu { text-align: right; }

/* Mirror hero coords divider */
html.is-rtl .hero-coords { flex-direction: row-reverse; }

/* Mirror service rows / numbered lists */
html.is-rtl .svc-row { grid-template-columns: auto 1fr 60px; }
html.is-rtl .svc-row:hover { direction: rtl; }
html.is-rtl .why-item, html.is-rtl .tl-item { direction: rtl; }

/* Mirror suez facts and footer grids stay same visually but text aligns right */
html.is-rtl .footer-tagline,
html.is-rtl .svc-body p,
html.is-rtl .why-card p,
html.is-rtl .sf-body p,
html.is-rtl .fleet-card p,
html.is-rtl .sec-sub,
html.is-rtl .hero-sub { text-align: right; }

html.is-rtl .sec-title,
html.is-rtl .eyebrow { text-align: right; }

/* Breadcrumb arrow + spacing mirrors naturally with row-reverse not needed since "/" is symmetric */
html.is-rtl .breadcrumb { flex-direction: row-reverse; justify-content: flex-end; }

/* Form labels / inputs align right */
html.is-rtl .sp-form label,
html.is-rtl .sp-form input,
html.is-rtl .sp-form textarea,
html.is-rtl .sp-form select { text-align: right; }

/* Underline animation direction for nav links */
html.is-rtl #sp-nav ul a::after { left: auto; right: 0; }

/* Bullet positions in lists */
html.is-rtl .svc-full-content li { padding-left: 0; padding-right: 1.2rem; }
html.is-rtl .svc-full-content li::before { left: auto; right: 0; }

/* ci-row dots / why-item numbers stay left visually but flip with content flow */
html.is-rtl .ci-row,
html.is-rtl .suez-fact,
html.is-rtl .why-item { flex-direction: row-reverse; text-align: right; }

html.is-rtl .footer-col, html.is-rtl .footer-brand-row { text-align: right; }
html.is-rtl .footer-brand-row { flex-direction: row-reverse; }
html.is-rtl .footer-bottom .container { flex-direction: row-reverse; }

/* Mobile lang toggle RTL */
html.is-rtl .mobile-lang-toggle { flex-direction: row-reverse; }

