/* =====================================================
   TIRUPATI LOGISTICS – MAIN STYLESHEET v2
   Typography & Spacing Refinement
   Dark Navy + Orange | Industrial Premium Corporate
   ===================================================== */

/* ─── CSS VARIABLES ─── */
:root {
  /* Brand colours – UNCHANGED */
  --navy:            #0A1628;
  --navy-mid:        #0F2042;
  --navy-light:      #162d5e;
  --orange:          #E8640C;
  --orange-dark:     #c4530a;
  --orange-light:    #f07a2e;
  --white:           #FFFFFF;
  --off-white:       #F4F6FA;

  /* Semantic aliases */
  --primary-dark:    #0A1628;
  --secondary-dark:  #0F2042;
  --text-dark:       #111827;
  --text-light:      rgba(255,255,255,0.82);
  --text-body:       #374151;
  --text-muted:      #6B7280;
  --muted:           #6B7280;

  /* Borders & Shadows */
  --border:          rgba(255,255,255,0.08);
  --border-light:    rgba(14,35,78,0.12);
  --shadow-sm:       0 2px 12px rgba(10,22,40,0.08);
  --shadow-md:       0 8px 32px rgba(10,22,40,0.15);
  --shadow-lg:       0 20px 60px rgba(10,22,40,0.22);

  /* Radius */
  --radius:          8px;
  --radius-lg:       14px;
  --card-radius:     14px;

  /* Transition */
  --transition:      0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --ff-display:      'Barlow Condensed', 'Oswald', sans-serif;
  --ff-body:         'Manrope', 'DM Sans', 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 96px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-display);
  line-height: 1.18;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: 0.01em;
}
p { line-height: 1.78; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ─── UTILITY ─── */
.section-pad        { padding: var(--section-padding) 0; }
.bg-dark-section    { background: var(--navy); }
.text-orange        { color: var(--orange) !important; }
.max-700            { max-width: 700px; }
.max-600            { max-width: 600px; }

/* ─── TYPOGRAPHY SYSTEM ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.section-label.center { display: flex; justify-content: center; }
.section-label.center::before { display: none; }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.16;
  letter-spacing: 0.02em;
}
.bg-dark-section .section-title,
.faq-section .section-title { color: var(--white); }

.section-text {
  font-family: var(--ff-body);
  color: var(--text-body);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.80;
  margin-bottom: 18px;
}
.bg-dark-section .section-text { color: rgba(255,255,255,0.72); }

/* ─── BUTTONS ─── */
.btn-orange {
  background: var(--orange);
  color: var(--white) !important;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  padding: 13px 30px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,100,12,0.32);
  color: var(--white) !important;
}

.btn-orange-outline {
  background: transparent;
  color: var(--orange) !important;
  border: 2px solid var(--orange);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.btn-orange-outline:hover { background: var(--orange); color: var(--white) !important; transform: translateY(-2px); }

.btn-outline-nav {
  background: transparent;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  line-height: 1;
}
.btn-outline-nav:hover { background: var(--navy); color: var(--white) !important; transform: translateY(-2px); }

.btn-outline-orange {
  background: transparent;
  color: var(--orange) !important;
  border: 2px solid var(--orange);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  line-height: 1;
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white) !important; transform: translateY(-2px); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  border: 2px solid #25D366;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.btn-whatsapp:hover { background: #1da955; border-color: #1da955; transform: translateY(-2px); }

.btn-hero { padding: 15px 34px; font-size: 15px; }
.btn-nav  { font-size: 13.5px; padding: 10px 22px; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 26px;
  z-index: 9999;
  background: #25D366;
  color: var(--white) !important;
  padding: 13px 22px 13px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 22px rgba(37,211,102,0.42);
  animation: waBounce 2.8s ease-in-out infinite;
}
.whatsapp-float i { font-size: 22px; }
.whatsapp-float:hover { background: #1da955; transform: scale(1.05); animation: none; }
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar a { color: rgba(255,255,255,0.72); font-family: var(--ff-body); font-weight: 500; font-size: 12.5px; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--orange); }
.topbar span { color: rgba(255,255,255,0.60); font-family: var(--ff-body); font-size: 12.5px; display: inline-flex; align-items: center; gap: 6px; }
.social-icons a { color: rgba(255,255,255,0.60); margin: 0 4px; font-size: 14px; }
.social-icons a:hover { color: var(--orange); }

/* ─── HEADER ─── */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.main-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.32); }
.navbar { padding: 14px 0; }

.logo-img { height: 50px; width: auto; object-fit: contain; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--ff-display); font-size: 21px; font-weight: 800; color: var(--white); letter-spacing: 0.5px; line-height: 1.1; }
.logo-tag { font-family: var(--ff-body); font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.50); letter-spacing: 0.4px; margin-top: 3px; }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px !important;
  letter-spacing: 0.15px;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--orange) !important; }
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.dropdown-toggle-custom { cursor: pointer; }

.navbar-toggler { border: none; background: none; padding: 6px; outline: none !important; box-shadow: none !important; }
.toggler-bar { display: block; width: 26px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--transition); }

/* ─── MEGA MENU ─── */
.mega-parent { position: static; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-mid);
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 20px 50px rgba(0,0,0,0.38);
}
.mega-parent:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; padding: 32px 0; }
.mega-col { padding: 0 26px; border-right: 1px solid rgba(255,255,255,0.06); }
.mega-col:last-child { border-right: none; }
.mega-heading { font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mega-col a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75) !important; font-family: var(--ff-body); font-size: 13.5px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: var(--transition); }
.mega-col a i { color: var(--orange); font-size: 14px; width: 18px; flex-shrink: 0; }
.mega-col a:hover { color: var(--orange) !important; padding-left: 6px; }

/* ─── HERO SECTION ─── */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.82) 55%, rgba(10,22,40,0.60) 100%); }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-container { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,100,12,0.13);
  border: 1px solid rgba(232,100,12,0.32);
  color: var(--orange);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulseDot 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.45; transform:scale(.65); } }

.hero-title { font-family: var(--ff-display); font-size: clamp(44px,6.2vw,82px); font-weight: 900; color: var(--white); line-height: 1.06; margin-bottom: 24px; letter-spacing: 0.01em; }
.hero-sub { font-family: var(--ff-body); font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.78); max-width: 520px; line-height: 1.75; margin-bottom: 32px; }

.hero-stats { gap: 32px; }
.hero-stat { text-align: center; }
.stat-num { display: block; font-family: var(--ff-display); font-size: 40px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num em { font-style: normal; color: var(--orange); }
.stat-label { display: block; font-family: var(--ff-body); font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.58); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 5px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.18); align-self: stretch; }

.hero-form-card { background: rgba(15,32,66,0.97); border: 1px solid rgba(255,255,255,0.10); border-top: 4px solid var(--orange); border-radius: var(--card-radius); padding: 34px 30px; backdrop-filter: blur(14px); }
.hf-header { margin-bottom: 26px; }
.hf-header h3 { font-family: var(--ff-display); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 6px; letter-spacing: 0.03em; }
.hf-header p { font-family: var(--ff-body); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.50); margin: 0; }

.fc-dark { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--white) !important; border-radius: var(--radius); padding: 12px 15px; font-family: var(--ff-body); font-size: 14px; font-weight: 500; transition: var(--transition); width: 100%; }
.fc-dark::placeholder { color: rgba(255,255,255,0.40); }
.fc-dark:focus { background: rgba(255,255,255,0.10); border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,100,12,0.16); outline: none; color: var(--white) !important; }
.fc-dark option { background: var(--navy-mid); color: var(--white); }

.btn-submit-hero { font-size: 15.5px; padding: 15px; font-weight: 700; letter-spacing: 0.3px; }
.hf-footer { font-family: var(--ff-body); font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.40); margin-top: 16px; display: flex; align-items: center; gap: 8px; }

.hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.65; }
.hero-scroll-indicator span { color: rgba(255,255,255,0.45); font-family: var(--ff-body); font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.scroll-mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.35); border-radius: 11px; display: flex; align-items: flex-start; justify-content: center; padding-top: 5px; }
.scroll-wheel { width: 4px; height: 8px; background: var(--orange); border-radius: 2px; animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0% { opacity:1; transform:translateY(0); } 100% { opacity:0; transform:translateY(12px); } }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--orange); padding: 15px 0; }
.trust-inner { gap: 20px; }
.trust-item { color: var(--white); font-family: var(--ff-body); font-size: 13px; font-weight: 700; letter-spacing: 0.3px; display: flex; align-items: center; gap: 8px; }
.trust-item i { font-size: 16px; }
.trust-sep { color: rgba(255,255,255,0.38); font-size: 18px; }

