/* =============================================
   EQUATRANS – Shared Stylesheet
   ============================================= */

:root {
  --primary-blue: #2e5fac;
  --secondary-blue: #4a7cc7;
  --light-blue: #6b9ee5;
  --dark-text: #1a1a1a;
  --light-text: #64748b;
  --bg-light: #f8f9fa;
  --bg-subtle: #f0f4fb;
  --border: #e0e8f5;
  --radius-card: 20px;
  --radius-btn: 50px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 5px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 48px rgba(46, 95, 172, 0.16);
  --shadow-btn: 0 4px 15px rgba(46, 95, 172, 0.3);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
  z-index: 1000;
  transition: all 0.3s ease;
}
nav.scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,0.1), 0 8px 30px rgba(0,0,0,0.12);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; transition: transform 0.3s ease; }
.logo-img:hover { transform: scale(1.04); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-links li a {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
}
.nav-links li a:hover { color: var(--primary-blue); background: rgba(46, 95, 172, 0.06); }
.nav-links li a.active { color: var(--primary-blue); font-weight: 600; }
.nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.nav-cta {
  background: var(--primary-blue);
  color: white !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: var(--radius-btn) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-btn);
  transition: all 0.3s ease !important;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--secondary-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 95, 172, 0.4) !important;
}
.nav-cta::after { display: none !important; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--dark-text);
  padding: 0.4rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: white; color: var(--primary-blue); box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.btn-secondary { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.85); }
.btn-secondary:hover { background: white; color: var(--primary-blue); border-color: white; }
.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 0.8rem 2rem;
}
.btn-outline:hover { background: var(--primary-blue); color: white; }
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-blue);
  color: white;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-btn);
  text-decoration: none;
}
.btn-blue:hover { background: var(--secondary-blue); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(46,95,172,0.4); }

/* =============================================
   HERO (Home)
   ============================================= */
.hero {
  margin-top: 80px;
  min-height: 92vh;
  background-image: url('../img/5.jpeg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 24, 60, 0.90) 0%,
    rgba(20, 45, 100, 0.80) 40%,
    rgba(30, 63, 122, 0.55) 65%,
    rgba(46, 95, 172, 0.25) 100%
  );
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90'%3E%3Cpath fill='%23f0f4fb' fill-opacity='1' d='M0,45L60,42C120,39,240,33,360,36C480,39,600,51,720,54C840,57,960,51,1080,45C1200,39,1320,33,1380,30L1440,27L1440,90L1380,90C1320,90,1200,90,1080,90C960,90,840,90,720,90C600,90,480,90,360,90C240,90,120,90,60,90L0,90Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center / cover;
  z-index: 1;
}
.hero-bg-pattern { display: none; }
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 7rem;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: white;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s ease both;
}
.hero-text {
  max-width: 640px;
}
.hero-text h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-text h1 span { color: #7eb8ff; }
.hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  line-height: 1.85;
  animation: fadeInUp 0.9s ease 0.2s both;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-image { display: none; }

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--bg-subtle);
  padding: 3.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}
.stat-item { text-align: center; }
.stat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(46, 95, 172, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.stat-icon-wrap i { font-size: 1.4rem; color: var(--primary-blue); }
.stat-number { font-size: 2.6rem; font-weight: 800; color: var(--primary-blue); display: block; line-height: 1; }
.stat-label { font-size: 0.88rem; color: var(--light-text); margin-top: 0.3rem; font-weight: 500; }
.stats-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: auto;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  text-align: center;
}
.section-eyebrow.left { text-align: left; }
.section-title {
  font-size: 2.6rem;
  color: var(--dark-text);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  text-align: center;
}
.section-title.left { text-align: left; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--light-text);
  max-width: 580px;
  margin: 1rem auto 0;
  text-align: center;
  line-height: 1.75;
}
.section-header { margin-bottom: 4rem; }

/* =============================================
   PAGE HERO BANNER (inner pages)
   ============================================= */
.page-hero {
  margin-top: 80px;
  background: linear-gradient(135deg, #1e3f7a 0%, #2e5fac 50%, #4a7cc7 100%);
  padding: 5.5rem 2rem 5rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 30% 60%, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f8f9fa' fill-opacity='1' d='M0,30L120,25C240,20,480,10,720,15C960,20,1200,30,1320,35L1440,40L1440,60L1320,60C1200,60,960,60,720,60C480,60,240,60,120,60L0,60Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom / cover;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.5px; }
.page-hero p { font-size: 1.15rem; opacity: 0.88; max-width: 560px; margin: 0 auto; line-height: 1.75; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  padding: 6rem 2rem;
  background: var(--bg-light);
}
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.services-grid.preview {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
}
.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(46, 95, 172, 0.25);
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon-wrap { transform: scale(1.08) rotate(-3deg); }
.service-icon-wrap i { font-size: 1.75rem; color: white; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--dark-text); font-weight: 700; }
.service-card p { color: var(--light-text); line-height: 1.8; font-size: 0.95rem; }
.services-cta { text-align: center; margin-top: 3.5rem; }

