/* ============================================================
   GALAXY FREIGHT CARRIERS — MAIN STYLESHEET
   Color Palette derived from logo:
     Primary Orange  : #E87722
     Dark Orange     : #C45F00
     Black/Dark BG   : #0A0A0A
     Deep Navy       : #0D1B2A
     Mid Navy        : #1A2E45
     Light Navy      : #243B55
     White           : #FFFFFF
     Light Grey      : #F4F6F8
     Muted Text      : #8A9BB0
     Gold Accent     : #F5C842
============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&family=Rajdhani:wght@500;600;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --orange:       #E87722;
  --orange-dark:  #C45F00;
  --orange-light: #FF9A45;
  --black:        #0A0A0A;
  --navy-deep:    #0D1B2A;
  --navy-mid:     #1A2E45;
  --navy-light:   #243B55;
  --white:        #FFFFFF;
  --grey-light:   #F4F6F8;
  --grey-mid:     #D0D8E4;
  --muted:        #8A9BB0;
  --gold:         #F5C842;
  --success:      #28C76F;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-accent:  'Rajdhani', sans-serif;

  --transition:   all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.18);
  --shadow-orange:0 8px 24px rgba(232,119,34,0.35);
  --radius:       12px;
  --radius-sm:    6px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--navy-deep);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--navy-deep);
}

p { font-family: var(--font-body); color: #4A5568; }

/* ---------- UTILITY CLASSES ---------- */
.text-orange   { color: var(--orange) !important; }
.text-navy     { color: var(--navy-deep) !important; }
.text-white    { color: var(--white) !important; }
.text-muted    { color: var(--muted) !important; }
.bg-navy       { background-color: var(--navy-deep) !important; }
.bg-navy-mid   { background-color: var(--navy-mid) !important; }
.bg-orange     { background-color: var(--orange) !important; }
.bg-dark       { background-color: var(--black) !important; }
.bg-light      { background-color: var(--grey-light) !important; }

.section-py    { padding: 90px 0; }
.section-py-sm { padding: 60px 0; }

/* Section Label */
.section-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  display: inline-block;
}

/* Section Heading */
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-heading span { color: var(--orange); }

.section-subtext {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
}

/* Divider Line */
.orange-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin: 16px 0 28px;
}

/* ---------- BUTTONS ---------- */
.btn-gfc-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  position: relative;
  overflow: hidden;
}
.btn-gfc-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition);
}
.btn-gfc-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232,119,34,0.50); color: var(--white); }
.btn-gfc-primary:hover::after { opacity: 1; }

.btn-gfc-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-gfc-outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,119,34,0.08); }

.btn-gfc-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--navy-deep);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-gfc-dark:hover { background: transparent; border-color: var(--navy-deep); color: var(--navy-deep); }

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo img { width: 180px; animation: pulse 1.4s ease-in-out infinite; }
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-inner {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  animation: loadbar 1.8s ease forwards;
}
@keyframes loadbar { from { width: 0%; } to { width: 100%; } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.6; } }

/* ---------- HEADER / NAVBAR ---------- */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: var(--navy-deep);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-family: var(--font-body);
}
.header-top a { color: var(--grey-mid); }
.header-top a:hover { color: var(--orange); }
.header-top-left, .header-top-right { display: flex; align-items: center; gap: 24px; }
.header-top-item { display: flex; align-items: center; gap: 7px; color: var(--grey-mid); }
.header-top-item i { color: var(--orange); font-size: 0.9rem; }

.header-main {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,119,34,0.15);
  padding: 0;
}
#main-header.scrolled .header-main {
  background: rgba(13, 27, 42, 0.99);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.navbar-brand img { height: 52px; }

.navbar {
  padding: 12px 0;
}

