/* ============================================================
   S.R. CARRIERS — style.css  (v2 — Dark Premium Theme)
   Palette: Deep Charcoal · Crimson Red · Silver/Light Grey
   Fonts  : Barlow Condensed (display) + DM Sans (body)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-deepest:   #0A0A0C;
  --bg-dark:      #111114;
  --bg-card:      #18181D;
  --bg-card-alt:  #1E1E24;
  --bg-muted:     #23232B;

  /* Brand Red */
  --red:          #C0192A;
  --red-bright:   #E02030;
  --red-dim:      #8B1020;
  --red-glow:     rgba(192, 25, 42, 0.25);

  /* Silver & Greys */
  --silver:       #C8CDD8;
  --silver-dim:   #8A909E;
  --silver-light: #E8ECF2;
  --white:        #FFFFFF;

  /* Text */
  --text-primary:   #E8ECF2;
  --text-secondary: #9AA0AE;
  --text-muted:     #5A6070;

  /* Borders */
  --border:       rgba(255,255,255,.08);
  --border-red:   rgba(192,25,42,.45);

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Radii & Shadows */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 10px rgba(0,0,0,.35);
  --shadow-md:  0 6px 28px rgba(0,0,0,.50);
  --shadow-lg:  0 16px 52px rgba(0,0,0,.65);
  --shadow-red: 0 6px 24px rgba(192,25,42,.35);

  --transition: 0.28s cubic-bezier(.4,0,.2,1);
  --max-width:  1180px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
address { font-style: normal; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin-inline: auto;
}

/* ── Section Tags & Headings ───────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(192,25,42,.12);
  border: 1px solid var(--border-red);
  padding: .3em .9em;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag.light {
  color: #ff6b6b;
  background: rgba(192,25,42,.15);
  border-color: rgba(192,25,42,.4);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--silver-light);
  text-transform: uppercase;
}
.section-heading.light { color: var(--white); }

.section-sub {
  max-width: 600px;
  color: var(--text-secondary);
  font-size: .97rem;
  margin-top: .75rem;
}
.section-sub.light { color: var(--silver-dim); }

.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-inline: auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 600;
  padding: .85em 1.75em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--silver);
  border: 2px solid rgba(200,205,216,.3);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-bright);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.service-card,
.network-card,
.contact-card,
.about-content,
.about-image-block {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.service-card.revealed,
.network-card.revealed,
.contact-card.revealed,
.about-content.revealed,
.about-image-block.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .6rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(10,10,12,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Image */
.logo {
  display: flex;
  align-items: center;
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}
.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.15) contrast(1.1) drop-shadow(0 2px 6px rgba(0,0,0,.8));
  transition: filter var(--transition);
}
.logo:hover .logo-img {
  filter: brightness(1.25) contrast(1.15) drop-shadow(0 2px 10px rgba(192,25,42,.45));
}
/* ============================================================
   NAVBAR - PERSISTENT HIGHLIGHT
   ============================================================ */

.nav-link:not(.cta-nav) {
    color: var(--silver-light);
    position: relative;
    font-weight: 600;
}

.nav-link:not(.cta-nav)::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--red);
    border-radius: 999px;
    opacity: 0.75;
    transition: var(--transition);
}

.nav-link:not(.cta-nav):hover {
    color: var(--white);
}

.nav-link:not(.cta-nav):hover::after {
    opacity: 1;
    background: var(--red-bright);
}

/* Nav links */
.main-nav ul {
  display: flex;
  gap: .2rem;
  align-items: center;
}
.nav-link {
  font-size: .87rem;
  font-weight: 500;
  color: var(--silver-dim);
  padding: .42em .88em;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: .01em;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.nav-link.cta-nav {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  padding: .45em 1.15em;
}
.nav-link.cta-nav:hover {
  background: var(--red-bright);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  /* Height driven entirely by padding — no viewport-height units.
     This prevents the "Desktop Site" zoom bug where a tall simulated
     viewport forces background-size:cover to massively upscale the
     landscape image and push the truck off-screen. */
  padding: 10rem 0 8rem;
  max-height: 850px;
  background-color: #0A0A0C;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Hero background picture element ───────────────────────
   <picture> replaces the old CSS background-image so the
   browser can serve a portrait crop on mobile and the
   landscape image on desktop — natively and efficiently.
   ──────────────────────────────────────────────────────── */
.hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Dark overlay on top of the image */
.hero-bg-picture::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1;
}

/* Diagonal stripe texture */
.hero-bg-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.012) 40px,
    rgba(255,255,255,.012) 41px
  );
  pointer-events: none;
  z-index: 2;
}

