/* ===== GALORE LOGISTICS — ENHANCED STYLESHEET ===== */

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

:root {
  --navy:   #1B3A5C;
  --navy-dark: #142d47;
  --orange: #F5A623;
  --orange-dark: #d98e10;
  --white:  #ffffff;
  --light:  #F4F7FA;
  --text:   #333333;
  --text-light: #666666;
  --radius: 8px;
  --shadow: 0 4px 18px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; margin: 0; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

/* ============================
   ANIMATIONS KEYFRAMES
============================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================
   ANIMATION UTILITIES
============================ */
.animate-on-load { animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.fade-in-on-scroll { opacity: 0; animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }

.stagger-item { 
  opacity: 0; 
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; 
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================
   NAVBAR
============================ */
.logo-icon { width: 8.5rem; animation: slideInLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  background: linear-gradient(180deg, rgba(20, 45, 71, 0.95) 0%, rgba(20, 45, 71, 0.90) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.nav-container {
  max-width: 1200px;
  margin: 10px auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  height: 80px;
  gap: 1.5rem;
  background: #142d47;
  border-radius: 160px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  position: fixed;
  left: 10px;
  right: 10px;
  transition: var(--transition);
}

.nav-container:hover { box-shadow: 0 8px 40px rgba(245, 166, 35, 0.15); }

.nav-links { list-style: none; display: flex; gap: 0.2rem; margin-left: auto; }
.nav-links li { position: relative; animation: fadeInDown 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards; }
.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }

.nav-links a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.has-dropdown { position: relative; }
.has-dropdown .arrow { font-size: 0.65rem; display: inline-block; transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.has-dropdown:hover .arrow { transform: translateY(-2px); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  list-style: none;
  z-index: 200;
  padding: 0.4rem 0;
  border-top: 3px solid var(--orange);
  animation: fadeInDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: top;
}

.dropdown li { animation: slideInRight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards; }
.dropdown li:nth-child(1) { animation-delay: 0.05s; }
.dropdown li:nth-child(2) { animation-delay: 0.1s; }
.dropdown li:nth-child(3) { animation-delay: 0.15s; }
.dropdown li:nth-child(4) { animation-delay: 0.2s; }
.dropdown li:nth-child(5) { animation-delay: 0.25s; }
.dropdown li:nth-child(6) { animation-delay: 0.3s; }

.dropdown li a {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0;
  transition: var(--transition-fast);
  display: block;
  position: relative;
}

.dropdown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dropdown li a:hover { background: var(--light); color: var(--orange); padding-left: 1.5rem; }
.dropdown li a:hover::before { transform: scaleY(1); }
.has-dropdown:hover .dropdown { display: block; }

.btn-quote {
  background: var(--orange);
  color: #142d47;
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-left: 0.5rem;
  animation: slideInRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s backwards;
  border: 2px solid transparent;
}

.btn-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange-dark);
  z-index: -1;
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-quote:hover { color: #fff; border-color: rgba(255,255,255,0.3); box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3); }
.btn-quote:hover::before { left: 0; }
.btn-quote:active { transform: scale(0.98); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.hamburger:hover { transform: scale(1.1); }

/* ============================
   HERO
============================ */
.hero {
  min-height: 820px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.page-hero {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 13rem 1.5rem 2.5rem;
  width: auto;
}

.hero-content { color: var(--white); text-align: left; position: relative; z-index: 1; }
/* .page-hero .hero-content { } */

.hero-title {
  font-size: 6rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 600px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both; }

.btn-primary, .btn-outline, .btn-cta, .btn-quote {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 1.8rem;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  display: inline-block;
  border: 2px solid var(--orange);
}

.btn-primary::before,
.btn-outline::before,
.btn-cta::before,
.btn-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 50px;
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary::before,
.btn-quote::before {
  background: var(--orange-dark);
}

.btn-outline::before {
  background: #fff;
}

.btn-cta::before {
  background: var(--navy-dark);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(245, 166, 35, 0.3); color: #fff; }
.btn-primary:hover::before,
.btn-outline:hover::before,
.btn-quote:hover::before,
.btn-cta:hover::before { left: 0; }
.btn-primary:active,
.btn-outline:active,
.btn-cta:active { transform: translateY(0); }

.btn-animated { animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s backwards; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 1.8rem;
  font-weight: 500;
  font-size: 0.85rem;
}

.btn-outline:hover { color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2); }

.breadcrumb { margin-top: 1.2rem; font-size: 0.85rem; color: rgba(255,255,255,0.8); animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both; }
.breadcrumb a { color: var(--orange); transition: color 0.2s ease; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.3rem; }
.crumb-current { color: var(--orange); }

/* ============================
   SECTIONS
============================ */
.section-white { padding: 4rem 1.5rem; background: #fff; position: relative; }

.section-light { 
  padding: 4rem 1.5rem; 
  /* background: var(--light);  */
  position: relative; }



.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  /* border: 2px solid red; */
}

.hero-container {
  /* border: 2px solid green; */
  width: 1200px;
  /* text-align: center; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-container p {
  font-size: 1.125rem;
}

.hero-container a {
  display: inline;
  height: 60px;
}

.section-title {
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 48px;
  transition: var(--transition);
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  transition: var(--transition);
}

.left-align {
  text-align: left;
  margin: 0;
}

/* ============================
   CARDS GRID
============================ */
.cards-grid { display: grid; gap: 1.5rem; }
.three-col { grid-template-columns: repeat(3, 1fr); }

.service-card.img-card {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  color: #fff;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card.img-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.8) 0%, rgba(245, 166, 35, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.service-card.img-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.service-card.img-card:hover::before { opacity: 0.3; }

.service-card.img-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; position: relative; z-index: 1; transition: transform 0.3s ease; }
.service-card.img-card:hover h3 { transform: translateX(4px); }

.service-card.img-card p { font-size: 0.82rem; opacity: 0.9; position: relative; z-index: 1; transition: opacity 0.3s ease; }
.service-card.img-card:hover p { opacity: 1; }

/* ============================
   STATS BAND
============================ */
.stats-band { 
  display: flex; 
  /* min-height: 540px;  */
  /* overflow: hidden;  */
}

/* .stats-image { flex: 1; overflow: hidden; max-width: 50%; position: relative; } */

/* .stats-image::after { */
  /* content: ''; */
  /* position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(20, 45, 71, 0.2) 100%);
  pointer-events: none; */
/* } */

.stats-image img { 
  width: 100%; 
  height: 700px; 
  object-fit: cover; 
  /* transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);  */
}

.stats-band:hover .stats-image img { transform: scale(1.05); }

.stats-grid {
  display: flex;
  flex: 1;
  background: linear-gradient(135deg, var(--orange) 0%, #e8941e 100%);
  /* min-height: 60%; */
  /* background: #d98e10; */
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden; */
  height: 700px;
  /* padding: 40px; */
  /* border: 2px solid red; */
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 150px;
  /* align-items: center; */
}

.stats-grid::before {
  /* content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px; */
  /* height: 400px; */
  /* background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); */
  /* border-radius: 50%; */
  animation: float 8s ease-in-out infinite;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* border: 2px solid black; */
  /* border-radius: 24px; */
  margin: 20px;
  padding: 2rem;
  /* background: #1B3A5C; */
  /* position: relative; */
  /* z-index: 1; */
  /* transition: var(--transition); */
}

/* .stat-box:hover { transform: scale(1.05); } */

.stat-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease;
}

.stat-box:hover .stat-num { transform: scale(1.1); }

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1.2px;
  margin-top: 0.6rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.stat-box:hover .stat-label { color: #fff; }

/* ============================
   PREMIUM SERVICES - HORIZONTAL SCROLL
============================ */
.premium-layout { display: flex; gap: 3rem; align-items: stretch; }

.premium-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
}

.premium-text p:hover { color: var(--text); }

.premium-imgs-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  /* border-radius: var(--radius); */
}

.premium-imgs {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0;
  scroll-behavior: smooth;
  height: 300px;
}

/* Hide scrollbar but keep functionality */
.premium-imgs::-webkit-scrollbar { 
  height: 6px; 
}

.premium-imgs::-webkit-scrollbar-track { 
  background: rgba(0,0,0,0.05); 
  /* border-radius: 10px;  */
}

.premium-imgs::-webkit-scrollbar-thumb { 
  background: var(--orange); 
  /* border-radius: 10px;  */
}

.premium-imgs::-webkit-scrollbar-thumb:hover { 
  background: var(--orange-dark); 
}


.pimg-card {
  flex: 0 0 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.pimg-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pimg-card span {
  display: block;
  padding: 1rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pimg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pimg-card:hover img { transform: scale(1.08); }
.pimg-card:hover span { background: var(--light); color: var(--orange); }

/* .scroll-hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  animation: float 2s ease-in-out infinite;
  pointer-events: none;
} */

/* ============================
   MEMBERSHIPS
============================ */
.members-row { display: flex; justify-content: space-around; align-items: center; gap: 2rem; flex-wrap: wrap; }

.member-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  cursor: pointer;
  min-height: 260px;
}

.member-item:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow); 
  background: var(--light); 
}

.member-item img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
  /* margin-bottom: 1rem; */
  transition: transform 0.3s ease;
  filter: grayscale(30%);
  opacity: 0.8;
  /* text-align: center; */
}

.member-item:hover img { transform: scale(1.1); filter: grayscale(0%); opacity: 1; }

.member-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.member-item:hover p { color: var(--orange); }

.staff-section{
  display: flex;
  /* text-align: left; */
}

.staff-text {
  width: 50%;
}

/* .staff-img {
  width: 50%;
} */

.stats-row {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}

.stats-bar {
  background: #1B3D5E;
  color: WHITE;
}

.sn {
  font-size: 48px;
  font-weight: 600;
  color: #d98e10;
  display: block;
  padding-bottom: 0;
  margin-bottom: 0;
}



.profile-small-imgs {
  display: flex;
  justify-content: space-around;
  /* position: relative; */
  /* width: 20px; */
}

.profile-main-img {
  border-radius: 24px;
}

.profile-small-imgs img {
  width: 30%;
  height: 100px;
  border-radius: 16px;
  padding-top: 10px;
  /* position: absolute; */
  /* top: 5; */
}

.profile-layout {
  display: flex;
  justify-content: space-between;
}

.profile-imgs {
  width: 48%;
}

.profile-text {
  width: 48%;
}

.principle-card {
  border: 2px solid whitesmoke;
  padding: 20px;
  border-radius: 24px;
  background-color: white;
  filter:
    drop-shadow(0 2.8px 1.2px rgba(74, 74, 74, 0.034))
    drop-shadow(0 6.7px 1.3px rgba(111, 111, 111, 0.048))
    drop-shadow(0 2.5px 10px rgb(0 0 0 / 0.06))
    drop-shadow(0 2.3px 7.9px rgba(189, 189, 189, 0.072))
    drop-shadow(0 1.8px 3.4px rgb(0 0 0 / 0.086));
}

.srv-card {
  /* border: 1px solid black; */
  border-radius: 0 0 16px 16px;
  background: white;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2))
          drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}


.srv-body {
  padding: 16px;
}

.srv-img {
  border-radius: 16px 16px 0 0;
}

/* ============================
   CTA BAND
============================ */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

/* .cta-text { flex: 1; position: relative; z-index: 1; } */

.cta-text h2 { 
  font-size: 2rem; 
  font-weight: 700; 
  margin-bottom: 0.5rem; 
  transition: transform 0.3s ease; 
}

.cta-band:hover .cta-text h2 { 
  transform: translateX(4px); 
}

.cta-text p { 
  font-size: 1.1rem; 
  opacity: 0.85; 
  transition: opacity 0.3s ease; 
}

/* .cta-band:hover .cta-text p { 
  opacity: 1; 
} */

.btn-cta {
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--navy);
  z-index: 1;
  white-space: nowrap;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--navy-dark);
  z-index: -1;
  border-radius: 50px;
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4); }
.btn-cta:hover::before { left: 0; }
.btn-cta:active { transform: translateY(-1px); }


