/* ============================================================
   CenseR Logistics LOGISTICS — Premium Corporate CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --red:        #D32F2F;
  --red-dark:   #B71C1C;
  --red-light:  #EF5350;
  --charcoal:   #1A1A2E;
  --dark:       #111827;
  --mid:        #374151;
  --muted:      #6B7280;
  --light:      #F9FAFB;
  --white:      #FFFFFF;
  --border:     #E5E7EB;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --radius:     12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; }

/* ── Utility ── */
.text-red    { color: var(--red) !important; }
.bg-red      { background: var(--red) !important; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(211,47,47,.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--dark);
}

.section-title span { color: var(--red); }

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn-red {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211,47,47,.4);
  color: var(--white);
}

.btn-red:hover::before { opacity: 1; }

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211,47,47,.35);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
}

.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  color: var(--red);
}

/* ── Navbar ── */
.navbar-main {
  background: var(--white);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar-main.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.navbar-main .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-box {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-box svg { width: 22px; height: 22px; fill: white; }

.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  line-height: 1;
}

.brand-name span { color: var(--red); }

.brand-tagline {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 85px;
}

.navbar-main .nav-link {
  color: var(--mid);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .02em;
  padding: 8px 18px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--red) !important;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { width: 50%; }

.nav-btn-login {
  color: var(--dark) !important;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 20px !important;
  font-weight: 600;
  font-size: .85rem;
  transition: var(--transition);
}

.nav-btn-login:hover {
  border-color: var(--red);
  color: var(--red) !important;
}

.nav-btn-track {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 9px 20px !important;
  font-weight: 600;
  font-size: .85rem;
  transition: var(--transition);
}

.nav-btn-track:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(211,47,47,.4);
}

/* ── Hero ── */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1800&q=85&auto=format');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(17,24,39,.92) 0%,
    rgba(17,24,39,.75) 50%,
    rgba(17,24,39,.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211,47,47,.2);
  border: 1px solid rgba(211,47,47,.4);
  color: #FF8A80;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: .95;
  margin-bottom: 24px;
}

.hero-title .line-red { color: var(--red-light); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span { color: var(--red-light); }

.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* ── Features Cards ── */
.features-section { background: var(--white); }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 60px; height: 60px;
  background: rgba(211,47,47,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
  font-size: 1.6rem;
}

.feature-card:hover .feature-icon {
  background: var(--red);
  transform: rotate(-5deg) scale(1.1);
}

.feature-card:hover .feature-icon svg { fill: white; }

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Services Preview ── */
.services-section { background: var(--light); }

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 340px;
  cursor: pointer;
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

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

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,.9) 0%, rgba(17,24,39,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.service-card-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 8px;
}

.service-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: .83rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
}

.service-card:hover .service-card-desc { max-height: 80px; opacity: 1; }

.service-card-arrow {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* ── Why Choose Us ── */
.why-section { background: var(--charcoal); }

.why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  transition: var(--transition);
}

.why-item:hover { transform: translateX(8px); }

.why-icon {
  width: 52px; height: 52px;
  background: rgba(211,47,47,.15);
  border: 1px solid rgba(211,47,47,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--red-light);
}

.why-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-item p {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* ── Stats Counter ── */
.stats-section {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}

.stat-item { text-align: center; position: relative; }

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,.2);
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number sup {
  font-size: 1.8rem;
  font-weight: 700;
  vertical-align: super;
}

.stat-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ── Testimonials ── */
.testimonials-section { background: var(--white); }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 5rem;
  color: rgba(211,47,47,.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars { color: #FFC107; font-size: .9rem; margin-bottom: 16px; }

.testimonial-text {
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
}

.author-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.author-role { font-size: .78rem; color: var(--muted); }

/* ── CTA Banner ── */
.cta-section {
  background: linear-gradient(135deg, #B71C1C 0%, #D32F2F 40%, #7F1D1D 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  border: 80px solid rgba(255,255,255,.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border: 100px solid rgba(255,255,255,.04);
  border-radius: 50%;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: .95;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-brand-box {
  margin-bottom: 28px;
}

.footer-desc {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .85rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-links a:hover::before { width: 12px; }

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.55);
  font-size: .87rem;
}

.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(211,47,47,.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  flex-shrink: 0;
  font-size: .85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-bottom-text {
  color: rgba(255,255,255,.3);
  font-size: .8rem;
}

/* ── About Page ── */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(211,47,47,.15) 0%, transparent 70%);
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: .95;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: 20px;
}

.page-hero-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--red-light); }
.page-hero-breadcrumb .sep { color: var(--red); }
.page-hero-breadcrumb .current { color: var(--white); font-weight: 600; }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-float .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-float .lbl {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
}

/* Mission/Vision/Values */
.mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.mvv-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.mvv-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.mvv-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 14px;
}

.mvv-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Timeline */
.timeline { position: relative; padding: 20px 0; }

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .tl-content { margin-left: 0; margin-right: 60px; text-align: right; }
.timeline-item:nth-child(even) .tl-content { margin-left: 60px; }

.tl-dot {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  background: var(--red);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 3px var(--red);
  z-index: 2;
}

.tl-content {
  flex: 1;
  max-width: calc(50% - 60px);
}

.tl-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.tl-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.tl-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Team */
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .5s ease;
}

.team-card:hover img { transform: scale(1.05); }

.team-card-body { padding: 20px 24px 24px; }

