:root {
  --bg: #d8e8ff;
  --surface: rgba(225, 238, 255, 0.94);
  --surface-strong: #eaf3ff;
  --text: #1d2a3b;
  --muted: #5b687a;
  --line: rgba(17, 41, 82, 0.12);
  --shadow: 0 24px 60px rgba(10, 43, 103, 0.12);
  --radius: 24px;
  --radius-small: 18px;
  --container: 1180px;
  --brand-blue: #123f8c;
  --brand-blue-deep: #0a2c69;
  --brand-blue-soft: #dbe7ff;
  --brand-blue-rgb: 18, 63, 140;
  --brand-red: #c01933;
  --brand-red-deep: #8f1227;
  --brand-red-soft: #ffe1e7;
  --brand-red-rgb: 192, 25, 51;
  --accent: var(--brand-blue);
  --accent-deep: var(--brand-blue-deep);
  --accent-soft: #cfe1ff;
  --hero-bg: linear-gradient(135deg, rgba(var(--brand-blue-rgb), 0.24), rgba(var(--brand-red-rgb), 0.08) 54%, rgba(232, 241, 255, 0.98));
  --button-blue: #1d57bd;
  --button-blue-deep: #0e367d;
  --button-red: var(--brand-red);
  --button-red-deep: var(--brand-red-deep);
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-display: "Archivo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(209, 227, 255, 0.9), transparent 30%),
    radial-gradient(circle at 34% 18%, rgba(var(--brand-blue-rgb), 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(var(--brand-red-rgb), 0.08), transparent 34%),
    linear-gradient(180deg, #e4efff 0%, #d6e6ff 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
}

body.intro-active {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

body.page-home,
body.page-services,
body.page-coverage,
body.page-about,
body.page-contact,
body.page-ftl,
body.page-ltl,
body.page-drayage,
body.page-port {
  --accent: var(--brand-blue);
  --accent-deep: var(--brand-blue-deep);
  --accent-soft: #cfe1ff;
  --hero-bg: linear-gradient(135deg, rgba(var(--brand-blue-rgb), 0.26), rgba(var(--brand-red-rgb), 0.1) 55%, rgba(232, 241, 255, 0.97));
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(90deg, rgba(226, 238, 255, 0.96), rgba(239, 233, 245, 0.94));
  border-bottom: 1px solid var(--line);
}

.site-shell {
  transition: opacity 0.7s ease, transform 0.8s ease;
}

body.intro-active .site-shell {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 255, 255, 0.26), transparent 22%),
    linear-gradient(135deg, #0d2f71 0%, #174a9e 52%, #b51630 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-card {
  position: relative;
  padding: 44px 48px;
  border-radius: 28px;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: none;
  border: none;
  animation: floatCard 5s ease-in-out infinite;
  text-align: center;
  z-index: 2;
}
.intro-logo {
  width: min(270px, 60vw);
  margin: 0 auto 28px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}.intro-logo img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 10px 24px rgba(var(--brand-blue-rgb), 0.28))
    drop-shadow(0 12px 28px rgba(var(--brand-red-rgb), 0.12));
  object-fit: contain;
  transform: scale(1.34);
}

.intro-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.intro-title span {
  color: #ffdbe3;
}

.intro-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 72px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: 0 10px 24px rgba(16, 31, 54, 0.08);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.18);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.footer-brand .brand-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text strong .brand-word-blue,
.footer-brand .brand-text strong .brand-word-blue {
  color: var(--brand-blue-deep);
}

.brand-text strong .brand-word-red,
.footer-brand .brand-text strong .brand-word-red {
  color: var(--brand-red);
}

.brand-text span {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--button-blue), var(--button-blue-deep));
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(22, 63, 159, 0.22);
}

.button:hover {
  filter: brightness(1.02);
}

.button-secondary {
  background: linear-gradient(135deg, var(--button-red), var(--button-red-deep));
  border-color: rgba(var(--brand-red-rgb), 0.24);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(var(--brand-red-rgb), 0.2);
}

.button-small {
  padding: 11px 18px;
  font-size: 0.95rem;
}