/* ─── ABOUT SECTION ─── */
.about-section { background: var(--white); }
.about-img-grid { display: grid; grid-template-columns: 1fr 0.62fr; gap: 16px; position: relative; }
.about-img-main { border-radius: var(--card-radius); overflow: hidden; height: 430px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-side { display: flex; flex-direction: column; gap: 16px; }
.about-img-side img { border-radius: var(--card-radius); height: 200px; object-fit: cover; flex: 1; }
.about-badge-box { background: var(--orange); border-radius: var(--card-radius); padding: 22px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; flex: 1; }
.big-num { font-family: var(--ff-display); font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.big-num sup { font-size: 28px; }
.small-text { font-family: var(--ff-body); color: rgba(255,255,255,0.90); font-size: 12.5px; font-weight: 600; line-height: 1.5; margin-top: 7px; }
.about-highlights { gap: 10px; }
.about-hl { background: var(--off-white); padding: 10px 16px; border-radius: var(--radius); font-family: var(--ff-body); font-size: 13.5px; font-weight: 600; display: flex; align-items: center; gap: 8px; color: var(--text-dark); }
.about-section .section-text strong { font-weight: 700; color: var(--text-dark); }

/* ─── SERVICES GRID ─── */
.services-section { background: var(--navy); }
.services-section .section-title { color: var(--white); }
.serv-card { display: flex; flex-direction: column; border-radius: var(--card-radius); overflow: hidden; background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.07); transition: var(--transition); height: 100%; }
.serv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.38); border-color: rgba(232,100,12,0.28); }
.serv-card-img { position: relative; height: 195px; overflow: hidden; flex-shrink: 0; }
.serv-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.serv-card:hover .serv-card-img img { transform: scale(1.06); }
.serv-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.65) 0%, transparent 55%); }
.serv-card-body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.serv-icon { width: 44px; height: 44px; background: rgba(232,100,12,0.14); border: 1px solid rgba(232,100,12,0.28); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; flex-shrink: 0; }
.serv-icon i { color: var(--orange); font-size: 19px; }
.serv-title { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.2; letter-spacing: 0.02em; }
.serv-card-body p { color: rgba(255,255,255,0.65); font-family: var(--ff-body); font-size: 14px; font-weight: 400; line-height: 1.72; margin-bottom: 18px; flex: 1; }
.serv-link { color: var(--orange); font-family: var(--ff-body); font-size: 13.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.3px; margin-top: auto; }
.serv-card:hover .serv-link { gap: 10px; }

/* ─── INDUSTRIES SECTION ─── */
.industries-section { background: var(--off-white); }
.industry-card { position: relative; border-radius: var(--card-radius); overflow: hidden; height: 200px; cursor: pointer; }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.industry-card:hover img { transform: scale(1.08); }
.ind-icon { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; z-index: 2; }
.ind-icon i { color: var(--white); font-size: 16px; }
.ind-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.28) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px 16px; transition: var(--transition); }
.ind-overlay h4 { font-family: var(--ff-display); font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 4px; letter-spacing: 0.02em; }
.ind-overlay p { font-family: var(--ff-body); font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.70); margin: 0; line-height: 1.45; }

/* ─── FLEET SECTION ─── */
.fleet-section { background: var(--navy); }
.fleet-section .section-title { color: var(--white); }
.fleet-counter-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--card-radius); padding: 32px 22px; text-align: center; border-top: 3px solid var(--orange); transition: var(--transition); }
.fleet-counter-box:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.fleet-num { display: block; font-family: var(--ff-display); font-size: 54px; font-weight: 900; color: var(--white); line-height: 1; }
.fleet-plus { color: var(--orange); font-family: var(--ff-display); font-size: 32px; font-weight: 900; }
.fleet-counter-box p { font-family: var(--ff-body); color: rgba(255,255,255,0.62); font-size: 13px; font-weight: 600; margin-top: 9px; margin-bottom: 0; letter-spacing: 0.3px; }
.fleet-heading { font-family: var(--ff-display); font-size: 27px; font-weight: 800; color: var(--white); margin-bottom: 24px; letter-spacing: 0.02em; }
.fleet-list { display: flex; flex-direction: column; gap: 2px; }
.fleet-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.78); font-family: var(--ff-body); font-size: 14.5px; font-weight: 500; padding: 11px 14px; border-radius: var(--radius); transition: var(--transition); line-height: 1.4; }
.fleet-item:hover { background: rgba(255,255,255,0.05); }
.fleet-item i { font-size: 17px; flex-shrink: 0; }
.fleet-img-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fleet-img-main { grid-column: 1 / -1; border-radius: var(--card-radius); height: 245px; object-fit: cover; }
.fleet-img-sm { border-radius: var(--card-radius); height: 160px; object-fit: cover; }

/* ─── WHY SECTION ─── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px 20px; background: var(--off-white); border-radius: var(--card-radius); border-left: 3px solid var(--orange); transition: var(--transition); }
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); background: var(--white); }
.why-icon { width: 46px; height: 46px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon i { color: var(--white); font-size: 20px; }
.why-item h5 { font-family: var(--ff-display); font-size: 17.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.02em; }
.why-item p { font-family: var(--ff-body); font-size: 13.5px; font-weight: 400; color: var(--text-body); margin: 0; line-height: 1.68; }
.why-img-wrap { position: relative; }
.why-main-img { border-radius: var(--card-radius); width: 100%; max-height: 530px; object-fit: cover; }
.why-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); border-radius: var(--card-radius); padding: 20px 24px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--orange); }
.why-badge i { font-size: 28px; }
.why-badge strong { display: block; font-family: var(--ff-display); font-size: 16px; font-weight: 800; color: var(--navy); }
.why-badge span { font-family: var(--ff-body); font-size: 12.5px; font-weight: 500; color: var(--text-muted); }

/* ─── NETWORK SECTION ─── */
.network-section { background: var(--navy-mid); }
.network-section .section-title { color: var(--white); }
.network-office-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--card-radius); padding: 32px 28px; height: 100%; transition: var(--transition); }
.network-office-card:hover { background: rgba(255,255,255,0.09); }
.network-office-card.primary { border-top: 3px solid var(--orange); }
.office-tag { font-family: var(--ff-body); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.network-office-card h4 { font-family: var(--ff-display); font-size: 23px; font-weight: 800; color: var(--white); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; letter-spacing: 0.02em; }
.network-office-card p { font-family: var(--ff-body); color: rgba(255,255,255,0.66); font-size: 14px; font-weight: 400; line-height: 1.7; }
.network-info-card { background: var(--orange); border-radius: var(--card-radius); padding: 32px 28px; height: 100%; }
.network-info-card h4 { font-family: var(--ff-display); font-size: 21px; font-weight: 800; color: var(--white); margin-bottom: 20px; letter-spacing: 0.02em; }
.route-list { display: flex; flex-direction: column; gap: 6px; }
.route-list span { font-family: var(--ff-body); color: rgba(255,255,255,0.90); font-size: 13.5px; font-weight: 500; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.15); display: block; line-height: 1.4; }
.route-list span:last-child { border: none; }
.network-cities { background: rgba(255,255,255,0.04); border-radius: var(--card-radius); padding: 30px; border: 1px solid rgba(255,255,255,0.07); }
.network-cities h5 { font-family: var(--ff-body); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.city-tags span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.78); padding: 7px 15px; border-radius: 50px; font-family: var(--ff-body); font-size: 13px; font-weight: 500; transition: var(--transition); }
.city-tags span:hover { background: var(--orange); color: var(--white); }

/* ─── CTA BANNER ─── */
.cta-banner { position: relative; padding: 96px 0; overflow: hidden; }
.cta-bg-img { position: absolute; inset: 0; z-index: 0; }
.cta-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.97) 0%, rgba(10,22,40,0.91) 100%); }
.cta-title { font-family: var(--ff-display); font-size: clamp(30px,4vw,46px); font-weight: 900; color: var(--white); margin-bottom: 18px; line-height: 1.14; letter-spacing: 0.02em; }
.cta-text { font-family: var(--ff-body); color: rgba(255,255,255,0.72); font-size: 15.5px; font-weight: 400; line-height: 1.78; }
.cta-contacts { gap: 28px; }
.cta-contact-item { display: flex; align-items: center; gap: 12px; color: var(--white) !important; }
.cta-contact-item i { font-size: 22px; color: var(--orange); }
.cta-contact-item small { display: block; font-family: var(--ff-body); color: rgba(255,255,255,0.50); font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; }
.cta-contact-item strong { display: block; font-family: var(--ff-body); font-size: 16px; font-weight: 700; }
.cta-form-card { background: var(--white); border-radius: var(--card-radius); padding: 38px 34px; box-shadow: var(--shadow-lg); }
.cta-form-card h4 { font-family: var(--ff-display); font-size: 23px; font-weight: 800; color: var(--navy); margin-bottom: 26px; letter-spacing: 0.02em; }
.fc-light { background: var(--off-white); border: 1px solid var(--border-light); color: var(--text-dark) !important; border-radius: var(--radius); padding: 12px 15px; font-family: var(--ff-body); font-size: 14px; font-weight: 500; transition: var(--transition); width: 100%; }
.fc-light::placeholder { color: var(--text-muted); }
.fc-light:focus { background: var(--white); border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,100,12,0.10); outline: none; }
.fc-light option { background: var(--white); }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--off-white); }
.testimonial-swiper { padding-bottom: 52px !important; }
.testi-card { background: var(--white); border-radius: var(--card-radius); padding: 36px 30px 30px; box-shadow: var(--shadow-sm); border: 1px solid rgba(14,35,78,0.07); border-top: 3px solid var(--orange); position: relative; height: 100%; display: flex; flex-direction: column; }
.testi-quote { position: absolute; top: 20px; right: 24px; }
.testi-quote i { font-size: 38px; color: rgba(232,100,12,0.10); }
.testi-text { font-family: var(--ff-body); color: var(--text-body); font-size: 14.5px; font-weight: 400; line-height: 1.80; margin-bottom: 26px; font-style: italic; flex: 1; }
.testi-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.testi-avatar { width: 46px; height: 46px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 800; font-size: 16px; color: var(--white); flex-shrink: 0; }
.testi-meta strong { display: block; font-family: var(--ff-display); font-size: 16px; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }
.testi-meta span { display: block; font-family: var(--ff-body); font-size: 12.5px; font-weight: 500; color: var(--text-muted); line-height: 1.45; margin-top: 2px; }
.testi-stars i { color: var(--orange); font-size: 13px; }
.testimonial-pagination .swiper-pagination-bullet { background: var(--navy); opacity: 0.25; }
.testimonial-pagination .swiper-pagination-bullet-active { background: var(--orange); opacity: 1; }

