/* ═══════════════════════════════════════════════════════════════
   EC Movers Ltd — pages.css
   Additional styles for: inner page hero, awards, fleet,
   about page, services page, contact page, nav dropdown
═══════════════════════════════════════════════════════════════ */

/* ── NAV DROPDOWN ────────────────────────────────────────────── */
.nav-has-drop {
  position: relative;
}
.nav-drop {
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem;
  min-width: 210px;
  box-shadow: 0 20px 50px rgba(14, 17, 22, 0.12);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
  z-index: 200;
}
.nav-drop::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-top: none;
}
.nav-has-drop:hover .nav-drop,
.nav-has-drop:focus-within .nav-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-drop a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate) !important;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition:
    background 0.18s,
    color 0.18s !important;
  white-space: nowrap;
}
.nav-drop a::after {
  content: "";
  position: absolute;
  top: 100%;
  height: 10px;
  width: 100%;
  display: none !important;
}
.nav-drop a:hover {
  background: var(--accent-pale);
  color: var(--accent) !important;
}

/* stuck nav dropdown link color fix */
#nav.stuck .nav-has-drop > .nav-drop a {
  color: var(--slate) !important;
}

/* ── NAV ACTIVE STATE ────────────────────────────────────────── */
nav a.nav-active {
  color: #fff !important;
}
nav a.nav-active::after {
  width: 100% !important;
}
#nav.stuck nav a.nav-active {
  color: var(--accent) !important;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--ink-mid);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55vw;
  height: 100%;
  background: radial-gradient(
    ellipse at top right,
    rgba(47, 91, 255, 0.22) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.2rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.55);
}
.page-hero h1 {
  font-family: var(--f-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.2rem;
}
.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.78;
}
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.4rem 1rem;
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ── AWARDS SECTION ──────────────────────────────────────────── */
#awards {
  padding: 5rem 0;
  background: var(--white);
}
.awards-inner {
  text-align: center;
}
.awards-inner .sec-h2 {
  margin-bottom: 0.6rem;
}
.awards-inner p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}
.awards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background: var(--smoke);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  min-width: 140px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    border-color 0.25s;
}
.award-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(47, 91, 255, 0.1);
  border-color: var(--accent);
}
.award-icon {
  font-size: 2.6rem;
}
.award-year {
  font-family: var(--f-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.award-title {
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  line-height: 1.4;
}
.award-org {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── FLEET SECTION ───────────────────────────────────────────── */
#fleet {
  padding: var(--section-pad) 0;
  background: var(--smoke);
}
.fleet-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.fleet-header .sec-h2 {
  margin-bottom: 0.6rem;
}
.fleet-header p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 540px;
  margin-inline: auto;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.fleet-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    border-color 0.3s;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(47, 91, 255, 0.1);
  border-color: var(--accent);
}
.fleet-thumb {
  background: var(--accent-pale);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
/* Fleet images: contain so full truck is visible, no awkward crop */
.fleet-thumb .fleet-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 0.75rem;
  background: var(--accent-pale);
}
.fleet-thumb-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}
.fleet-body {
  padding: 1.8rem;
}
.fleet-body h3 {
  font-family: var(--f-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.fleet-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}
.fleet-feat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--slate);
}
.fleet-feat::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.fleet-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--f-head);
}
.fleet-price .from {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fleet-price .amt {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.fleet-price .per {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── FLEET BOOK NOW BUTTON ───────────────────────────────────── */
.fleet-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 8px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition:
    background 0.22s var(--ease),
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
  text-decoration: none;
}
.fleet-book-btn:hover {
  background: var(--accent-d);
  border-color: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(47, 91, 255, 0.32);
}
.fleet-price {
  display: block;
  width: 100%;
}

/* ── COMPARISON TABLE (About page) ──────────────────────────── */
.compare-wrap {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 1.4rem;
  text-align: left;
}
.compare-table th:first-child {
  color: var(--muted);
  background: var(--smoke);
}
.compare-table th.col-ec {
  background: var(--accent);
  color: #fff;
  border-radius: 12px 12px 0 0;
}
.compare-table th.col-them {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 12px 12px 0 0;
}
.compare-table td {
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--slate);
  background: var(--smoke);
}
.compare-table td.col-ec {
  background: var(--accent-pale);
  color: var(--accent);
  font-weight: 700;
}
.compare-table td.col-them {
  color: var(--muted);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.check {
  color: var(--accent);
  font-size: 1rem;
}
.cross {
  color: #b0b8c4;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-split.reverse {
  direction: rtl;
}
.about-split.reverse > * {
  direction: ltr;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  padding: 1.2rem 1.6rem;
  box-shadow: 0 12px 36px rgba(47, 91, 255, 0.35);
  text-align: center;
}
.about-img-float .num {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-img-float .lbl {
  font-size: 0.75rem;
  margin-top: 0.2rem;
  opacity: 0.8;
}
.about-copy .sec-h2 {
  margin-bottom: 1rem;
}
.about-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 0.96rem;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.2rem 0 1.8rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--slate);
}
.about-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    border-color 0.25s;
}
.pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(47, 91, 255, 0.09);
  border-color: var(--accent);
}
.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 0.9rem;
}
.pillar h4 {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.68;
}

