/* =============================================
   CLINISEARCH ASSOCIATES - Premium CSS Design System
   ============================================= */

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

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

:root {
  --teal:        #5B7A3A;
  --teal-dark:   #476430;
  --teal-light:  #7A9F52;
  --green:       #8FBF5E;
  --green-dark:  #3E6B1E;
  --pink:        #9B5098;
  --pink-light:  #B86DB5;
  --pink-dark:   #7A3D78;
  --navy:        #1A1F16;
  --navy-2:      #222B1B;
  --surface:     #f6f8f4;
  --surface-2:   #edf2e8;
  --white:       #ffffff;
  --text-dark:   #1a2518;
  --text-mid:    #3d5136;
  --text-light:  #6b8266;
  --border:      rgba(91,122,58,0.15);
  --shadow-sm:   0 2px 12px rgba(91,122,58,0.1);
  --shadow-md:   0 8px 32px rgba(91,122,58,0.15);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.8rem;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(91,122,58,0.2);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-left a, .top-bar-right a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
}
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--teal-light); }
.whatsapp-link { color: #25D366 !important; font-weight: 600; }
.whatsapp-link:hover { color: #1aad52 !important; }
.top-bar-right a:not(.whatsapp-link) {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(91,122,58,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 44px;
  border-radius: 6px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(91,122,58,0.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--teal); }
.logo-sub { font-size: 0.68rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--teal); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff !important;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 8px;
  box-shadow: 0 4px 16px rgba(0,176,146,0.3);
  transition: all var(--transition);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,122,58,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--surface); }
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  box-shadow: 0 6px 20px rgba(91,122,58,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(91,122,58,0.45); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.btn-white:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-primary-light {
  background: #fff;
  color: var(--teal);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-weight: 700;
}
.btn-primary-light:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.btn-white-solid {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-weight: 700;
}
.btn-white-solid:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); color: var(--teal); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.45); }