/* ─── FAQ SECTION ─── */
.faq-section { position: relative; padding: var(--section-padding) 0; overflow: hidden; }
.faq-bg-img { position: absolute; inset: 0; z-index: 0; }
.faq-bg-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.22); }
.faq-overlay { position: absolute; inset: 0; background: rgba(10,22,40,0.88); }
.faq-item { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.09) !important; border-radius: var(--radius) !important; margin-bottom: 14px; overflow: hidden; }
.faq-btn { background: transparent !important; color: var(--white) !important; font-family: var(--ff-body); font-size: 15px; font-weight: 600; padding: 20px 22px !important; box-shadow: none !important; line-height: 1.5; }
.faq-btn::after { filter: invert(1); }
.faq-btn:not(.collapsed) { color: var(--orange) !important; }
.faq-body { font-family: var(--ff-body); color: rgba(255,255,255,0.70) !important; font-size: 14.5px; font-weight: 400; line-height: 1.80; padding: 4px 22px 22px !important; background: transparent; }

/* ─── PROMO STRIP ─── */
.promo-strip { position: relative; padding: 60px 0; overflow: hidden; }
.promo-bg { position: absolute; inset: 0; z-index: 0; }
.promo-bg img { width: 100%; height: 100%; object-fit: cover; }
.promo-overlay { position: absolute; inset: 0; background: rgba(10,22,40,0.93); }
.promo-title { font-family: var(--ff-display); font-size: clamp(26px,3.5vw,40px); font-weight: 900; color: var(--white); margin-bottom: 7px; letter-spacing: 0.02em; }
.promo-sub { font-family: var(--ff-body); color: rgba(255,255,255,0.62); font-size: 15px; font-weight: 400; margin: 0; }

/* ─── FOOTER ─── */
.main-footer { background: var(--navy); }
.footer-top { padding: 80px 0 56px; }
.footer-logo { margin-bottom: 18px; }
.footer-about-text { font-family: var(--ff-body); color: rgba(255,255,255,0.60); font-size: 14px; font-weight: 400; line-height: 1.78; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.68) !important; font-size: 16px; transition: var(--transition); }
.footer-social a:hover { background: var(--orange); color: var(--white) !important; transform: translateY(-2px); }
.footer-hours { font-family: var(--ff-body); color: rgba(255,255,255,0.52); font-size: 13px; font-weight: 400; line-height: 1.75; margin-top: 18px; }
.footer-hours strong { color: rgba(255,255,255,0.80); font-weight: 600; }
.footer-heading { font-family: var(--ff-display); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); display: inline-block; letter-spacing: 0.04em; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-family: var(--ff-body); color: rgba(255,255,255,0.58); font-size: 13.5px; font-weight: 500; display: flex; align-items: center; gap: 7px; line-height: 1.5; transition: var(--transition); }
.footer-links a::before { content: '›'; color: var(--orange); font-size: 16px; }
.footer-links a:hover { color: var(--orange); padding-left: 5px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 13px; font-family: var(--ff-body); color: rgba(255,255,255,0.62); font-size: 13.5px; font-weight: 400; line-height: 1.68; }
.footer-contact-item i { font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.62); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-item strong { font-family: var(--ff-body); color: rgba(255,255,255,0.88); font-size: 12.5px; font-weight: 700; display: block; margin-bottom: 3px; letter-spacing: 0.3px; text-transform: uppercase; }
.footer-mini-form { margin-top: 28px; }
.footer-mini-form h6 { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 14px; letter-spacing: 0.04em; }
.fc-footer { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10); color: var(--white) !important; border-radius: var(--radius); padding: 11px 14px; font-family: var(--ff-body); font-size: 13.5px; font-weight: 500; width: 100%; transition: var(--transition); }
.fc-footer::placeholder { color: rgba(255,255,255,0.38); }
.fc-footer:focus { border-color: var(--orange); outline: none; background: rgba(255,255,255,0.10); }
.footer-seo-row { background: rgba(0,0,0,0.22); padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-seo-heading { font-family: var(--ff-body); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 14px; }
.footer-seo-links { gap: 8px; }
.footer-seo-links a { font-family: var(--ff-body); color: rgba(255,255,255,0.44); font-size: 12.5px; font-weight: 500; padding: 5px 13px; background: rgba(255,255,255,0.04); border-radius: 50px; border: 1px solid rgba(255,255,255,0.07); transition: var(--transition); line-height: 1.4; }
.footer-seo-links a:hover { color: var(--orange); border-color: rgba(232,100,12,0.30); }
.footer-bottom { background: rgba(0,0,0,0.28); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { font-family: var(--ff-body); color: rgba(255,255,255,0.42); font-size: 13px; font-weight: 400; }
.footer-bottom a { font-family: var(--ff-body); color: rgba(255,255,255,0.42); font-size: 13px; font-weight: 500; }
.footer-bottom a:hover { color: var(--orange); }

/* ─── FORM CONTROLS OVERRIDE ─── */
.form-control, .form-select { font-family: var(--ff-body); }
.form-select.fc-dark, .form-select.fc-light, .form-select.fc-footer { appearance: auto; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1199px) {
  :root { --section-padding: 80px; }
  .mega-inner { grid-template-columns: repeat(2,1fr); }
  .mega-col:nth-child(2) { border-right: none; }
  .mega-col:nth-child(3) { border-right: none; }
}

@media (max-width: 991px) {
  :root { --section-padding: 64px; }
  .hero-section { min-height: auto; }
  .hero-container { padding-top: 100px; padding-bottom: 64px; }
  .hero-title { font-size: clamp(38px,7vw,62px); }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .why-badge { position: relative; left: auto; bottom: auto; margin-top: 24px; }
  .about-img-grid { grid-template-columns: 1fr; }
  .about-img-side { flex-direction: row; }
  .mega-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.04); padding: 0; }
  .mega-inner { grid-template-columns: 1fr; padding: 10px 0; }
  .mega-col { border: none; padding: 8px 16px; }
  .mega-heading { display: none; }
  .navbar-collapse { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.07); padding: 16px 0; margin-top: 12px; border-radius: var(--card-radius); }
  .fleet-img-grid { grid-template-columns: 1fr; }
  .fleet-img-main { grid-column: auto; }
  .footer-top { padding: 60px 0 44px; }
  .cta-banner { padding: 72px 0; }
}

@media (max-width: 767px) {
  :root { --section-padding: 54px; }
  .hero-container { padding-top: 80px; padding-bottom: 52px; }
  .hero-title { font-size: 36px; line-height: 1.10; }
  .hero-sub { font-size: 15px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .stat-num { font-size: 32px; }
  .hero-form-card { padding: 24px 20px; margin-top: 32px; }
  .hero-badge { font-size: 11px; padding: 7px 15px; }
  .trust-sep { display: none; }
  .trust-inner { gap: 12px; flex-wrap: wrap; }
  .trust-item { font-size: 12.5px; }
  .serv-card-body { padding: 20px 18px 22px; }
  .serv-title { font-size: 19px; }
  .serv-card-body p { font-size: 13.5px; }
  .testi-card { padding: 28px 22px 24px; }
  .testi-text { font-size: 14px; }
  .why-badge { left: 0; }
  .why-item { padding: 18px 16px; }
  .why-item h5 { font-size: 16px; }
  .network-office-card { padding: 24px 22px; }
  .network-info-card { padding: 24px 22px; }
  .cta-form-card { padding: 26px 22px; }
  .cta-banner { padding: 56px 0; }
  .cta-title { font-size: 28px; }
  .cta-contacts { gap: 18px; }
  .footer-top { padding: 48px 0 36px; }
  .footer-heading { font-size: 16px; }
  .footer-links a { font-size: 13px; }
  .footer-contact-item { font-size: 13px; }
  .footer-hours { font-size: 12.5px; }
  .footer-mini-form { margin-top: 20px; }
  .footer-seo-row { padding: 18px 0; }
  .footer-bottom { padding: 16px 0; }
  .footer-bottom p, .footer-bottom a { font-size: 12px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .fleet-counter-box { padding: 24px 16px; }
  .fleet-num { font-size: 44px; }
  .fleet-counter-box p { font-size: 12.5px; }
  .promo-strip { padding: 46px 0; }
}

@media (max-width: 575px) {
  .hero-ctas { flex-direction: column; }
  .btn-hero { width: 100%; justify-content: center; }
  .about-img-side { flex-direction: column; }
  .fleet-img-sm { display: none; }
  .container-xl, .container { padding-left: 18px; padding-right: 18px; }
  .serv-card-body { padding: 18px 16px 20px; }
  .why-item { flex-direction: column; gap: 12px; }
  .why-icon { width: 40px; height: 40px; }
  .network-cities { padding: 20px 16px; }
  .city-tags span { font-size: 12px; padding: 6px 12px; }
  .faq-btn { font-size: 14px; padding: 16px 18px !important; }
  .faq-body { font-size: 14px; padding: 0 18px 18px !important; }
  .promo-title { font-size: 24px; }
  .promo-sub { font-size: 14px; }
}

/* ─── AOS OVERRIDE ─── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* =====================================================
   TIRUPATI LOGISTICS – RENDERING & VISIBILITY FIXES
   Inner pages, forms, hero, counters, images, responsive
   ===================================================== */

/* ── FIX 1: FONT VARIABLE – Barlow loads, not Manrope ── */
:root {
  --ff-body: 'Barlow', 'Manrope', 'Inter', sans-serif;
}

/* ── FIX 2: PAGE HERO SECTION ──
   Was missing entirely. Inner pages need a hero banner. */
.page-hero-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.80) 60%, rgba(10,22,40,0.65) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 64px;
  width: 100%;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.80);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── FIX 3: BREADCRUMB ── */