.consider-card{
  padding: 24px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 24px;
  display: flex;
  gap: 20px;
  background-color: #fff;
  filter: drop-shadow(#d0cfcf 0 28px 55px);
}

/* .highlighted {
  top: -14%;
} */

/* ============================
Contact Page
=============================== */ 

.contact-info-card {
  background: #142d47;
  padding: 44px;
  border-radius: 24px;
  color: white;
  width: 500px;
}

.contact-info-card ul li{
  padding-bottom: 12px;
  list-style-type: none;
}

.contact-info-card ul li a {
  color: #d98e10;
}

.contact-info-card h3 {
  padding-bottom: 20px;
  text-decoration: underline;
}

.ci-dot {
  margin: 0;
  /* padding: 0; */
  /* width: 16px;
  height: 16px; */
}


.contact-layout {
  display: flex;
  justify-content: space-around;
}

.contact-form-area {
  /* max-width: 100%; */
}

label {
  display: block;
  padding-top: 12px;
}

input, textarea {
  width: 600px;
  padding: 12px;
  border: 1px solid #919191;
  background: #F7F7F7;
}

.process-step {
  flex: 0 0 260px;
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-lg); 
}
.process-step h4 { font-size: 1.05rem; color: var(--navy); font-weight: 700; margin-bottom: 0.8rem; }
.process-step p { color: var(--text-light); font-size: 0.85rem; line-height: 1.6; }

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  /* overflow-x: auto; */
  /* padding: 2rem 0; */
  /* position: relative; */
}