/* Red diagonal glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at top right, rgba(192,25,42,.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-dim), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(192,25,42,.12);
  border: 1px solid var(--border-red);
  padding: .35em 1em;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeDown .7s ease both;
}
.hero-badge i { font-size: .85em; }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8.5vw, 6rem);
  line-height: .96;
  letter-spacing: -.015em;
  color: var(--white);
  text-transform: uppercase;
  animation: fadeDown .7s .1s ease both;
}
.hero-headline em {
  font-style: normal;
  color: var(--red-bright);
}

/* Slogan */
.hero-slogan {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem .75rem;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  animation: fadeDown .7s .18s ease both;
}
.slogan-driven  { color: var(--silver); }
.slogan-powered { color: var(--red-bright); }

.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-top: 1.1rem;
  line-height: 1.75;
  animation: fadeDown .7s .25s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
  animation: fadeDown .7s .32s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: fadeDown .7s .4s ease both;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--red-bright);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* Hero graphic */
.hero-graphic {
  position: absolute;
  right: -3%;
  bottom: 6%;
  opacity: .04;
  pointer-events: none;
  z-index: 2;
}
.truck-icon-wrap i {
  font-size: clamp(14rem, 30vw, 26rem);
  color: var(--red);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 6rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Content column: comfortable reading width, centred within its track */
.about-content {
  max-width: 860px;
}

.about-label-col {
  display: flex;
  justify-content: center;
}
.section-sideways-label {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-text {
  color: var(--text-secondary);
  font-size: .97rem;
  line-height: 1.78;
  margin-top: 1rem;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.75rem;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .87rem;
  font-weight: 500;
  color: var(--silver);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: .5em 1em;
  border-radius: 50px;
}
.highlight-item i { color: var(--red-bright); font-size: .88em; }

/* About image block */
.about-image-block { position: relative; }
.about-img-card {
  position: relative;
  z-index: 2;

  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* .about-img-card i {
  font-size: 4rem;
  color: var(--red-bright);
  margin-bottom: 1rem;
}
.about-img-card p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--silver-dim);
} */
.about-accent-box {
  position: absolute;
  width: 80%; height: 80%;
  background: var(--red);
  border-radius: var(--radius-lg);
  top: 16px; left: 16px;
  z-index: 1;
  opacity: .1;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 6rem 0;
  background: var(--bg-deepest);
  border-top: 1px solid var(--border);
}

.services-highlight {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  margin: 2.5rem 0 3rem;
  overflow: hidden;
}
.services-highlight::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(to left, rgba(192,25,42,.06), transparent);
  pointer-events: none;
}

.highlight-ribbon {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--white);
  background: var(--red);
  padding: .3em .85em;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.daily-service-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.daily-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: rgba(192,25,42,.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--red-bright);
}
.daily-service-content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .03em;
}
.daily-service-content p {
  color: var(--text-secondary);
  margin-top: .4rem;
  font-size: .93rem;
  line-height: 1.7;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,25,42,.4);
  box-shadow: var(--shadow-red);
}
.service-card.featured {
  border-color: var(--red-dim);
  box-shadow: 0 0 0 1px rgba(192,25,42,.3), var(--shadow-sm);
}
.service-card-icon {
  width: 52px; height: 52px;
  background: rgba(192,25,42,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--red-bright);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--silver-light);
  letter-spacing: .04em;
}
.service-card p {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.72;
  flex: 1;
}
.service-card-footer {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-top: .85rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.service-card-footer span {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.service-card-footer i { color: var(--red-bright); font-size: .75em; }

/* ============================================================
   NETWORK
   ============================================================ */
.network {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.network::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 38px,
    rgba(255,255,255,.012) 38px,
    rgba(255,255,255,.012) 39px
  );
  pointer-events: none;
}

/* ==========================================
   NETWORK GRID LAYOUT (DESKTOP)
========================================== */

.network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    align-items: start;
}