.navbar-nav .nav-link {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82) !important;
  padding: 10px 16px !important;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-nav .nav-link.active { color: var(--orange) !important; }

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.navbar-toggler {
  border: 1.5px solid rgba(232,119,34,0.5);
  padding: 6px 10px;
  color: var(--white);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { filter: invert(1); }

/* Dropdown */
.dropdown-menu {
  background: var(--navy-mid);
  border: 1px solid rgba(232,119,34,0.2);
  border-radius: var(--radius);
  padding: 8px;
  margin-top: 8px !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.dropdown-item {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-item:hover { background: rgba(232,119,34,0.15); color: var(--orange); }

/* ---------- HERO ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.97) 0%,
    rgba(13,27,42,0.80) 50%,
    rgba(13,27,42,0.60) 100%
  );
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,119,34,0.12);
  border: 1px solid rgba(232,119,34,0.35);
  color: var(--orange);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge i { font-size: 0.75rem; }

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s 0.2s ease both;
}
.hero-title .line-orange { color: var(--orange); display: block; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--grey-mid);
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s 0.4s ease both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
  animation: fadeInUp 0.9s 0.6s ease both;
}

/* Track box in hero */
.hero-track-box {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 460px;
  animation: fadeInUp 0.9s 0.8s ease both;
}
.hero-track-box h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-track-box h5 i { color: var(--orange); }

.track-input-group {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid rgba(232,119,34,0.35);
}
.track-input-group input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: none;
  outline: none;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  placeholder-color: var(--muted);
}
.track-input-group input::placeholder { color: var(--muted); }
.track-input-group button {
  background: var(--orange);
  border: none;
  padding: 0 22px;
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.track-input-group button:hover { background: var(--orange-dark); }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 1s ease both;
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Hero Right — floating truck image */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  animation: floatTruck 4s ease-in-out infinite;
}
@keyframes floatTruck { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::after {
  content: '';
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(10px)} }

/* ---------- ABOUT STRIP (Homepage) ---------- */
.about-strip {
  background: var(--navy-deep);
  padding: 28px 0;
  border-bottom: 1px solid rgba(232,119,34,0.15);
}
.about-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.strip-item i {
  width: 44px; height: 44px;
  background: rgba(232,119,34,0.15);
  border: 1px solid rgba(232,119,34,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.strip-text strong {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}
.strip-text span { font-size: 0.8rem; color: var(--muted); }

/* ---------- ABOUT SECTION (Homepage) ---------- */
.about-section { background: var(--white); }
.about-img-block { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px; height: 130px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  color: var(--white);
}
.about-exp-badge .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.about-exp-badge .label {
  font-size: 0.7rem;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-feature-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 40px; height: 40px;
  background: rgba(232,119,34,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 1.05rem;
}
.about-feature-text strong { font-family: var(--font-accent); font-size: 0.95rem; font-weight: 700; display: block; color: var(--navy-deep); }
.about-feature-text span { font-size: 0.85rem; color: var(--muted); }

/* ---------- SERVICES SECTION ---------- */
.services-section { background: var(--grey-light); }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.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);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 68px; height: 68px;
  background: rgba(232,119,34,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); color: var(--white); }

.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--navy-deep);
}
.service-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.service-link {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-link i { transition: var(--transition); }
.service-card:hover .service-link i { transform: translateX(5px); }

/* ---------- WHY CHOOSE US ---------- */
.why-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,119,34,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  background: rgba(232,119,34,0.1);
  border-color: rgba(232,119,34,0.3);
  transform: translateY(-6px);
}
.why-icon {
  width: 64px; height: 64px;
  background: rgba(232,119,34,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--orange); color: var(--white); }
.why-card h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: var(--muted); }

/* ---------- COUNTER SECTION ---------- */
.counter-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.counter-item { text-align: center; position: relative; z-index: 1; }
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}
.counter-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  display: block;
}
.counter-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}

/* ---------- FLEET SECTION ---------- */
.fleet-section { background: var(--white); }

.fleet-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-8px); }
.fleet-card img { width: 100%; height: 240px; object-fit: cover; transition: var(--transition); }
.fleet-card:hover img { transform: scale(1.05); }
.fleet-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,27,42,0.95));
  padding: 28px 22px 22px;
  color: var(--white);
}
.fleet-overlay h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.fleet-overlay span { font-size: 0.82rem; color: var(--orange); font-family: var(--font-accent); font-weight: 600; }