.related-services-grid { 
  display: grid; 
  grid-template-columns: repeat(1fr); 
  gap: 0.5rem; }

.related-service-card {
  background: white;
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  /* display: flex; */
  /* flex-direction: column; */
}

.related-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.related-service-card h3 { 
  font-size: 1.15rem; 
  color: var(--navy); 
  /* margin-bottom: 0.8rem;  */
  font-weight: 700; 
  position: relative; 
  z-index: 1; 
  transition: color 0.3s ease; 
}

/* .related-service-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; position: relative; z-index: 1; flex: 1; } */

.related-service-card:hover .arrow-link { transform: translateX(4px); }
.related-service-card:hover h3 { color: var(--orange); }

.make-twosides {
  display: flex;
  justify-content: space-between;
}

.right-side {
  width: 380px;
}

.left-side {
  width: 800px;
}

.rightside-services-title {
  padding-bottom: 1rem;
  border-bottom: 1px solid #666666;
  margin-bottom: 1rem;
}

.why-icon, .why-card h3 {
  padding: 0;
  margin: 0;
  display: inline;

}

.why-icon { 
  /* border: 1px solid black; */
}

.why-card h3 { 
  font-size: 1.1rem; 
  display: inline;
}

.why-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.why-card {
  transition: var(--transition);
  padding-bottom: 2rem;
}

