/* ============================================
   TRIUNITY GROUP — MODERN CSS DESIGN SYSTEM
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- DESIGN TOKENS --- */
:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #818cf8;
  --accent: #06b6d4;
  --text-dark: #0f172a;
  --text-body: #475569;
  --text-light: #94a3b8;
  --bg-white: #ffffff;
  --bg-soft: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(79,70,229,0.1);
  --shadow-lg: 0 20px 60px rgba(79,70,229,0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(6,182,212,0.1));
  color: var(--primary);
  border: 1px solid rgba(79,70,229,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

/* --- GRADIENT TEXT --- */
.gradient-text {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  box-shadow: 0 8px 25px rgba(79,70,229,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(79,70,229,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(79,70,229,0.3);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Brand text logo - navbar */
.nav-logo { text-decoration: none; }
.brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px;
}
.brand-accent {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.brand-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, transparent);
  border-radius: 2px;
}
/* Brand text logo - footer */
.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.5px;
  line-height: 1;
}
.footer-brand-accent {
  background: linear-gradient(135deg, #818cf8, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--primary); background: rgba(79,70,229,0.08); }
.nav-cta {
  background: linear-gradient(135deg, #4f46e5, #06b6d4) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(79,70,229,0.3);
  border-radius: 10px !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(79,70,229,0.4) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f0ff 0%, #e0f7fa 60%, #f8fafc 100%);
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero .hero-content,
.hero .hero-image {
  z-index: 1;
}
.hero-bg-gradient {
  position: absolute;
  top: -40%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,70,229,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  flex: 1;
  max-width: 580px;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span { font-size: 13px; color: var(--text-light); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-img-wrapper { position: relative; }
.hero-img-wrapper img { max-height: 480px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(79,70,229,0.15)); }
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card i { color: var(--primary); font-size: 18px; }
.card1 { bottom: 60px; left: -30px; animation-delay: 0s; }
.card2 { top: 40px; right: -20px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--bg-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.service-card.animate-in { opacity: 1; transform: translateY(0); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(79,70,229,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.featured-card {
  background: linear-gradient(135deg, #4f46e5, #3730a3);
  color: white !important;
  border-color: transparent;
}
.featured-card .service-icon { background: rgba(255,255,255,0.2) !important; color: white !important; }
.featured-card h3 { color: white !important; font-weight: 800 !important; }
.featured-card p { color: rgba(255,255,255,0.92) !important; }
.featured-card .card-link { color: rgba(255,255,255,0.9) !important; }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(6,182,212,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, #4f46e5, #06b6d4); color: white; transform: scale(1.1); }
.featured-card:hover .service-icon { background: rgba(255,255,255,0.2); }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-card p { color: var(--text-body); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.card-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose { padding: 100px 0; background: var(--bg-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(79,70,229,0.15); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(6,182,212,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, #4f46e5, #06b6d4); color: white; }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section { padding: 100px 0; background: white; }
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.exp-content h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: var(--text-dark); margin-top: 12px; margin-bottom: 20px; line-height: 1.2; }
.exp-content > p { color: var(--text-body); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.exp-highlights { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.exp-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
}
.exp-highlight i { color: var(--primary); font-size: 16px; min-width: 20px; }
.exp-highlight span { font-size: 15px; color: var(--text-dark); font-weight: 500; }
.exp-image-side { position: relative; }
.exp-img-wrap { position: relative; margin-bottom: 24px; }
.exp-img-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.exp-years-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: white;
  padding: 24px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(79,70,229,0.4);
}
.years-number { font-size: 40px; font-weight: 900; line-height: 1; }
.years-label { font-size: 12px; opacity: 0.9; font-weight: 600; margin-top: 4px; line-height: 1.4; }
.exp-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.exp-mini {
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  transition: var(--transition);
}
.exp-mini:hover { border-color: rgba(79,70,229,0.3); box-shadow: var(--shadow-sm); }
.exp-mini strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.exp-mini span { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about { padding: 100px 0; background: white; }
.more-about { padding: 100px 0; background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-grid.reverse .about-content { order: 1; }
.about-grid.reverse .about-image { order: 2; }
.about-image {
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-image.animate-in { opacity: 1; transform: translateX(0); }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(79,70,229,0.4);
}
.about-badge strong { display: block; font-size: 24px; font-weight: 800; }
.about-badge span { font-size: 13px; opacity: 0.9; }
.about-content h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--text-dark); margin-bottom: 16px; margin-top: 12px; }
.about-content > p { color: var(--text-body); margin-bottom: 32px; line-height: 1.8; }
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.feature-item.animate-in { opacity: 1; transform: translateX(0); }
.feature-icon {
  min-width: 36px; height: 36px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  margin-top: 2px;
}
.feature-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin: 0; }
.about-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Animation defaults for all new elements */
.why-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition);
}
.why-card.animate-in { opacity: 1; transform: translateY(0); }
.exp-highlight {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.exp-highlight.animate-in { opacity: 1; transform: translateX(0); }
.exp-mini {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow var(--transition), border-color var(--transition);
}
.exp-mini.animate-in { opacity: 1; transform: translateY(0); }
.exp-content {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.exp-content.animate-in { opacity: 1; transform: translateX(0); }
.exp-image-side {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.exp-image-side.animate-in { opacity: 1; transform: translateX(0); }
.section-header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-header.animate-in { opacity: 1; transform: translateY(0); }
.about-content {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-content.animate-in { opacity: 1; transform: translateX(0); }
/* Stagger delays for grids */
.why-card:nth-child(2), .service-card:nth-child(2), .process-step:nth-child(2), .faq-item:nth-child(2), .pricing-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3), .service-card:nth-child(3), .process-step:nth-child(3), .faq-item:nth-child(3), .pricing-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:nth-child(4), .process-step:nth-child(4), .faq-item:nth-child(4) { transition-delay: 0.3s; }
.why-card:nth-child(5), .faq-item:nth-child(5) { transition-delay: 0.4s; }
.why-card:nth-child(6), .faq-item:nth-child(6) { transition-delay: 0.5s; }
.stats-item:nth-child(2) { transition-delay: 0.1s; }
.stats-item:nth-child(3) { transition-delay: 0.2s; }
.stats-item:nth-child(4) { transition-delay: 0.3s; }
.exp-highlight:nth-child(2) { transition-delay: 0.1s; }
.exp-highlight:nth-child(3) { transition-delay: 0.2s; }
.exp-highlight:nth-child(4) { transition-delay: 0.3s; }
.exp-mini:nth-child(2) { transition-delay: 0.1s; }
.exp-mini:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process { padding: 100px 0; background: white; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.process-step.animate-in { opacity: 1; transform: translateY(0); }
.process-step:hover { box-shadow: var(--shadow-lg); border-color: rgba(79,70,229,0.2); transform: translateY(-6px); }
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: white;
  font-size: 12px;
  font-weight: 800;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}
.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(6,182,212,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.process-step:hover .step-icon { background: linear-gradient(135deg, #4f46e5, #06b6d4); color: white; }
.process-step h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stats-item {
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stats-item.animate-in { opacity: 1; transform: translateY(0); }
.stats-item i { font-size: 36px; margin-bottom: 16px; opacity: 0.9; display: block; }
.stats-item strong { display: block; font-size: 36px; font-weight: 800; line-height: 1.1; margin-bottom: 6px; }
.stats-item span { font-size: 14px; opacity: 0.8; font-weight: 500; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: var(--text-dark);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: white; margin-bottom: 8px; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.65); margin: 0; }
.btn-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,255,255,0.3); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq { padding: 100px 0; background: white; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.faq-item.animate-in { opacity: 1; transform: translateY(0); }
.faq-item:hover { border-color: rgba(79,70,229,0.3); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.faq-icon { font-size: 22px; color: var(--primary); margin-bottom: 14px; }
.faq-item h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.faq-item p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing { padding: 100px 0; background: linear-gradient(135deg, #f0f0ff, #e0f7fa); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.pricing-card.animate-in { opacity: 1; transform: translateY(0); }
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  background: linear-gradient(145deg, #4f46e5, #3730a3);
  color: white;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-6px); }
.popular-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.pricing-head h3 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.popular .pricing-head h3 { color: white; }
.price {
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin: 12px 0;
}
.price span { font-size: 28px; vertical-align: super; }
.price small { font-size: 18px; color: var(--text-light); font-weight: 500; }
.popular .price { color: white; }
.popular .price small { color: rgba(255,255,255,0.7); }
.pricing-head p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.popular .pricing-head p { color: rgba(255,255,255,0.7); }
.pricing-features {
  text-align: left;
  margin-bottom: 36px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.popular .pricing-features { border-color: rgba(255,255,255,0.15); }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-body);
  border-bottom: 1px dashed var(--border);
}
.popular .pricing-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.pricing-features li strong { margin-left: auto; font-weight: 700; color: var(--text-dark); }
.popular .pricing-features li strong { color: white; }
.pricing-features li .fa-check { color: #10b981; }
.pricing-features li .muted { color: #ef4444; }
.pricing-btn { width: 100%; justify-content: center; }
.popular .btn-primary { background: white; color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.popular .btn-primary:hover { background: #f0f0ff; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact { padding: 100px 0; background: white; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.contact-info h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--text-dark); margin-top: 12px; margin-bottom: 16px; }
.contact-info > p { color: var(--text-body); font-size: 16px; margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.contact-item.animate-in { opacity: 1; transform: translateX(0); }
.contact-icon {
  min-width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(6,182,212,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  border: 1px solid rgba(79,70,229,0.15);
}
.contact-item strong { display: block; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; font-size: 15px; }
.contact-item span { font-size: 14px; color: var(--text-body); line-height: 1.5; }
.contact-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 400px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo img {
  height: 40px;
  object-fit: contain;
  max-width: 140px;
}
.footer-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.footer-nav a:hover { color: white; background: rgba(255,255,255,0.1); }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-copy strong { color: rgba(255,255,255,0.7); }

/* ============================================
   GO TO TOP BUTTON
   ============================================ */
#gotop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(79,70,229,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 9999;
}
#gotop.visible { opacity: 1; transform: translateY(0); }
#gotop:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(79,70,229,0.5); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 140px; }
  .hero-btns, .hero-stats { justify-content: center; }
  .hero-image { margin-top: 48px; }
  .about-grid { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; gap: 48px; }
  .exp-years-badge { top: -16px; right: -16px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-6px); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .navbar { background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); }
  .hero { padding: 120px 24px 60px; }
  .hero-float-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .exp-years-badge { display: none; }
  .exp-mini-stats { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid.reverse .about-content { order: 2; }
  .about-grid.reverse .about-image { order: 1; }
  .about-badge { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .about-btns { flex-direction: column; align-items: stretch; }
}
