/* ============================
   AMPLIFY HO-SOLV - PREMIUM BPO REDESIGN
   International Corporate Standard
   Colors: Primary Purple #6F2DBD, Secondary Gold #D4AF37
   ============================ */

:root {
  --purple: #6F2DBD;
  --purple-dark: #5a2499;
  --purple-light: #8b4fd4;
  --purple-soft: #f4efff;
  --gold: #D4AF37;
  --gold-light: #e8c96a;
  --gold-soft: #fff8e1;
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #ADB5BD;
  --gray-500: #868E96;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  --dark: #1A1A2E;
  --font-body: 'Outfit', 'Poppins', sans-serif;
  --font-heading: 'Outfit', 'Poppins', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-purple: 0 8px 32px rgba(111,45,189,0.15);
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================
   PRELOADER
   ============================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  margin: 0 auto;
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: var(--purple);
  border-radius: var(--radius-full);
  animation: preloaderFill 1.2s ease forwards;
}

@keyframes preloaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

/* ============================
   FLOATING WHATSAPP
   ============================ */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--purple);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  z-index: 9980;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(111,45,189,0.25);
}

/* ============================
   NAVBAR
   ============================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: var(--transition-smooth);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}

.main-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

/* Home page only: transparent header */
body.home-page .main-header {
  background: transparent;
  box-shadow: none;
}

body.home-page .main-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
  height: 36px;
}

.brand-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--gray-900);
  letter-spacing: -0.5px;
}

.brand-text span {
  color: var(--purple);
}

.nav-link {
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-700);
  padding: 8px 16px !important;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--purple);
  background: var(--purple-soft);
}

.btn-nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 24px !important;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-purple);
}

.btn-nav-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(111,45,189,0.25);
}

.navbar-toggler {
  border: none;
  padding: 8px;
  border-radius: var(--radius-md);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ============================
   HERO SECTION - SPLIT LAYOUT
   ============================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: var(--purple-soft);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: var(--gold-soft);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-title .accent {
  background: var(--purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-purple);
  border: none;
  cursor: pointer;
}

.btn-gradient:hover {
  background: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(111,45,189,0.3);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 2px solid var(--gray-300);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 14px;
}

.trust-text {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Floating Stats Cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: -3s;
}

.hero-float-card.card-3 {
  top: 50%;
  right: -40px;
  animation-delay: -1.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-card-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}

.float-card-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 4px;
}

.float-card-icon {
  width: 40px;
  height: 40px;
  background: var(--purple-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 18px;
  margin-bottom: 8px;
}

/* ============================
   SECTION COMMON
   ============================ */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple);
  background: var(--purple-soft);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
  background: var(--purple);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .plus {
  color: var(--gold);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
  background: var(--off-white);
}

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--purple);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-purple);
  text-align: center;
}

.about-image-badge .years {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.about-image-badge .years span {
  color: var(--gold);
}

.about-image-badge .text {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content .lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.about-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--purple-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 20px;
  transition: var(--transition-smooth);
}

.about-feature:hover .about-feature-icon {
  background: var(--purple);
  color: var(--white);
}

.about-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.about-feature-text p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ============================
   SERVICES SECTION
   ============================ */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--purple-soft);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
  display: block;
}

.service-card:hover .service-img {
  transform: scale(1.03);
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.service-tag.voice {
  background: var(--purple-soft);
  color: var(--purple);
}

.service-tag.nonvoice {
  background: var(--gold-soft);
  color: var(--gold);
}

/* ============================
   WHY CHOOSE US
   ============================ */
.why-section {
  background: var(--off-white);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid var(--gray-200);
  height: 100%;
}

.why-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: transparent;
}

.why-icon {
  width: 72px;
  height: 72px;
  background: var(--purple-soft);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--purple);
  font-size: 28px;
  transition: var(--transition-bounce);
}

.why-card:hover .why-icon {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.15) rotate(10deg);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ============================
   PROCESS TIMELINE
   ============================ */
.process-section {
  background: var(--white);
}

.process-timeline {
  position: relative;
  padding: 0 20px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% - 80px);
  background: var(--gray-200);
  border-radius: var(--radius-full);
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-content {
  flex: 1;
  max-width: 45%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
}

.process-step-content:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-soft);
}

.process-step-number {
  width: 64px;
  height: 64px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-purple);
  z-index: 2;
  border: 4px solid var(--white);
}

.process-step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.process-step-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

.process-step-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 20px;
  margin-bottom: 16px;
}

