@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;800;900&display=swap');

:root {
  --primary-color: #0A192F;
  --secondary-color: #004aad;
  --accent-color: #FF7A00;
  --accent-glow: rgba(255, 122, 0, 0.35);
  --bg-light: #F4F7FB;
  --bg-white: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 10px 25px -5px var(--accent-glow);
  --nav-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff9c4a 100%);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff9c4a 0%, var(--accent-color) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px var(--accent-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

/* ===================== HEADER / NAV ===================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: padding 0.4s ease;
}

header.scrolled {
  padding: 0;
}

header.scrolled .nav-container {
  border-radius: 0;
  margin-top: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 0 2rem;
  height: var(--nav-height);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  max-width: 1280px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.82rem;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent-color);
  transition: width 0.35s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--accent-color); }

/* Dropdown */
.nav-item.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 260px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0.75rem 0;
  z-index: 100;
  border: 1px solid rgba(0,0,0,0.06);
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  border-left: 3px solid transparent;
  transition: var(--transition-smooth);
}
.dropdown-item:hover {
  background: #f8fafc;
  color: var(--accent-color);
  border-left-color: var(--accent-color);
  padding-left: 1.75rem;
}

/* Mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-color);
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 2rem);
}

/* Dot grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 1;
}

/* Right-side gradient blob */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 74, 173, 0.5) 0%, transparent 65%);
  z-index: 1;
  border-radius: 50%;
}

.hero-glow {
  position: absolute;
  bottom: -20%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, transparent 65%);
  z-index: 1;
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 122, 0, 0.15);
  color: #ffb067;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 122, 0, 0.25);
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero-title span {
  background: linear-gradient(90deg, var(--accent-color), #ffb067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
  color: white;
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  display: block;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero right visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
}

.hero-img-main {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 20px rgba(255,255,255,0.04), 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.hero-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-img-sm {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid white;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float2 5s ease-in-out infinite 1s;
}
.hero-img-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  top: 30px;
  right: -20px;
  background: white;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 4;
  animation: float2 4s ease-in-out infinite 0.5s;
  min-width: 200px;
}
.hero-float-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent-color), #ff9c4a);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-float-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}
.hero-float-text span {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ===================== MARQUEE ===================== */
.marquee-section {
  background: white;
  padding: 3.5rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.marquee-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.marquee-track {
  overflow: hidden;
  position: relative;
}
.marquee-track::before, .marquee-track::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}
.marquee-track::before { left: 0; background: linear-gradient(to right, white, transparent); }
.marquee-track::after  { right: 0; background: linear-gradient(to left, white, transparent); }

.marquee-content {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
}
.marquee-content:hover { animation-play-state: paused; }

.client-logo-box {
  background: #f8fafc;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: 1px solid #e8edf5;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  transition: var(--transition-smooth);
}
.client-logo-box:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}
.client-img {
  max-width: 90px;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}
.client-logo-box:hover .client-img { filter: grayscale(0%) opacity(1); }

/* ===================== SECTIONS SHARED ===================== */
.section { padding: 7rem 0; }
.section-alt { background: var(--bg-light); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 0.75rem;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================== ABOUT / STATS ===================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-cluster {
  position: relative;
  height: 500px;
}

.about-img-bg {
  position: absolute;
  top: 0; left: 0;
  width: 380px; height: 420px;
  background: linear-gradient(135deg, var(--secondary-color), #001f6b);
  border-radius: 20px;
  z-index: 1;
}

.about-img-main {
  position: absolute;
  top: 30px; left: 30px;
  width: 380px; height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-sm {
  position: absolute;
  bottom: 20px; right: 0;
  width: 200px; height: 200px;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.about-img-sm img { width: 100%; height: 100%; object-fit: cover; }

.about-exp-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  z-index: 4;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.about-exp-badge .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.about-exp-badge .lbl {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 2.8rem;
  margin: 0.5rem 0 1.5rem;
  letter-spacing: -0.5px;
}
.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-check-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}
.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.97rem;
}
.about-check-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--primary-color);
  padding: 3.5rem;
  border-radius: 20px;
}

.stat-block {
  text-align: center;
  position: relative;
}