/* ---------- TRACKING SECTION (Home) ---------- */
.tracking-section { background: var(--grey-light); }
.track-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--orange);
}
.track-form .form-label {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 8px;
}
.track-form .form-control {
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-deep);
  transition: var(--transition);
  background: var(--grey-light);
}
.track-form .form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.12);
  background: var(--white);
}

.tracking-info-panel {
  background: var(--navy-deep);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
}
.tracking-info-panel h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.tracking-info-panel p { color: var(--muted); font-size: 0.9rem; }

.track-step-list { margin-top: 24px; display: flex; flex-direction: column; gap: 0; }
.track-step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 24px;
}
.track-step:last-child { padding-bottom: 0; }
.track-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.track-step-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.track-step-dot.done { background: var(--success); color: var(--white); }
.track-step-dot.active { background: var(--orange); color: var(--white); }
.track-step-dot.pending { background: rgba(255,255,255,0.08); color: var(--muted); border: 1px solid rgba(255,255,255,0.1); }

.track-step-body strong {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.track-step-body span { font-size: 0.8rem; color: var(--muted); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--navy-deep); }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: rgba(232,119,34,0.3); background: rgba(232,119,34,0.05); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: rgba(232,119,34,0.1);
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(232,119,34,0.4);
}
.author-name {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.author-company { font-size: 0.78rem; color: var(--muted); }

/* ---------- PARTNERS SLIDER ---------- */
.partners-section { background: var(--white); padding: 50px 0; border-top: 1px solid var(--grey-mid); }
.partners-heading {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
}
.partners-track { overflow: hidden; }
.partners-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scroll-logos 18s linear infinite;
  width: max-content;
}
.partners-inner img { height: 36px; opacity: 0.4; filter: grayscale(100%); transition: var(--transition); }
.partners-inner img:hover { opacity: 1; filter: none; }
@keyframes scroll-logos { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -50px; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,119,34,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.cta-banner p { color: var(--muted); font-size: 1.05rem; margin-top: 12px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1dbb57; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 1px solid rgba(232,119,34,0.2);
}
.footer-brand img { height: 55px; margin-bottom: 18px; }
.footer-about { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { font-size: 0.7rem; color: var(--orange); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-icon {
  width: 36px; height: 36px;
  background: rgba(232,119,34,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.footer-contact-text strong { font-size: 0.82rem; color: var(--white); font-family: var(--font-accent); font-weight: 700; display: block; }
.footer-contact-text span { font-size: 0.85rem; color: var(--muted); }

.footer-newsletter { margin-top: 20px; }
.newsletter-input-group {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1);
}
.newsletter-input-group input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--white);
}
.newsletter-input-group input::placeholder { color: var(--muted); }
.newsletter-input-group button {
  background: var(--orange);
  border: none;
  padding: 0 18px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-input-group button:hover { background: var(--orange-dark); }

.footer-bottom {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  margin-top: 60px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.85rem; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.85rem; color: var(--muted); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ---------- FLOATING BUTTONS ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  z-index: 900;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.12); color: var(--white); }
@keyframes waPulse {
  0%,100%{box-shadow:0 8px 24px rgba(37,211,102,0.45)}
  50%{box-shadow:0 8px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1)}
}

.scroll-top-btn {
  position: fixed;
  bottom: 28px; right: 100px;
  width: 48px; height: 48px;
  background: var(--navy-mid);
  border: 1px solid rgba(232,119,34,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  z-index: 900;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--orange); color: var(--white); }

/* ---------- PAGE HERO (Inner pages) — see full definition below ---------- */

/* ---------- CONTACT PAGE ---------- */
.contact-info-card {
  background: var(--navy-deep);
  border-radius: var(--radius);
  padding: 36px 30px;
  color: var(--white);
}
.contact-info-card .section-heading { color: var(--white); }

.contact-detail-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-detail-item:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 50px; height: 50px;
  background: rgba(232,119,34,0.15);
  border: 1px solid rgba(232,119,34,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-body strong { font-family: var(--font-accent); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); display: block; margin-bottom: 4px; }
.contact-detail-body span { font-size: 0.95rem; color: var(--white); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-label-gfc {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 7px;
  display: block;
}
.form-control-gfc {
  width: 100%;
  background: var(--grey-light);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-deep);
  transition: var(--transition);
  outline: none;
}
.form-control-gfc:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.1);
  background: var(--white);
}
textarea.form-control-gfc { resize: vertical; min-height: 120px; }