.page-breadcrumb {
  background: var(--off-white);
  padding: 13px 0;
  border-bottom: 1px solid rgba(14,35,78,0.09);
}
.page-breadcrumb .breadcrumb {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
}
.page-breadcrumb .breadcrumb-item a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.page-breadcrumb .breadcrumb-item.active { color: var(--text-muted); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: var(--text-muted);
}

/* ── FIX 4: SECTION TITLE / LABEL ON LIGHT BG ──
   On white/off-white sections section-title was navy (correct),
   but .section-label needs consistent display */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Center variant loses the line properly */
.section-label.center {
  display: flex;
  justify-content: center;
}
.section-label.center::before { display: none; }

/* ── FIX 5: SECTION TEXT COLOUR ON DARK SECTIONS ──
   .bg-dark-section .section-text was missing on inner pages */
.bg-dark-section .section-label { color: var(--orange); }
.bg-dark-section .section-title { color: var(--white) !important; }
.bg-dark-section .section-text  { color: rgba(255,255,255,0.72) !important; }
.bg-dark-section h2, .bg-dark-section h3, .bg-dark-section h4,
.bg-dark-section h5 { color: var(--white); }

/* ── FIX 6: ABOUT PAGE IMAGE GRID ──
   Grid was collapsing because no explicit height on wrapper */
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 16px;
  position: relative;
  min-height: 430px;
}
.about-img-main {
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.about-img-side img {
  border-radius: var(--card-radius);
  height: 200px;
  width: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.about-badge-box {
  background: var(--orange);
  border-radius: var(--card-radius);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  min-height: 120px;
}

/* ── FIX 7: COUNTER BOXES (About & Fleet pages) ──
   Blank white boxes = no background set on light-section context */
.fleet-counter-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--card-radius);
  padding: 32px 22px;
  text-align: center;
  border-top: 3px solid var(--orange);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}
/* When counter boxes appear on white/light background (about page) */
.section-pad:not(.bg-dark-section):not(.fleet-section) .fleet-counter-box {
  background: var(--off-white);
  border: 1px solid rgba(14,35,78,0.10);
  border-top: 3px solid var(--orange);
}
.section-pad:not(.bg-dark-section):not(.fleet-section) .fleet-counter-box .fleet-num {
  color: var(--navy);
}
.section-pad:not(.bg-dark-section):not(.fleet-section) .fleet-counter-box .fleet-plus {
  color: var(--orange);
}
.section-pad:not(.bg-dark-section):not(.fleet-section) .fleet-counter-box p {
  color: var(--text-muted);
}

/* ── FIX 8: WHY ITEM CARDS ──
   On dark sections why-items lose visibility */
.bg-dark-section .why-item {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--orange);
  border-top: none;
  border-right: none;
  border-bottom: none;
}
.bg-dark-section .why-item:hover {
  background: rgba(255,255,255,0.09);
}
.bg-dark-section .why-item h5 { color: var(--white); }
.bg-dark-section .why-item p  { color: rgba(255,255,255,0.70); }

/* ── FIX 9: SERVICE CARD (inner pages related section) ──
   On white background the dark card text was invisible */
.section-pad:not(.bg-dark-section):not(.services-section) .serv-card {
  background: var(--white);
  border: 1px solid rgba(14,35,78,0.10);
  box-shadow: var(--shadow-sm);
}
.section-pad:not(.bg-dark-section):not(.services-section) .serv-card .serv-title {
  color: var(--navy);
}
.section-pad:not(.bg-dark-section):not(.services-section) .serv-card-body p {
  color: var(--text-body);
}
.section-pad:not(.bg-dark-section):not(.services-section) .serv-card .serv-icon {
  background: rgba(232,100,12,0.10);
  border: 1px solid rgba(232,100,12,0.20);
}

/* ── FIX 10: ABOUT-HL HIGHLIGHTS ──
   On dark sections the off-white bg makes text invisible */
.bg-dark-section .about-hl {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
}
.bg-dark-section .about-hl i.text-orange { color: var(--orange) !important; }

/* ── FIX 11: WHY MAIN IMG (inner page feature image) ── */
.why-main-img {
  border-radius: var(--card-radius);
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* ── FIX 12: PROCESS STEPS ──
   Missing class entirely from original CSS */
.process-step {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--card-radius);
  height: 100%;
  transition: var(--transition);
}
.process-step:hover {
  background: rgba(232,100,12,0.08);
  border-color: rgba(232,100,12,0.28);
  transform: translateY(-4px);
}
.process-num {
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 900;
  color: rgba(232,100,12,0.25);
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h5 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-family: var(--ff-body);
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.70;
}

/* ── FIX 13: INDUSTRY CARD (inner page list style) ──
   Was using only image-overlay card. Inner industries page 
   uses text-content card style that needs its own CSS */