/* =============================================
   WHY US / FEATURES SECTION
   ============================================= */
.features { padding: 6rem 2rem; background: white; }
.features-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.features-list { display: flex; flex-direction: column; gap: 2rem; }
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  box-shadow: 0 4px 14px rgba(46, 95, 172, 0.28);
}
.feature-icon-box i { font-size: 1.25rem; color: white; }
.feature-content h3 { font-size: 1.25rem; margin-bottom: 0.35rem; color: var(--dark-text); font-weight: 700; }
.feature-content p { color: var(--light-text); line-height: 1.75; font-size: 0.95rem; }
.features-image img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  object-fit: cover;
  height: 520px;
}

/* Features extra row */
.features-extras {
  padding: 5rem 2rem;
  background: var(--bg-subtle);
}
.features-extras-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature-extra-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all 0.3s ease;
}
.feature-extra-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-extra-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(46, 95, 172, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.feature-extra-icon i { font-size: 1.4rem; color: var(--primary-blue); }
.feature-extra-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark-text); }
.feature-extra-card p { font-size: 0.9rem; color: var(--light-text); line-height: 1.7; }

/* =============================================
   CLIENTS SECTION
   ============================================= */
.clients-section { padding: 6rem 2rem; background: var(--bg-light); }
.clients-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.client-card {
  background: white;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.client-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--light-blue); }
.client-card img {
  max-height: 85px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}
.client-card:hover img { filter: grayscale(0%) opacity(1); }
.client-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.client-icon-wrap i { font-size: 1.6rem; color: white; }
.client-name { font-size: 1rem; font-weight: 700; color: var(--dark-text); margin-top: 0.75rem; line-height: 1.4; }
.client-type { font-size: 0.82rem; color: var(--light-text); margin-top: 0.3rem; }

/* Home client teaser / marquee */
.clients-teaser { padding: 5rem 2rem; background: white; }
.clients-marquee-wrap {
  overflow: hidden;
  position: relative;
  max-width: 1280px;
  margin: 2.5rem auto;
}
.clients-marquee-wrap::before,
.clients-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.clients-marquee-wrap::after { right: 0; background: linear-gradient(to left, white, transparent); }
.clients-marquee {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.clients-marquee:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--light-text);
  font-size: 0.92rem;
  white-space: nowrap;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--bg-subtle);
  transition: all 0.3s ease;
  cursor: default;
}
.marquee-item:hover { border-color: var(--primary-blue); color: var(--primary-blue); background: rgba(46,95,172,0.05); }
.marquee-item i { color: var(--primary-blue); font-size: 1rem; }
.marquee-item img { height: 28px; width: auto; object-fit: contain; }
.clients-teaser-cta { text-align: center; margin-top: 2rem; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #1e3f7a 0%, #2e5fac 50%, #4a7cc7 100%);
  padding: 7rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-section h2 { font-size: 2.75rem; margin-bottom: 1.25rem; font-weight: 800; letter-spacing: -0.3px; }
.cta-section p { font-size: 1.15rem; margin-bottom: 2.75rem; opacity: 0.9; line-height: 1.75; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 6rem 2rem; background: var(--bg-light); }
.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
}
.contact-info-card:hover { border-color: var(--primary-blue); transform: translateX(4px); box-shadow: var(--shadow-card); }
.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
}
.contact-info-icon i { color: white; font-size: 1.1rem; }
.contact-info-text h4 { font-size: 0.75rem; color: var(--light-text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; font-weight: 600; }
.contact-info-text p,
.contact-info-text a { font-size: 0.97rem; color: var(--dark-text); display: block; font-weight: 500; }
.contact-info-text a:hover { color: var(--primary-blue); }

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-card);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact-form-wrap > p { color: var(--light-text); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark-text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  background: #fafcff;
  color: var(--dark-text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(46,95,172,0.1); background: white; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-btn);
}
.form-submit:hover { background: var(--secondary-blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,95,172,0.35); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #111827;
  color: white;
  padding: 5rem 2rem 2rem;
}
.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-section h3 { margin-bottom: 1.5rem; font-size: 1.05rem; font-weight: 700; color: white; }
.footer-desc { color: rgba(255,255,255,0.6); line-height: 1.75; font-size: 0.92rem; margin-bottom: 1.5rem; }
.footer-section a {
  color: rgba(255,255,255,0.62);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}
