/* C:\xampp\htdocs\techsolution\css\who-we-are.css */
/* Dark theme – white text, red accents, images: object-fit cover to avoid blank spaces on mobile */
/* All cards now use the same semi-transparent background as the contact section */

:root {
  --red       : #df0101;
  --red-dark  : #e70000;
  --red-mid   : #ce0000;
  --red-soft  : rgba(208,2,27,0.15);
  --black     : #0d0d0d;
  --white     : #ffffff;
  --bg-main   : #130508;
  --bg-card   : rgba(255,255,255,0.15);   /* ← updated to match contact card style */
  --muted     : #cbd5e1;
  --gray-bg   : #1a1a1f;
  --font-main : 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Force dark background */
body.page-who-we-are {
    background: #0d0d0d !important;
}

/* ── HERO ─────────────────────────────────────────────────── */
.wwa-hero {
  position: relative;
  background: #0d0d0d;
  padding: 110px 0 0;
  overflow: hidden;
}
.wwa-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(208,2,27,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,2,27,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 0;
}
.wwa-hero-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(208,2,27,0.16) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.wwa-hero-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3rem;
  align-items: stretch;
  min-height: 460px;
}
.wwa-hero-text {
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wwa-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(208,2,27,0.15);
  border: 1px solid rgba(208,2,27,0.28);
  color: #6b010c;
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.wwa-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; color: #fff;
  line-height: 1.12; margin-bottom: 1.2rem;
  letter-spacing: -.5px;
}
.wwa-hero h1 span { color: #D0021B; }
.wwa-hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.08rem; color: rgba(255,255,255,0.55);
  line-height: 1.82; max-width: 480px;
}
.wwa-location {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 1.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px; border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: .4px;
  width: fit-content;
}
.wwa-location i { color: #D0021B; font-size: 12px; }

/* Hero image – no blank spaces on mobile */
.wwa-hero-img {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  align-self: stretch;
  min-height: 400px;
  background: #1a1a1e;
}
.wwa-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* prevents blank spaces */
  object-position: center;
  display: block;
  filter: brightness(.80);
}
.wwa-hero-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,#1a1a1e,#111114);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,0.12);
}
.wwa-hero-img-placeholder i { font-size: 44px; }
.wwa-hero-img-placeholder span {
  font-family: 'Sora', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.wwa-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, #0d0d0d 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── BREADCRUMB (dark adaptation) ───────────────────────────── */
.wwa-breadcrumb {
  background: var(--gray-bg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 13px 0;
}
.wwa-bc-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 500; color: #ddd0d4;
}
.wwa-bc-inner a { color: #ddd0d4; text-decoration: none; transition: color .18s; }
.wwa-bc-inner a:hover { color: var(--red-mid); }
.wwa-bc-inner i { font-size: 9px; opacity: .6; }
.wwa-bc-inner span { color: var(--red-mid); font-weight: 600; }

/* ── SECTION SHELL (dark backgrounds) ────────────────────────── */
.wwa-section { padding: 90px 0; }
.wwa-section-alt { background: var(--gray-bg); }
.wwa-section-dark { background: #0d0d0d; }
.wwa-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.wwa-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red-mid);
  margin-bottom: .5rem;
}
.wwa-label-light { color: rgba(255,255,255,0.7); }
.wwa-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2; margin-bottom: .9rem;
  letter-spacing: -.3px;
}
.wwa-title-light { color: #fff; }
.wwa-title span { color: var(--red-mid); }
.wwa-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  color: #ddd0d4;
  line-height: 1.82; max-width: 560px;
}
.wwa-desc-light { color: rgba(255,255,255,.55); }

/* ── WHO WE ARE — story (dark cards) ─────────────────────────── */
.wwa-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.wwa-story-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem; color: #ddd0d4;
  line-height: 1.85; margin-bottom: 1.2rem;
}
.wwa-story-text p:last-child { margin-bottom: 0; }
.wwa-story-text strong { color: #fff; font-weight: 600; }

.wwa-story-stats {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 2.2rem;
}
.wwa-stat-pill {
  background: var(--bg-card);               /* rgba(255,255,255,0.15) */
  border: 1px solid rgba(208,2,27,0.2);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  text-align: center; flex: 1; min-width: 120px;
  transition: box-shadow .2s, transform .2s;
}
.wwa-stat-pill:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.3); transform: translateY(-2px); border-color: var(--red); background: rgba(255,255,255,0.2); }
.wwa-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--red-mid); line-height: 1;
  margin-bottom: .2rem;
}
.wwa-stat-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem; color: #ddd0d4;
}