.network-card.head-office {
    box-sizing: border-box;
    border: 2px solid var(--red);
    background: linear-gradient(
        180deg,
        rgba(192, 25, 42, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    box-shadow:
        0 0 0 1px rgba(192, 25, 42, 0.25),
        0 10px 30px rgba(192, 25, 42, 0.18);

    /* Preserve existing grid positioning */
    grid-column: 1;
    grid-row: span 2;
}

.network-card.head-office:hover {
    border-color: var(--red-bright);
    box-shadow:
        0 0 0 1px rgba(224, 32, 48, 0.35),
        0 12px 36px rgba(192, 25, 42, 0.25);
}

/* Slightly stronger badge styling */
.network-card.head-office .head-office-badge {
    box-shadow: 0 4px 12px rgba(192, 25, 42, 0.35);
}
/* First Row */
.network-card:nth-child(2) {
    /* Bhiwandi */
    grid-column: 2;
    grid-row: 1;
}

.network-card:nth-child(3) {
    /* Tarapur */
    grid-column: 3;
    grid-row: 1;
}

.network-card:nth-child(4) {
    /* Vapi */
    grid-column: 4;
    grid-row: 1;
}

/* Second Row (fills empty space under row 1) */
.network-card:nth-child(7) {
    /* Sarigam */
    grid-column: 2;
    grid-row: 2;
}

.network-card:nth-child(8) {
    /* Umargam */
    grid-column: 3;
    grid-row: 2;
}

/* Daman & Silvassa below entire block */
.network-card:nth-child(5) {
    /* Daman */
    grid-column: 1 / span 2;
    grid-row: 3;
}

.network-card:nth-child(6) {
    /* Silvassa */
    grid-column: 3 / span 2;
    grid-row: 3;
}

.head-office-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--white);
  background: var(--red);
  padding: .3em .85em;
  border-radius: 4px;
  margin-bottom: .85rem;
}

.hq-address {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .78rem;
  color: var(--silver-dim);
  margin-top: .6rem;
  line-height: 1.55;
}
.hq-address i { color: var(--red-bright); flex-shrink: 0; margin-top: .15rem; font-size: .85em; }