/* ============================
   INDUSTRIES
   ============================ */
.industries-section {
  background: var(--off-white);
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--purple-soft);
}

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-icon {
  width: 72px;
  height: 72px;
  background: var(--purple-soft);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--purple);
  font-size: 28px;
  transition: var(--transition-bounce);
}

.industry-card:hover .industry-icon {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.1);
}

.industry-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition-smooth);
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-soft);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 48px;
  color: var(--purple-soft);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-weight: 700;
  font-size: 18px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

.testimonial-rating {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  background: var(--purple);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.02);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--gray-900);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  border: none;
}

.btn-cta-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.3);
  color: var(--gray-900);
}

/* ============================
   TRUST INDICATORS
   ============================ */
.trust-section {
  background: var(--off-white);
  padding: 60px 0;
}

.trust-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 32px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.trust-logo-item:hover {
  opacity: 1;
}

.trust-logo-item i {
  font-size: 32px;
  color: var(--gray-400);
}

.trust-logo-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================
   FOOTER
   ============================ */
.main-footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 80px 0 0;
}

.footer-brand-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 16px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-500);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--purple);
  transform: translateX(4px);
}

.footer-links a i {
  font-size: 10px;
  color: var(--purple);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  width: 36px;
  height: 36px;
  background: rgba(111,45,189,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 14px;
  min-width: 36px;
}

.footer-contact-item span {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
}

.footer-bottom a {
  color: var(--gray-500);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom a:hover {
  color: var(--purple);
}

/* ============================
   SCROLL REVEAL ANIMATIONS
   ============================ */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 991.98px) {
  .section-padding { padding: 60px 0; }
  .hero-section { padding-top: 70px; }
  .hero-section::before { right: -50%; width: 100%; }
  .hero-image-wrap { margin-top: 40px; }
  .hero-float-card { display: none; }
  .process-timeline::before { left: 24px; }
  .process-step { flex-direction: column !important; }
  .process-step-content { max-width: 100%; margin-left: 60px; }
  .process-step-number { left: 0; transform: none; }
  .stat-divider { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .btn-gradient, .btn-outline { width: 100%; justify-content: center; }
  .trust-logos { gap: 24px; }
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    margin-top: 12px;
  }
  .about-image-badge { right: 10px; bottom: -10px; padding: 16px 20px; }
  .about-image-badge .years { font-size: 28px; }
}

@media (max-width: 575.98px) {
  .hero-section { min-height: auto; padding: 100px 0 60px; }
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .stats-bar { padding: 32px 0; }
  .stat-number { font-size: 2rem; }
  .service-card, .why-card, .industry-card, .testimonial-card { padding: 28px 20px; }
  .process-step-content { margin-left: 50px; padding: 24px; }
  .process-step-number { width: 48px; height: 48px; font-size: 18px; }
}

/* ============================
   CONSULTATION PAGE
   ============================ */
.page-header {
  background: linear-gradient(135deg, var(--purple) 0%, var(--dark) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bpo.png') center center / cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.page-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-title span {
  color: var(--gold);
}

.page-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Consultation Form */
.consultation-section {
  padding: 80px 0;
  background: var(--white);
}

.consultation-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.form-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  display: block;
}

.form-group .text-danger {
  color: #dc3545;
}

.form-control {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(111, 45, 189, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--gray-400);
}

select.form-control {
  appearance: auto;
  padding-right: 36px;
}

.form-check-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--purple);
}

.form-check-input:checked {
  border-color: var(--purple);
  background-color: var(--purple);
}

.form-check-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
}

.invalid-feedback {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 4px;
}

.btn-submit-consultation {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(111, 45, 189, 0.35);
  margin-top: 8px;
}

.btn-submit-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(111, 45, 189, 0.45);
}

.btn-submit-consultation:active {
  transform: translateY(0);
}

.btn-submit-consultation i {
  font-size: 1.2rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 16px;
}

.form-note a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

.form-note i {
  color: var(--purple);
  margin-right: 4px;
}

/* Form validation states */
.consultation-form.was-validated .form-control:invalid {
  border-color: #dc3545;
  background-image: none;
}

.consultation-form.was-validated .form-control:valid {
  border-color: #28a745;
}

/* Consultation Info Cards */
.consultation-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-soft);
}

.info-card .info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-soft));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-card .info-icon i {
  font-size: 1.2rem;
  color: var(--purple);
}

.info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

.info-card p a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
}

.info-card p a:hover {
  text-decoration: underline;
}