.industry-card-text {
  background: var(--white);
  border: 1px solid rgba(14,35,78,0.09);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
}
.industry-card-text:hover {
  border-top-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.industry-card-text .industry-icon {
  width: 50px;
  height: 50px;
  background: rgba(232,100,12,0.10);
  border: 1px solid rgba(232,100,12,0.20);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.industry-card-text .industry-icon i {
  color: var(--orange);
  font-size: 22px;
}
.industry-card-text h3 {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.industry-card-text p {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.72;
  margin-bottom: 16px;
}
.industry-card-text a {
  color: var(--orange);
  font-weight: 700;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.industry-card-text a:hover { color: var(--navy); }

/* Also fix the original .industry-card used on homepage */
.industry-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  display: block;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.industry-card:hover img { transform: scale(1.08); }

/* ── FIX 14: FLEET CARD (infrastructure page) ── */
.fleet-card {
  background: var(--white);
  border: 1px solid rgba(14,35,78,0.09);
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.fleet-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(232,100,12,0.22);
}
.fleet-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.06); }
.fleet-card-body {
  padding: 22px 20px 24px;
}
.fleet-card-body h3 {
  font-family: var(--ff-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 8px;
}
.fleet-card-body p {
  font-family: var(--ff-body);
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.70;
  margin-bottom: 14px;
}
.fleet-specs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fleet-specs span {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.fleet-specs span i { color: var(--orange); font-size: 13px; }

/* ── FIX 15: FAQ SECTION ON INNER PAGES ──
   faq-section class exists on homepage but inner pages use
   bg-dark-section. Fix accordion on both contexts. */
.bg-dark-section .faq-item,
.faq-section .faq-item {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.bg-dark-section .faq-btn,
.faq-section .faq-btn {
  background: transparent !important;
  color: var(--white) !important;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  padding: 20px 22px !important;
  box-shadow: none !important;
  line-height: 1.5;
}
.bg-dark-section .faq-btn::after,
.faq-section .faq-btn::after { filter: invert(1) !important; }
.bg-dark-section .faq-btn:not(.collapsed) { color: var(--orange) !important; }
.bg-dark-section .accordion-body,
.faq-section .accordion-body {
  background: transparent !important;
  color: rgba(255,255,255,0.70) !important;
  font-family: var(--ff-body);
  font-size: 14.5px;
  line-height: 1.80;
  padding: 4px 22px 22px !important;
}
/* Inner page FAQ has inline faq-bg style – needs z-index layer */
section[style*="faq-bg"] {
  position: relative;
}
section[style*="faq-bg"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.88);
  z-index: 0;
}
section[style*="faq-bg"] .container-xl {
  position: relative;
  z-index: 1;
}

/* ── FIX 16: CTA / ENQUIRY FORM SECTION ──
   .cta-form-card on dark section was white-on-white */
.bg-dark-section .cta-form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 4px solid var(--orange);
  border-radius: var(--card-radius);
  padding: 36px 32px;
  box-shadow: none;
}
.bg-dark-section .cta-form-card h4 {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}
/* fc-dark inputs on inner page enquiry forms */
.fc-dark {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 12px 15px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  width: 100%;
  display: block;
}
.fc-dark::placeholder { color: rgba(255,255,255,0.42) !important; }
.fc-dark:focus {
  background: rgba(255,255,255,0.11) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(232,100,12,0.16) !important;
  outline: none;
  color: var(--white) !important;
}
.fc-dark option {
  background: var(--navy-mid);
  color: var(--white);
}
/* Textarea height fix – was going oversized */
.fc-dark[rows] { height: auto; resize: vertical; min-height: 90px; max-height: 200px; }

/* CTA contact items (left column of enquiry section) */
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-decoration: none;
  transition: var(--transition);
  color: var(--white) !important;
}
.cta-contact-item:hover {
  background: rgba(232,100,12,0.14);
  border-color: rgba(232,100,12,0.32);
}
.cta-contact-item i {
  font-size: 22px;
  flex-shrink: 0;
}

/* ── FIX 17: CONTACT PAGE FORM ──
   Used standard Bootstrap form-control which needs visible styling */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(14,35,78,0.10);
  border-radius: var(--card-radius);
  padding: 38px 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1px solid #d1d9e0;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,100,12,0.12);
  outline: none;
}
.contact-form-wrap label {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  display: block;
}
.contact-form-wrap textarea.form-control {
  resize: vertical;
  min-height: 110px;
  max-height: 220px;
}
/* Contact info boxes */
.contact-info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--off-white);
  border: 1px solid rgba(14,35,78,0.08);
  border-radius: var(--card-radius);
  padding: 20px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-box h5 {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info-box p {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.65;
}
.contact-tel {
  color: var(--orange) !important;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
}
.contact-tel:hover { color: var(--navy) !important; }

/* ── FIX 18: GALLERY PAGE ── */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gallery-btn {
  background: transparent;
  border: 1px solid rgba(14,35,78,0.18);
  color: var(--text-body);
  padding: 8px 22px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-btn:hover,
.gallery-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.gallery-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  display: block;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 28px; color: var(--white); }
.gallery-overlay span {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.gallery-item.hidden { display: none !important; }
/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--card-radius);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ── FIX 19: SECTION SPACING ON INNER PAGES ──
   Prevent sections from collapsing to zero height */
.section-pad {
  padding: var(--section-padding) 0;
  position: relative;
}
/* Ensure container-xl is always full width inside section */
.section-pad > .container-xl,
.section-pad > .container {
  position: relative;
  z-index: 1;
}

/* ── FIX 20: IMAGES – Object-fit and container sizing ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Service card images */
.serv-card-img {
  position: relative;
  height: 195px;
  overflow: hidden;
  flex-shrink: 0;
}
.serv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Why section main image */
.why-img-wrap { position: relative; }
.why-img-wrap img { display: block; }

/* ── FIX 21: BUTTON LINK – .btn-outline-nav on white bg ── */
.btn-outline-nav {
  background: transparent;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.btn-outline-nav:hover {
  background: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
}
/* On dark sections, outline-nav should be white border */
.bg-dark-section .btn-outline-nav {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.50);
}
.bg-dark-section .btn-outline-nav:hover {
  background: var(--white);
  color: var(--navy) !important;
  border-color: var(--white);
}

/* ── FIX 22: HEADER Z-INDEX ──
   Inner page hero uses absolute positioning; header must sit above */
.main-header { z-index: 1000; }
.page-hero-section { z-index: 1; }

/* ── FIX 23: FOOTER CONTACT ITEM on light backgrounds ──
   (Contact page uses these outside of dark section) */
.contact-info-box .footer-contact-item,
.contact-page .footer-contact-item {
  color: var(--text-body) !important;
}

/* ── FIX 24: AOS – content flashes invisible then visible ──
   Prevent AOS from keeping content invisible if JS is slow */
[data-aos] {
  pointer-events: none;
  opacity: 0;
  transform: translate(0, 30px);
  transition-property: opacity, transform;
}
[data-aos].aos-animate {
  pointer-events: auto;
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
/* Ensure AOS content is visible even without JS */
.no-js [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* ── FIX 25: RESPONSIVE – Inner page hero ── */
@media (max-width: 991px) {
  .page-hero-section { min-height: 340px; }
  .page-hero-content { padding-top: 110px; padding-bottom: 50px; }
  .page-hero-title { font-size: clamp(28px, 6vw, 46px); }
}
@media (max-width: 767px) {
  .page-hero-section { min-height: 280px; }
  .page-hero-content { padding-top: 90px; padding-bottom: 40px; }
  .page-hero-title { font-size: clamp(24px, 7vw, 36px); }
  .page-hero-sub { font-size: 14px; }
  .contact-form-wrap { padding: 24px 20px; }
  .bg-dark-section .cta-form-card { padding: 24px 20px; }
  .process-step { padding: 22px 16px; }
  .process-num { font-size: 38px; }
  .about-img-grid { grid-template-columns: 1fr; min-height: auto; }
  .about-img-main { min-height: 260px; height: 260px; }
  .about-img-side { flex-direction: row; }
  .about-img-side img { height: 140px; flex: 1; }
  .about-badge-box { min-height: 100px; }
  .why-badge { position: relative; left: auto; bottom: auto; margin-top: 20px; }
  .fleet-card-img { height: 170px; }
  .gallery-btn { padding: 7px 16px; font-size: 13px; }
}
@media (max-width: 575px) {
  .about-img-side { flex-direction: column; }
  .contact-form-wrap { padding: 20px 16px; }
  .cta-contact-item { padding: 12px 14px; gap: 10px; }
  .gallery-card { aspect-ratio: 3 / 2; }
  .fleet-counter-box { padding: 22px 14px; min-height: 110px; }
  .process-step h5 { font-size: 16px; }
  .industry-card-text { padding: 22px 18px; }
}

/* ── FIX 26: MEGA MENU – Header must be relative for absolute child ── */
.main-header .container-xl { position: static; }
.main-header nav.navbar { position: relative; }

/* ── FIX 27: MAP WRAPPER (Contact page) ── */
.map-wrap {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ── FIX 28: NETWORK CITIES TAG CLOUD ── */
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.city-tags span {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
  padding: 7px 15px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  transition: var(--transition);
}
.city-tags span:hover { background: var(--orange); color: var(--white); }

/* ── FIX 29: SECTION INSIDE DARK BG – z-index layering ──
   Prevent absolute positioned elements from overlapping content */
.bg-dark-section { position: relative; }
.bg-dark-section > * { position: relative; z-index: 1; }

/* ── FIX 30: FORM SELECT DROPDOWN ARROW on dark inputs ── */
select.fc-dark {
  -webkit-appearance: auto;
  appearance: auto;
  background-image: none;
}

/* ── FIX 31: FOOTER MINI FORM – textarea height ── */
.footer-mini-form textarea.fc-footer {
  resize: vertical;
  min-height: 68px;
  max-height: 140px;
}

/* ── FIX 32: TRUST BAR – ensure visibility ── */
.trust-bar {
  background: var(--orange);
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}


/* =====================================================
   TIRUPATI LOGISTICS – UI POLISH PASS
   Premium corporate refinement — NO redesign
   Spacing · Typography · Cards · Forms · Responsiveness
   ===================================================== */

/* ══════════════════════════════════════════════════════
   1. ROOT TOKENS — refined spacing + shadow + radius
   ══════════════════════════════════════════════════════ */
:root {
  --ff-body:          'Barlow', 'Inter', sans-serif;
  --section-padding:  100px;

  /* Refined shadows — softer, more premium */
  --shadow-sm:        0 1px 4px rgba(10,22,40,0.06), 0 4px 16px rgba(10,22,40,0.07);
  --shadow-md:        0 4px 16px rgba(10,22,40,0.09), 0 12px 40px rgba(10,22,40,0.12);
  --shadow-lg:        0 8px 32px rgba(10,22,40,0.12), 0 24px 64px rgba(10,22,40,0.18);
  --shadow-orange:    0 6px 24px rgba(232,100,12,0.28);

  /* Smoother transitions */
  --transition:       0.30s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow:  0.50s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Consistent card radius */
  --card-radius:      16px;
  --radius:           10px;
}

/* ══════════════════════════════════════════════════════
   2. BASE TYPOGRAPHY POLISH
   ══════════════════════════════════════════════════════ */
body {
  font-size: 15.5px;
  line-height: 1.78;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  letter-spacing: 0.015em;
}

p { line-height: 1.82; color: var(--text-body); }

/* Section label — tighter, crisper */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  gap: 12px;
}
.section-label::before {
  width: 28px;
  height: 2px;
}

/* Section title — slightly more breathing room below */
.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.13;
  letter-spacing: 0.018em;
  margin-bottom: 20px;
}

/* Section text — slightly larger, better leading */
.section-text {
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════
   3. SECTION SPACING — generous, balanced breathing room
   ══════════════════════════════════════════════════════ */
.section-pad { padding: var(--section-padding) 0; }

/* Visual rhythm between sections — subtle alternating bg */
.section-pad.bg-light-alt { background: var(--off-white); }

/* Section intro block — wider max on centered text */
.section-intro { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-intro .section-title { margin-bottom: 16px; }
.section-intro .section-text { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════
   4. TOPBAR POLISH
   ══════════════════════════════════════════════════════ */
.topbar {
  padding: 10px 0;
  background: #070f1e;          /* 1 shade deeper than --navy for premium feel */
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar a,
.topbar span {
  font-size: 12px;
  letter-spacing: 0.2px;
}

/* ══════════════════════════════════════════════════════
   5. HEADER / NAV POLISH
   ══════════════════════════════════════════════════════ */
.main-header {
  background: rgba(7,15,30,0.97);     /* slightly deeper = sharper look */
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.main-header.scrolled {
  background: rgba(7,15,30,0.99);
  box-shadow: 0 2px 24px rgba(0,0,0,0.36);
}
.navbar { padding: 16px 0; }

.logo-img { height: 48px; }
.logo-name { font-size: 20px; letter-spacing: 0.4px; }
.logo-tag  { font-size: 9.5px; letter-spacing: 0.6px; }

.navbar-nav .nav-link {
  font-size: 13.5px;
  padding: 8px 13px !important;
  letter-spacing: 0.2px;
}

/* Mega menu — refined padding */
.mega-inner { padding: 36px 0 32px; }
.mega-col   { padding: 0 28px; }
.mega-heading {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
  padding-bottom: 12px;
}
.mega-col a {
  font-size: 13px;
  padding: 9px 0;
}

/* ══════════════════════════════════════════════════════
   6. HERO SECTION POLISH
   ══════════════════════════════════════════════════════ */
.hero-badge {
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: 0.008em;
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.76);
}

.hero-stats { gap: 36px; }
.stat-num { font-size: 38px; }
.stat-label { font-size: 11px; letter-spacing: 1.4px; margin-top: 6px; }

/* Hero form card — refined */
.hero-form-card {
  border-top-width: 3px;
  border-radius: var(--card-radius);
  padding: 36px 32px;
}
.hf-header { margin-bottom: 24px; }
.hf-header h3 { font-size: 21px; letter-spacing: 0.02em; }

/* ══════════════════════════════════════════════════════
   7. TRUST BAR POLISH
   ══════════════════════════════════════════════════════ */
.trust-bar {
  padding: 13px 0;
  background: var(--orange);
  border-top: none;
  border-bottom: none;
}
.trust-item { font-size: 12.5px; letter-spacing: 0.4px; gap: 9px; }
.trust-item i { font-size: 15px; }
.trust-sep  { opacity: 0.5; font-size: 14px; }

/* ══════════════════════════════════════════════════════
   8. ABOUT SECTION POLISH
   ══════════════════════════════════════════════════════ */
.about-img-grid { gap: 14px; }
.about-img-main { border-radius: var(--card-radius); }
.about-img-side img { border-radius: var(--card-radius); }
.about-badge-box {
  border-radius: var(--card-radius);
  padding: 24px 18px;
}
.big-num { font-size: 50px; }
.big-num sup { font-size: 26px; }
.small-text { font-size: 12px; letter-spacing: 0.3px; }

.about-hl {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: 13px;
  letter-spacing: 0.1px;
  border: 1px solid rgba(14,35,78,0.07);
}

/* ══════════════════════════════════════════════════════
   9. SERVICE CARDS POLISH
   ══════════════════════════════════════════════════════ */
.serv-card {
  border-radius: var(--card-radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.serv-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.40);
  border-color: rgba(232,100,12,0.30);
}
.serv-card-img {
  height: 200px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  overflow: hidden;
}
.serv-card-img img { transition: transform var(--transition-slow); }
.serv-card:hover .serv-card-img img { transform: scale(1.05); }

.serv-card-body { padding: 26px 24px 28px; }
.serv-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.serv-title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.serv-card-body p {
  font-size: 13.5px;
  line-height: 1.74;
  margin-bottom: 20px;
}
.serv-link {
  font-size: 13px;
  letter-spacing: 0.3px;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: gap var(--transition), border-color var(--transition);
}
.serv-card:hover .serv-link {
  gap: 10px;
  border-bottom-color: rgba(232,100,12,0.40);
}

/* Service cards on light background (inner pages) */
.section-pad:not(.bg-dark-section):not(.services-section) .serv-card {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14,35,78,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.section-pad:not(.bg-dark-section):not(.services-section) .serv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,100,12,0.20);
}

/* ══════════════════════════════════════════════════════
   10. INDUSTRY CARDS POLISH
   ══════════════════════════════════════════════════════ */
.industry-card {
  border-radius: var(--card-radius);
  height: 210px;
}
.ind-overlay h4  { font-size: 17.5px; letter-spacing: 0.02em; margin-bottom: 5px; }
.ind-overlay p   { font-size: 12px; line-height: 1.5; }
.ind-icon { border-radius: 9px; }

/* Inner page industry card (text style) */
.industry-card-text {
  border-radius: var(--card-radius);
  padding: 30px 26px;
  border-top: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
  border: 1px solid rgba(14,35,78,0.08);
  box-shadow: var(--shadow-sm);
}
.industry-card-text:hover {
  border-top-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.industry-card-text h3 { font-size: 20px; margin-bottom: 10px; }
.industry-card-text p  { font-size: 13.5px; line-height: 1.75; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════
   11. FLEET SECTION POLISH
   ══════════════════════════════════════════════════════ */
.fleet-counter-box {
  border-radius: var(--card-radius);
  padding: 36px 24px;
  transition: transform var(--transition), background var(--transition);
  border-top: 3px solid var(--orange);
  border-left: none; border-right: none; border-bottom: none;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--orange);
}
.fleet-counter-box:hover { transform: translateY(-5px); }
.fleet-num { font-size: 52px; line-height: 1; letter-spacing: -1px; }
.fleet-plus { font-size: 30px; }
.fleet-counter-box p {
  font-size: 12.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 10px;
}

.fleet-item {
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.1px;
}
.fleet-item i { font-size: 16px; }

/* Fleet cards (infrastructure page) */
.fleet-card { border-radius: var(--card-radius); }
.fleet-card-img { height: 210px; border-radius: var(--card-radius) var(--card-radius) 0 0; }
.fleet-card-body { padding: 24px 22px 26px; }
.fleet-card-body h3 { font-size: 19px; margin: 10px 0 8px; }
.fleet-card-body p { font-size: 13.5px; }

/* ══════════════════════════════════════════════════════
   12. WHY SECTION POLISH
   ══════════════════════════════════════════════════════ */
.why-item {
  padding: 24px 22px;
  border-radius: var(--card-radius);
  border-left: 3px solid var(--orange);
  background: var(--off-white);
  border-top: 1px solid rgba(14,35,78,0.06);
  border-right: 1px solid rgba(14,35,78,0.06);
  border-bottom: 1px solid rgba(14,35,78,0.06);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.why-icon { width: 46px; height: 46px; border-radius: 10px; }
.why-icon i { font-size: 19px; }
.why-item h5 { font-size: 17px; letter-spacing: 0.02em; margin-bottom: 7px; }
.why-item p { font-size: 13.5px; line-height: 1.70; }

.why-badge {
  border-radius: var(--card-radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--orange);
  bottom: -24px;
  left: -24px;
}
.why-badge strong { font-size: 17px; letter-spacing: 0.02em; }
.why-badge span   { font-size: 12px; }

/* Dark bg why items */
.bg-dark-section .why-item {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--orange);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bg-dark-section .why-item:hover { background: rgba(255,255,255,0.08); }

/* ══════════════════════════════════════════════════════
   13. NETWORK SECTION POLISH
   ══════════════════════════════════════════════════════ */
.network-office-card {
  border-radius: var(--card-radius);
  padding: 34px 30px;
  transition: transform var(--transition), background var(--transition);
}
.network-office-card:hover { transform: translateY(-4px); }
.network-office-card h4  { font-size: 22px; margin-bottom: 14px; }
.network-office-card p   { font-size: 14px; line-height: 1.72; }
.office-tag { letter-spacing: 2.2px; font-size: 10.5px; }

.network-info-card {
  border-radius: var(--card-radius);
  padding: 34px 30px;
}
.route-list span {
  font-size: 13px;
  padding: 9px 0;
  letter-spacing: 0.1px;
}

.network-cities {
  border-radius: var(--card-radius);
  padding: 28px;
}
.network-cities h5 { font-size: 12px; letter-spacing: 1.2px; }
.city-tags span { font-size: 12.5px; padding: 7px 16px; }

/* ══════════════════════════════════════════════════════
   14. CTA BANNER POLISH
   ══════════════════════════════════════════════════════ */
.cta-banner { padding: 100px 0; }
.cta-title { font-size: clamp(28px, 3.8vw, 44px); line-height: 1.12; letter-spacing: 0.02em; margin-bottom: 20px; }
.cta-text  { font-size: 15.5px; line-height: 1.80; }
.cta-contact-item i { font-size: 20px; }
.cta-contact-item small { font-size: 10.5px; letter-spacing: 1px; }
.cta-contact-item strong { font-size: 17px; }
.cta-form-card {
  border-radius: var(--card-radius);
  padding: 40px 36px;
}
.cta-form-card h4 { font-size: 22px; letter-spacing: 0.02em; margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════
   15. FORM INPUTS POLISH — all contexts
   ══════════════════════════════════════════════════════ */

/* Dark form inputs (hero, CTA enquiry section) */
.fc-dark {
  padding: 13px 16px;
  font-size: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  line-height: 1.5;
}
.fc-dark::placeholder { font-size: 13.5px; }
.fc-dark:focus {
  background: rgba(255,255,255,0.11) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(232,100,12,0.15) !important;
}
textarea.fc-dark {
  min-height: 96px;
  max-height: 200px;
  resize: vertical;
  line-height: 1.65;
}

/* Light form inputs */
.fc-light {
  padding: 13px 16px;
  font-size: 14px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid rgba(14,35,78,0.12);
  transition: border-color var(--transition), box-shadow var(--transition);
  line-height: 1.5;
}
.fc-light:focus {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,100,12,0.10);
  outline: none;
}
textarea.fc-light { min-height: 96px; max-height: 200px; resize: vertical; }

/* Footer mini form */
.fc-footer {
  padding: 11px 14px;
  font-size: 13px;
  border-radius: var(--radius);
  line-height: 1.5;
}
textarea.fc-footer { min-height: 70px; max-height: 130px; resize: vertical; }

/* Contact page form inputs */
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  padding: 13px 15px;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1.5px solid #e2e8f0;
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,100,12,0.10);
  outline: none;
}
.contact-form-wrap textarea.form-control {
  min-height: 120px;
  max-height: 240px;
  resize: vertical;
  line-height: 1.70;
}
.contact-form-wrap label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

/* Submit button */
.btn-submit-hero {
  font-size: 15px;
  padding: 15px 20px;
  letter-spacing: 0.4px;
  border-radius: var(--radius);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   16. TESTIMONIALS POLISH
   ══════════════════════════════════════════════════════ */
.testimonials-section { background: var(--off-white); padding: var(--section-padding) 0; }
.testi-card {
  border-radius: var(--card-radius);
  padding: 38px 32px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14,35,78,0.07);
  border-top: 3px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-text { font-size: 14.5px; line-height: 1.82; margin-bottom: 28px; }
.testi-avatar { width: 48px; height: 48px; font-size: 17px; }
.testi-meta strong { font-size: 16px; letter-spacing: 0.02em; }
.testi-meta span   { font-size: 12px; letter-spacing: 0.2px; }
.testi-stars i { font-size: 13.5px; }

/* ══════════════════════════════════════════════════════
   17. FAQ SECTION POLISH
   ══════════════════════════════════════════════════════ */
.faq-item {
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-btn {
  font-size: 15px !important;
  padding: 20px 24px !important;
  letter-spacing: 0.1px;
  line-height: 1.55;
}
.faq-body {
  font-size: 14px !important;
  line-height: 1.82 !important;
  padding: 0 24px 22px !important;
}

/* ══════════════════════════════════════════════════════
   18. PROMO STRIP POLISH
   ══════════════════════════════════════════════════════ */
.promo-strip { padding: 64px 0; }
.promo-title { font-size: clamp(24px, 3.2vw, 38px); letter-spacing: 0.02em; }
.promo-sub   { font-size: 15px; }

/* ══════════════════════════════════════════════════════
   19. FOOTER POLISH
   ══════════════════════════════════════════════════════ */
.main-footer { background: #07101f; }   /* 1 shade richer than --navy */
.footer-top { padding: 88px 0 64px; }

.footer-logo img { height: auto; max-width: 170px; }
.footer-about-text {
  font-size: 13.5px;
  line-height: 1.82;
  color: rgba(255,255,255,0.56);
  margin-top: 16px;
}
.footer-social { margin-top: 22px; gap: 9px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition), background var(--transition);
}
.footer-social a:hover { background: var(--orange); transform: translateY(-2px); border-color: var(--orange); }

.footer-hours {
  font-size: 12.5px;
  line-height: 1.78;
  color: rgba(255,255,255,0.48);
  margin-top: 22px;
}
.footer-hours strong { color: rgba(255,255,255,0.76); }

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.54);
  line-height: 1.55;
  letter-spacing: 0.1px;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 5px; }

.footer-contact-list { gap: 18px; }
.footer-contact-item {
  font-size: 13px;
  line-height: 1.68;
  color: rgba(255,255,255,0.58);
  gap: 14px;
}
.footer-contact-item strong {
  font-size: 11.5px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3px;
}
.footer-contact-item a { color: rgba(255,255,255,0.64); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-item i { font-size: 16px; margin-top: 2px; flex-shrink: 0; }

.footer-mini-form { margin-top: 30px; }
.footer-mini-form h6 {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 15px;
}

.footer-seo-row {
  background: rgba(0,0,0,0.18);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-seo-heading { letter-spacing: 2px; font-size: 10.5px; }
.footer-seo-links a {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), border-color var(--transition);
}
.footer-seo-links a:hover { color: var(--orange); border-color: rgba(232,100,12,0.32); }

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.26);
}
.footer-bottom p,
.footer-bottom a { font-size: 12.5px; letter-spacing: 0.1px; }

/* ══════════════════════════════════════════════════════
   20. PAGE HERO POLISH (inner pages)
   ══════════════════════════════════════════════════════ */
.page-hero-section { min-height: 440px; }
.page-hero-content { padding-top: 140px; padding-bottom: 68px; }
.page-hero-title {
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: 1.07;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.page-hero-sub {
  font-size: clamp(14px, 1.5vw, 16.5px);
  line-height: 1.78;
  max-width: 620px;
  color: rgba(255,255,255,0.78);
}

.page-breadcrumb { padding: 12px 0; }
.page-breadcrumb .breadcrumb { font-size: 12.5px; }

/* ══════════════════════════════════════════════════════
   21. PROCESS STEPS POLISH
   ══════════════════════════════════════════════════════ */
.process-step {
  padding: 32px 22px;
  border-radius: var(--card-radius);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.process-step:hover { transform: translateY(-5px); }
.process-num { font-size: 48px; letter-spacing: -1px; margin-bottom: 12px; }
.process-step h5 { font-size: 18px; letter-spacing: 0.02em; margin-bottom: 10px; }
.process-step p  { font-size: 13.5px; line-height: 1.72; }

/* ══════════════════════════════════════════════════════
   22. ENQUIRY FORM SECTION POLISH
   ══════════════════════════════════════════════════════ */
.bg-dark-section .cta-form-card {
  padding: 38px 34px;
  border-radius: var(--card-radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 3px solid var(--orange);
}
.bg-dark-section .cta-form-card h4 { font-size: 21px; letter-spacing: 0.02em; margin-bottom: 26px; }

/* CTA contact items on dark bg */
.cta-contact-item {
  border-radius: var(--radius);
  padding: 14px 18px;
  gap: 14px;
  transition: background var(--transition), border-color var(--transition);
}
.cta-contact-item:hover {
  background: rgba(232,100,12,0.12);
  border-color: rgba(232,100,12,0.28);
}

/* ══════════════════════════════════════════════════════
   23. GALLERY POLISH
   ══════════════════════════════════════════════════════ */
.gallery-card { border-radius: var(--card-radius); }
.gallery-btn {
  padding: 8px 22px;
  font-size: 13px;
  border-radius: 50px;
  letter-spacing: 0.2px;
  border: 1.5px solid rgba(14,35,78,0.16);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

/* ══════════════════════════════════════════════════════
   24. CONTACT PAGE POLISH
   ══════════════════════════════════════════════════════ */
.contact-form-wrap {
  border-radius: var(--card-radius);
  padding: 42px 38px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(14,35,78,0.08);
}
.contact-form-wrap h3 { font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 6px; }

.contact-info-box {
  border-radius: var(--card-radius);
  padding: 20px 22px;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid rgba(14,35,78,0.07);
}
.contact-info-box:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-info-icon { border-radius: 10px; width: 44px; height: 44px; font-size: 18px; }
.contact-info-box h5 { font-size: 15.5px; margin-bottom: 4px; }
.contact-info-box p  { font-size: 13.5px; line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   25. SECTION DIVIDERS — subtle visual separation
   ══════════════════════════════════════════════════════ */
/* White → dark transition helper */
.section-divider-down {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(232,100,12,0.28) 30%, var(--orange) 50%, rgba(232,100,12,0.28) 70%, transparent);
  border: none;
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   26. RESPONSIVE POLISH
   ══════════════════════════════════════════════════════ */
@media (max-width: 1399px) {
  :root { --section-padding: 92px; }
}
@media (max-width: 1199px) {
  :root { --section-padding: 80px; }
  .hero-title { font-size: clamp(40px, 5.5vw, 68px); }
  .cta-form-card { padding: 32px 28px; }
  .footer-top { padding: 72px 0 56px; }
}
@media (max-width: 991px) {
  :root { --section-padding: 68px; }
  .page-hero-section { min-height: 360px; }
  .page-hero-content { padding-top: 120px; padding-bottom: 56px; }
  .page-hero-title { font-size: clamp(28px, 6.5vw, 46px); }
  .hero-container { padding-top: 80px; padding-bottom: 72px; }
  .hero-sub { font-size: 15.5px; }
  .cta-banner { padding: 80px 0; }
  .footer-top { padding: 64px 0 48px; }
  .testi-card { padding: 30px 26px 26px; }
  .contact-form-wrap { padding: 32px 28px; }
}
@media (max-width: 767px) {
  :root { --section-padding: 56px; }
  .page-hero-section { min-height: 300px; }
  .page-hero-content { padding-top: 100px; padding-bottom: 44px; }
  .page-hero-title { font-size: clamp(24px, 7vw, 36px); }
  .page-hero-sub { font-size: 14px; }
  .hero-title { font-size: clamp(34px, 8vw, 48px); line-height: 1.08; }
  .hero-sub { font-size: 15px; }
  .section-title { font-size: clamp(26px, 6vw, 38px); }
  .cta-banner { padding: 60px 0; }
  .cta-form-card, .bg-dark-section .cta-form-card { padding: 26px 22px; }
  .contact-form-wrap { padding: 26px 20px; }
  .serv-card-body { padding: 22px 20px 24px; }
  .why-item { padding: 20px 18px; gap: 14px; }
  .fleet-counter-box { padding: 28px 18px; }
  .fleet-num { font-size: 44px; }
  .testi-card { padding: 26px 22px 22px; }
  .footer-top { padding: 52px 0 40px; }
  .footer-heading { font-size: 15px; }
  .promo-strip { padding: 50px 0; }
  .process-step { padding: 26px 18px; }
  .process-num { font-size: 40px; }
  .mega-inner { gap: 0; }
}
@media (max-width: 575px) {
  :root { --section-padding: 48px; }
  .page-hero-content { padding-top: 90px; padding-bottom: 36px; }
  .hero-form-card { padding: 26px 22px; }
  .hf-header h3 { font-size: 18px; }
  .cta-form-card, .bg-dark-section .cta-form-card { padding: 22px 18px; }
  .contact-form-wrap { padding: 22px 16px; }
  .fleet-counter-box { padding: 24px 14px; min-height: 110px; }
  .fleet-num { font-size: 38px; }
  .serv-card-body { padding: 18px 16px 20px; }
  .serv-title { font-size: 18px; }
  .why-item { flex-direction: column; gap: 12px; }
  .industry-card { height: 185px; }
  .industry-card-text { padding: 22px 18px; }
  .footer-top { padding: 44px 0 36px; }
  .footer-bottom p, .footer-bottom a { font-size: 12px; }
  .testi-card { padding: 24px 18px 20px; }
  .faq-btn { font-size: 14px !important; padding: 18px 20px !important; }
  .process-step { padding: 22px 16px; }
  .process-num { font-size: 36px; }
}

/* ══════════════════════════════════════════════════════
   27. ANIMATION POLISH
   ══════════════════════════════════════════════════════ */

/* Smooth AOS defaults — no jitter */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
[data-aos="fade-up"]    { transform: translateY(24px); }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"]  { transform: translateX(24px); }
[data-aos="zoom-in"]    { transform: scale(0.96); }
[data-aos].aos-animate  {
  opacity: 1 !important;
  transform: translate(0,0) scale(1) !important;
}

/* Hover transitions — all interactive elements */
a, button, .btn-orange, .btn-orange-outline,
.serv-card, .why-item, .testi-card,
.fleet-counter-box, .industry-card,
.industry-card-text, .fleet-card,
.process-step, .network-office-card,
.contact-info-box, .gallery-btn, .gallery-card {
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition),
              color var(--transition), opacity var(--transition);
}

/* Remove transition on images to prevent layout shift */
img { transition: none; }
.serv-card-img img,
.fleet-card-img img,
.industry-card img,
.gallery-card img { transition: transform var(--transition-slow); }

/* WhatsApp float — smoother bounce */
@keyframes waBounce {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-6px); }
}
.whatsapp-float {
  animation: waBounce 3.2s ease-in-out infinite;
  box-shadow: 0 4px 18px rgba(37,211,102,0.36);
}

/* ══════════════════════════════════════════════════════
   28. FINAL UTILITY TOUCH-UPS
   ══════════════════════════════════════════════════════ */

/* Prevent orphan single words on headings */
.section-title,
.page-hero-title,
.hero-title { text-wrap: balance; }

/* Paragraph max-width for readability */
.section-text,
.testi-text { max-width: 64ch; }
.testi-text { max-width: 100%; }

/* Container breathing on small screens */
@media (max-width: 575px) {
  .container-xl,
  .container { padding-left: 20px; padding-right: 20px; }
}

/* Row gaps */
.row.g-4 { --bs-gutter-y: 1.5rem; }
.row.g-5 { --bs-gutter-y: 2rem; }

/* Orange text always orange */
.text-orange { color: var(--orange) !important; }

/* fw-600 utility */
.fw-600 { font-weight: 600 !important; }

/* Subtle focus outline for accessibility */
*:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}


/* =====================================================
   TIRUPATI LOGISTICS – LIGHT SECTION THEME FIX
   Enquiry forms, industry cards, inner page polish
   ===================================================== */

/* ── LIGHT SECTION BACKGROUND ── */
.bg-light-section  { background: var(--off-white); }
.bg-white-section  { background: var(--white); }

/* ── ENQUIRY SECTION — now on light/white background ── */
.bg-enquiry-light {
  background: #f4f7fb;        /* very subtle cool white, not stark */
  border-top: 1px solid rgba(14,35,78,0.08);
  border-bottom: 1px solid rgba(14,35,78,0.08);
}

/* Section label & title on light enquiry section */
.bg-enquiry-light .section-label { color: var(--orange); }
.bg-enquiry-light .section-title { color: var(--navy); }
.bg-enquiry-light .section-text  { color: var(--text-body); }
.bg-enquiry-light h2,
.bg-enquiry-light h3,
.bg-enquiry-light h4 { color: var(--navy); }
.bg-enquiry-light p  { color: var(--text-body); }

/* Contact items on light bg */
.bg-enquiry-light .cta-contact-item {
  background: var(--white);
  border: 1px solid rgba(14,35,78,0.10);
  color: var(--navy) !important;
  box-shadow: var(--shadow-sm);
}
.bg-enquiry-light .cta-contact-item:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.bg-enquiry-light .cta-contact-item small {
  color: var(--text-muted) !important;
  opacity: 1 !important;
}
.bg-enquiry-light .cta-contact-item strong { color: var(--navy) !important; }

/* Form card on light bg — white card with shadow */
.bg-enquiry-light .cta-form-card {
  background: var(--white) !important;
  border: 1px solid rgba(14,35,78,0.09) !important;
  border-top: 3px solid var(--orange) !important;
  border-radius: var(--card-radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md) !important;
}
.bg-enquiry-light .cta-form-card h4 {
  color: var(--navy) !important;
  font-size: 22px;
  margin-bottom: 26px;
}

/* Form inputs on light bg — use fc-light style */
.bg-enquiry-light .fc-dark {
  background: var(--off-white) !important;
  border: 1.5px solid rgba(14,35,78,0.13) !important;
  color: var(--text-dark) !important;
}
.bg-enquiry-light .fc-dark::placeholder {
  color: var(--text-muted) !important;
}
.bg-enquiry-light .fc-dark:focus {
  background: var(--white) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(232,100,12,0.10) !important;
  color: var(--text-dark) !important;
}
.bg-enquiry-light .fc-dark option {
  background: var(--white);
  color: var(--text-dark);
}
.bg-enquiry-light select.fc-dark { color: var(--text-dark) !important; }
.bg-enquiry-light textarea.fc-dark {
  color: var(--text-dark) !important;
  min-height: 96px;
  max-height: 180px;
  resize: vertical;
}

/* ── INDUSTRY CARD — inner page text card fix ──
   The HTML uses .industry-card but the inner page content
   is text-based, not image-overlay. Override to text style. */
.industry-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
}

/* Text-content industry cards (inner page — has h3, p, a inside) */
.industry-card:has(h3) {
  background: var(--white);
  border: 1px solid rgba(14,35,78,0.09);
  border-top: 3px solid transparent;
  height: auto;
  padding: 28px 24px;
  cursor: default;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
}
.industry-card:has(h3):hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--orange);
}
.industry-card:has(h3) .industry-icon {
  width: 50px;
  height: 50px;
  background: rgba(232,100,12,0.09);
  border: 1px solid rgba(232,100,12,0.18);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: static;          /* override absolute */
}
.industry-card:has(h3) .industry-icon i {
  color: var(--orange);
  font-size: 22px;
}
.industry-card:has(h3) h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.industry-card:has(h3) p {
  font-family: var(--ff-body);
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.74;
  margin-bottom: 16px;
}
.industry-card:has(h3) a {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}
.industry-card:has(h3) a:hover { color: var(--navy); }
/* Remove image-card styles when there's no img */
.industry-card:has(h3) img { display: none; }
.industry-card:has(h3) .ind-overlay { display: none; }
.industry-card:has(h3) .ind-icon   { display: none; }

/* ── ABOUT PAGE — Director section stays dark, looks fine ── */

/* ── INFRASTRUCTURE FLEET — Offices section light bg ── */
.bg-light-section {
  background: #f4f7fb;
}
.bg-light-section .section-label { color: var(--orange); }
.bg-light-section .section-title { color: var(--navy); }
.bg-light-section .section-text  { color: var(--text-body); }
.bg-light-section h2,
.bg-light-section h4,
.bg-light-section h5 { color: var(--navy); }
.bg-light-section p  { color: var(--text-body); }
/* Contact items on light section */
.bg-light-section .footer-contact-item {
  color: var(--text-body);
}
.bg-light-section .footer-contact-item strong { color: var(--navy); }
.bg-light-section .footer-contact-item a { color: var(--orange); }
/* About-hl on light section */
.bg-light-section .about-hl {
  background: var(--white);
  border: 1px solid rgba(14,35,78,0.08);
  color: var(--text-dark);
}

/* ── PROCESS STEPS ON DARK — confirmed good, minor polish ── */
.bg-dark-section .process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.bg-dark-section .process-step:hover {
  background: rgba(232,100,12,0.07);
  border-color: rgba(232,100,12,0.25);
}

/* ── FAQ ON DARK — confirmed good ── */
/* Already styled correctly above */

/* ── STATS / COUNTER SECTION ON DARK — great look ── */
/* Already styled in fleet-counter-box above */

/* ── CONTACT PAGE — FAQ section on dark bg ── */
.contact-page .bg-dark-section,
#cFAQ { /* contact FAQ accordion */ }

/* ── SECTION VISUAL RHYTHM ──
   Alternate white / off-white for content sections
   to create visual breathing without color changes */
.section-pad:not(.bg-dark-section):not(.bg-enquiry-light):not(.bg-light-section):not(.fleet-section):not(.services-section):not(.industries-section):not(.page-breadcrumb):nth-of-type(odd) {
  background: var(--white);
}
.section-pad:not(.bg-dark-section):not(.bg-enquiry-light):not(.bg-light-section):not(.fleet-section):not(.services-section):not(.industries-section):not(.page-breadcrumb):nth-of-type(even) {
  background: var(--off-white);
}

/* ── RESPONSIVE — light section adjustments ── */
@media (max-width: 767px) {
  .bg-enquiry-light .cta-form-card { padding: 28px 22px; }
}
@media (max-width: 575px) {
  .bg-enquiry-light .cta-form-card { padding: 22px 18px; }
  .industry-card:has(h3) { padding: 22px 18px; }
}
.logo-img{
    width: 350px;
    height: auto;
    object-fit: contain;
}