.community-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.comm-logo {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.04em;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.comm-logo:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── SERVICES PAGE ───────────────────────────────────────────── */
.service-detail {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:nth-child(even) {
  background: var(--smoke);
}
.service-detail:last-child {
  border-bottom: none;
}

.sd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sd-layout.flip {
  direction: rtl;
}
.sd-layout.flip > * {
  direction: ltr;
}

.sd-img {
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
}
.sd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sd-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
}

.sd-copy .eyebrow {
  margin-bottom: 0.8rem;
}
.sd-copy .sec-h2 {
  margin-bottom: 1rem;
}
.sd-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.sd-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin: 1.4rem 0 2rem;
}
.sd-feat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--slate);
}
.sd-feat::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Services Feature Cards */
/* Section */
.section-why {
  background: var(--blue-pale);
  padding: 4rem 0;
}

/* Header */
.section-why .header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-why .sec-h2 {
  color: var(--blue);
}

.section-why .header p {
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
}

/* Grid */
.section-why .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin-inline: auto;
}

/* Card */
.section-why .card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--border);
}

/* Icon */
.section-why .card .icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

/* Title */
.section-why .card strong {
  color: var(--blue);
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--f-head);
}

/* Text */
.section-why .card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.section-why .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(47, 91, 255, 0.1);
  border-color: var(--accent);
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--smoke);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.ci-card:hover {
  border-color: var(--accent);
  background: var(--accent-pale);
}
.ci-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.ci-body h4 {
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.ci-body p {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}
.ci-body a {
  color: var(--accent);
}
.ci-body span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.15rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}
.soc-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--slate);
  transition: all 0.2s var(--ease);
}
.soc-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.map-embed {
  background: var(--smoke);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: var(--f-head);
  flex-direction: column;
  gap: 0.5rem;
}
.map-embed .map-placeholder-icon {
  font-size: 2.5rem;
}

/* ── SECTION DIVIDER ─────────────────────────────────────────── */
.section-sep {
  height: 1px;
  background: var(--border);
  margin: 0;
  border: none;
}

/* ── RESPONSIVE (pages) ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-split.reverse {
    direction: ltr;
  }
  .sd-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sd-layout.flip {
    direction: ltr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero {
    padding: 8rem 0 4rem;
  }
  .nav-drop {
    display: none !important;
  }
}
@media (max-width: 720px) {
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sd-features {
    grid-template-columns: 1fr;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }
  .page-hero p {
    font-size: 0.95rem;
  }
  .awards-row {
    gap: 1rem;
  }
  .award-badge {
    min-width: 110px;
  }
  .contact-layout {
    gap: 2rem;
  }
  .map-embed {
    height: 280px;
  }
  .about-split {
    gap: 2.5rem;
  }
  .about-img-float {
    right: -0.5rem;
    bottom: -0.5rem;
    padding: 0.9rem 1.1rem;
  }
  .about-img-float .num {
    font-size: 1.5rem;
  }
  .sd-img {
    font-size: 5rem;
  }
  .compare-table th,
  .compare-table td {
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
  }
  .page-hero {
    padding: 7rem 0 3.5rem;
  }
  .ph-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.8rem;
  }
  .breadcrumb {
    font-size: 0.65rem;
  }
}
@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.5rem);
    line-height: 1.05;
  }
  .page-hero {
    padding: 6.5rem 0 3rem;
  }
  .page-hero-meta {
    gap: 0.7rem;
    margin-top: 1.4rem;
  }
  .fleet-body {
    padding: 1.4rem;
  }
  .fleet-body h3 {
    font-size: 1.05rem;
  }
  .fleet-thumb {
    height: 170px;
  }
  .awards-row {
    gap: 0.75rem;
  }
  .award-badge {
    min-width: 95px;
    padding: 1.2rem 1rem;
  }
  .award-year {
    font-size: 1.2rem;
  }
  .award-title {
    font-size: 0.65rem;
  }
  .ci-card {
    padding: 1.1rem;
    gap: 0.8rem;
  }
  .ci-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .service-detail {
    padding: clamp(2rem, 8vw, 4rem) 0;
  }
  .sd-img {
    font-size: 4rem;
  }
  .about-split {
    gap: 2rem;
  }
  .pillar {
    padding: 1.5rem 1rem;
  }
  .social-row {
    gap: 0.5rem;
  }
  .soc-btn {
    font-size: 0.68rem;
    padding: 0.45rem 0.85rem;
  }
}

/* ── AWARD PHOTO IMAGE ───────────────────────────────────────
   Used when you replace the emoji icon with a real image.
   Place images in assets/awards/ folder.
   Recommended: 120×120px PNG with transparent background.
   Usage: <img class="award-img" src="assets/awards/name.png" alt="...">
────────────────────────────────────────────────────────── */
.award-img {
  width: 96px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  /* no background — transparent PNG looks cleanest */
}

/* ── FOOTER SOCIAL CHIPS ─────────────────────────────────────
   Small social link buttons in footer.
   TO ADD REAL LINKS: update href="#" in components.js injectFooter()
────────────────────────────────────────────────────────── */
.ft-social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  text-decoration: none;
}
.ft-social-chip:hover {
  background: rgba(47, 91, 255, 0.2);
  border-color: rgba(47, 91, 255, 0.4);
  color: var(--accent-l);
}
