/*
Theme Name: Glosix Systems
Theme URI: https://glosixsystems.co.uk
Author: Glosix Systems
Author URI: https://glosixsystems.co.uk
Description: Premium IT Staff Augmentation & Outsourcing WordPress Theme. Features cinematic scroll animations, glassmorphism design, and modern dark aesthetic.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: glosix
Domain Path: /languages
Tags: business, corporate, dark, responsive, scroll-animations
*/

/* ========================================
   CSS VARIABLES & BASE STYLES
   ======================================== */

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

:root {
  /* Colors */
  --navy: #0B0F17;
  --navy-light: #141B2A;
  --navy-dark: #070A10;
  --burgundy: #6B2A2A;
  --violet: #B58BFF;
  --violet-light: #C9A8FF;
  --violet-dark: #9A6EE6;
  --text-primary: #F4F6FF;
  --text-secondary: #fff;
  
  /* Typography */
  --font-sora: 'Sora', sans-serif;
  --font-inter: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  
  /* Spacing */
  --section-padding: 8rem;
  --container-padding: 1.5rem;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

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

body {
  font-family: var(--font-inter);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sora);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

img {
  max-width: 36%;
  height: auto;
  display: block;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (min-width: 1024px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* Micro Label */
.micro-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 1rem;
}

/* Glass Card */
.glass-card {
  background: rgba(11, 15, 23, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(244, 246, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.glass-card-hover {
  background: rgba(11, 15, 23, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(244, 246, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transition: all var(--transition-base);
}

.glass-card-hover:hover {
  border-color: rgba(244, 246, 255, 0.14);
  transform: scale(1.01);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--violet);
  color: var(--navy);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary:hover {
  background-color: var(--violet-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 30px rgba(181, 139, 255, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(244, 246, 255, 0.08);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(244, 246, 255, 0.14);
  transform: translateY(-2px);
}

/* Link Underline */
.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.link-underline:hover::after {
  transform: scaleX(1);
}

/* Grain Overlay */
.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Vignette Overlay */
.vignette-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(11,15,23,0.75) 0%, rgba(11,15,23,0.35) 50%, rgba(11,15,23,0.15) 100%);
}

/* Section Pinned */
.section-pinned {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

/* Background Image */
.bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Gradient Overlay */
.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,15,23,0.35), rgba(11,15,23,0.75));
  z-index: 2;
}

/* Text Colors */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-violet { color: var(--violet); }

/* Background Colors */
.bg-navy { background-color: var(--navy); }
.bg-violet { background-color: var(--violet); }

/* ========================================
   NAVIGATION
   ======================================== */

.site-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
}

.site-navigation.scrolled {
  background: rgba(11, 15, 23, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(244, 246, 255, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

@media (min-width: 1024px) {
  .nav-container {
    height: 5rem;
  }
}

.site-logo {
  font-family: var(--font-sora);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-menu a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.nav-menu a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.phone-link:hover {
  color: var(--text-primary);
}

.phone-link svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay a {
  font-family: var(--font-sora);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.mobile-menu-overlay a:hover {
  color: var(--violet);
}
.logo-img img {
    height: 45px !important;      /* yahan se size control hoga */
    width: auto !important;
    display: block;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-img img {
        height: 35px !important;
    }
}
/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-headline {
  max-width: 42rem;
}

.hero-headline h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 0.95;
}

.hero-headline p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 32rem;
}

.hero-card {
  padding: 1.5rem;
  max-width: 24rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .hero-card {
    padding: 2rem;
  }
}

.hero-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(181, 139, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--violet);
}

.service-item p:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.service-item p:last-child {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 246, 255, 0.08);
  margin-top: 1.5rem;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.hero-badges svg {
  width: 0.75rem;
  height: 0.75rem;
}

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

/* ========================================
   SERVICE SECTIONS
   ======================================== */

.service-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.service-content {
  position: relative;
  z-index: 5;
  width: 100%;
}

.service-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.service-headline {
  max-width: 36rem;
}

.service-icon-large {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(181, 139, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-large svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--violet);
}

.service-headline h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.service-headline p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-card {
  padding: 1.5rem;
  max-width: 24rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .service-card {
    padding: 2rem;
  }
}

.feature-list {
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(181, 139, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--violet);
}

/* ========================================
   TECH SPECIALIZATIONS
   ======================================== */

.tech-specs-grid {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
  margin-left: auto;
}

@media (min-width: 640px) {
  .tech-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.spec-card {
  padding: 1.25rem;
  cursor: pointer;
}

.spec-card .icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(181, 139, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: background var(--transition-base);
}

.spec-card:hover .icon-wrapper {
  background: rgba(181, 139, 255, 0.2);
}

.spec-card .icon-wrapper svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--violet);
}

.spec-card h3 {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.spec-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.spec-skills span {
  font-size: 0.625rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

/* ========================================
   TALENT SECTION
   ======================================== */

.talent-list {
  margin-bottom: 1.5rem;
}

.talent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: background var(--transition-base);
}

.talent-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.talent-item-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.talent-item-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(181, 139, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.talent-item-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--violet);
}

.talent-item p {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.talent-count {
  font-size: 0.75rem;
  color: var(--violet);
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */

.industries-section {
  position: relative;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .industries-section {
    padding: 8rem 0;
  }
}

.industries-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
}

.industries-headline {
  max-width: 24rem;
}

@media (min-width: 1024px) {
  .industries-headline {
    position: sticky;
    top: 8rem;
    align-self: start;
  }
}

.industries-headline h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.industries-headline p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.industry-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.industry-card {
  padding: 1.5rem;
}

.industry-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.industry-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(181, 139, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-base);
}

.industry-card:hover .industry-icon {
  background: rgba(181, 139, 255, 0.2);
}

.industry-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--violet);
}

.industry-info {
  flex: 1;
}

.industry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.industry-header h3 {
  font-size: 1.25rem;
}

.industry-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.industry-card:hover .industry-header svg {
  color: var(--violet);
  transform: translateX(4px);
}

.industry-info > p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.industry-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.industry-roles span {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

/* ========================================
   COMPLIANCE SECTION
   ======================================== */

.compliance-section {
  position: relative;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .compliance-section {
    padding: 8rem 0;
  }
}

.compliance-headline {
  max-width: 32rem;
  margin-bottom: 4rem;
}

.compliance-headline h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.compliance-headline p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.compliance-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .compliance-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.compliance-card {
  padding: 1.5rem;
}

.compliance-card .icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(181, 139, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.compliance-card .icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--violet);
}

.compliance-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.compliance-card .subtitle {
  font-size: 0.875rem;
  color: var(--violet);
  margin-bottom: 0.75rem;
}

.compliance-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
  position: relative;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .process-section {
    padding: 8rem 0;
  }
}

.process-headline {
  max-width: 32rem;
  margin-bottom: 4rem;
}

.process-headline h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.process-headline p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-timeline {
  position: relative;
}

.timeline-line {
  display: none;
}

@media (min-width: 1024px) {
  .timeline-line {
    display: block;
    position: absolute;
    top: 3.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(181, 139, 255, 0.5), var(--violet), rgba(181, 139, 255, 0.5));
    transform-origin: left;
  }
}

.process-steps {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.process-step {
  position: relative;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
}

.step-timeline-mobile {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--violet);
}

@media (min-width: 1024px) {
  .step-timeline-mobile {
    display: none;
  }
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.process-step .subtitle {
  font-size: 0.875rem;
  color: var(--violet);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.step-timeline {
  display: none;
}

@media (min-width: 1024px) {
  .step-timeline {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(167, 177, 198, 0.6);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
  }
}

/* ========================================
   PROOF SECTION
   ======================================== */

.proof-section {
  position: relative;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .proof-section {
    padding: 8rem 0;
  }
}

.proof-headline {
  text-align: center;
  margin-bottom: 4rem;
}

.proof-headline h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.stats-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-sora);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--violet);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-value span {
  font-size: 0.6em;
}

.stat-item p {
  color: var(--text-secondary);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-card svg {
  width: 2rem;
  height: 2rem;
  color: rgba(181, 139, 255, 0.5);
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(181, 139, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar span {
  font-family: var(--font-sora);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--violet);
}

.author-info p:first-child {
  font-weight: 500;
}

.author-info p:last-child {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 48rem;
}

.final-cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.final-cta-content p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
  position: relative;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 8rem 0;
  }
}

.contact-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 24rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(181, 139, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon-wrapper svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--violet);
}