/* Head-office email link */
.hq-email-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--silver-dim);
  text-decoration: none;
  word-break: break-all;
  transition: color var(--transition);
}
.hq-email-link i {
  color: var(--red-bright);
  flex-shrink: 0;
  font-size: .9em;
}
.hq-email-link:hover {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hq-map {
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.hq-map iframe {
  width: 100%;
  height: 160px;
  display: block;
  border: 0;
  filter: grayscale(35%) contrast(1.05);
}

/* Standard network cards */
.network-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.network-card:hover {
  background: rgba(192,25,42,.07);
  border-color: var(--border-red);
  transform: translateY(-4px);
}
.network-card.wide { grid-column: span 2; }

.network-card-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .65rem;
}
.network-card-head i { color: var(--red-bright); font-size: 1rem; }
.network-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--silver-light);
  letter-spacing: .05em;
}
.network-card p {
  font-size: .87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Clickable address links inside network cards */
.network-address-link {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  text-decoration: none;
  transition: color var(--transition);
  margin-top: .1rem;
}

.network-address-link i {
  color: var(--red-bright);
  font-size: .85em;
  flex-shrink: 0;
  margin-top: .2rem;
}

.network-address-link:hover {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sub-locations {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.sub-locations span {
  font-size: .74rem;
  font-weight: 600;
  color: #ff8080;
  background: rgba(192,25,42,.12);
  border: 1px solid rgba(192,25,42,.28);
  padding: .25em .72em;
  border-radius: 50px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 6rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--border-red);
}
.contact-card-icon {
  width: 52px; height: 52px;
  background: rgba(192,25,42,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .25rem;
}
.contact-card-icon i {
  color: var(--red-bright);
  font-size: 1.15rem;
}

/* WhatsApp card variants */
.whatsapp-card {
  border-color: rgba(37,211,102,.2);
}
.whatsapp-card:hover {
  border-color: rgba(37,211,102,.5);
  box-shadow: 0 6px 24px rgba(37,211,102,.2);
}
.whatsapp-icon {
  background: rgba(37,211,102,.12) !important;
}
.whatsapp-icon i {
  color: #25D366 !important;
  font-size: 1.35rem !important;
}
.whatsapp-number {
  color: #25D366 !important;
  display: flex;
  align-items: center;
  gap: .4rem;
  justify-content: center;
}
.whatsapp-number:hover { color: #1ebe5a !important; }
.whatsapp-number i { font-size: .9em; }

.contact-region {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--silver-light);
  letter-spacing: .06em;
}
.contact-number {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: .05em;
  transition: color var(--transition);
}
.contact-number:hover { color: var(--silver-light); }
.contact-tag {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: .1rem;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-top: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.contact-note i { color: var(--red-bright); flex-shrink: 0; margin-top: .1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-deepest);
  padding: 3rem 0 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo-link { display: inline-flex; }
.footer-logo-img {
  height: 108px;
  width: auto;
  object-fit: contain;
  opacity: .88;
  transition: opacity var(--transition);
}
.footer-logo-link:hover .footer-logo-img { opacity: 1; }

.footer-tagline {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
}
.footer-nav a {
  font-size: .84rem;
  color: var(--silver-dim);
  padding: .3em .7em;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.footer-nav a:hover { color: var(--red-bright); background: rgba(192,25,42,.08); }

.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  margin-top: .5rem;
}
.copyright {
  font-size: .8rem;
  color: var(--text-muted);
}
.back-to-top {
  font-size: .82rem;
  font-weight: 600;
  color: var(--silver-dim);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--transition);
}
.back-to-top:hover { color: var(--red-bright); }
.back-to-top i { font-size: .75em; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* about-grid is already 40px 1fr at base; nothing to override */
  .about-image-block { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: span 2; }

  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .network-card.wide { grid-column: span 2; }

  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ============================================================
   TABLET / DESKTOP-SITE FIX (≤1100px)
   Prevent squished Network cards and Hero overlap
   ============================================================ */

@media (max-width: 1100px) {

  /* ----------------------------
     HERO SECTION
  ----------------------------- */

  body {
    overflow-x: hidden;
  }

 .hero {
    /* Tighten padding slightly on mid-width viewports */
    padding: 8rem 0 6rem;
}

.hero-content {
  max-width: 600px;
}

  .hero-graphic {
    right: -8%;
    bottom: 5%;
    opacity: 0.03;
    max-width: 100%;
    overflow: hidden;
  }

  .truck-icon-wrap i {
    font-size: clamp(10rem, 20vw, 16rem);
  }

  /* ----------------------------
     NETWORK SECTION
  ----------------------------- */

  .network-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Disable all custom desktop positioning */

  .network-card.head-office,
  .network-card:nth-child(2),
  .network-card:nth-child(3),
  .network-card:nth-child(4),
  .network-card:nth-child(5),
  .network-card:nth-child(6),
  .network-card:nth-child(7),
  .network-card:nth-child(8) {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .network-card.head-office {
    grid-row: span 1 !important;
  }

  .network-card.wide {
    grid-column: auto !important;
  }

  .network-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}
/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,12,.97);
    backdrop-filter: blur(10px);
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    border-top: 1px solid var(--border);
  }
  .main-nav.open {
    max-height: 340px;
    padding: .75rem 1.25rem 1.25rem;
  }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: .15rem; }
  .nav-link { display: block; padding: .65em .75em; }
  .nav-link.cta-nav { margin-top: .5rem; width: 100%; text-align: center; }

  /* Hero */
  
  .hero { padding: 7rem 0 5rem; min-height: 600px; }
  .hero-bg-img { object-position: center top; }
  .hero-slogan { font-size: clamp(.9rem, 3.5vw, 1.1rem); }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .hero-graphic { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-label-col { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: span 1; }
  .daily-service-content { flex-direction: column; gap: 1rem; }

  /* Network */
  .network-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .network-card.wide { grid-column: span 2; }
  .hq-map iframe { height: 150px; }

  /* Contact */
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-card { grid-column: span 2; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  /* ============================================================
   NETWORK - MOBILE FIX
   ============================================================ */

.network-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
    align-items: stretch;
}

.network-card,
.network-card.head-office,
.network-card.wide {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Remove ALL desktop grid placement rules */
.network-card.head-office,
.network-card:nth-child(2),
.network-card:nth-child(3),
.network-card:nth-child(4),
.network-card:nth-child(5),
.network-card:nth-child(6),
.network-card:nth-child(7),
.network-card:nth-child(8) {
    grid-column: auto !important;
    grid-row: auto !important;
}

/* Reset wide cards */
.network-card.wide {
    grid-column: auto !important;
}

/* Prevent map overflow */
.hq-map iframe {
    width: 100%;
    height: 180px;
}

/* Prevent text squeezing */
.network-card {
    min-width: 0;
    overflow-wrap: break-word;
}
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .network-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .network-card,
    .network-card.head-office,
    .network-card.wide {
        width: 100%;
        max-width: 100%;
    }

    .network-card.head-office,
    .network-card:nth-child(2),
    .network-card:nth-child(3),
    .network-card:nth-child(4),
    .network-card:nth-child(5),
    .network-card:nth-child(6),
    .network-card:nth-child(7),
    .network-card:nth-child(8) {
        grid-column: auto !important;
        grid-row: auto !important;
    }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .network-grid { grid-template-columns: 1fr; }
  .network-card.wide { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .whatsapp-card { grid-column: span 1; }
  .services-highlight { padding: 1.5rem; }
  .logo-img { height: 72px; }
}
.network-card{height:auto;align-self:start;}
.network-grid{align-items:start;}
.mission-vision{padding:6rem 0;background:#101014;}
.mission-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:2rem;}
.mission-card{background:var(--bg-card);padding:2rem;border:1px solid var(--border);border-radius:12px;}
.mission-card h3{margin-bottom:1rem;color:var(--red-bright);}
.service-image img{width:100%;height:200px;object-fit:cover;border-radius:8px 8px 0 0;margin-bottom:1rem;}
.floating-whatsapp{position:fixed;bottom:20px;right:20px;width:60px;height:60px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:2rem;z-index:1000;box-shadow:0 8px 20px rgba(0,0,0,.4);}
.developer-credit{text-align:center;font-size:.85rem;color:#aaa;}
.developer-credit a{color:var(--red-bright);}
@media(max-width:768px){.mission-grid{grid-template-columns:1fr;}}
/* ============================================================
   CONTACT SECTION - TWO COLUMN LAYOUT
   ============================================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info-column {
    width: 100%;
}

/* ============================================================
   ENQUIRY FORM
   ============================================================ */

.enquiry-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.enquiry-form h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--silver-light);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: .04em;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    margin-bottom: .5rem;
    color: var(--silver);
    font-size: .9rem;
    font-weight: 500;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    background: #16181d;
    color: var(--silver-light);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: var(--radius-sm);

    padding: .9rem 1rem;

    font-family: var(--font-body);
    font-size: .95rem;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 50px;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: var(--text-muted);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;

    border-color: var(--red);

    box-shadow:
        0 0 0 3px rgba(192,25,42,.15),
        0 0 16px rgba(192,25,42,.18);

    background: #1b1d22;
}

.enquiry-submit {
    width: 100%;
    margin-top: .5rem;
    justify-content: center;
    font-size: 1rem;
}

.enquiry-submit:hover {
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .enquiry-form-wrapper {
        order: 2;
    }

    .contact-info-column {
        order: 1;
    }

    .enquiry-form-wrapper {
        padding: 1.5rem;
    }
}

/* ============================================================
   EXTRA SMALL MOBILE (≤375px)
   Keep SR CARRIERS watermark centered
   ============================================================ */

@media (max-width: 375px) {

    .hero {
        background-position: center center !important;
        background-size: cover;
        background-repeat: no-repeat;
    }

}
/* ============================================================
   ABOUT — STATS ROW
   ============================================================ */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  margin-top: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  transition: background var(--transition);
}

.about-stat-item:hover {
  background: var(--bg-card-alt);
}

.about-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--red-bright);
  line-height: 1;
  letter-spacing: -.01em;
}

