/* =========================================================================
   ZALMI TRADING & CONTRACTING W.L.L — STYLESHEET
   Design-only file. Colors are defined once as CSS variables below —
   change them there to re-theme the entire website.
   ========================================================================= */

:root {
  --navy: #0E1A3D;
  --navy-light: #1B2C5C;
  --navy-lighter: #2C3F73;
  --accent: #8BC53F;
  --accent-dark: #5F9A2E;
  --white: #FFFFFF;
  --gray-light: #F1F5F9;
  --gray-100: #F8FAFC;
  --gray: #64748B;
  --text: #0E1A3D;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.18);
  --container: 1240px;
  --ff-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --ff-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 16px; }
.section-head p { color: var(--gray); font-size: 17px; }
.bg-light { background: var(--gray-100); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy .section-head p { color: rgba(255,255,255,0.68); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; transition: color .15s; }
.topbar a:hover { color: var(--accent); }
.topbar-socials { display: flex; gap: 14px; }
.topbar svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 700px) {
  .topbar { font-size: 12.5px; }
  .topbar-left { gap: 14px; }
  .topbar-hours { display: none; }
}
@media (max-width: 480px) {
  .topbar-socials { display: none; }
  .topbar-left { flex: 1; justify-content: space-between; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-img { height: 54px; width: auto; display: block; flex-shrink: 0; }
.brand-text { line-height: 1.2; }
.brand-text .brand-sub { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--gray); text-transform: uppercase; }
.footer-brand .brand-logo-img { height: 50px; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 6px;
  position: relative;
  transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--accent-dark); background: var(--gray-100); }
.main-nav a.active { color: var(--accent-dark); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: var(--navy);
  border: none;
  width: 44px; height: 44px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content:""; }
.nav-toggle-icon { width: 22px; height: 2px; background: var(--white); position: relative; display:block; }
.nav-toggle-icon::before, .nav-toggle-icon::after {
  content: "";
  position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--white);
  transition: transform .2s;
}
.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after { top: 7px; }

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 24px;
    gap: 4px;
    transition: right .3s ease;
    z-index: 600;
    box-shadow: -12px 0 40px rgba(0,0,0,0.25);
  }
  .main-nav.open { right: 0; }
  .main-nav a { color: var(--white); padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
  .main-nav a:hover { background: rgba(255,255,255,0.06); color: var(--accent); }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { color: var(--accent); }
  .nav-toggle { display: flex; }
  .nav-actions .btn-header-cta { display: none; }
}
.nav-scrim {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.55);
  z-index: 550;
}
.nav-scrim.open { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(120deg, rgba(15,23,42,0.94) 10%, rgba(15,23,42,0.72) 60%, rgba(15,23,42,0.5)),
              linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, #24324a 100%);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,23,42,0.95) 5%, rgba(15,23,42,0.78) 50%, rgba(15,23,42,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; padding: 48px 0 56px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero-logo-mark {
  width: 150px; height: auto; margin-bottom: 20px;
  filter:
    drop-shadow(0 0 28px rgba(14,26,61,0.95))
    drop-shadow(0 0 14px rgba(14,26,61,0.9))
    drop-shadow(0 6px 18px rgba(0,0,0,0.4));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,197,63,0.14);
  border: 1px solid rgba(139,197,63,0.4);
  color: var(--accent);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.6vw, 52px);
  max-width: 900px;
  margin: 0 auto 22px;
}
.hero p.lead {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
@media (max-width: 480px) { .hero-ctas { flex-direction: column; width: 100%; } .hero-ctas .btn { width: 100%; } }
.hero-trust { display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; align-items: center; }
.hero-trust strong { font-family: var(--ff-heading); font-size: 26px; color: var(--accent); }
.hero-trust span { font-size: 13px; color: rgba(255,255,255,0.75); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(120deg, rgba(15,23,42,0.93), rgba(15,23,42,0.8)), linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 76px 0 64px;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumbs { font-size: 13.5px; color: rgba(255,255,255,0.65); margin-bottom: 16px; display:flex; gap:8px; align-items:center; }
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--accent); }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 44px); max-width: 760px; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 640px; }

/* ---------- Stats ---------- */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  transform: translateY(0);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-grid > div {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-grid > div:last-child { border-right: none; }
.stats-grid strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--accent);
  margin-bottom: 6px;
}
.stats-grid span { font-size: 14px; color: rgba(255,255,255,0.78); font-weight: 500; }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ---------- Cards Grid ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 992px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }
/* Rows with fewer cards than columns center instead of hugging the left edge */
.grid-center { display: flex; flex-wrap: wrap; justify-content: center; }
.grid-center > * { flex: 0 1 380px; }
@media (max-width: 640px) { .grid-center > * { flex: 0 1 100%; } }


