/* =============================================================
   SECTIONS — Hero, Credibility Bar, What We Do, Why Us
   ============================================================= */

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a4fa0 50%, #0f3070 100%);
  overflow: hidden;
}

/* Dot-grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Floating balloon particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

.particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: floatBalloon linear infinite;
  will-change: transform, opacity;
} 

@keyframes floatBalloon {
  0%   { transform: translateY(40vh) scale(0.6);  opacity: 0;   }
  10%  { opacity: 1; }
  90%  { opacity: 0.85; }
  100% { transform: translateY(-20vh) scale(1.05); opacity: 0;   }
} 

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 24px 100px;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title .highlight      { color: var(--accent); }
.hero-title .highlight-dark { color: #000; }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

/* ----- Company Strip ----- */

.company-strip {
  background: #e5e7eb;
  padding: 2px 0px;
  border-top: 1px solid #e1e112;
  border-bottom: 1px solid #dcdc0d;
}

.company-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.company-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.company-item p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.company-item:not(:last-child) {
  border-right: 1px solid #ddd;
}

@media (max-width: 768px) {
  .company-item:not(:last-child) {
    border-right: none;
  }
}

/* ----- Credibility Bar ----- */
.credibility-bar { background: var(--primary); padding: 40px 0; }

.cred-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.cred-item {
  color: #fff;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.cred-item:last-child { border-right: none; }

.cred-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.cred-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.cred-item p { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* ----- What We Do ----- */
.what-we-do { background: var(--bg); }

.wwd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.wwd-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.wwd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--primary);
  transition: width 0.5s ease;
}

.wwd-card:hover::before {
  width: 100%;
}

.wwd-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  background: #fff;
}

.wwd-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: #fff;
  transition: transform var(--transition);
}

.wwd-card:hover .wwd-icon { transform: scale(1.1) rotate(-5deg); }
.wwd-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.wwd-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }


/* ----- Why Us ----- */
.why-us { background: var(--bg-alt); }

.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.why-text h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.25;
}

.why-list { margin-bottom: 36px; }

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.why-list li:last-child { border-bottom: none; }
.why-list li i { color: var(--success); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

.why-card-stack { display: flex; flex-direction: column; gap: 16px; }

.why-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.why-stat-card:hover {
  transform: translateX(8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.why-stat-card i      { font-size: 2rem; color: var(--primary); width: 48px; flex-shrink: 0; }
.why-stat-card strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.why-stat-card span   { font-size: 0.82rem; color: var(--text-muted); }

/* ----- Locations ----- */
.locations { background: var(--bg-alt); padding-top: 96px; }

.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.loc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.loc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--primary);
  transition: width 0.5s ease;
}

.loc-card:hover::before {
  width: 100%;
}

.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.loc-card i    { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; display: block; }
.loc-card h3   { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.loc-card p    { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
