/* =========================================================
   Trans Tirvis Co — visual.css
   Image-powered sections, enhanced hero, fleet strip, footer
   ========================================================= */

/* ── Header upgrade ── */
.site-header {
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(10,15,30,.98) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.logo-mark { flex-shrink: 0; }
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main  { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: #fff; letter-spacing: .06em; }
.logo-domain{ font-size: .6rem; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: lowercase; }

/* ── HERO — full bleed photo ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1800&q=85&fit=crop');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,15,30,.88) 0%,
    rgba(10,15,30,.72) 50%,
    rgba(10,15,30,.45) 100%
  );
}

.hero-bg-grid { display: none; }
.hero-glow    { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

/* Eyebrow pulse dot */
.eyebrow-pulse {
  width: 8px; height: 8px;
  background: #F0A500;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,165,0,.6); }
  50%       { box-shadow: 0 0 0 8px rgba(240,165,0,0); }
}

.hero-headline {
  font-size: clamp(3.4rem, 5.5vw, 5.2rem);
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

/* Trust badges */
.hero-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

/* Tracker card upgrade */
.hero-tracker-card {
  background: rgba(10,15,30,.75);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.tracker-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 22px;
}

.tracker-input {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 15px 18px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
  transition: border-color .2s, background .2s;
  outline: none;
  margin-bottom: 12px;
}

.tracker-input::placeholder { color: rgba(255,255,255,.35); }
.tracker-input:focus {
  border-color: #F0A500;
  background: rgba(255,255,255,.14);
}

.tracker-btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #F0A500;
  color: #0A0F1E;
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.tracker-btn-full:hover {
  background: #FFD166;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,165,0,.4);
}

.tracker-sample {
  margin-top: 14px;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

.sample-tn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.65);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: .75rem;
  font-family: 'Courier New', monospace;
  cursor: pointer;
  margin: 0 3px;
  transition: background .15s, color .15s;
}
.sample-tn:hover { background: rgba(240,165,0,.2); color: #F0A500; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 10;
  animation: fadeInUp 1.5s ease 1s both;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ── STATS BAND — warehouse photo ── */
.stats-band {
  position: relative;
  overflow: hidden;
}

.stats-band-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1600&q=70&fit=crop');
  background-size: cover;
  background-position: center;
}

.stats-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,15,30,.82);
}

.stats-inner { position: relative; z-index: 2; }
.stat-num { font-size: 3.2rem; }

/* ── SERVICES grid — photo cards ── */
.section-subheading {
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.services-grid-visual {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.svc-card-big {
  grid-row: 1 / 3;
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: transform .25s;
}
.svc-card-big:hover { transform: translateY(-6px); }

.svc-card-sm {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.svc-card-sm:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.svc-img {
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.svc-card-big .svc-img { height: 260px; }
.svc-card-sm .svc-img  { height: 130px; }

.svc-card-body {
  padding: 22px;
  flex: 1;
}

.svc-card-big .svc-card-body { background: var(--navy); }

.svc-tag {
  display: inline-block;
  background: rgba(240,165,0,.18);
  color: #F0A500;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.svc-card-big h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.svc-card-big p  { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.6; }
.svc-card-sm h3  { color: var(--navy); font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.svc-card-sm p   { color: var(--muted); font-size: .82rem; line-height: 1.55; }

.svc-meta {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.svc-meta span {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.07);
  padding: 4px 10px;
  border-radius: 6px;
}
.svc-card-sm .svc-meta span {
  color: var(--muted);
  background: var(--light);
}

/* ── WHY US split ── */
.section-whyus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.whyus-img-col {
  position: relative;
  overflow: hidden;
}

.whyus-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.whyus-img-col:hover .whyus-img { transform: scale(1.04); }

.whyus-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,15,30,.3) 0%, rgba(10,15,30,.55) 100%);
}

.whyus-img-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  background: #F0A500;
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(240,165,0,.4);
}

.badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: #0A0F1E;
  line-height: 1;
}

.badge-lbl {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(10,15,30,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

.whyus-content-col {
  background: var(--navy);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.whyus-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.whyus-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.whyus-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whyus-item strong {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: .95rem;
}

.whyus-item p {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  line-height: 1.55;
  margin: 0;
}

/* ── FLEET STRIP ── */
.fleet-strip {
  position: relative;
  height: 360px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.fleet-img {
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
  filter: brightness(.65) saturate(.8);
}

.fleet-strip:hover .fleet-img { filter: brightness(.5) saturate(.6); }

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,15,30,.75) 0%, rgba(10,15,30,.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
  pointer-events: none;
}

.fleet-text { text-align: center; }

/* ── CONTACT BAND ── */
.contact-band {
  background: var(--steel);
  padding: 56px 0;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0A500;
  color: #0A0F1E;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  transition: background .2s, transform .15s;
}

.btn-contact:hover {
  background: #FFD166;
  transform: translateY(-2px);
}

.btn-contact-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
}

.btn-contact-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* ── FULL FOOTER ── */
.site-footer-full {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.footer-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
}

.footer-img-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-mid);
}

.footer-full-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .1em;
  color: #F0A500;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  transition: color .15s;
}

.footer-col a:hover { color: #F0A500; }

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid-visual {
    grid-template-columns: 1fr 1fr;
  }
  .svc-card-big { grid-row: auto; }
  .footer-full-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-trust-row { justify-content: center; }
  .hero-headline { font-size: clamp(2.8rem, 8vw, 4rem); }
  .section-whyus { grid-template-columns: 1fr; }
  .whyus-img-col { height: 320px; }
  .whyus-content-col { padding: 48px 32px; }
  .fleet-strip { height: 240px; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .services-grid-visual { grid-template-columns: 1fr; }
  .svc-card-big .svc-img { height: 200px; }
  .fleet-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
  .contact-inner { flex-direction: column; text-align: center; }
  .contact-actions { justify-content: center; }
  .footer-full-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-trust-row { flex-direction: column; align-items: center; }
  .footer-full-inner { grid-template-columns: 1fr; }
  .fleet-strip { display: none; }
}