.freight-options { 
  display: grid; 
  grid-template-columns: repeat(2, 2fr); 
  gap: 2rem; 
  margin-top: 2rem;
}

.freight-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--orange);
}

.freight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.freight-icon {
  /* font-size: 3rem; */
  margin-bottom: 1rem;
  display: inline;
  text-align: center;
}

/* .freight-features { */
  /* list-style: none; */
  /* position: relative; */
  /* z-index: 1; */
/* } */

/* .freight-features ul {
  padding-top: 4rem;
} */

.freight-features li {
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.freight-card:hover .freight-features li { transform: translateX(4px); }

.overview-image img{
  width: 800px;
  height: 400px;
  background-color: yellow;
  margin-bottom: 1rem;
}

.highlight-box {
  margin-top: 2rem;
}
/* ============================
   
ER
============================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-container { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: flex; 
  gap: 2.5rem; 
  flex-wrap: wrap; 
  padding-bottom: 2.5rem; 
  border-bottom: 1px solid rgba(255,255,255,0.1); 
  position: relative; 
  z-index: 1; 
}

.footer-brand { 
  max-width: 260px; 
  flex-shrink: 0; 
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

/* .footer-brand .logo-main { 
  color: #fff; 
} */

.tagline { font-style: italic; font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0.8rem 0 0.8rem; transition: color 0.3s ease; }
.footer-brand:hover .tagline { color: var(--orange); }

.footer-desc { font-size: 0.82rem; line-height: 1.6; margin-bottom: 0.8rem; transition: color 0.3s ease; }
.footer-brand:hover .footer-desc { color: rgba(255,255,255,0.9); }

.license { font-size: 0.75rem; color: rgba(255,255,255,0.45); transition: color 0.3s ease; }
.footer-brand:hover .license { color: var(--orange); }

.social-icons { display: flex; gap: 0.5rem; margin-top: 1rem; }

.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange);
  border-radius: 50%;
  z-index: -1;
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3); }
.social-link:hover::before { left: 0; }