.about-stat-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-secondary);
  margin-top: .6rem;
  line-height: 1.5;
  max-width: 140px;
}

.about-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
  align-self: center;
}

/* ── About Stats responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stat-divider {
    display: none;
  }
  .about-stat-item {
    border-bottom: 1px solid var(--border);
  }
  .about-stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .about-stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .about-stats-row {
    grid-template-columns: 1fr;
  }
  .about-stat-item:nth-child(odd) {
    border-right: none;
  }
  .about-stat-item:last-child {
    border-bottom: none;
  }
}


/* ============================================================
   LEADERSHIP & TEAM SECTION
   ============================================================ */
.leadership {
  padding: 6rem 0;
  background: var(--bg-deepest);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Subtle red glow top-right */
.leadership::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at top right, rgba(192,25,42,.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Tier Label ─────────────────────────────────────────── */
.leadership-tier-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 1.75rem;
}

.leadership-tier-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.tier-label-text {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--red-bright);
  background: rgba(192,25,42,.1);
  border: 1px solid var(--border-red);
  padding: .4em 1.1em;
  border-radius: 50px;
  white-space: nowrap;
}

.tier-label-text i { font-size: .8em; }

/* ── Directors Grid ─────────────────────────────────────── */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.director-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.director-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,25,42,.06) 0%, transparent 60%);
  pointer-events: none;
}

.director-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red), var(--shadow-lg);
  border-color: var(--red-dim);
}

/* Portrait */
.director-portrait-wrap {
  position: relative;
  flex-shrink: 0;
}

.director-portrait {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--red);
  box-shadow: 0 0 0 4px rgba(192,25,42,.2), var(--shadow-md);
  position: relative;
  z-index: 2;
}

.director-portrait-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(192,25,42,.4);
  z-index: 1;
  animation: spin-slow 18s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Info */
.director-info { flex: 1; min-width: 0; }

.director-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .3em .9em;
  border-radius: 4px;
  margin-bottom: .85rem;
}

.founder-badge {
  background: rgba(255, 185, 0, .12);
  color: #F5B800;
  border: 1px solid rgba(245,184,0,.3);
}