.stat-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-num span {
  background: linear-gradient(90deg, var(--accent-color), #ffb067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ===================== PROCESS ===================== */
.process-section {
  padding: 7rem 0;
  background: white;
  overflow: hidden;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 1rem;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  z-index: 0;
}

.process-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon-wrap {
  width: 80px; height: 80px;
  background: white;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 0 0 8px rgba(255,122,0,0.08);
}

.process-card:hover .process-icon-wrap {
  background: var(--accent-color);
  box-shadow: 0 0 0 12px rgba(255,122,0,0.12), var(--shadow-glow);
}

.process-icon-wrap i {
  font-size: 1.6rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
}
.process-card:hover .process-icon-wrap i { color: white; }

.process-step-num {
  position: absolute;
  top: -10px; right: -10px;
  width: 26px; height: 26px;
  background: var(--primary-color);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

.process-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================== SERVICES GRID ===================== */
.services-section {
  padding: 7rem 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.25rem 2rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }

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

.service-icon {
  width: 60px; height: 60px;
  background: rgba(0,74,173,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
  background: var(--accent-color);
  color: white;
  transform: rotate(-5deg) scale(1.1);
}

.service-name {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.center-btn { text-align: center; margin-top: 3rem; }

/* ===================== WHY CHOOSE US ===================== */
.why-section {
  padding: 7rem 0;
  background: white;
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-img-cluster {
  position: relative;
  height: 500px;
}
.why-img-main {
  width: 400px; height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0; left: 0;
}
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }

.why-img-sm {
  position: absolute;
  bottom: 0; right: 0;
  width: 220px; height: 220px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.why-img-sm img { width: 100%; height: 100%; object-fit: cover; }

.why-float-badge {
  position: absolute;
  top: 30px; right: -20px;
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: float2 5s ease-in-out infinite;
  min-width: 190px;
}
.why-float-icon {
  width: 38px; height: 38px;
  background: var(--accent-color);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-float-txt strong { display: block; font-size: 0.95rem; }
.why-float-txt span { font-size: 0.75rem; opacity: 0.65; }

.why-content h2 {
  font-size: 2.8rem;
  margin: 0.5rem 0 1.25rem;
  letter-spacing: -0.5px;
}
.why-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e8edf5;
  transition: var(--transition-smooth);
}
.why-feature:hover {
  border-color: rgba(255,122,0,0.3);
  background: rgba(255,122,0,0.03);
}
.why-feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.why-feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}
.why-feature-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===================== INDUSTRIES ===================== */
.industries-section {
  padding: 5rem 0;
  background: var(--primary-color);
  overflow: hidden;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: default;
}
.industry-pill i { color: var(--accent-color); font-size: 0.9rem; }
.industry-pill:hover {
  background: rgba(255,122,0,0.15);
  border-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

/* ===================== CONTACT SECTION ===================== */
.contact-section {
  padding: 7rem 0;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,74,173,0.3) 0%, transparent 65%);
  z-index: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-left h2 {
  font-size: 3rem;
  color: white;
  margin: 0.5rem 0 1.25rem;
  letter-spacing: -1px;
}
.contact-left p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}
.contact-info-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,122,0,0.3);
}
.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(255,122,0,0.15);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}
.contact-info-text strong {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

/* Contact Form */
.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}
.contact-form-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #f8fafc;
  transition: var(--transition-smooth);
  margin-bottom: 1rem;
}
.form-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(0,74,173,0.08);
}
.form-input::placeholder { color: #94a3b8; }

textarea.form-input { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,74,173,0.3);
}

/* ===================== PAGE HEADERS (INNER PAGES) ===================== */
.page-header {
  height: 42vh;
  min-height: 320px;
  padding-top: calc(var(--nav-height) + 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.page-header::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,74,173,0.4) 0%, transparent 65%);
}

.page-header-content { position: relative; z-index: 2; }

.page-title {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}
.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent-color); }
.breadcrumb span { color: var(--accent-color); margin: 0 0.5rem; }

/* ===================== FOOTER ===================== */
footer {
  background: #060F1E;
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.footer-brand span { color: var(--accent-color); }

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-mini a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.footer-contact-mini a:hover { color: var(--accent-color); }
.footer-contact-mini i { color: var(--accent-color); width: 14px; }

.footer-title {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}
.footer-links a::before {
  content: '→';
  color: var(--accent-color);
  font-size: 0.7rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition-smooth);
}
.footer-links a:hover {
  color: white;
  padding-left: 6px;
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-bottom-credits { color: rgba(255,255,255,0.35); }
.footer-bottom-credits span { color: var(--accent-color); }

/* ===================== SPECIAL CARDS (HOME SERVICES) ===================== */
.specialized-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.special-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.04);
}
.special-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.special-img {
  height: 200px;
  overflow: hidden;
}
.special-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.special-card:hover .special-img img { transform: scale(1.08); }