.footer-col { flex: 1; min-width: 140px; animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.footer-col:nth-child(2) { animation-delay: 0.1s; }
.footer-col:nth-child(3) { animation-delay: 0.2s; }
.footer-col:nth-child(4) { animation-delay: 0.3s; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.footer-col:hover h4 { color: #fff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }

.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-link:hover { color: var(--orange); }
.footer-link:hover::after { width: 100%; }

.footer-col address p { font-size: 0.82rem; margin-bottom: 0.6rem; line-height: 1.6; transition: color 0.3s ease; }
.footer-col address a { color: var(--orange); transition: color 0.3s ease; }
.footer-col address a:hover { color: #fff; }
.footer-col address strong { color: var(--orange); transition: color 0.3s ease; }
.footer-col:hover address strong { color: #fff; }

.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 1rem 0; font-size: 0.78rem; color: rgba(255,255,255,0.35); text-align: center; position: relative; z-index: 1; transition: color 0.3s ease; }
.footer-bottom:hover { color: rgba(255,255,255,0.5); }

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 960px) {
  .three-col { grid-template-columns: repeat(2, 1fr); }
  .premium-layout { flex-direction: column; }
  .pimg-card { flex: 0 0 320px; }
  .stats-band { flex-direction: column; }
  .stats-image { max-width: 100%; height: 250px; }
  .contact-layout { flex-direction: column; }
  .contact-info-card { max-width: 100%; }
  .cta-band { flex-direction: column; text-align: center; }
  .hero-title { font-size: 3.5rem; }
}

@media (max-width: 700px) {
  .nav-links, .btn-quote { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    padding: 1rem 0;
    z-index: 999;
    animation: fadeInDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .nav-links.open .dropdown { position: static; box-shadow: none; border-top: none; padding-left: 1rem; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .three-col { grid-template-columns: 1fr; }
  .premium-imgs { height: 350px; }
  .pimg-card { flex: 0 0 250px; }
  .footer-container { flex-direction: column; gap: 1.5rem; }
  .footer-brand { max-width: 100%; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; }
  .members-row { gap: 1.5rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .cta-band { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }
  .nav-container { padding: 1rem; height: auto; left: 5px; right: 5px; }
  .premium-imgs { height: 300px; }
  .pimg-card { flex: 0 0 220px; }
}