.text-link {
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.page-hero {
  padding: 72px 0 56px;
}

.home-hero {
  padding: 0 0 56px;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 86px);
  overflow: hidden;
  background: #10151e;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16, 21, 30, 0.24), rgba(16, 21, 30, 0.24)),
    url("home_page.png") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 24, 0.9) 0%, rgba(8, 13, 24, 0.64) 40%, rgba(8, 13, 24, 0.3) 100%),
    linear-gradient(180deg, rgba(8, 13, 24, 0.24) 0%, rgba(8, 13, 24, 0.48) 100%);
}

.hero-stage-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding-top: 72px;
  padding-bottom: 180px;
}

.hero-copy-panel {
  max-width: 780px;
  color: #ffffff;
}

.hero-eyebrow {
  display: inline-flex;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 246, 0.94));
  border: 1px solid rgba(var(--brand-red-rgb), 0.24);
  color: var(--brand-blue-deep);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-shadow: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.hero-display {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.hero-support {
  max-width: 58ch;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.16rem;
  font-weight: 500;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-floating-wrap {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 28px));
  margin-top: -118px;
}

.hero-floating-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 34px 40px;
  border-radius: 32px;
  border: 1px solid rgba(29, 42, 59, 0.08);
  background: linear-gradient(135deg, rgba(234, 243, 255, 0.98), rgba(220, 234, 255, 0.98));
  box-shadow: 0 24px 60px rgba(16, 31, 54, 0.18);
}

body.page-home.reveal-ready .hero-floating-card {
  opacity: 0;
  transform: translateY(56px) scale(0.9);
  transform-origin: center bottom;
}

body.page-home.reveal-ready .hero-floating-card.is-visible {
  animation: floatingCardPop 0.82s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-floating-copy {
  max-width: 720px;
}

.hero-floating-kicker {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-floating-copy h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero-floating-copy p {
  margin: 0;
  color: var(--muted);
}

.hero-floating-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.hero-grid,
.split-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: stretch;
}

.page-hero .container,
.section .container {
  position: relative;
}

.page-hero .hero-grid > * {
  border-radius: var(--radius);
  background: var(--hero-bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 34px;
}

.hero-panel,
.hero-media {
  background: rgba(230, 240, 255, 0.92);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-title,
.section-title,
.hero-panel h2,
.cta-band h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  max-width: 12ch;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  max-width: 16ch;
}

.lead,
.section-copy,
.hero-panel p,
.cta-band p,
.card-body p,
.spotlight-card p,
.detail-copy p,
.process-card p,
.timeline-item p,
.contact-card p,
.team-card p {
  margin: 0;
  color: var(--muted);
}

.button-row,
.mini-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.metric-card,
.service-card,
.spotlight-card,
.process-card,
.team-card,
.contact-card,
.timeline-item {
  border-radius: var(--radius-small);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 22px;
}

.metric-value {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.metric-label {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-panel h2 {
  font-size: 2rem;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.info-row strong {
  display: block;
  font-size: 1rem;
}

.mini-list,
.list-check,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list {
  display: grid;
  gap: 10px;
}

.mini-list li,
.list-check li,
.footer-links li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.mini-list li::before,
.list-check li::before,
.footer-links li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: 22px 0 74px;
}

.section-alt {
  padding-top: 14px;
}

.section-head {
  margin-bottom: 28px;
}

.service-card-grid,
.spotlight-grid,
.process-grid,
.team-grid,
.contact-strip {
  display: grid;
  gap: 22px;
}

.service-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spotlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid,
.contact-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  overflow: hidden;
}

.service-card-media {
  display: block;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.card-body,
.spotlight-card,
.process-card,
.team-card,
.contact-card {
  padding: 22px;
}

.card-body .mini-list {
  margin-top: 14px;
  margin-bottom: 16px;
}

.card-body h3,
.spotlight-card h3,
.process-card h3,
.team-card h3,
.contact-card h3,
.timeline-item h3 {
  margin: 12px 0 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
}

.service-card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-card-title-link:hover {
  color: var(--accent-deep);
}

.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--brand-red-rgb), 0.14);
  color: var(--brand-red-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.list-check {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.photo-grid.compact {
  align-content: start;
}

.photo-card {
  grid-column: span 4;
  min-height: 190px;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-small);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.photo-card.wide {
  grid-column: span 8;
}

.photo-card.medium {
  grid-column: span 4;
}

.photo-card.full {
  grid-column: span 12;
}

.photo-card img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
}


.photo-card figcaption,
.photo-card.placeholder p,
.photo-card.placeholder span {
  padding: 0 20px;
}

.photo-card figcaption {
  padding-top: 16px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.photo-card.placeholder {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 28px 0;
  background:
    linear-gradient(135deg, rgba(235, 244, 255, 0.98), rgba(223, 236, 255, 0.92)),
    repeating-linear-gradient(
      -45deg,
      rgba(var(--brand-blue-rgb), 0.08),
      rgba(var(--brand-blue-rgb), 0.08) 14px,
      rgba(var(--brand-red-rgb), 0.06) 14px,
      rgba(var(--brand-red-rgb), 0.06) 28px
    );
  border-style: dashed;
}

.photo-card.placeholder p {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.photo-card.placeholder span {
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-stack {
  display: grid;
  gap: 28px;
}

.detail-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.detail-block.reverse .detail-copy {
  order: 2;
}

.detail-block.reverse .photo-grid {
  order: 1;
}

.detail-copy {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
}

.detail-copy h2 {
  margin: 14px 0 14px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.15;
}

.detail-copy p + p {
  margin-top: 12px;
}

.map-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #edf5ff 0%, #dbeaff 100%);
  box-shadow: var(--shadow);
  padding: 26px;
}

.map-card img {
  width: 100%;
  height: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.timeline-item {
  padding: 24px;
}

.timeline-item span,
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--brand-red-rgb), 0.14);
  color: var(--brand-red-deep);
  font-size: 0.85rem;
  font-weight: 800;
}

.contact-grid {
  align-items: start;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(236, 244, 255, 0.98);
  color: var(--text);
  font: inherit;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--hero-bg);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 22px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(233, 242, 255, 0.97), rgba(219, 233, 255, 0.95));
  box-shadow: var(--shadow);
}

.footer-copy {
  margin: 14px 0 0;
  color: var(--muted);
}

.site-footer h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-deep);
}