.special-body {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.special-icon {
  width: 48px; height: 48px;
  background: rgba(0,74,173,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.special-card:hover .special-icon {
  background: var(--accent-color);
  color: white;
}
.special-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================== REVIEWS SECTION ===================== */
.reviews-section {
  padding: 7rem 0;
  background: var(--bg-light);
  overflow: hidden;
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(255,122,0,0.08);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.review-stars i { color: #f59e0b; font-size: 0.95rem; }

.review-text {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.review-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}
.review-author-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
}
.review-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.review-company-badge {
  margin-left: auto;
  background: rgba(0,74,173,0.07);
  color: var(--secondary-color);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================== SERVICES HUB PAGE ===================== */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.service-hub-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.service-hub-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-hub-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.service-hub-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-hub-card:hover .service-hub-img img { transform: scale(1.06); }

.service-hub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,47,0.7) 0%, transparent 60%);
}
.service-hub-tag {
  position: absolute;
  bottom: 1.25rem; left: 1.5rem;
  background: var(--accent-color);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-hub-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-hub-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}
.service-hub-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-hub-list {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-hub-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
}
.service-hub-list li i {
  color: var(--accent-color);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.service-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}
.service-hub-link:hover {
  color: var(--accent-color);
  gap: 0.75rem;
}

/* ===================== SERVICE DETAIL PAGE ===================== */
.service-detail-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 4rem;
}
.service-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.service-detail-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,25,47,0.88) 0%, rgba(0,74,173,0.78) 100%);
}
.service-detail-hero-content {
  position: relative;
  z-index: 2;
}
.service-detail-hero-content h1 {
  font-size: 3.5rem;
  color: white;
  margin: 1rem 0;
  letter-spacing: -1px;
}
.service-detail-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-detail-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
}
.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-detail-card-img {
  height: 180px;
  overflow: hidden;
}
.service-detail-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-detail-card:hover .service-detail-card-img img { transform: scale(1.06); }
.service-detail-card-body {
  padding: 1.5rem;
}
.service-detail-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}
.service-detail-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================== CLIENTS PAGE REDESIGN ===================== */
.clients-hero-section {
  min-height: 55vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 4rem;
}
.clients-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/pic/clients-hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.clients-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,25,47,0.92) 0%, rgba(0,74,173,0.75) 100%);
}
.clients-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.clients-hero-content h1 {
  font-size: 3.8rem;
  color: white;
  margin: 1rem 0 1.5rem;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.clients-hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.clients-stats-strip {
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  margin-top: -3rem;
  position: relative;
  z-index: 3;
}
.clients-stats-item {
  text-align: center;
}
.clients-stats-item .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-color);
  display: block;
}
.clients-stats-item .num span { color: var(--accent-color); }
.clients-stats-item .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.clients-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.client-featured-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}
.client-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,122,0,0.2);
}
.client-featured-img {
  height: 180px;
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.client-featured-img img {
  max-width: 65%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.client-featured-card:hover .client-featured-img img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.client-featured-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--secondary-color);
  background: linear-gradient(135deg, rgba(0,74,173,0.05), rgba(0,74,173,0.12));
  text-align: center;
  padding: 1.5rem;
  line-height: 1.3;
}
.client-featured-body {
  padding: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.client-featured-body h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--primary-color);
}
.client-featured-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.client-featured-body .industry-tag {
  display: inline-block;
  background: rgba(255,122,0,0.1);
  color: var(--accent-color);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

/* Stats grid layout */
.clients-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.clients-stat-item {
  text-align: center;
}
.clients-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--accent-color), #ff9f43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.clients-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Featured card tag + meta */
.client-featured-tag {
  display: inline-block;
  background: rgba(255,122,0,0.1);
  color: var(--accent-color);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}
.client-featured-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.client-featured-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.client-featured-meta span i {
  color: var(--accent-color);
  font-size: 0.7rem;
}

/* Belt item inner elements */
.clients-belt-item {
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  cursor: default;
}
.clients-belt-icon {
  font-size: 1.4rem;
  color: var(--accent-color);
  opacity: 0.8;
}
.clients-belt-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}
.clients-belt-sector {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Partnerships belt */
.clients-belt {
  background: var(--primary-color);
  padding: 4rem 0;
}
.clients-belt-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
}
.clients-belt-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: var(--transition-smooth);
}
.clients-belt-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,122,0,0.4);
  transform: scale(1.04);
}
.clients-belt-item img {
  max-width: 80px;
  max-height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
  transition: opacity 0.3s;
}
.clients-belt-item:hover img { opacity: 1; }
.clients-belt-item span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.3;
}