.md-badge {
  background: rgba(192,25,42,.14);
  color: var(--red-bright);
  border: 1px solid var(--border-red);
}

.director-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--silver-light);
  letter-spacing: .02em;
  line-height: 1.05;
}

.director-title {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red-bright);
  margin-top: .2rem;
  margin-bottom: .9rem;
}

.director-bio {
  color: var(--text-secondary);
  font-size: .91rem;
  line-height: 1.75;
}

.director-bio strong {
  color: var(--silver);
  font-weight: 600;
}

.director-tenure {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  width: 100%;
}

.director-tenure i { color: var(--red-bright); }

/* ── Director card — no photo variant ──────────────────── */
.director-card--no-photo {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-top-color: var(--red);
}

.director-card--no-photo .director-info {
  width: 100%;
}

.director-card--no-photo .director-name {
  /* color: var(--red-bright); */
  font-size: 1.85rem;
}

.director-card--no-photo .director-badge {
  margin-bottom: 1rem;
}

/* Decorative left accent bar instead of portrait */
.director-card--no-photo::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red-bright), var(--red-dim));
  border-radius: 0 0 0 var(--radius-lg);
}

/* ── Managers Grid ──────────────────────────────────────── */
.managers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.manager-card {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.manager-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192,25,42,.35);
  box-shadow: var(--shadow-md);
}

.manager-portrait-wrap {
  flex-shrink: 0;
}

.manager-portrait {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.manager-card:hover .manager-portrait {
  border-color: rgba(192,25,42,.5);
}

/* ── Manager card — no photo variant ───────────────────────
   Mirrors the director-card--no-photo pattern exactly:
   column layout, full-width info, left accent bar.        */
.manager-card--no-photo {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-top: 3px solid var(--red);
}

.manager-card--no-photo .manager-info {
  width: 100%;
}

/* .manager-card--no-photo .manager-name {
  color: var(--red-bright);
} */

/* Decorative left accent bar — matches director no-photo */
.manager-card--no-photo::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red-bright), var(--red-dim));
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.manager-info { flex: 1; min-width: 0; }

.manager-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--silver-light);
  letter-spacing: .03em;
}

.manager-title {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red-bright);
  margin-top: .2rem;
  margin-bottom: .75rem;
}

.manager-bio {
  color: var(--text-secondary);
  font-size: .88rem;
  line-height: 1.7;
}

.manager-exp {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .9rem;
}

.manager-exp i { color: var(--red-bright); }

/* ── Leadership Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .directors-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .directors-grid,
  .managers-grid {
    grid-template-columns: 1fr;
  }

  .director-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  /* No-photo cards stay left-aligned on mobile for readability */
  .director-card--no-photo {
    align-items: flex-start;
    text-align: left;
  }

  /* Same for manager no-photo cards */
  .manager-card--no-photo {
    align-items: flex-start;
    text-align: left;
  }

  .director-portrait {
    width: 100px;
    height: 100px;
  }

  .director-tenure {
    justify-content: center;
  }

  .manager-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .director-card,
  .manager-card {
    padding: 1.25rem;
  }
}

/* ── Thank You Page Styles ───────────────────────────────── */
 
/* ── Full-screen backdrop ─────────────────────────────────── */
.thankyou-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(10,10,12,.88), rgba(10,10,12,.88)),
    url('bg5.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;   /* subtle parallax depth */
  background-color: var(--bg-deepest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}
 
/* ── Centred wrapper ──────────────────────────────────────── */
.ty-wrapper {
  width: 100%;
  padding: 2rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
/* ── Premium card ─────────────────────────────────────────── */
.ty-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem 2.75rem;
  text-align: center;
  box-shadow:
    var(--shadow-lg),
    0 0 60px rgba(192, 25, 42, 0.12);  /* subtle red ambient glow */
  overflow: hidden;
}
 
/* Faint diagonal stripes — matches site's hero texture */
.ty-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.012) 40px,
    rgba(255,255,255,.012) 41px
  );
  pointer-events: none;
  border-radius: var(--radius-lg);
}
 
/* ── Logo mark ────────────────────────────────────────────── */
.ty-logo {
  display: inline-block;
  margin-bottom: 1.75rem;
}
 
.ty-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}
 
/* ── Success icon ─────────────────────────────────────────── */
.ty-icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.10);
  border: 2px solid rgba(34, 197, 94, 0.35);
  margin-bottom: 1.5rem;
}
 
.ty-icon {
  font-size: 2.75rem;
  color: #22C55E;;
  line-height: 1;
}
 
