﻿/* =====================================================
   TJ EXPRESS - MODERN COURIER WEBSITE STYLES
   Color Palette: Navy #0d1b3e | Orange #f76b00 | White #fff
   ===================================================== */

/* ----- ROOT VARIABLES ----- */
:root {
  --navy: #0d1b3e;
  --navy-light: #162550;
  --orange: #f76b00;
  --orange-light: #ff8a2e;
  --orange-dark: #d95e00;
  --white: #ffffff;
  --light-bg: #f4f6fb;
  --dark-bg: #0a1628;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --border: #e2e8f0;
  --shadow: 0 10px 40px rgba(13, 27, 62, 0.12);
  --shadow-orange: 0 8px 25px rgba(247, 107, 0, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ----- GLOBAL ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
}

.text-orange { color: var(--orange) !important; }

/* ----- TOP BAR ----- */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar-left span,
.top-bar-right span {
  margin-right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar-left i, .top-bar-right i { color: var(--orange); }
.top-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: rgba(247,107,0,0.15);
  color: var(--orange);
  border-radius: 50%;
  margin-left: 6px;
  font-size: 12px;
  text-decoration: none;
  transition: var(--transition);
}
.top-social:hover { background: var(--orange); color: var(--white); }

/* ----- NAVBAR ----- */
.main-navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,27,62,0.1);
  padding: 12px 0;
  transition: var(--transition);
}
.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(13,27,62,0.18);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.brand-name .brand-orange { color: var(--orange); }
.brand-tagline {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.main-navbar .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--orange) !important; }

.nav-auth-btns { display: flex; gap: 10px; align-items: center; }

.btn-login {
  background: transparent;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-login:hover { background: var(--navy); color: var(--white) !important; }

.btn-signup {
  background: var(--orange);
  color: var(--white) !important;
  border: 2px solid var(--orange);
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-orange);
}
.btn-signup:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }

/* Custom hamburger toggler */
.navbar-toggler {
  border: none;
  padding: 6px 10px;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
}
.navbar-toggler:focus { box-shadow: none; }
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 22px;
}
.hamburger-icon span {
  display: block;
  height: 2.5px;
  border-radius: 4px;
  background: var(--navy);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.hamburger-icon span:nth-child(2) { width: 75%; }

/* Toggler open state */
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--orange);
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--orange);
}



/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(7,14,30,0.90) 0%, rgba(13,27,62,0.78) 55%, rgba(13,27,62,0.55) 100%),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80')
    center / cover no-repeat;
  overflow: hidden;
  padding: 70px 0 60px;
}

/* Animated subtle glow dot top-right */
.hero-section::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,107,0,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay { display: none; }   /* kept for backwards compat */

.hero-body {
  position: relative;
  z-index: 2;
}

/* --- Badge pill --- */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(247,107,0,0.15);
  border: 1px solid rgba(247,107,0,0.45);
  color: var(--orange-light);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge-pill i { font-size: 11px; }

/* --- Heading --- */
.hero-heading {
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-heading span { color: var(--orange); }

/* --- Subtitle --- */
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 32px;
}

/* --- CTA buttons --- */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(247,107,0,0.42);
  transition: var(--transition);
  border: 2px solid var(--orange);
}
.btn-hero-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(247,107,0,0.5);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Stats strip --- */
.hero-stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 22px;
}
.hs-item:first-child { padding-left: 0; }
.hs-item strong {
  font-size: 26px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.hs-item span {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 3px;
}
.hs-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* --- Right: Quick Track Card --- */
.hero-track-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 36px 32px;
  width: 100%;
  max-width: 390px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-track-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
  border-radius: 24px 24px 0 0;
}

.htc-icon-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(247,107,0,0.18);
  border: 2px solid rgba(247,107,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero-track-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-track-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  line-height: 1.6;
}

.htc-field {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 12px 16px;
  gap: 10px;
  margin-bottom: 12px;
  transition: var(--transition);
}
.htc-field:focus-within {
  border-color: var(--orange);
  background: rgba(255,255,255,0.13);
  box-shadow: 0 0 0 3px rgba(247,107,0,0.18);
}
.htc-field i { color: var(--orange); font-size: 15px; flex-shrink: 0; }
.htc-field input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}
.htc-field input::placeholder { color: rgba(255,255,255,0.35); }

.htc-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.htc-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(247,107,0,0.38);
}