/* ---------- TRACKING PAGE ---------- */
.tracking-result-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border-top: 4px solid var(--orange);
}
.tracking-result-header {
  background: var(--navy-deep);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.tracking-result-header h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}
.status-badge {
  padding: 7px 18px;
  border-radius: 20px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-badge.in-transit { background: rgba(232,119,34,0.2); color: var(--orange); border: 1px solid rgba(232,119,34,0.4); }
.status-badge.delivered { background: rgba(40,199,111,0.2); color: var(--success); border: 1px solid rgba(40,199,111,0.4); }

.tracking-progress { padding: 32px; }
.progress-bar-wrap {
  background: var(--grey-mid);
  height: 8px;
  border-radius: 4px;
  margin: 20px 0 32px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  transition: width 1s ease;
}

/* ---------- ABOUT PAGE ---------- */
.timeline { position: relative; padding-left: 40px; }
.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; padding-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(232,119,34,0.3);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.timeline-desc { font-size: 0.9rem; color: var(--muted); }

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img { width: 100%; height: 280px; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-socials {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: rgba(13,27,42,0.9);
  transition: var(--transition);
}
.team-card:hover .team-socials { bottom: 0; }
.team-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
}
.team-info { padding: 22px; }
.team-info h5 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; text-transform: uppercase; color: var(--navy-deep); }
.team-info span { font-size: 0.85rem; color: var(--orange); font-family: var(--font-accent); font-weight: 600; }

/* ---------- BLOG ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-card-img { overflow: hidden; }
.blog-card-img img { width: 100%; height: 220px; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-cat {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.blog-card-body h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: var(--transition);
}
.blog-card:hover h5 { color: var(--orange); }
.blog-card-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.blog-meta { display: flex; gap: 18px; font-size: 0.8rem; color: var(--muted); }
.blog-meta i { color: var(--orange); }

/* ---------- CAREER PAGE ---------- */
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--grey-mid);
  transition: var(--transition);
}
.job-card:hover { border-color: var(--orange); box-shadow: 0 8px 24px rgba(232,119,34,0.12); }
.job-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; color: var(--navy-deep); }
.job-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 16px; }
.job-tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.job-tag.type { background: rgba(232,119,34,0.1); color: var(--orange); }
.job-tag.location { background: rgba(13,27,42,0.07); color: var(--navy-mid); }
.job-tag.dept { background: rgba(40,199,111,0.1); color: var(--success); }

/* ---------- QUOTE PAGE ---------- */
.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 48px 40px;
  border-top: 4px solid var(--orange);
}
.quote-step-indicators {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  gap: 0;
}
.q-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.q-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%; right: -50%;
  top: 19px;
  height: 2px;
  background: var(--grey-mid);
  z-index: 0;
}
.q-step.done::after, .q-step.active::after { background: var(--orange); }
.q-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 1;
  position: relative;
  transition: var(--transition);
}
.q-step.done .q-step-num { background: var(--orange); color: var(--white); }
.q-step.active .q-step-num { background: var(--navy-deep); color: var(--white); border: 2px solid var(--orange); }
.q-step.pending .q-step-num { background: var(--grey-mid); color: var(--muted); }
.q-step-label { font-size: 0.75rem; font-family: var(--font-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); text-align: center; }
.q-step.active .q-step-label, .q-step.done .q-step-label { color: var(--orange); }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}

[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ---------- MAP EMBED ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 3px solid rgba(232,119,34,0.2); }
.map-embed iframe { display: block; width: 100%; }