/* ── Heading ──────────────────────────────────────────────── */
.ty-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 0 1rem;
  line-height: 1;
}
 
/* ── Sub-text ─────────────────────────────────────────────── */
.ty-subtext {
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 1.75rem;
}
 
/* ── Red divider line ─────────────────────────────────────── */
.ty-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dim));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}
 
/* ── Trust chips row ──────────────────────────────────────── */
.ty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2rem;
}
 
.ty-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  color: var(--silver-dim);
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .35rem .85rem;
  letter-spacing: .01em;
}
 
.ty-chip i {
  color: var(--red-bright);
  font-size: .8em;
}
 
/* ── Return button ────────────────────────────────────────── */
.ty-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  justify-content: center;
  font-size: .95rem;
}
 
/* ── Thank You page — mobile background swap ──────────────── */
@media (max-width: 768px) {
  .thankyou-page {
    background-image:
      linear-gradient(rgba(10,10,12,.88), rgba(10,10,12,.88)),
      url('bg5m.png'); /* your portrait mobile image */
    background-position: center center;
  }
}
/* ── Responsive: small phones ─────────────────────────────── */
@media (max-width: 480px) {
  .ty-card {
    padding: 2.25rem 1.5rem 2rem;
  }
 
  .ty-icon-ring {
    width: 76px;
    height: 76px;
  }
 
  .ty-icon {
    font-size: 2.25rem;
  }
 
  .ty-chips {
    flex-direction: column;
    align-items: center;
  }
}
 .ty-logo--corner {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  margin-bottom: 0;   /* cancel the old bottom margin */
}

.ty-logo--corner .ty-logo-img {
  height: 100px;   /* slightly smaller since it's a corner mark, not centrepiece */
}



/* ============================================================
   TRACK CONSIGNMENT SECTION  (v2 — horizontal bar design)
   Append-only. Does not affect any other section.
   ============================================================ */

/* ── Section wrapper ─────────────────────────────────────── */
.tracking-section {
  background: var(--bg-dark);
  padding: 4.5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

/* ── Header ──────────────────────────────────────────────── */
.tracking-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tracking-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--silver-light);
  margin: .5rem 0 .6rem;
  line-height: 1.1;
}

.tracking-subtitle {
  font-size: .92rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Outer card ──────────────────────────────────────────── */
.tracking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--shadow-md);
  max-width: 980px;
  margin: 0 auto;
}

/* ── Horizontal tracking bar ─────────────────────────────── */
.tracking-bar {
  display: flex;
  gap: .75rem;
  align-items: stretch;
}

/* Each input field column — grow equally */
.tbar-field {
  flex: 1 1 0;
  min-width: 0;
}

/* Button column — fixed width, doesn't shrink */
.tbar-btn {
  flex: 0 0 auto;
}

/* ── Inputs & select ─────────────────────────────────────── */
.tracking-form .tbar-field input,
.tracking-form .tbar-field select {
  width: 100%;
  height: 48px;
  background: #16181d;
  color: var(--silver-light);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 0 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
  appearance: none;
  -webkit-appearance: none;
}

/* Custom dropdown arrow */
.tracking-form .tbar-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A909E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: #16181d;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Placeholder / disabled option colour */
.tracking-form .tbar-field input::placeholder {
  color: var(--text-muted);
}

.tracking-form .tbar-field select option[disabled] {
  color: var(--text-muted);
}

.tracking-form .tbar-field select option {
  color: var(--silver-light);
  background: #16181d;
}

/* Focus ring — matches enquiry form */
.tracking-form .tbar-field input:focus,
.tracking-form .tbar-field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow:
    0 0 0 3px rgba(192,25,42,.15),
    0 0 16px rgba(192,25,42,.18);
  background: #1b1d22;
}

/* ── Submit button ───────────────────────────────────────── */
.tracking-submit-btn {
  height: 48px;
  padding: 0 2rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background .25s ease,
    box-shadow .25s ease,
    opacity .25s ease;
}

.tracking-submit-btn:hover {
  background: var(--red-bright);
  box-shadow: var(--shadow-red);
}

.tracking-submit-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
}

/* ── Result container ────────────────────────────────────── */
.tracking-result {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card-alt);
  animation: trFadeIn .35s ease;
}

@keyframes trFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding: .9rem 1.5rem;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}

.tr-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #22C55E;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 100px;
  padding: .28rem .85rem;
}

.tr-meta {
  font-size: .82rem;
  color: var(--text-secondary);
}

.tr-meta strong { color: var(--silver-light); }

.tr-body { padding: 1.1rem 1.5rem; }

