/* ============================================
   Login Overlay
   ============================================ */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-dark) 50%, #000a12 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.login-overlay.hidden {
  display: none;
}

.login-container {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.login-logo {
  margin-bottom: 1.5rem;
}

.login-logo img {
  height: 40px;
  margin: 0 auto;
}

.login-container h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.login-subtitle {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.login-form {
  text-align: left;
}

.login-form-group {
  margin-bottom: 1rem;
}

.login-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}

.login-form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.login-form-group input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.login-error {
  display: none;
  color: #dc2626;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: #fef2f2;
  border-radius: 0.375rem;
  border: 1px solid #fecaca;
}

.login-error.show {
  display: block;
}

.login-btn {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.login-footer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ============================================
   CPT Associates - Main Stylesheet
   Matching Original Design
   ============================================ */

/* ============================================
   CSS Variables - BOLD/VIBRANT PALETTE
   #011627 #ff0022 #41ead4 #fdfffc #b91372
   ============================================ */
:root {
  /* Brand Colors - Deep Navy for hero */
  --hero-dark: #011627;
  --hero-gradient-start: #021d34;
  --hero-gradient-end: #011627;
  --hero-accent: #ff0022;
  
  /* Cyan accent colors */
  --brand-primary: #41ead4;
  --brand-secondary: #2dd4bf;
  --brand-light: #6fefdc;
  --brand-dark: #0e7c71;
  --brand-deep: #064e45;
  
  /* Red/Magenta accent for highlights */
  --accent-red: #ff0022;
  --accent-magenta: #b91372;
  
  /* Neutral Colors - Cool tinted */
  --white: #fdfffc;
  --gray-50: #f8faf9;
  --gray-100: #f0f4f3;
  --gray-200: #e0e6e4;
  --gray-300: #c8d2cf;
  --gray-400: #94a3a0;
  --gray-500: #647773;
  --gray-600: #475753;
  --gray-700: #334340;
  --gray-800: #1e2d2a;
  --gray-900: #0f1a18;
  
  /* Typography */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 5rem;
  --container-max: 1200px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  
  /* Shadows - cyan tint */
  --shadow-sm: 0 1px 2px 0 rgb(1 22 39 / 0.08);
  --shadow-md: 0 4px 6px -1px rgb(1 22 39 / 0.12), 0 2px 4px -2px rgb(1 22 39 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(1 22 39 / 0.12), 0 4px 6px -4px rgb(1 22 39 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(1 22 39 / 0.12), 0 8px 10px -6px rgb(1 22 39 / 0.1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(1, 22, 39, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), 0 10px 40px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(65, 234, 212, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--white);
  transition: color var(--transition-fast);
}

.header.scrolled .nav-link {
  color: var(--white);
}

.nav-link:hover {
  color: var(--brand-light);
}

.header.scrolled .nav-link:hover {
  color: var(--brand-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

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

.header.scrolled .btn-primary {
  background: var(--brand-primary);
  color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
}

.header.scrolled .mobile-menu-toggle span {
  background: var(--white);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile .nav-links {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.nav-mobile .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--gray-700);
}

.nav-mobile .nav-link:hover {
  color: var(--brand-primary);
  background: var(--gray-50);
}

.nav-mobile .btn {
  margin-top: 0.5rem;
}

/* ============================================
   Hero Section - Neon Cyberpunk Style
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-dark) 50%, #000a12 100%);
  overflow: hidden;
}

/* Neon glow orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse 500px 500px at 20% 30%, rgba(65, 234, 212, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 400px 400px at 80% 20%, rgba(255, 0, 34, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse 350px 350px at 40% 80%, rgba(185, 19, 114, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse 300px 300px at 70% 70%, rgba(65, 234, 212, 0.1) 0%, transparent 40%);
  animation: heroGradientMove 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGradientMove {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(2%, 1%) rotate(1deg);
  }
  50% {
    transform: translate(-1%, 2%) rotate(-1deg);
  }
  75% {
    transform: translate(1%, -1%) rotate(0.5deg);
  }
}

/* Grid lines overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(65, 234, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 234, 212, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero .highlight {
  color: var(--brand-primary);
  display: block;
  background: linear-gradient(135deg, #41ead4 0%, #2dd4bf 50%, #ff0022 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.hero .btn-primary {
  background: var(--brand-primary);
}

.hero .btn-primary:hover {
  background: var(--brand-secondary);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: fadeInUp 1s ease 1.5s backwards;
}

.scroll-indicator-icon {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color 0.3s ease;
}

.scroll-indicator-icon:hover {
  border-color: rgba(255,255,255,0.7);
}

.scroll-indicator-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ============================================
   Trusted Partners Section
   ============================================ */
.trusted {
  padding: 6rem 0;
  background: var(--white);
}

.trusted-header {
  text-align: center;
  margin-bottom: 4rem;
}

.trusted-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.trusted-grid {
  display: grid;
  gap: 4rem;
}

.trusted-column {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.trusted-column.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.trusted-column h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trusted-column h3 svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
}

.trusted-column > p {
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  font-size: 1rem;
}

.trusted-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.trusted-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  padding: 0.5rem 0;
  transition: transform 0.2s ease;
}

.trusted-list-item:hover {
  transform: translateX(4px);
}

.trusted-list-item svg {
  width: 20px;
  height: 20px;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   Services Section - Dark with neon accents
   ============================================ */
.services {
  padding: 6rem 0;
  background: var(--hero-dark);
  position: relative;
}

/* Grid lines texture */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(65, 234, 212, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 234, 212, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
  z-index: 1;
}

.section-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Dark section header variant */
.services .section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.services .section-header p {
  color: rgba(253, 255, 252, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

.services-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(253, 255, 252, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(65, 234, 212, 0.1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.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(90deg, var(--brand-primary), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(65, 234, 212, 0.15), 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(65, 234, 212, 0.3);
  background: rgba(253, 255, 252, 0.06);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

/* Different icon colors - Neon palette */
.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, #41ead4, #2dd4bf); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #ff0022, #cc001b); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #b91372, #8f0f59); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #41ead4, #0e7c71); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #ff0022, #b91372); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #2dd4bf, #41ead4); }

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  color: var(--white);
}

.service-card:hover h3 {
  color: var(--brand-primary);
}

.service-card p {
  color: rgba(253, 255, 252, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.service-card p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   Experience/Sectors Section - Clean with gradient
   ============================================ */
.experience {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(65, 234, 212, 0.05) 100%);
  position: relative;
}

/* Subtle dot pattern */
.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(1, 22, 39, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.experience-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.experience-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(65, 234, 212, 0.15);
}

.experience-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.experience-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(65, 234, 212, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.experience-card:hover {
  background: var(--white);
  box-shadow: 0 15px 35px rgba(1, 22, 39, 0.1), 0 5px 15px rgba(1, 22, 39, 0.05);
  transform: translateY(-4px);
  border-color: var(--brand-primary);
}

.experience-card:hover::after {
  opacity: 1;
}

.experience-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.experience-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--hero-dark), var(--hero-gradient-start));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover .experience-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px rgba(65, 234, 212, 0.4);
}

.experience-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.experience-card h3 {
  font-size: 1.0625rem;
}

.experience-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.contact-info {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-info.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  font-size: 1.0625rem;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--gray-700);
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: inline-flex;
}

.contact-email:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.contact-email svg {
  width: 20px;
  height: 20px;
  color: var(--brand-primary);
}

.contact-email a {
  color: var(--gray-700);
  transition: color var(--transition-fast);
  font-weight: 500;
}

.contact-email a:hover {
  color: var(--brand-primary);
}

/* Contact Form */
.contact-form-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.contact-form-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  background: var(--white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: var(--brand-primary);
  color: var(--white);
  margin-top: 0.5rem;
}

.contact-form .btn:hover {
  background: var(--brand-secondary);
}

.form-success {
  display: none;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
  border: 1px solid var(--brand-primary);
  border-radius: 0.75rem;
  color: var(--brand-dark);
  text-align: center;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

/* ============================================
   Footer - Dark neon theme
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--hero-dark) 0%, #000a12 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
}

/* Grid lines */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(65, 234, 212, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 234, 212, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-brand p {
  color: rgba(253, 255, 252, 0.6);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}

.footer h4 {
  font-size: 1rem;
  color: var(--brand-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  color: rgba(253, 255, 252, 0.6);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  display: inline-block;
}

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

.social-links {
  display: flex;
  gap: 0.875rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(65, 234, 212, 0.08);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(65, 234, 212, 0.15);
}

.social-link:hover {
  background: var(--brand-primary);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(65, 234, 212, 0.5);
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: rgba(253, 255, 252, 0.6);
  transition: color 0.2s ease;
}

.social-link:hover svg {
  color: var(--hero-dark);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(65, 234, 212, 0.1);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* ============================================
   Who We Are Page
   ============================================ */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-dark) 50%, #000a12 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse 400px 400px at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 300px 300px at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  animation: heroGradientMove 20s ease-in-out infinite;
  pointer-events: none;
}

.page-header h1 {
  position: relative;
  font-size: 2.75rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.page-header p {
  position: relative;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
}

.team-intro {
  padding: 4rem 0 2rem;
  text-align: center;
}

.team-intro p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--gray-600);
  line-height: 1.9;
  font-size: 1.0625rem;
}

.team-section {
  padding: 0 0 5rem;
}

/* 3-Column Director Grid */
.team-grid {
  display: grid;
  gap: 1.5rem;
}

/* Director Card - 3 column style */
.director-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.director-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.team-grid .director-card:nth-child(1) { transition-delay: 0s; }
.team-grid .director-card:nth-child(2) { transition-delay: 0.15s; }
.team-grid .director-card:nth-child(3) { transition-delay: 0.3s; }

.director-card-inner {
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.director-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--brand-primary);
  margin: 0 auto 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-card:hover .director-image {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.25);
}

.director-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-header {
  text-align: center;
  margin-bottom: 1rem;
}

.director-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.director-header .role {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.education-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--gray-100);
  padding: 0.375rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.education-badge svg {
  width: 14px;
  height: 14px;
}

.director-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.director-location svg {
  width: 14px;
  height: 14px;
}

.director-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.director-contact a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-600);
  transition: color var(--transition-fast);
}

.director-contact a:hover {
  color: var(--brand-primary);
}

.director-contact svg {
  width: 14px;
  height: 14px;
}

.director-bio {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  text-align: left;
}

.director-bio::before {
  content: '"';
}

.director-bio::after {
  content: '"';
}

/* Director Sections */
.director-section {
  margin-bottom: 1.25rem;
}

.director-section:last-child {
  margin-bottom: 0;
}

.director-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.director-section-title svg {
  width: 16px;
  height: 16px;
  color: var(--gray-500);
}

.director-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.director-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.director-list-item::before {
  content: '•';
  color: var(--brand-primary);
  font-weight: bold;
  flex-shrink: 0;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.achievement-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--brand-primary);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

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

.back-to-top:hover {
  background: var(--brand-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.5);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.25rem;
  }
  
  .hero .highlight {
    display: inline;
  }
  
  .trusted-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .director-contact {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .nav-desktop {
    display: flex;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1875rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* 3-column team grid */
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero-content {
    max-width: 900px;
  }
  
  .section-header h2,
  .trusted-header h2 {
    font-size: 2.5rem;
  }
  
  .contact-info h2 {
    font-size: 2.25rem;
  }
}

/* Extra Large Desktop */
@media (min-width: 1280px) {
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .container {
    max-width: 1280px;
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Loading State */
body.loading {
  opacity: 0;
}

body.loaded {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for grid items */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.5s; }

.experience-grid .experience-card:nth-child(1) { transition-delay: 0s; }
.experience-grid .experience-card:nth-child(2) { transition-delay: 0.1s; }
.experience-grid .experience-card:nth-child(3) { transition-delay: 0.2s; }
.experience-grid .experience-card:nth-child(4) { transition-delay: 0.3s; }
.experience-grid .experience-card:nth-child(5) { transition-delay: 0.4s; }
.experience-grid .experience-card:nth-child(6) { transition-delay: 0.5s; }

.trusted-column:nth-child(1) { transition-delay: 0s; }
.trusted-column:nth-child(2) { transition-delay: 0.15s; }