/* ---------- BRANCH CARD ---------- */
.branch-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-mid);
  padding: 28px;
  transition: var(--transition);
  height: 100%;
}
.branch-card:hover { border-color: var(--orange); box-shadow: 0 8px 24px rgba(232,119,34,0.1); }
.branch-card h5 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; color: var(--navy-deep); margin-bottom: 14px; }
.branch-info-item { display: flex; gap: 10px; font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; align-items: flex-start; }
.branch-info-item i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .header-top { display: none; }
  .hero-content { padding-top: 100px; }
  .about-exp-badge { right: 0; bottom: 0; width: 100px; height: 100px; }
  .about-exp-badge .num { font-size: 2rem; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 767.98px) {
  .section-py { padding: 60px 0; }
  .counter-section { padding: 50px 0; }
  .hero-title { font-size: 2.4rem; }
  .hero-track-box { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-banner { padding: 60px 0; }
  .quote-form-wrap { padding: 28px 20px; }
  .contact-form-card { padding: 28px 20px; }
  .about-exp-badge { display: none; }
  .scroll-top-btn { right: 90px; }
  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.6rem; }
  .navbar-brand img { height: 42px; }
}
/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E87722' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero h1 span { color: var(--orange); }
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.breadcrumb-nav a:hover { color: var(--orange); }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.3); font-size:0.7rem; }
.breadcrumb-nav .current { color: var(--orange); font-family: var(--font-accent); font-weight: 700; }

/* ---------- SERVICE CARDS ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(232,119,34,0.12);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 1.8rem; color: var(--white);
  box-shadow: var(--shadow-orange);
}
.service-card-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.service-card-desc { color: #4A5568; font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.service-card-features { padding: 0; margin-bottom: 16px; flex: 1; }
.service-card-features li { font-size: 0.88rem; color: #4A5568; padding: 5px 0; display: flex; align-items: center; gap: 8px; }

/* ---------- BLOG CARDS ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.blog-card-img { position: relative; }
.blog-cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: var(--white);
  font-size: 0.72rem; font-family: var(--font-accent); font-weight: 700;
  text-transform: uppercase; padding: 4px 12px; border-radius: 3px;
  letter-spacing: 0.08em;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.blog-title {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase; color: var(--navy-deep); line-height: 1.3; margin-bottom: 12px;
}
.blog-excerpt { color: #4A5568; font-size: 0.88rem; line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-read-more {
  font-family: var(--font-accent); font-weight: 700; font-size: 0.88rem;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em;
  transition: var(--transition);
}
.blog-read-more:hover { color: var(--orange-dark); }

/* ---------- BRANCH CARD (enhanced) ---------- */
.branch-card {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--grey-mid); padding: 28px;
  transition: var(--transition); position: relative;
}
.branch-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(232,119,34,0.12); }
.branch-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--orange); color: var(--white);
  font-size: 0.72rem; font-family: var(--font-accent); font-weight: 700;
  text-transform: uppercase; padding: 3px 10px; border-radius: 3px;
}
.branch-city {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  text-transform: uppercase; color: var(--navy-deep); line-height: 1; margin-bottom: 2px;
}
.branch-state {
  font-family: var(--font-accent); font-weight: 700; font-size: 0.78rem;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
}
.branch-detail {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: #4A5568; margin-bottom: 10px; line-height: 1.5;
}
.branch-detail i { min-width: 14px; margin-top: 3px; }
.branch-detail a { color: inherit; }
.branch-detail a:hover { color: var(--orange); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  background: var(--navy-deep);
  padding: 80px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  opacity: 0.1;
}

/* ---------- FORM CONTROLS (override Bootstrap) ---------- */
.form-control {
  border: 2px solid var(--grey-mid) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  color: var(--navy-deep) !important;
  background: var(--white) !important;
  transition: var(--transition) !important;
}
.form-control:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(232,119,34,0.15) !important;
  outline: none !important;
}
.form-label {
  font-family: var(--font-accent); font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--navy-deep); margin-bottom: 6px;
}