.htc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.htc-tags span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 5px;
}
.htc-tags span i { color: #22c55e; font-size: 11px; }

/* --- Responsive --- */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 60px 0 50px; }
  .hero-heading { font-size: 36px; }
}
@media (max-width: 767px) {
  .hero-section { padding: 50px 0 40px; }
  .hero-heading { font-size: 30px; }
  .hero-sub { font-size: 15px; }
  .hero-cta-row { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { justify-content: center; }
  .hs-item { padding: 0 12px; }
  .hs-item strong { font-size: 20px; }
}

/* ----- SECTION COMMON ----- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(247,107,0,0.5);
}
.section-badge {
  display: inline-block;
  background: rgba(247,107,0,0.12);
  color: var(--orange);
  border: 1px solid rgba(247,107,0,0.3);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { margin-bottom: 10px; }

/* ----- TRACKING SECTION ----- */
.tracking-section {
  background: var(--light-bg);
  padding: 80px 0;
}
.tracking-box {
  max-width: 700px;
  margin: 30px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.tracking-input-group {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--light-bg);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  transition: var(--transition);
}
.tracking-input-group:focus-within { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(247,107,0,0.1); }
.tracking-icon { font-size: 18px; color: var(--orange); margin-right: 10px; flex-shrink: 0; }
.tracking-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}
.tracking-input::placeholder { color: #aaa; }
.tracking-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.tracking-btn:hover { transform: scale(1.03); box-shadow: var(--shadow-orange); }
.tracking-result {
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius);
  font-size: 15px;
}
.tracking-result.success { background: #e8f5e9; border: 1px solid #81c784; color: #2e7d32; }
.tracking-result.error { background: #ffebee; border: 1px solid #ef9a9a; color: #c62828; }

/* ----- SERVICES SECTION ----- */
.services-section {
  padding: 90px 0;
  background: var(--white);
}
.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { border-color: var(--orange); background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.service-card.featured h4, .service-card.featured p { color: var(--white); }
.service-card.featured .service-link { color: var(--orange-light); }
.service-badge-card {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(247,107,0,0.12), rgba(247,107,0,0.06));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--orange);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); color: var(--white); }
.service-card.featured .service-icon { background: rgba(247,107,0,0.2); }
.service-card h4 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-link { color: var(--orange); font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ----- HOW IT WORKS ----- */
.how-works-section {
  padding: 90px 0;
  background: var(--light-bg);
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 25px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(13,27,62,0.08);
  transition: var(--transition);
  height: 100%;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(247,107,0,0.4);
}
.step-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(247,107,0,0.1), rgba(13,27,62,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 20px;
  font-size: 28px;
  color: var(--navy);
  transition: var(--transition);
}
.step-card:hover .step-icon { background: var(--navy); color: var(--orange); }
.step-card h5 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ----- ABOUT SECTION ----- */
.about-section {
  padding: 90px 0;
  background: var(--white);
}
.about-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-badge-card {
  position: absolute;
  bottom: -20px; right: 30px;
  background: var(--orange);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-orange);
  display: flex;
  flex-direction: column;
}
.about-years { font-size: 36px; font-weight: 900; line-height: 1; }
.about-badge-card span:last-child { font-size: 12px; font-weight: 600; opacity: 0.9; }

.about-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.about-feature-item i { color: var(--orange); font-size: 16px; }