.contact-card {
  background: linear-gradient(135deg, var(--dark), var(--purple-dark));
  border: none;
}

.contact-card h4 {
  color: var(--white);
}

.contact-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card p i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

/* Footer contact item enhancement */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.footer-contact-item i {
  color: var(--purple);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

/* Responsive consultation */
@media (max-width: 991.98px) {
  .consultation-form-wrapper { padding: 32px; }
  .page-header { padding: 120px 0 60px; }
}

@media (max-width: 767.98px) {
  .consultation-form-wrapper { padding: 24px; }
  .consultation-section { padding: 40px 0; }
  .btn-submit-consultation { width: 100%; justify-content: center; }
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.about-stat-box {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition-smooth);
}

.about-stat-box:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
}

.about-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-soft);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-soft));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 1.5rem;
  color: var(--purple);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================
   SERVICES PAGE
   ============================ */
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 12px;
  transition: var(--transition-smooth);
}

.btn-service:hover {
  color: var(--purple-dark);
  gap: 12px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: var(--purple);
  font-size: 0.75rem;
}

/* ============================
   INDUSTRIES PAGE
   ============================ */
.industry-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-soft);
}

.industry-card .industry-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-soft));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.industry-card .industry-icon i {
  font-size: 1.8rem;
  color: var(--purple);
}

.industry-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.industry-card a {
  color: var(--purple);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.industry-card a:hover {
  gap: 10px;
  color: var(--purple-dark);
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-info-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-soft));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.1rem;
  color: var(--purple);
}

.contact-info-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact-info-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-info-content p a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
}

.contact-info-content p a:hover {
  text-decoration: underline;
}

.btn-whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

/* ============================
   CAREERS PAGE
   ============================ */
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-soft);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-soft));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: var(--purple);
}

.benefit-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: var(--transition-smooth);
}

.job-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-soft);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}

.job-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0;
}

.job-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  background: var(--purple-soft);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.job-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.job-details span {
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-details span i {
  color: var(--purple);
  font-size: 0.8rem;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.job-tags .tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(111, 45, 189, 0.3);
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(111, 45, 189, 0.4);
  color: var(--white);
}

/* ============================
   PROJECTS PAGE
   ============================ */
.project-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-soft);
}

.project-image {
  height: 200px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image i {
  font-size: 3rem;
  color: rgba(255,255,255,0.8);
}

.project-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  background: var(--purple-soft);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  align-self: flex-start;
}

.project-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.project-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.project-stats {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.project-stats span {
  font-size: 0.8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-stats span i {
  color: var(--purple);
  font-size: 0.85rem;
}

/* ============================
   CLIENTS PAGE
   ============================ */
.client-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: var(--transition-smooth);
  text-align: center;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-soft);
}

.client-logo {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-soft));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.client-logo i {
  font-size: 1.8rem;
  color: var(--purple);
}

.client-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.client-industry {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  background: var(--purple-soft);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}

.client-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Utility */
.bg-light {
  background: var(--off-white) !important;
}

.text-gray {
  color: var(--gray-500);
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-info-section { padding: 32px; }
  .contact-form-wrapper { padding: 32px; }
  .value-card { padding: 28px; }
  .job-card { padding: 28px; }
  .benefit-card { padding: 28px; }
}

@media (max-width: 767.98px) {
  .contact-info-section { padding: 24px; }
  .contact-form-wrapper { padding: 24px; }
  .about-logo-img { height: 50px; }
  .job-header { flex-direction: column; }
  .btn-apply { width: 100%; justify-content: center; }

  /* Footer mobile premium */
  .main-footer { padding: 48px 0 0; }
  .footer-brand-text { font-size: 1.25rem; }
  .footer-tagline { font-size: 0.75rem; margin-bottom: 12px; }
  .footer-desc { font-size: 13px; margin-bottom: 16px; }
  .footer-title {
    font-size: 12px;
    margin-bottom: 16px;
    margin-top: 8px;
  }
  .footer-links li { margin-bottom: 8px; }
  .footer-links a { font-size: 13px; }
  .footer-contact-item { margin-bottom: 12px; }
  .footer-contact-item i { width: 32px; height: 32px; font-size: 13px; }
  .footer-contact-item span { font-size: 13px; }
  .footer-social a { width: 36px; height: 36px; font-size: 14px; }
  .footer-bottom {
    margin-top: 32px;
    padding: 16px 0;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom p { font-size: 12px; }
}