/* ===================== SPECIAL CARD LINK ===================== */
.special-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ===================== CLIENTS GRID (CLIENTS PAGE) ===================== */
.clients-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .reviews-slider { grid-template-columns: 1fr 1fr; }
  .services-hub-grid { grid-template-columns: 1fr; }
  .clients-featured-grid { grid-template-columns: 1fr 1fr; }
  .clients-belt-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-stats-strip { padding: 2rem; }
  .clients-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
  .reviews-slider { grid-template-columns: 1fr; }
  .clients-featured-grid { grid-template-columns: 1fr; }
  .clients-belt-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-hero-content h1 { font-size: 2.5rem; }
  .clients-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .service-detail-hero-content h1 { font-size: 2.5rem; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-block:nth-child(2)::after { display: none; }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-split,
  .why-split,
  .contact-grid { grid-template-columns: 1fr; }

  .hero-visual { height: 380px; margin-top: 2rem; }
  .hero-img-main { width: 300px; height: 300px; }
  .hero-img-sm { width: 160px; height: 160px; }

  .about-img-cluster { height: 360px; margin-bottom: 2rem; }
  .about-img-bg, .about-img-main { width: 300px; height: 340px; }
  .about-img-sm { width: 160px; height: 160px; }

  .why-img-cluster { height: 380px; margin-bottom: 2rem; }
  .why-img-main { width: 300px; height: 360px; }
  .why-img-sm { width: 180px; height: 180px; right: 10px; }
  .why-float-badge { right: 0; }

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

  .specialized-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .hero-title { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .page-title { font-size: 2.5rem; }

  .nav-links {
    position: fixed;
    top: 0; left: -100%;
    width: 85%; height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.4s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.active { left: 0; }
  .hamburger { display: block; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cta-group { justify-content: center; }
  .hero-stats-row { justify-content: center; }
  .hero-visual { display: none; }

  .stats-row { grid-template-columns: 1fr 1fr; padding: 2rem; }
  .stat-block::after { display: none; }

  .specialized-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { gap: 3rem; }

  .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    transform: none !important;
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: none;
  }
  .nav-item.dropdown:hover .dropdown-menu {
    transform: none !important;
    left: 0 !important;
  }
  .nav-item.dropdown.open .dropdown-menu { display: block !important; }

  /* OVERRIDE FOR MOBILE OVERFLOW RESILIENCE */
  html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
  }
  .container {
    padding: 0 1.25rem !important;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-img-main, .hero-img-sm, .why-img-main, .why-img-sm {
    max-width: 100% !important;
    height: auto !important;
  }
  .hero-right, .why-img-cluster {
    height: auto !important;
    padding: 1rem 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .why-img-sm {
    position: relative !important;
    margin-top: -40px;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    border: 3px solid white;
  }
  .hero-img-sm {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: -40px;
    border: 3px solid white;
  }
  .hero-pattern-right, .contact-section::before, .home-services-bg {
    display: none !important;
  }
  .nav-container {
    padding: 0.5rem 1rem !important;
    margin-top: 0.5rem !important;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    width: calc(100% - 2rem) !important;
    box-sizing: border-box;
  }
  .nav-links {
    top: var(--nav-height) !important;
    height: calc(100vh - var(--nav-height)) !important;
  }
  .hero-title {
    font-size: 2.2rem !important;
    word-wrap: break-word;
    hyphens: auto;
  }
  .split-content h2, .why-content h2, .contact-left h2, .section-title {
    font-size: 1.8rem !important;
    word-wrap: break-word;
  }
  .why-features-grid, .stats-row, .split-stats, .why-check-list {
    grid-template-columns: 1fr !important;
  }
  .hero-curved {
    padding-top: calc(var(--nav-height) + 3rem) !important;
    padding-bottom: 3rem !important;
  }
  .hero-desc, .split-content p, .why-content p.desc, .contact-left p {
    font-size: 1rem !important;
  }
  .why-floating-card {
    position: relative !important;
    top: -20px !important;
    right: auto !important;
    margin-bottom: 1rem;
  }
  .hero-stats-row {
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
  }
  .hero-stat-num {
    font-size: 3rem !important;
  }
  .hero-stats-row .stat-label {
    font-size: 1.2rem !important;
    font-weight: 600;
  }
  .logo-text {
    font-size: 0.95rem !important;
    white-space: nowrap !important;
  }
  .nav-logo {
    height: 38px !important;
  }
}