/* Story image – no blank spaces */
.wwa-story-img {
  border-radius: 18px; overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  background: #1a1a1e;
}
.wwa-story-img img {
  width: 100%; height: 420px;
  object-fit: cover;  /* prevents blank spaces */
  object-position: center;
  display: block;
}
.wwa-story-img-placeholder {
  width: 100%; height: 420px;
  background: linear-gradient(135deg,#1a1a1e,#111114);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: rgba(255,255,255,0.2);
}
.wwa-story-img-placeholder i { font-size: 44px; }
.wwa-story-img-placeholder span {
  font-family: 'Sora', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.wwa-story-img::before {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 80px; height: 80px;
  background: var(--red);
  border-radius: 14px;
  z-index: -1;
}

/* ── WHY WE EXIST (dark cards) ───────────────────────────────── */
.wwa-exist-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.wwa-exist-cards { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.5rem; }
.wwa-exist-card {
  display: flex; align-items: flex-start; gap: 1.1rem;
  background: var(--bg-card);               /* rgba(255,255,255,0.15) */
  border: 1px solid rgba(208,2,27,0.2);
  border-radius: 14px; padding: 1.4rem 1.5rem;
  transition: border-color .2s, background .2s;
}
.wwa-exist-card:hover {
  border-color: var(--red);
  background: rgba(255,255,255,0.2);
}
.wwa-exist-icon {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: 12px;
  background: rgba(208,2,27,0.15);
  border: 1px solid rgba(208,2,27,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red-mid);
}
.wwa-exist-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: .97rem; font-weight: 700;
  color: #fff; margin-bottom: .35rem;
}
.wwa-exist-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem; color: #ddd0d4;
  margin: 0; line-height: 1.7;
}

.wwa-exist-quote { position: relative; margin-top: 2.5rem; }
.wwa-big-quote {
  font-family: Georgia, serif;
  font-size: 5rem; line-height: 1;
  color: rgba(208,2,27,0.3);
  margin-bottom: -.5rem;
}
.wwa-exist-quote blockquote {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem; font-style: italic;
  color: rgba(255,255,255,.72); line-height: 1.75;
  margin: 0 0 1.2rem; padding: 0; border: none;
}
.wwa-exist-quote cite {
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.30);
  display: flex; align-items: center; gap: 10px;
  font-style: normal;
}
.wwa-exist-quote cite::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--red); border-radius: 2px;
}

/* ── OUR GOAL & PURPOSE (dark cards) ─────────────────────────── */
.wwa-goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem; margin-top: 3rem;
}
.wwa-goal-card {
  background: var(--bg-card);               /* rgba(255,255,255,0.15) */
  border: 1px solid rgba(208,2,27,0.2);
  border-radius: 18px; padding: 2rem 1.8rem;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.wwa-goal-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.wwa-goal-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(0,0,0,0.3); border-color: var(--red); background: rgba(255,255,255,0.2); }
.wwa-goal-card:hover::before { transform: scaleX(1); }
.wwa-goal-num {
  font-family: 'Sora', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: rgba(208,2,27,0.2); line-height: 1;
  margin-bottom: .8rem; letter-spacing: -2px;
}
.wwa-goal-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: rgba(208,2,27,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--red-mid);
  margin-bottom: 1.1rem;
  transition: background .2s, color .2s;
}
.wwa-goal-card:hover .wwa-goal-icon { background: var(--red); color: #fff; }
.wwa-goal-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.02rem; font-weight: 700;
  color: #fff; margin-bottom: .5rem;
}
.wwa-goal-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: #ddd0d4;
  line-height: 1.75; margin: 0;
}