/* Section Common */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0,176,146,0.1), rgba(0,212,170,0.1));
  border: 1px solid rgba(0,176,146,0.2);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label.light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title.white { color: #fff; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--teal-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, var(--teal-light), var(--pink-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(91,122,58,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(155,80,152,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(122,159,82,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #121610 0%, #1A1F16 50%, #1C1F18 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('../images/hero_bg.png') center/cover no-repeat;
  opacity: 0.06;
  z-index: 0;
}
.hero-particles {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--teal-light);
  opacity: 0.15;
  animation: float-particle 8s ease-in-out infinite;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.3; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,122,58,0.12);
  border: 1px solid rgba(91,122,58,0.3);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.7s ease both;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.hero-highlight i { color: var(--teal-light); font-size: 1rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--teal-light);
  border-radius: 2px;
  animation: scroll-dot-move 1.8s ease-in-out infinite;
}
@keyframes scroll-dot-move {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  padding: 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(91,122,58,0.15);
}
.stat-card {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(91,122,58,0.15);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { background: rgba(91,122,58,0.05); }
.stat-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 12px;
  opacity: 0.8;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-light);
  display: inline;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
}
.stat-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrapper {
  position: relative;
  padding: 40px;
}
.about-img-bg {
  width: 100%; max-width: 380px;
  height: 380px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-img-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(91,122,58,0.15), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(155,80,152,0.1), transparent 60%);
}
.about-img-circles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(91,122,58,0.2);
  animation: pulse-ring 4s ease-in-out infinite;
}
.c1 { width: 120px; height: 120px; animation-delay: 0s; }
.c2 { width: 200px; height: 200px; animation-delay: 0.5s; border-style: dashed; }
.c3 { width: 280px; height: 280px; animation-delay: 1s; border-color: rgba(91,122,58,0.1); }
@keyframes pulse-ring {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
.dna-icon {
  font-size: 3.5rem;
  color: var(--teal);
  opacity: 0.6;
  z-index: 1;
  animation: rotate-slow 20s linear infinite;
}
@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.about-card-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.about-card-float i { color: var(--teal); font-size: 1.1rem; }
.card-float-1 { top: 20px; right: -10px; animation: float-card 4s ease-in-out infinite; }
.card-float-2 { bottom: 40px; left: -10px; animation: float-card 4s ease-in-out infinite 2s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-content { }
.about-desc {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-features { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon { color: var(--teal); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.about-feature strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 100px 0;
  background: var(--surface);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(91,122,58,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-color: rgba(91,122,58,0.3);
  color: #fff;
}
.service-card.featured::before { transform: scaleX(1); }
.service-card.featured h3 { color: #fff; }
.service-card.featured .service-list li { color: rgba(255,255,255,0.7); }
.service-card.featured .service-link { color: var(--teal-light); }
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-icon-wrap { margin-bottom: 20px; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(91,122,58,0.1), rgba(122,159,82,0.1));
  border: 1px solid rgba(91,122,58,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
  transition: all var(--transition);
}
.service-card:hover .service-icon, .featured .service-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  box-shadow: 0 8px 20px rgba(91,122,58,0.4);
  border-color: transparent;
}
.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.service-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-mid);
}
.service-list li i { color: var(--teal); font-size: 0.75rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important;
  border-color: transparent !important;
}
.cta-card:hover { box-shadow: 0 20px 60px rgba(91,122,58,0.4) !important; }
.cta-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 16px;
}
.cta-card-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
}
.cta-card h3 { color: #fff !important; font-size: 1.3rem !important; }
.cta-card p { color: rgba(255,255,255,0.75) !important; }

/* =============================================
   MISSION SECTION
   ============================================= */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy), #0a1e1c);
  position: relative;
  overflow: hidden;
}
.mission-bg-decor {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(91,122,58,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(155,80,152,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mission-text {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 32px;
}
.mission-text strong { color: var(--teal-light); }
.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.compliance-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,122,58,0.12);
  border: 1px solid rgba(91,122,58,0.25);
  color: var(--teal-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.compliance-badge:hover {
  background: rgba(91,122,58,0.2);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.mission-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mission-feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.mission-feature-card:hover {
  background: rgba(91,122,58,0.08);
  border-color: rgba(91,122,58,0.2);
  transform: translateY(-4px);
}
.mf-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(91,122,58,0.3);
}
.mission-feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.mission-feature-card p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* =============================================
   AUDIENCE SECTION
   ============================================= */
.audience-section {
  padding: 100px 0;
  background: var(--white);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91,122,58,0.3);
  background: #fff;
}
.audience-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(91,122,58,0.3);
  transition: all var(--transition);
}
.audience-card:hover .audience-icon { transform: scale(1.1) rotate(-3deg); }
.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.audience-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

/* =============================================
   SPECIALTIES
   ============================================= */
.specialties-section {
  padding: 80px 0;
  background: var(--surface);
}
.specialties-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.specialty-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
  cursor: default;
}
.specialty-card:hover {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(91,122,58,0.3);
}
.specialty-icon {
  font-size: 1.2rem;
  color: var(--teal);
  transition: color var(--transition);
}
.specialty-card:hover .specialty-icon { color: rgba(255,255,255,0.9); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal), #00c5a0);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
/* ── LOCATIONS SECTION ── */
.locations-section {
  padding: 100px 0;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.location-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(91,122,58,0.12);
  border-color: rgba(91,122,58,0.2);
}
.location-card:hover::after {
  transform: scaleX(1);
}
.loc-icon {
  width: 52px; height: 52px;
  background: rgba(91,122,58,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.4rem;
  transition: all var(--transition);
}
.location-card:hover .loc-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  transform: rotateY(360deg);
}
.location-card span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.location-card:hover span {
  color: var(--teal);
}

/* ── EXCELLENCE IN ACTION ── */
.excellence-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.excellence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.excellence-pillar {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.excellence-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--teal), var(--pink));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.excellence-pillar:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 20px 40px rgba(91,122,58,0.08);
  border-color: rgba(91,122,58,0.2);
}
.excellence-pillar:hover::before {
  transform: scaleY(1);
}
.pillar-icon {
  width: 64px; height: 64px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: all var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.excellence-pillar:hover .pillar-icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.1) rotate(10deg);
  border-color: var(--teal);
}
.excellence-pillar h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.excellence-pillar p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── INTEGRATED SOLUTIONS ── */
.integrated-solutions-section {
  padding: 100px 0;
  background: var(--surface2);
}
.solutions-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.solution-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 48px;
  display: flex;
  gap: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(91,122,58,0.1);
  border-color: rgba(91,122,58,0.25);
}
.sol-img {
  width: 80px; height: 80px;
  background: var(--surface);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 2.2rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.solution-card:hover .sol-img {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  transform: rotate(-10deg);
}
.sol-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.sol-content p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .solutions-featured-grid { grid-template-columns: 1fr; }
  .solution-card { flex-direction: column; padding: 32px; gap: 20px; }
  .sol-img { width: 64px; height: 64px; font-size: 1.8rem; }
}

