/* ============================================
   YASH LOGISTICS — Premium Corporate Stylesheet
   Font: Barlow Condensed (display) + DM Sans (body)
   Colors: Black / Orange / White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ── */
:root {
  --black:      #0a0a0a;
  --black-deep: #050505;
  --orange:     #F76B1C;
  --orange-dark:#D45A10;
  --orange-glow:rgba(247,107,28,0.18);
  --white:      #ffffff;
  --grey-light: #f4f4f2;
  --grey-mid:   #e0e0e0;
  --grey-text:  #888888;
  --card-bg:    #111111;
  --radius:     6px;
  --radius-lg:  14px;
  --transition: 0.32s cubic-bezier(0.4,0,0.2,1);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-orange: 0 4px 30px rgba(247,107,28,0.35);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Typography ── */
h1,h2,h3,h4,h5 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
p  { font-size: 1rem; color: #444; }

/* ── Utility ── */
.text-orange   { color: var(--orange) !important; }
.bg-orange     { background: var(--orange) !important; }
.bg-black      { background: var(--black) !important; }
.section-pad   { padding: 96px 0; }
.section-pad-sm{ padding: 64px 0; }
.tag-line {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 11px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
.btn-black {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-black:hover {
  background: #222;
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Top Info Bar ── */
#topbar {
  background: var(--black-deep);
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#topbar a { color: rgba(255,255,255,0.72); transition: color 0.2s; }
#topbar a:hover { color: var(--orange); }
#topbar .topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 0.72rem;
  transition: var(--transition);
}
#topbar .topbar-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ── Navbar ── */
#mainNav {
  position: fixed;
  top: 40px; /* height of topbar approx */
  width: 100%;
  z-index: 1000;
  background: white !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: top var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 16px 0;
}
#mainNav.scrolled {
  top: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  padding: 12px 0;
}
#mainNav .navbar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--black) !important;
  transition: all var(--transition);
}
#mainNav .navbar-brand span { 
  color: var(--orange);
}
#mainNav .navbar-collapse {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-top: 0;
  box-shadow: none;
}
#mainNav .nav-link {
  color: var(--black) !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px !important;
  transition: color 0.2s;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { 
  color: var(--orange) !important; 
}
#mainNav .navbar-toggler { 
  border-color: rgba(0,0,0,0.15);
  transition: border-color var(--transition);
  padding: 6px 12px;
}
#mainNav .navbar-toggler:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,0.25);
}
#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: background-image var(--transition);
}
/* Hide "Get Quote" button */
#mainNav .btn-orange {
  display: none !important;
}
/* Mobile responsive navbar adjustments */
@media (max-width: 991px) {
  #mainNav {
    padding: 12px 0;
  }
  #mainNav .navbar-brand {
    color: var(--black) !important;
    font-size: 1.4rem;
  }
  #mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* ── Hero Section ── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(5,5,5,0.85) 55%, rgba(5,5,5,0.45) 100%),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1800&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,107,28,0.15);
  border: 1px solid rgba(247,107,28,0.3);
  border-radius: 40px;
  padding: 6px 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge i { font-size: 0.65rem; }
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-title em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
.hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-indicator .mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator .mouse::before {
  content: '';
  width: 3px;
  height: 7px;
  background: var(--orange);
  border-radius: 3px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ── Quick Service Cards ── */
#quick-services {
  background: var(--white);
  position: relative;
  z-index: 2;
  margin-top: -30px;
}
.qs-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.qs-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.qs-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}
.qs-card:hover::before { transform: scaleX(1); }
.qs-icon {
  width: 58px;
  height: 58px;
  background: var(--orange-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
  font-size: 1.5rem;
  color: var(--orange);
}
.qs-card:hover .qs-icon {
  background: var(--orange);
  color: var(--white);
}
.qs-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}
.qs-card p { font-size: 0.88rem; color: var(--grey-text); }

/* ── About Section ── */
#about-home {
  background: var(--grey-light);
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge-float {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-orange);
}
.about-badge-float .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-float .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #333;
}
.about-check-list li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Why Choose Section ── */
#why-choose {
  background: var(--black-deep);
}
#why-choose h2, #why-choose .tag-line { color: var(--white); }
#why-choose p.lead { color: rgba(255,255,255,0.55); }
.wc-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
  height: 100%;
}
.wc-card:hover {
  border-color: var(--orange);
  background: rgba(247,107,28,0.06);
  transform: translateY(-4px);
}
.wc-icon {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 14px;
}
.wc-card h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.wc-card p { font-size: 0.88rem; color: rgba(255,255,255,0.48); }

/* ── Stats Counter ── */
#stats {
  background:
    linear-gradient(135deg, rgba(247,107,28,0.92) 0%, rgba(212,90,16,0.97) 100%),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1400&q=80') center/cover;
  position: relative;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  height: 60px;
  margin: auto;
}

/* ── Process Timeline ── */
#process {
  background: var(--white);
}
.process-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--orange-dark));
}
.process-step { flex: 1; text-align: center; position: relative; }
.process-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  color: var(--orange);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 0 0 6px rgba(247,107,28,0.1);
}
.process-step:hover .process-dot {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.08);
}
.process-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Barlow Condensed', sans-serif;
}
.process-step p { font-size: 0.8rem; color: var(--grey-text); }