.footer-section a:hover { color: var(--light-blue); }
.footer-section a i { width: 14px; font-size: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}
.footer-contact-item i { width: 18px; text-align: center; color: var(--light-blue); flex-shrink: 0; font-size: 0.9rem; }
.footer-contact-item a { color: inherit; transition: color 0.25s ease; }
.footer-contact-item a:hover { color: #25d366; }
.footer-logo { height: 52px; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.65rem; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.75) !important;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
}
.social-link:hover {
  background: var(--primary-blue) !important;
  color: white !important;
  transform: translateY(-3px);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(46,95,172,0.4);
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.42);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   FLOATING CONTACT BUTTONS
   ============================================= */
.float-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 998;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.14); box-shadow: 0 8px 32px rgba(0,0,0,0.32); }
.float-wa { background: #25d366; animation: pulse-wa 2.8s ease-in-out infinite; }
.float-call { background: var(--primary-blue); }
.float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,23,42,0.9);
  color: white;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  backdrop-filter: blur(4px);
}
.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(15,23,42,0.9);
}
.float-btn:hover .float-tooltip { opacity: 1; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* =============================================
   COVERAGE SECTION
   ============================================= */
.coverage-section {
  padding: 5rem 2rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.coverage-inner { max-width: 1280px; margin: 0 auto; }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.coverage-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
}
.coverage-card:hover { border-color: var(--primary-blue); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.coverage-card i { font-size: 1.75rem; color: var(--primary-blue); margin-bottom: 0.75rem; display: block; }
.coverage-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark-text); margin-bottom: 0.3rem; }
.coverage-card p { font-size: 0.82rem; color: var(--light-text); line-height: 1.5; }

/* =============================================
   TRUST BADGES STRIP
   ============================================= */
.trust-strip {
  background: white;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--light-text);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-badge i { font-size: 1.25rem; color: var(--primary-blue); }
.trust-badge span { color: var(--dark-text); }
.trust-divider { width: 1px; height: 32px; background: var(--border); }

/* =============================================
   TRACK SHIPMENT BANNER
   ============================================= */
.track-banner {
  background: linear-gradient(135deg, #0f2557 0%, #1e3f7a 50%, #2e5fac 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.track-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 80% 50%, rgba(107,158,229,0.15) 0%, transparent 60%);
}
.track-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.track-inner h2 { font-size: 2rem; font-weight: 800; color: white; margin-bottom: 0.75rem; }
.track-inner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1rem; }
.track-form {
  display: flex;
  gap: 0;
  max-width: 580px;
  margin: 0 auto;
  border-radius: var(--radius-btn);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.track-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  background: white;
  color: var(--dark-text);
}
.track-form input::placeholder { color: #94a3b8; }
.track-form button {
  background: var(--light-blue);
  color: white;
  border: none;
  padding: 1rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s ease;
  white-space: nowrap;
}
.track-form button:hover { background: #5590d9; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
  .features-extras-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: none;
    gap: 0.25rem;
    border-top: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .nav-links li a { padding: 0.7rem 0.5rem; display: block; }
  .nav-cta { margin: 0.5rem 0 0; text-align: center; }

  .hero-content { grid-template-columns: 1fr; padding-top: 3rem; gap: 2.5rem; }
  .hero-text { text-align: center; }
  .hero { background-attachment: scroll; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-text p { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-content { justify-content: center; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-text p { margin-left: auto; margin-right: auto; }

  .page-hero { padding: 4rem 2rem 3.5rem; }
  .page-hero h1 { font-size: 2.2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid.preview { grid-template-columns: 1fr; }

  .features-container { grid-template-columns: 1fr; gap: 3rem; }
  .features-extras-grid { grid-template-columns: 1fr; }
  .features-image { order: -1; }
  .features-image img { height: 280px; }

  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem; }

  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }

  .section-title { font-size: 2rem; }
  .cta-section h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .clients-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2rem; }
  .page-hero h1 { font-size: 1.85rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { gap: 1.5rem; }
  .trust-divider { display: none; }
  .track-form { flex-direction: column; border-radius: 16px; }
  .track-form input, .track-form button { border-radius: 0; }
  .track-form button { justify-content: center; }
  .float-contact { bottom: 1.25rem; right: 1.25rem; }
}
@media (max-width: 1024px) {
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
}