/* ── HOW WE HELP YOUR JOURNEY (dark cards) ───────────────────── */
.wwa-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.wwa-journey-steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.wwa-journey-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.wwa-step-circle {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 50%;
  background: rgba(208,2,27,0.15);
  border: 2px solid rgba(208,2,27,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1rem; font-weight: 800; color: var(--red-mid);
  transition: background .2s, color .2s, border-color .2s;
}
.wwa-journey-step:hover .wwa-step-circle { background: var(--red); color: #fff; border-color: var(--red); }
.wwa-journey-step h4 {
  font-family: 'Sora', sans-serif;
  font-size: .97rem; font-weight: 700;
  color: #fff; margin-bottom: .3rem;
}
.wwa-journey-step p {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: #ddd0d4; margin: 0; line-height: 1.7;
}

/* Journey image – no blank spaces */
.wwa-journey-img {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  background: #1a1a1e;
}
.wwa-journey-img img {
  width: 100%; height: 400px;
  object-fit: cover;  /* prevents blank spaces */
  object-position: center;
  display: block;
}
.wwa-journey-img-placeholder {
  width: 100%; height: 400px;
  background: linear-gradient(135deg,#1a1a1e,#111114);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: rgba(255,255,255,0.2);
}
.wwa-journey-img-placeholder i { font-size: 44px; }
.wwa-journey-img-placeholder span {
  font-family: 'Sora', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}

/* ── VALUES STRIP (dark cards) ───────────────────────────────── */
.wwa-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem; margin-top: 3rem;
}
.wwa-value {
  text-align: center; padding: 2rem 1.4rem;
  background: var(--bg-card);               /* rgba(255,255,255,0.15) */
  border: 1px solid rgba(208,2,27,0.2);
  border-radius: 16px;
  transition: border-color .2s, background .2s;
}
.wwa-value:hover { border-color: var(--red); background: rgba(255,255,255,0.2); }
.wwa-value i { font-size: 28px; color: var(--red-mid); margin-bottom: 1rem; display: block; }
.wwa-value h4 {
  font-family: 'Sora', sans-serif;
  font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .4rem;
}
.wwa-value p {
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem; color: #ddd0d4; margin: 0; line-height: 1.65;
}

/* ── CTA (unchanged) ──────────────────────────────────────────── */
.wwa-cta {
  text-align: center; padding: 80px 2rem;
  background: var(--red);
  position: relative; overflow: hidden;
}
.wwa-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.wwa-cta-inner { position: relative; z-index: 1; }
.wwa-cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: #fff;
  margin-bottom: .9rem; letter-spacing: -.3px;
}
.wwa-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem; color: rgba(255,255,255,.72);
  max-width: 480px; margin: 0 auto 2.2rem; line-height: 1.75;
}
.wwa-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.wwa-btn-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--red);
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  padding: 13px 28px; border-radius: 50px;
  text-decoration: none;
  transition: box-shadow .2s, transform .15s;
}
.wwa-btn-w:hover { box-shadow: 0 8px 24px rgba(0,0,0,.18); transform: translateY(-2px); color: var(--red); text-decoration: none; }
.wwa-btn-o {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.45);
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  padding: 13px 28px; border-radius: 50px;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .15s;
}
.wwa-btn-o:hover { border-color: #fff; background: rgba(255,255,255,.10); transform: translateY(-2px); color: #fff; text-decoration: none; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.wwa-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.wwa-reveal.visible { opacity: 1; transform: translateY(0); }
.wwa-reveal-delay { transition-delay: .15s; }

/* ── RESPONSIVE (no extra blank spaces on mobile) ───────────────── */
@media (max-width: 900px) {
  .wwa-hero-inner  { grid-template-columns: 1fr; gap: 2rem; min-height: unset; }
  .wwa-hero-text   { padding-bottom: 0; }
  .wwa-hero-img    { min-height: 280px; border-radius: 16px; }
  .wwa-story-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .wwa-exist-wrap  { grid-template-columns: 1fr; gap: 2.5rem; }
  .wwa-journey     { grid-template-columns: 1fr; gap: 2.5rem; }
  .wwa-hero        { padding: 70px 0 0; }
  
  /* Ensure images are cover on mobile – no blank spaces */
  .wwa-story-img img,
  .wwa-journey-img img,
  .wwa-hero-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 580px) {
  .wwa-section { padding: 60px 0; }
  .wwa-hero { padding-top: 50px; }
  .wwa-hero-img { min-height: 220px; }
  .wwa-story-img img,
  .wwa-journey-img img {
    height: 280px;
  }
}