.tr-row-group { margin-bottom: .75rem; }
.tr-row-group:last-child { margin-bottom: 0; }

.tr-group-label {
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red-bright);
  margin-bottom: .5rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--border);
}

.tr-row {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.tr-row:last-child { border-bottom: none; }

.tr-key {
  flex-shrink: 0;
  min-width: 160px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--silver-dim);
  text-transform: capitalize;
}

.tr-val {
  font-size: .88rem;
  color: var(--silver-light);
  line-height: 1.5;
  word-break: break-word;
}

.tr-raw {
  font-size: .9rem;
  color: var(--silver-light);
  line-height: 1.7;
  white-space: pre-wrap;
}

.tr-error {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1.1rem 1.5rem;
  color: #F87171;
  font-size: .9rem;
  line-height: 1.6;
}

.tr-error i {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: .15rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .tracking-section { padding: 3rem 0 2.5rem; }

  .tracking-card { padding: 1.4rem 1.1rem 1.6rem; }

  /* Stack all fields vertically on mobile */
  .tracking-bar {
    flex-direction: column;
    gap: .65rem;
  }

  .tbar-btn { width: 100%; }

  .tracking-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .tr-header { flex-direction: column; align-items: flex-start; }
  .tr-key { min-width: 110px; }
}

@media (max-width: 480px) {
  .tr-row { flex-direction: column; gap: .15rem; }
  .tr-key { min-width: unset; }
}


/* ============================================================
   TRACKING TICKET LAYOUT  (appended — does not affect others)
   ============================================================ */

/* ── Ticket body wrapper ─────────────────────────────────── */
.tr-ticket {
  padding: 0;
}

/* ── Status row ──────────────────────────────────────────── */
.tr-status-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1.1rem 1.5rem;
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid var(--border);
}

.tr-status-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 100px;
  padding: .4rem 1.1rem;
  border: 1.5px solid currentColor;
}

/* Status colour variants */
.status--delivered  { color: #22C55E; background: rgba(34,197,94,.10); }
.status--transit    { color: #F59E0B; background: rgba(245,158,11,.10); }
.status--pending    { color: #60A5FA; background: rgba(96,165,250,.10); }
.status--out        { color: #A78BFA; background: rgba(167,139,250,.10); }
.status--unknown    { color: var(--silver-dim); background: rgba(255,255,255,.05); }

.tr-current-loc {
  font-size: .82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.tr-current-loc i { color: var(--red-bright); }

/* ── Section blocks ──────────────────────────────────────── */
.tr-section {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.tr-section:last-child { border-bottom: none; }

.tr-section-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--silver-dim);
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.tr-section-label i { color: var(--red-bright); font-size: .8em; }

/* ── Two-column section ──────────────────────────────────── */
.tr-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.tr-field-val {
  font-size: .9rem;
  font-weight: 500;
  color: var(--silver-light);
  line-height: 1.4;
}

/* ── Route row ───────────────────────────────────────────── */
.tr-route {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tr-route-point {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.tr-route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid;
}
.tr-route-dot--origin { border-color: var(--red-bright); background: var(--red-bright); }
.tr-route-dot--dest   { border-color: #22C55E; background: transparent; }

.tr-route-code {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--silver-light);
}

.tr-route-sub {
  font-size: .72rem;
  color: var(--text-secondary);
  margin-top: .1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tr-route-line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
  font-size: 1.2rem;
  min-width: 40px;
  /* dashed line behind the icon */
  background-image: linear-gradient(to right, var(--border) 50%, transparent 50%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: center;
}

.tr-route-edd {
  margin-left: auto;
  text-align: right;
}

/* ── Freight chips ───────────────────────────────────────── */
.tr-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.tr-chip {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .6rem 1rem;
  min-width: 120px;
}

.tr-chip-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--silver-dim);
}

.tr-chip-val {
  font-size: .9rem;
  font-weight: 600;
  color: var(--silver-light);
  line-height: 1.3;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .tr-two-col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tr-route {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .tr-route-line {
    width: 2px;
    height: 28px;
    min-width: unset;
    background-image: linear-gradient(to bottom, var(--border) 50%, transparent 50%);
    background-size: 1px 8px;
    background-repeat: repeat-y;
    background-position: center;
    justify-content: flex-start;
  }

  .tr-route-line i { display: none; }

  .tr-route-edd {
    margin-left: 0;
    text-align: left;
  }

  .tr-chips-row { gap: .5rem; }

  .tr-chip { min-width: calc(50% - .25rem); flex: 1 1 calc(50% - .25rem); }
}

@media (max-width: 400px) {
  .tr-chip { min-width: 100%; }
}