/* ── NARRATIVE SECTION ── */
.narrative-section {
  padding: 100px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.narr-container { max-width: 900px; margin: 0 auto; text-align: center; }
.narr-header {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.25;
}
.narr-body {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 40px;
}
.narr-body p { margin-bottom: 24px; }
.narr-body strong { color: var(--teal); }
.narr-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  color: var(--pink);
  background: var(--surface);
  padding: 32px;
  border-radius: 20px;
  border-left: 6px solid var(--pink);
  display: inline-block;
  box-shadow: 0 10px 30px rgba(155,80,152,0.06);
}

/* ── CLIENTS SECTION ── */
.clients-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.clients-slider {
  margin-top: 40px;
  overflow: hidden;
  white-space: nowrap;
}
.clients-track {
  display: inline-flex;
  gap: 80px; /* Space between logos */
  animation: infinite-scroll 40s linear infinite;
}
.client-logo-item {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: all var(--transition);
}
.client-logo-item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

@keyframes infinite-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-280px * 5)); } /* Moving by 5 logos (width + gap) */
}

/* Pause on hover */
.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .clients-track { animation-duration: 25s; gap: 40px; }
  @keyframes infinite-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-240px * 5)); }
  }
}

/* ── DIRECTORS ── */
.directors-section {
  padding: 100px 0;
  background: var(--surface2);
}
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.director-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.director-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(91,122,58,0.1);
  border-color: rgba(91,122,58,0.2);
}
.director-img {
  width: 140px; height: 140px;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.director-img img { width: 100%; height: 100%; object-fit: cover; }
.director-info h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; color: var(--text-mid); margin-bottom: 8px; }
.director-qual { font-size: 0.95rem; color: var(--teal); font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.director-role { font-size: 0.95rem; color: var(--text-light); }

@media (max-width: 768px) {
  .directors-grid { grid-template-columns: 1fr; }
  .director-card { flex-direction: column; text-align: center; padding: 32px; }
  .director-img { width: 120px; height: 120px; }
}

.footer {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.footer-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(91,122,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 24px 48px;
  position: relative;
  z-index: 1;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}
.social-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }
.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(91,122,58,0.15);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}
.footer-links a i { font-size: 0.7rem; color: var(--teal); transition: transform var(--transition); }
.footer-links a:hover { color: var(--teal-light); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-item > i {
  color: var(--teal);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  display: block;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(91,122,58,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(91,122,58,0.5); }

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

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE — TABLET (<=1024px)
   ============================================= */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(91,122,58,0.15); }
  .stat-card:nth-child(odd) { border-right: 1px solid rgba(91,122,58,0.15); }
  .stat-card:nth-child(3), .stat-card:nth-child(4) { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 400px; margin: 0 auto; }

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

  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-features { grid-template-columns: repeat(2, 1fr); }

  .audience-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   RESPONSIVE — MOBILE (<=768px)
   ============================================= */
@media (max-width: 768px) {
  /* top bar */
  .top-bar-left a:not(:first-child):not(.whatsapp-link) { display: none; }

  /* navbar */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 24px 48px;
    gap: 4px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right var(--transition);
    z-index: 998;
  }
  .nav-links.open { right: 0; }
  .nav-link { padding: 12px 16px; border-radius: 10px; font-size: 1rem; }
  .nav-cta { margin: 12px 0 0; text-align: center; justify-content: center; }

  /* hero */
  .hero-content { padding: 100px 0 60px; }
  .hero-title { font-size: 2.2rem; }
  .hero-desc { font-size: 0.98rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 32px 20px; }
  .stat-card:nth-child(odd) { border-right: 1px solid rgba(91,122,58,0.15); }
  .stat-card:last-child { border-bottom: none; }

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

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

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* general */
  section { padding: 64px 0 !important; }
  .about-section, .services-section, .mission-section, .audience-section, .specialties-section, .cta-section { padding: 64px 0; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (<=480px)
   ============================================= */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: none !important; border-bottom: 1px solid rgba(91,122,58,0.15); }
  .stat-card:last-child { border-bottom: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .hero-highlights { flex-direction: column; }
  .hero-highlight { width: 100%; }
  .mission-features { grid-template-columns: 1fr; }
  .compliance-badges { gap: 8px; }
  .footer-grid { padding: 40px 0 32px; }
}