.contact-item p:first-child {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.contact-item p:last-child,
.contact-item a {
  color: var(--text-primary);
}

.contact-item a:hover {
  color: var(--violet);
}

.contact-links {
  display: flex;
  gap: 1.5rem;
}

.contact-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.contact-links a:hover {
  color: var(--text-primary);
}

/* Contact Form */
.contact-form-wrapper {
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 246, 255, 0.08);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-inter);
  font-size: 0.875rem;
  transition: border-color var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(167, 177, 198, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(181, 139, 255, 0.5);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.select-wrapper {
  position: relative;
}

.select-wrapper svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-secondary);
  pointer-events: none;
}

.form-group textarea {
  resize: none;
  min-height: 6rem;
}

/* Footer */
.site-footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 246, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .site-footer {
    flex-direction: row;
  }
}

.site-footer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Count Animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* ========================================
   SELECTION
   ======================================== */

::selection {
  background: rgba(181, 139, 255, 0.3);
  color: var(--text-primary);
}

/* ========================================
   FOCUS STYLES
   ======================================== */

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

/* ========================================
   WORDPRESS DEFAULTS
   ======================================== */

/* Screen Reader Text */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Alignments */
.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Clearings */
.clear::before,
.clear::after,
.entry-content::before,
.entry-content::after,
.comment-content::before,
.comment-content::after,
.site-header::before,
.site-header::after,
.site-content::before,
.site-content::after,
.site-footer::before,
.site-footer::after {
  content: '';
  display: table;
  table-layout: fixed;
}

.clear::after,
.entry-content::after,
.comment-content::after,
.site-header::after,
.site-content::after,
.site-footer::after {
  clear: both;
}

#service_type {
    background-color: #0a0e15;
    color: #ffffff; 
    border: 1px solid #1c2230;
}
#role_needed {
	background-color: #0a0e15;
    color: #ffffff; 
    border: 1px solid #1c2230; 
}