/* ── Services Cards ── */
#services-home {
  background: var(--grey-light);
}
.srv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  height: 100%;
}
.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.srv-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.srv-card:hover .srv-img img { transform: scale(1.06); }
.srv-icon-overlay {
  position: absolute;
  bottom: -22px;
  left: 22px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: var(--shadow-orange);
}
.srv-body { padding: 38px 22px 26px; }
.srv-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
}
.srv-body p { font-size: 0.85rem; color: var(--grey-text); margin-bottom: 16px; }
.srv-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.srv-link:hover { gap: 10px; color: var(--orange-dark); }

/* ── Testimonials ── */
#testimonials { background: var(--white); }
.testi-card {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.testi-quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.18;
  font-family: serif;
  line-height: 1;
}
.testi-text {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--black); }
.testi-role { font-size: 0.78rem; color: var(--grey-text); }
.testi-stars { color: var(--orange); font-size: 0.8rem; margin-bottom: 14px; }

/* ── CTA Banner ── */
#cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
#cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
#cta h2 { color: var(--white); }
#cta p { color: rgba(255,255,255,0.82); }
.btn-white {
  background: var(--white);
  color: var(--orange);
  border: none;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Footer ── */
#footer {
  background: var(--black-deep);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
}
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand span { color: var(--orange); }
.footer-desc { font-size: 0.88rem; margin: 14px 0 22px; line-height: 1.7; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: var(--transition);
  margin-right: 8px;
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links a:hover { color: var(--orange); }
.footer-links a i { font-size: 0.65rem; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 52px;
  padding: 20px 0;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.35);
}
.footer-bottom span { color: var(--orange); }

/* ── Page Banner (Inner Pages) ── */
.page-banner {
  background:
    linear-gradient(rgba(5,5,5,0.78) 100%),
    url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1800&q=80') center/cover no-repeat;
  padding: 160px 0 80px;
  text-align: center;
}
.page-banner h1 { color: var(--white); }
.page-banner .breadcrumb {
  justify-content: center;
  background: none;
  margin-top: 14px;
}
.page-banner .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.page-banner .breadcrumb-item a { color: var(--orange); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,0.45); }
.page-banner .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ── About Page ── */
.mission-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-card.mc-mission { background: var(--black-deep); color: var(--white); }
.mission-card.mc-vision  { background: var(--orange); color: var(--white); }
.mission-card.mc-values  { background: var(--grey-light); color: var(--black); }
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.mission-card .mc-icon { font-size: 2.2rem; margin-bottom: 16px; }
.mission-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.mission-card p { font-size: 0.88rem; line-height: 1.7; opacity: 0.8; }

/* Growth Timeline */
.timeline {
  position: relative;
  padding-left: 44px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: -37px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--orange);
}
.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.timeline-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Barlow Condensed', sans-serif;
}
.timeline-item p { font-size: 0.88rem; color: var(--grey-text); }

/* Team Card */
.team-card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover img { transform: scale(1.04); }
.team-info { padding: 20px 16px 24px; }
.team-info h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 3px; }
.team-info .role { font-size: 0.8rem; color: var(--orange); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Services Page ── */
.srv-page-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: var(--transition);
  height: 100%;
}
.srv-page-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.srv-page-img {
  height: 190px;
  overflow: hidden;
}
.srv-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.srv-page-card:hover .srv-page-img img { transform: scale(1.06); }
.srv-page-body { padding: 28px 22px; }
.srv-page-icon {
  width: 46px; height: 46px;
  background: var(--orange-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: var(--transition);
}
.srv-page-card:hover .srv-page-icon { background: var(--orange); color: var(--white); }
.srv-page-body h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.srv-page-body p { font-size: 0.86rem; color: var(--grey-text); margin-bottom: 18px; }

/* ── Contact Page ── */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: var(--transition);
  height: 100%;
  border-top: 3px solid var(--orange);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.contact-icon {
  width: 60px; height: 60px;
  background: var(--orange-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--orange);
}
.contact-info-card h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: #444; transition: color 0.2s; }
.contact-info-card a:hover { color: var(--orange); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.09);
}
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.form-control {
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247,107,28,0.12);
  outline: none;
}

/* Map Placeholder */
.map-placeholder {
  background: #e8e8e6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--grey-text);
}
.map-placeholder i { font-size: 2.5rem; color: var(--orange); }
.map-placeholder iframe {
  width: 100%; height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius-lg);
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .process-track { flex-direction: column; align-items: center; }
  .process-track::before { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .about-badge-float { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 767px) {
  #topbar .topbar-social { display: none !important; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ── Scroll-to-top ── */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  box-shadow: var(--shadow-orange);
}
#scrollTop.show { opacity: 1; pointer-events: all; }
#scrollTop:hover { transform: scale(1.1); }

/* Pre-loader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}
.loader-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.loader-logo span { color: var(--orange); }
.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 40%;
  background: var(--orange);
  border-radius: 3px;
  animation: loaderMove 1.2s infinite;
}
@keyframes loaderMove {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

.logo_light_sz {
  width: 115px;
  height: auto;
  transition: all var(--transition);
  filter: none;
}
#mainNav .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  line-height: 1;
}
@media (max-width: 991px) {
  .logo_light_sz {
    width: 105px;
  }
  #mainNav .navbar-brand {
    flex-shrink: 0;
  }
}