/* ----- STATS SECTION ----- */
.stats-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 0L0 20h40L20 0zm0 40L0 20h40L20 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-item { position: relative; padding: 20px; }
.stats-item i { font-size: 40px; color: var(--orange); margin-bottom: 12px; }
.stats-item h3 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1;
}
.stats-item p { font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ----- TESTIMONIALS ----- */
.testimonials-section {
  padding: 90px 0;
  background: var(--light-bg);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 4px 20px rgba(13,27,62,0.06);
  border: 2px solid transparent;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.testimonial-card.featured-testimonial {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-color: var(--orange);
}
.testimonial-card.featured-testimonial p { color: rgba(255,255,255,0.85); }
.testimonial-card.featured-testimonial .testimonial-author strong { color: var(--white); }
.testimonial-card.featured-testimonial .testimonial-author span { color: rgba(255,255,255,0.6); }
.stars { color: var(--orange); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-author strong { font-size: 15px; font-weight: 700; color: var(--navy); display: block; }
.testimonial-author span { font-size: 13px; color: var(--text-muted); }

/* ----- CONTACT SECTION ----- */
.contact-section {
  padding: 90px 0;
  background: var(--white);
}
.contact-info-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  height: 100%;
  color: var(--white);
}
.contact-info-box h4 { font-size: 22px; font-weight: 700; margin-bottom: 28px; color: var(--white); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(247,107,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.contact-info-item span { font-size: 15px; color: rgba(255,255,255,0.85); display: block; line-height: 1.6; }

.contact-socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.social-btn.fb { background: #1877f2; }
.social-btn.wa { background: #25d366; }
.social-btn.ig { background: linear-gradient(135deg, #405de6, #e1306c, #fd1d1d); }
.social-btn.yt { background: #ff0000; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}
.contact-input {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  transition: var(--transition);
  background: var(--light-bg);
}
.contact-input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(247,107,0,0.1); background: var(--white); outline: none; }

/* ----- CONTACT MAP ----- */
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-map-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.contact-map-header i {
  color: var(--orange);
  font-size: 16px;
}
.contact-map-wrap iframe {
  display: block;
}

/* ----- FOOTER ----- */
.main-footer { background: var(--dark-bg); }

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo {
  width: 52px; height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-brand-name { font-size: 22px; font-weight: 900; color: var(--white); }
.footer-brand-name span { color: var(--orange); }
.footer-tagline-small { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; }

.footer-desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 16px; }
.footer-slogan { font-size: 16px; color: rgba(255,255,255,0.45); font-style: italic; line-height: 1.6; }
.footer-slogan em { color: rgba(255,255,255,0.7); }

.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-3px); }

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { font-size: 10px; color: var(--orange); }
.footer-links a:hover { color: var(--orange); padding-left: 5px; }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-contact-list i { color: var(--orange); width: 16px; text-align: center; }

/* Footer Feature Bar */
.footer-feature-bar {
  background: var(--navy);
  border-top: 2px solid rgba(247,107,0,0.3);
  border-bottom: 2px solid rgba(247,107,0,0.3);
  padding: 18px 0;
}
.footer-feat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.footer-feat-item:last-child { border-right: none; }
.footer-feat-item i { font-size: 24px; color: var(--orange); }
.footer-feat-item div { display: flex; flex-direction: column; }
.footer-feat-item strong { font-size: 13px; font-weight: 800; color: var(--white); letter-spacing: 0.5px; line-height: 1; }
.footer-feat-item span { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }

/* Footer Bottom Bar */
.footer-bottom-bar {
  background: rgba(247,107,0,0.08);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-contact-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  margin: 4px 8px;
}
.footer-contact-pills i { color: var(--orange); }
.footer-bottom-slogan {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}
.footer-bottom-slogan strong { color: var(--orange); }

/* Footer Copyright */
.footer-copyright {
  padding: 16px 0;
  background: rgba(0,0,0,0.2);
}
.footer-copyright p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-copyright strong { color: var(--orange); }
.footer-copyright .text-orange { color: var(--orange) !important; }

/* ----- AUTH MODALS ----- */
.auth-modal {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.auth-modal .modal-header { padding: 24px 28px 16px; }
.auth-modal .modal-title { font-size: 22px; font-weight: 700; color: var(--white); }
.auth-modal .modal-body { padding: 10px 28px 28px; }
.auth-modal .form-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); margin-bottom: 6px; }

.input-icon-group {
  position: relative;
}
.input-icon-group > i:first-child {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 15px;
  z-index: 2;
}
.auth-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 12px 16px 12px 40px;
  font-size: 15px;
  transition: var(--transition);
  width: 100%;
}
.auth-input:focus { border-color: var(--orange); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 4px rgba(247,107,0,0.15); outline: none; }
.auth-input::placeholder { color: rgba(255,255,255,0.3); }

.toggle-pass {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}
.toggle-pass:hover { color: var(--orange); }

.forgot-link, .auth-switch-link {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.forgot-link:hover, .auth-switch-link:hover { color: var(--orange-light); text-decoration: underline; }

.auth-modal .form-check-input { border-color: rgba(255,255,255,0.3); background-color: transparent; }
.auth-modal .form-check-input:checked { background-color: var(--orange); border-color: var(--orange); }
.auth-modal .form-check-label { color: rgba(255,255,255,0.65); font-size: 13px; }
.auth-modal p { color: rgba(255,255,255,0.55); font-size: 14px; }
.btn-close-white { filter: invert(1); }

/* ----- MODAL SUBTITLE ----- */
.modal-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 2px 0 0;
  font-weight: 400;
}

/* ----- AUTH SELECT & DATE ----- */
.auth-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.auth-date {
  color-scheme: dark;
}

/* ----- SIGNUP TYPE SELECTION ----- */
.signup-type-dialog { max-width: 460px; }
.signup-type-modal { border-radius: 20px !important; }
.signup-type-body { padding: 16px 28px 32px; }
.signup-type-lead {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.signup-type-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.signup-type-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 20px 22px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  width: 100%;
  color: var(--white);
  position: relative;
  outline: none;
}
.signup-type-card:hover, .signup-type-card:focus-visible {
  border-color: var(--orange);
  background: rgba(247,107,0,0.07);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(247,107,0,0.18);
}
.signup-type-card.delivery-card:hover, .signup-type-card.delivery-card:focus-visible {
  border-color: #22c55e;
  background: rgba(34,197,94,0.07);
  box-shadow: 0 10px 30px rgba(34,197,94,0.15);
}
.signup-type-icon {
  width: 56px;
  height: 56px;
  background: rgba(247,107,0,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.signup-type-icon.delivery {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
}
.signup-type-card:hover .signup-type-icon {
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
}
.signup-type-card.delivery-card:hover .signup-type-icon {
  background: #22c55e;
  color: var(--white);
  border-radius: 50%;
}
.signup-type-text {
  flex: 1;
  min-width: 0;
}
.signup-type-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.signup-type-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
  white-space: normal;
}
.signup-type-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.signup-type-card:hover .signup-type-arrow {
  background: var(--orange);
  color: var(--white);
  transform: translateX(3px);
}
.signup-type-card.delivery-card:hover .signup-type-arrow {
  background: #22c55e;
  color: var(--white);
  transform: translateX(3px);
}
.btn-delivery-submit {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  border-color: #22c55e !important;
  box-shadow: 0 4px 15px rgba(34,197,94,0.3) !important;
}
.btn-delivery-submit:hover {
  background: linear-gradient(135deg, #16a34a, #15803d) !important;
}

/* ----- BACK TO TOP ----- */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-3px); }

/* ----- RESPONSIVE ----- */
@media (max-width: 991px) {

  .about-img { height: 280px; }
  .about-badge-card { bottom: -10px; right: 15px; padding: 14px 18px; }
  .about-years { font-size: 28px; }

  /* ---- MOBILE MENU PANEL ---- */
  #navMenu {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    background: var(--white);
    margin-top: 8px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(13,27,62,0.18);
    padding: 8px 6px 16px;
    overflow: hidden;
    z-index: 999;
  }

  /* Nav links */
  #navMenu .navbar-nav { padding: 4px 0; }
  #navMenu .nav-item { border-bottom: 1px solid rgba(13,27,62,0.06); }
  #navMenu .nav-item:last-child { border-bottom: none; }
  #navMenu .nav-link {
    padding: 13px 18px !important;
    border-radius: 10px !important;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy) !important;
  }
  #navMenu .nav-link::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
  }
  #navMenu .nav-link:hover::before,
  #navMenu .nav-link.active::before { opacity: 1; }
  #navMenu .nav-link::after { display: none; }
  #navMenu .nav-link:hover,
  #navMenu .nav-link.active {
    background: rgba(247,107,0,0.07);
    color: var(--orange) !important;
  }

  /* Auth buttons */
  .nav-auth-btns {
    flex-direction: column;
    gap: 10px;
    margin: 14px 12px 4px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .nav-auth-btns .btn-login,
  .nav-auth-btns .btn-signup {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: block;
    padding: 12px 22px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .top-bar { display: none; }
  .tracking-box { padding: 24px 20px; }
  .tracking-input-group { flex-wrap: wrap; border-radius: var(--radius); padding: 12px; gap: 8px; }
  .tracking-input { width: 100%; }
  .tracking-btn { width: 100%; justify-content: center; border-radius: var(--radius); }
  .contact-form-box { padding: 24px 20px; }
  .contact-info-box { padding: 28px 20px; }
  .footer-contact-pills { text-align: center !important; }
  .about-features { grid-template-columns: 1fr; }
  .footer-bottom-bar .row > div { margin-bottom: 10px; }
}

@media (max-width: 575px) {
  .footer-feat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