/* ---------- Why Choose Us ---------- */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
  transition: box-shadow .2s ease, transform .2s ease;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card .num {
  font-family: var(--ff-heading);
  font-weight: 800;
  color: var(--gray-light);
  -webkit-text-stroke: 1.5px var(--navy);
  color: transparent;
  font-size: 34px;
  margin-bottom: 12px;
  display: block;
}
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { color: var(--gray); font-size: 14.5px; }

/* ---------- Industries ---------- */
.industry-pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 768px) { .industry-pill-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .industry-pill-grid { grid-template-columns: 1fr; } }
.industry-pill {
  display: flex; align-items: center; gap: 14px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 22px;
  border-radius: var(--radius);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 15.5px;
  transition: background .2s ease, transform .2s ease;
}
.industry-pill:hover { background: var(--navy-light); transform: translateY(-3px); }
.industry-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ---------- Equipment Full Cards (Equipment page) ---------- */
.equip-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E7ECF3;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.equip-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.equip-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy-lighter) 100%);
  overflow: hidden;
}
.equip-media img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.equip-media .fallback-icon {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
}
.equip-media .fallback-icon svg { width: 46px; height: 46px; stroke: var(--accent); }
.equip-media .fallback-icon span { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; }
.equip-media .cap-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent);
  color: var(--navy);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 30px;
  z-index: 2;
}
.equip-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.equip-body h3 { font-size: 19px; margin-bottom: 8px; }
.equip-body p { color: var(--gray); font-size: 14.5px; margin-bottom: 18px; flex: 1; }
.equip-cat-heading {
  display: flex; align-items: center; gap: 14px;
  margin: 56px 0 28px;
}
.equip-cat-heading:first-child { margin-top: 0; }
.equip-cat-heading h2 { font-size: 24px; white-space: nowrap; }
.equip-cat-heading .line { height: 1px; background: #E2E8F0; flex: 1; }

/* ---------- Services ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #E7ECF3;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-media {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy-lighter) 100%);
  overflow: hidden;
}
.service-media img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.service-media .fallback-icon {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: rgba(255,255,255,0.85);
}
.service-media .fallback-icon svg { width: 44px; height: 44px; stroke: var(--accent); }
.service-media .fallback-icon span { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; }
.service-body { padding: 26px 26px 28px; }
.service-body .icon-badge {
  width: 46px; height: 46px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
}
.service-body .icon-badge svg { width: 22px; height: 22px; stroke: var(--accent-dark); }
.service-body h3 { font-size: 20px; margin-bottom: 10px; }
.service-body p { color: var(--gray); font-size: 14.5px; margin-bottom: 18px; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: rgba(139,197,63,0.15);
  border-radius: 50%;
}
.cta-band .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(22px, 2.6vw, 32px); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 16px; }
.cta-band .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 480px) { .cta-band .ctas { flex-direction: column; width: 100%; } .cta-band .ctas .btn { width: 100%; } }
.cta-band.cta-photo {
  background:
    linear-gradient(120deg, rgba(15,23,42,0.94) 20%, rgba(15,23,42,0.8)),
    url('assets/images/equipment/mobile-crane.jpg') center 35% / cover no-repeat;
  padding: 84px 0;
}

/* ---------- How It Works (Process) ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background .2s ease, transform .2s ease;
}
.process-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.process-card .step-num {
  display: block;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 14px;
}
.process-card h3 { color: var(--white); font-size: 17px; margin-bottom: 8px; }
.process-card p { color: rgba(255,255,255,0.68); font-size: 14px; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- About Page ---------- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .about-hero-grid { grid-template-columns: 1fr; } .about-media { aspect-ratio: 16/9; } }
@media (max-width: 480px) { .about-media { aspect-ratio: 4/3; } }
.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3.4;
  background: linear-gradient(150deg, var(--navy), var(--navy-light) 60%, var(--navy-lighter));
  box-shadow: var(--shadow-lg);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.about-media .fallback-icon { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(255,255,255,0.85); }
.about-media .fallback-icon svg { width: 56px; height: 56px; stroke: var(--accent); }
.about-media .fallback-icon .fallback-logo { width: 150px; height: auto; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35)); }
.about-copy p { color: var(--gray); font-size: 16.5px; margin-bottom: 18px; }
.about-copy p:last-of-type { margin-bottom: 28px; }
.highlight-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .highlight-list { grid-template-columns: 1fr; } }
.highlight-list li { display: flex; align-items: center; gap: 10px; font-family: var(--ff-heading); font-weight: 600; font-size: 14.5px; }
.highlight-list svg { width: 20px; height: 20px; stroke: var(--accent-dark); flex-shrink: 0; }

/* ---------- Mission / Vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 768px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent);
}
.mv-card .icon-badge { width: 52px; height: 52px; background: var(--navy); border-radius: 12px; display:flex; align-items:center; justify-content:center; margin-bottom: 18px; }
.mv-card .icon-badge svg { width: 26px; height: 26px; stroke: var(--accent); }
.mv-card h3 { font-size: 20px; margin-bottom: 12px; }
.mv-card p { color: var(--gray); font-size: 15.5px; }

/* ---------- Meet Our Team ---------- */
/* Flexbox instead of grid: a partial last row (e.g. 5 members) centers
   itself instead of sitting flush-left with a big empty gap beside it. */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.team-grid > .team-card { flex: 0 1 260px; }
@media (max-width: 480px) { .team-grid > .team-card { flex: 0 1 100%; } }
.team-card {
  background: var(--white);
  border: 1px solid #E7ECF3;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  position: relative;
  width: 110px; height: 110px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy), var(--navy-light));
  box-shadow: var(--shadow-sm);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.team-avatar-fallback {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-heading); font-weight: 700; font-size: 30px;
  color: var(--accent);
}
.team-card h3 { font-size: 17px; margin-bottom: 4px; }
.team-card p { color: var(--gray); font-size: 14px; }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: flex-start; }
@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-info-card h3 { color: var(--white); font-size: 20px; margin-bottom: 22px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item .ic {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(139,197,63,0.16);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item .ic svg { width: 21px; height: 21px; stroke: var(--accent); }
.contact-item h4 { color: var(--white); font-size: 14.5px; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: rgba(255,255,255,0.75); font-size: 14.5px; }
.contact-item a:hover { color: var(--accent); }
.contact-item-link { display: block; transition: transform .15s ease; }
.contact-item-link:hover { transform: translateX(3px); }
.contact-item-link:hover h4 { color: var(--accent); }
.contact-socials { display: flex; gap: 12px; margin-top: 28px; }
.contact-socials a { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.contact-socials a:hover { background: var(--accent); }
.contact-socials svg { width: 18px; height: 18px; stroke: var(--white); }
.contact-socials a:hover svg { stroke: var(--navy); }

.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow-sm); border: 1px solid #E7ECF3; }
.contact-form-card h3 { font-size: 20px; margin-bottom: 6px; }
.contact-form-card > p { color: var(--gray); font-size: 14.5px; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--ff-heading); font-weight: 600; font-size: 13.5px; color: var(--navy); }
.field input, .field select, .field textarea {
  border: 1.5px solid #E2E8F0;
  border-radius: 7px;
  padding: 13px 14px;
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,197,63,0.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--gray); margin-top: 14px; }
.form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #E7ECF3; height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.maps-grid .map-label { font-family: var(--ff-heading); font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 10px; }
.maps-grid .map-wrap { margin-top: 0; height: 320px; }
@media (max-width: 768px) { .maps-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-text .brand-sub { color: rgba(255,255,255,0.55); }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; margin: 16px 0 20px; color: rgba(255,255,255,0.65); max-width: 320px; }
.footer-col ul li { margin-bottom: 11px; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .15s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-col ul li a.footer-address { display: inline-flex; align-items: flex-start; gap: 8px; }
.footer-col ul li a.footer-address svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; stroke: var(--accent); }
.footer-socials { display: flex; gap: 10px; margin-top: 6px; }
.footer-socials a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer-socials a:hover { background: var(--accent); }
.footer-socials svg { width: 17px; height: 17px; stroke: var(--white); }
.footer-socials a:hover svg { stroke: var(--navy); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 13px; color: rgba(255,255,255,0.55); flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  transition: transform .2s ease;
  animation: wa-pulse 2.6s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5), 0 10px 26px rgba(37,211,102,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,0.45); }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 26px; left: 26px;
  z-index: 900;
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s, transform .2s, visibility .2s;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; stroke: var(--accent); }

/* ---------- Misc ---------- */
.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--navy); color: var(--white); padding: 12px 18px; z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; top: 0; }

/* ---------- Scroll reveal ---------- */
/* Subtle one-time fade/rise as cards enter the viewport - keeps the page
   feeling alive on mobile instead of a static, document-like scroll. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