.team-card a,
.contact-card a {
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration: none;
}

.team-card a:hover,
.contact-card a:hover {
  text-decoration: underline;
}

@keyframes introPop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.92);
  }

  45% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(-4px) scale(1.03);
  }
}

@keyframes floatingCardPop {
  0% {
    opacity: 0;
    transform: translateY(56px) scale(0.9);
  }

  62% {
    opacity: 1;
    transform: translateY(-10px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .service-card-grid,
  .process-grid,
  .contact-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spotlight-grid,
  .timeline,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-wrap,
  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .detail-block {
    grid-template-columns: 1fr;
  }

  .detail-block.reverse .detail-copy,
  .detail-block.reverse .photo-grid {
    order: initial;
  }

  .page-hero .hero-grid > * {
    padding: 26px;
  }

  .button-row,
  .mini-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-stage-inner {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 170px;
  }

  .hero-display {
    max-width: none;
  }

  .hero-floating-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .hero-floating-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .service-card-grid,
  .spotlight-grid,
  .process-grid,
  .team-grid,
  .contact-strip,
  .timeline,
  .footer-grid,
  .stats-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card.wide,
  .photo-card.medium {
    grid-column: auto;
  }

  .page-title,
  .section-title {
    max-width: none;
  }

  .intro-card {
    padding: 32px 24px;
  }


  .home-hero {
    padding-bottom: 36px;
  }

  .hero-stage-inner {
    padding-top: 42px;
    padding-bottom: 160px;
  }

  .hero-support {
    font-size: 1rem;
  }

  .hero-chip-row,
  .hero-actions,
  .hero-floating-actions {
    display: grid;
    width: 100%;
  }

  .hero-floating-wrap {
    width: min(1320px, calc(100% - 20px));
    margin-top: -96px;
  }

  .hero-floating-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-home.reveal-ready .hero-floating-card {
    opacity: 1;
    transform: none;
  }

  body.page-home.reveal-ready .hero-floating-card.is-visible {
    animation: none;
  }
}
/* SCROLL ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.hero-display {
  font-size: 4rem !important;
}
/* ===== FINAL WATERMARK FIX ===== */

.intro-watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 0;
  pointer-events: none;
  overflow: hidden; /* 🔥 FIX CUT ISSUE */
}

/* TOP TEXT */
.intro-watermark .wm-top {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%); /* 🔥 CENTER FIX */

  font-size: 250px;
  font-weight: 900;
  letter-spacing: 10px;

  color: rgba(0, 102, 255, 0.06);
  white-space: nowrap;

  text-shadow: 0 0 40px rgba(0,102,255,0.08);
}