.team-name { font-weight: 700; font-size: 1.05rem; color: var(--dark); margin-bottom: 4px; }

.team-role {
  font-size: .78rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Services Page ── */
.service-grid-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.service-grid-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: transparent;
}

.service-grid-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-grid-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

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

.service-grid-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(211,47,47,.0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-grid-card:hover .service-grid-img-overlay {
  background: rgba(211,47,47,.2);
}

.service-grid-body { padding: 28px; }

.service-grid-icon {
  width: 44px; height: 44px;
  background: rgba(211,47,47,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--red);
}

.service-grid-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-grid-desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-grid-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.service-tag {
  font-size: .72rem;
  font-weight: 600;
  color: var(--red);
  background: rgba(211,47,47,.08);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ── Contact Page ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-group-custom { margin-bottom: 24px; }

.form-label-custom {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.form-input-custom {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-input-custom:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,47,47,.1);
}

textarea.form-input-custom { resize: vertical; min-height: 140px; }

.contact-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  margin-bottom: 16px;
}

.contact-detail-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.contact-detail-icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: .92rem;
  font-weight: 600;
  color: var(--dark);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── Login Page ── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.login-left {
  flex: 1;
  background: linear-gradient(160deg, var(--charcoal) 0%, #0D0D1A 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.login-left::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(211,47,47,.15) 0%, transparent 70%);
}

.login-left img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .15;
}

.login-left-content { position: relative; z-index: 2; }

.login-big-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: .95;
  margin-bottom: 24px;
}

.login-big-text span { color: var(--red-light); }

.login-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
}

.login-feature-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.login-right {
  width: 480px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}

.login-card { width: 100%; max-width: 360px; }

.login-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.login-card-sub {
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: 36px;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--muted);
  font-size: .78rem;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Tracking Page ── */
.tracking-search-wrap {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tracking-search-wrap::before {
  content: '';
  position: absolute;
  left: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(211,47,47,.2) 0%, transparent 70%);
}

.tracking-input-group {
  display: flex;
  gap: 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.tracking-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 24px;
  font-size: .95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
}

.tracking-input::placeholder { color: var(--muted); }

.tracking-btn {
  background: var(--red);
  color: white;
  border: none;
  padding: 18px 32px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .03em;
}

.tracking-btn:hover { background: var(--red-dark); }

.tracking-result {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 40px;
}

.tracking-result-header {
  background: var(--light);
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
}

.tracking-id {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}

.tracking-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.status-transit {
  background: rgba(255,152,0,.1);
  color: #E65100;
  border: 1px solid rgba(255,152,0,.3);
}

.status-delivered {
  background: rgba(76,175,80,.1);
  color: #2E7D32;
  border: 1px solid rgba(76,175,80,.3);
}

.tracking-meta {
  display: flex;
  gap: 32px;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.tracking-meta-item {}
.tracking-meta-label { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.tracking-meta-value { font-size: .92rem; font-weight: 600; color: var(--dark); }

/* Progress Steps */
.tracking-steps { padding: 40px 32px; }

.steps-progress {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 40px;
}

.steps-line {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--border);
  z-index: 0;
}

.steps-line-fill {
  height: 100%;
  background: var(--red);
  transition: width 1s ease;
}

.step-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--border);
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: .9rem;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-node.done .step-circle {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 12px rgba(211,47,47,.4);
}

.step-node.active .step-circle {
  background: white;
  border-color: var(--red);
  color: var(--red);
  animation: stepPulse 2s infinite;
  box-shadow: 0 0 0 6px rgba(211,47,47,.15);
}

@keyframes stepPulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(211,47,47,.15); }
  50% { box-shadow: 0 0 0 10px rgba(211,47,47,.08); }
}

.step-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  color: var(--muted);
}

.step-node.done .step-label,
.step-node.active .step-label { color: var(--red); }

/* Event Log */
.tracking-events { padding: 0 32px 32px; }

.event-item {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  position: relative;
}

.event-item + .event-item { padding-top: 20px; }

.event-item::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.event-item:last-child::before { display: none; }

.event-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--muted);
}

.event-item.active-event .event-dot {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 4px 12px rgba(211,47,47,.35);
}

.event-time {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.event-title {
  font-size: .92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.event-location {
  font-size: .78rem;
  color: var(--muted);
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .timeline::before { left: 24px; }
  .timeline-item { flex-direction: column !important; }
  .tl-content { max-width: 100%; margin-left: 60px !important; margin-right: 0 !important; text-align: left !important; }
  .tl-dot { left: 24px; }
  .login-left { display: none; }
  .login-right { width: 100%; }
  .stat-item + .stat-item::before { display: none; }
}

@media (max-width: 767px) {
  .hero-stats { gap: 24px; }
  .section-pad { padding: 70px 0; }
  .contact-form-wrap { padding: 32px 24px; }
  .steps-line { left: 16px; right: 16px; }
  .step-circle { width: 32px; height: 32px; font-size: .75rem; }
  .tracking-events { padding: 0 16px 24px; }
  .tracking-steps { padding: 30px 16px; }
}

.logo_sz{
  width: 200px;
}

.footer-brand-box a{
  display: flex;
  gap: 15px;
}

.track_btn{
  color: white!important;
  font-weight: 600!important;
}
.lbtxt{
  margin-top: -4px;
  font-size: 14px;
  font-weight: 600;
}

.lbctnr{
display: flex!important;
flex-direction: column!important;
gap: 0px!important;
margin-top: 5px!important;
}