/* BOTTOM TEXT */
.intro-watermark .wm-bottom {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%); /* 🔥 CENTER FIX */

  font-size: 250px;
  font-weight: 900;
  letter-spacing: 10px;

  color: rgba(0, 102, 255, 0.06);
  white-space: nowrap;

  text-shadow: 0 0 40px rgba(0,102,255,0.08);
}
.intro-watermark .wm-full {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: rgba(var(--brand-red-rgb), 0.12);
  text-shadow: 0 0 42px rgba(var(--brand-red-rgb), 0.12);
}
/* ===== FINAL CLEAN DIRECTOR CARD ===== */

.director-card {
  background: linear-gradient(135deg, #e5f0ff, #cfe1ff);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #cfe0ff;
  transition: 0.35s ease;
}

/* HOVER */
.director-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,102,255,0.15);
}

/* NAME */
.director-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

/* ROLE */
.director-card .role {
  color: var(--brand-red);
  font-size: 14px;
  margin-bottom: 12px;
}

/* 📞 MOBILE NUMBER */
.phone-number {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #003c99;
  margin-bottom: 14px;
  text-decoration: none;
}

.phone-number:hover {
  color: #115fd5;
}

/* 💬 WHATSAPP BUTTON */
.whatsapp-btn {
  display: inline-block;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 30px;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* DESCRIPTION */
.director-card .desc {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.directors-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 25px;
  margin-top: 30px;
}
@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}
@media (max-width: 768px) {
  .intro-card {
    padding: 25px;
    border-radius: 18px;
    background: rgba(255,255,255,0.2);
  }
}
.intro-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;

  background: radial-gradient(
    circle at center,
    rgba(0,102,255,0.08),
    transparent 100%
  );

  z-index: -1;
}
.service-card {
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.no-gap {
  padding-bottom: 10px !important;
}
/* REMOVE GAP ONLY ON LTL PAGE LAST SECTION */
.page-ltl .section:last-of-type {
  padding-bottom: 10px !important;
}
/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.team-card {
  background: linear-gradient(135deg, #e4efff, #d0e2ff);
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ROLE */
.team-card .role {
  color: var(--brand-red);
  font-weight: 600;
  margin-bottom: 10px;
}

/* PHONE */
.team-card .phone {
  display: block;
  margin-bottom: 10px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
}

/* BIO */
.team-card .bio {
  font-size: 14px;
  color: #555;
}
/* TIMELINE STYLE */
.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  background: linear-gradient(180deg, #edf5ff 0%, #dbeaff 100%);
  padding: 20px;
  border-radius: 14px;
  border-left: 4px solid var(--brand-red);
  transition: 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.timeline-item span {
  font-size: 14px;
  color: var(--brand-red-deep);
  font-weight: 600;
}
/* ===== FINAL CONTACT IMAGE FIX ===== */

.contact-grid .photo-grid.compact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ALL CARDS SAME HEIGHT */
.contact-grid .photo-card {
  height: 280px;
  width: 400px;
  overflow: hidden;
}

/* BIG IMAGE SLIGHTLY BIGGER */
.contact-grid .photo-card:last-child {
  height: 180px;
}

/* IMAGE FIT */
.contact-grid .photo-card img {
  width: auto;
  height:auto ;
  object-fit: cover;
}

/* REMOVE GRID SYSTEM EFFECT */
.contact-grid .photo-card.medium,
.contact-grid .photo-card.wide,
.contact-grid .photo-card.full {
  grid-column: auto !important;
}
