/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colors */
  --primary-color: #0A1F44;
  --accent-color: #1E90FF;
  --secondary-color: #00A8A8;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --bg-light: #F5F7FA;
  --bg-gray: #E4E7EB;
  --gradient-primary: linear-gradient(135deg, #0A1F44, #1E90FF);
  --gradient-secondary: linear-gradient(135deg, #1E90FF, #00A8A8);
  --gradient-hero: linear-gradient(135deg, #0A1F44 0%, #1E90FF 50%, #00A8A8 100%);
  
  /* Typography */
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 100px 0;
  --element-spacing: 2rem;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --shadow-light: 0 4px 20px rgba(10, 31, 68, 0.1);
  --shadow-medium: 0 8px 30px rgba(10, 31, 68, 0.15);
  --shadow-heavy: 0 15px 50px rgba(10, 31, 68, 0.2);
  
  /* Border Radius */
  --radius-small: 8px;
  --radius-medium: 16px;
  --radius-large: 24px;
  --radius-full: 50px;
}

/* ===== ENHANCED CSS RESET ===== */
/* Comprehensive reset to eliminate all browser defaults */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove default margins and padding from all elements */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--text-light);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
  color: var(--text-light);
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid var(--text-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

.loader-text {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--primary-color);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gradient-secondary);
  color: var(--text-light);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.section-description {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
  animation: fadeInUp 0.6s ease 0.4s both;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-fast);
}

.header.scrolled {
  background: rgba(10, 31, 68, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-light);
}

.nav {
  padding: 20px 0;
  transition: padding var(--transition-fast);
}

.header.scrolled .nav {
  padding: 15px 0;
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo-link {
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

/* Logo Image Styles */
.logo-image {
  height: 65px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: all var(--transition-fast);
  filter: brightness(1.1);
}

.logo-image:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Footer Logo Image Styles */
.footer-logo-image {
  height: 55px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: all var(--transition-fast);
  filter: brightness(1.1);
}

.footer-logo-image:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Legacy text logo styles - kept for fallback */
.logo-text {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  line-height: 1;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle-line {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  transition: all var(--transition-fast);
}

/* ===== MAIN CONTENT ===== */
main {
  flex: 1;
}

/* ===== ENHANCED HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Hero Background Image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Advanced 3D Background System */
.hero-gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(30, 144, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 168, 168, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0A1F44 0%, #1E90FF 50%, #00A8A8 100%);
}

.hero-geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  border-radius: 20px;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  border-radius: 50%;
  animation-delay: 1s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 30%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 2s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  bottom: 30%;
  left: 20%;
  border-radius: 30px;
  transform: rotate(30deg);
  animation-delay: 3s;
}

.shape-5 {
  width: 40px;
  height: 40px;
  top: 70%;
  left: 70%;
  border-radius: 50%;
  animation-delay: 4s;
}

.shape-6 {
  width: 70px;
  height: 70px;
  top: 15%;
  right: 25%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
  animation: hexagonSpin 8s linear infinite;
  animation-delay: 1.5s;
}

.shape-7 {
  width: 50px;
  height: 50px;
  top: 45%;
  left: 5%;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.4), rgba(0, 168, 168, 0.4));
  border-radius: 10px;
  animation: diamondPulse 6s ease-in-out infinite;
  animation-delay: 2.5s;
}

.shape-8 {
  width: 90px;
  height: 90px;
  bottom: 20%;
  right: 10%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.2), transparent, rgba(255, 105, 180, 0.3), transparent);
  animation: gradientSpin 10s linear infinite;
  animation-delay: 3s;
}

.shape-9 {
  width: 35px;
  height: 35px;
  top: 80%;
  left: 30%;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.6), rgba(255, 20, 147, 0.4));
  animation: starTwinkle 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.shape-10 {
  width: 110px;
  height: 60px;
  top: 25%;
  left: 25%;
  border-radius: 30px;
  background: rgba(138, 43, 226, 0.3);
  transform: perspective(500px) rotateX(30deg);
  animation: morphShape 7s ease-in-out infinite;
  animation-delay: 4.5s;
}

.shape-11 {
  width: 45px;
  height: 45px;
  top: 55%;
  right: 35%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(0, 255, 255, 0.3), transparent);
  animation: orbitFloat 12s linear infinite;
  animation-delay: 1s;
}

.shape-12 {
  width: 65px;
  height: 65px;
  bottom: 40%;
  left: 15%;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  background: linear-gradient(45deg, rgba(50, 205, 50, 0.4), rgba(0, 255, 127, 0.3));
  animation: octagonRotate 9s ease-in-out infinite;
  animation-delay: 2s;
}

.shape-13 {
  width: 30px;
  height: 80px;
  top: 35%;
  right: 5%;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255, 69, 0, 0.4), rgba(255, 140, 0, 0.3));
  transform: perspective(300px) rotateY(45deg);
  animation: prismFloat 8s ease-in-out infinite;
  animation-delay: 3.5s;
}

.shape-14 {
  width: 55px;
  height: 55px;
  bottom: 60%;
  right: 20%;
  border-radius: 50% 10% 50% 10%;
  background: linear-gradient(45deg, rgba(255, 20, 147, 0.4), rgba(138, 43, 226, 0.3));
  animation: blobMorph 6s ease-in-out infinite;
  animation-delay: 1.8s;
}

.shape-15 {
  width: 75px;
  height: 25px;
  top: 65%;
  left: 60%;
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(0, 191, 255, 0.4), rgba(30, 144, 255, 0.3));
  transform: perspective(400px) rotateX(60deg);
  animation: ellipseFloat 10s ease-in-out infinite;
  animation-delay: 2.8s;
}

.hero-particles-advanced {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 75%, rgba(30, 144, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(0, 168, 168, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: particleFloat 10s ease-in-out infinite;
}

.hero-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 800px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  transition: all 0.3s ease;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  padding-top: 120px;
}

/* Floating Metrics Particles */
.hero-floating-metrics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.metric-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: particleFloat 8s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}

.metric-particle:nth-child(1) {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.metric-particle:nth-child(2) {
  top: 45%;
  right: 8%;
  animation-delay: 4s;
}

.metric-particle:nth-child(3) {
  top: 70%;
  right: 20%;
  animation-delay: 6s;
}

.metric-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.metric-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Badge */
.hero-badge-enhanced {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: badgeFloat 3s ease-in-out infinite;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(30, 144, 255, 0.3), transparent);
  animation: badgeRotate 4s linear infinite;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-line {
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-subline {
  font-size: 0.7rem;
  opacity: 0.8;
}

.badge-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transform: translate(-50%, -50%);
  animation: badgePulse 2s ease-in-out infinite;
}

/* Interactive Typography */
.hero-title-enhanced {
  font-family: var(--font-primary);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 30px;
  perspective: 1000px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.title-word {
  display: inline-block;
  margin: 0 0.2em;
  position: relative;
  animation: titleReveal 0.8s ease forwards;
  opacity: 0;
  transform: translateY(50px) rotateX(90deg);
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.5s; }
.title-word:nth-child(5) { animation-delay: 0.7s; }

/* Ensure all title words are visible */
.title-word {
  opacity: 1 !important;
  transform: translateY(0px) rotateX(0deg) !important;
}

.highlight-3d {
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: highlightShine 3s ease-in-out infinite;
  position: relative;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.highlight-3d::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translate(2px, 2px);
  opacity: 0.3;
}

/* Enhanced Description */
.hero-description-enhanced {
  margin-bottom: 50px;
}

.typewriter-text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  overflow: visible;
  border-right: 2px solid var(--accent-color);
  white-space: normal;
  animation: typewriter 4s steps(40) 1s forwards, blink 1s infinite;
  width: 100%;
  max-width: 100%;
}

/* Advanced Buttons */
.hero-buttons-enhanced {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.btn-3d {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(45deg, #1E90FF, #00A8A8);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
  z-index: 1;
}

.btn-3d .btn-text,
.btn-3d .btn-icon {
  position: relative;
  z-index: 2;
}

.btn-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #0A1F44, #1E90FF);
  transform: translateZ(-10px);
  border-radius: 50px;
  z-index: -1;
}

.btn-3d:hover {
  transform: translateY(-5px) rotateX(10deg);
  box-shadow: 0 20px 40px rgba(30, 144, 255, 0.4);
}

.btn-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 10px 10px;
  animation: particleMove 2s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-3d:hover .btn-particles {
  opacity: 1;
}


.btn-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.btn-glass:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

/* Glassmorphism Stats Cards */
.hero-stats-enhanced {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-card-glass {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  min-width: 160px;
  transition: all 0.3s ease;
  animation: statFloat 3s ease-in-out infinite;
  overflow: hidden;
}

.stat-card-glass:nth-child(2) {
  animation-delay: 0.5s;
}

.stat-card-glass:nth-child(3) {
  animation-delay: 1s;
}

.stat-card-glass:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--text-light);
}

.stat-number-enhanced {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label-enhanced {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Contact page specific stat card styles */
.contact-hero .stat-number-enhanced {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero .stat-label-enhanced {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(30, 144, 255, 0.2), transparent);
  animation: statGlow 6s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card-glass:hover .stat-glow {
  opacity: 1;
}

/* Floating Action Bubble */
.floating-action-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.bubble-main {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
  transition: all 0.3s ease;
  animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-main:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(30, 144, 255, 0.4);
}

.bubble-actions {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-action-bubble:hover .bubble-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.bubble-action {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.bubble-action:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.bubble-action::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 55px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bubble-action:hover::before {
  opacity: 1;
}

/* Scroll Indicator (Visual Only) */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-light);
  animation: scrollBounce 3s ease-in-out infinite;
  z-index: 10;
  user-select: none;
  pointer-events: none;
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: arrowBounce 2s ease-in-out infinite;
}



/* Advanced Animations */
@keyframes meshFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

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

@keyframes dashboardFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(5deg); }
}

@keyframes chartGrow {
  0% { transform: scaleY(0.8); }
  100% { transform: scaleY(1); }
}

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

@keyframes badgeRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes badgePulse {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0px) rotateX(0deg);
  }
}

@keyframes highlightShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes typewriter {
  to { width: 100%; }
}

@keyframes blink {
  0%, 50% { border-color: var(--accent-color); }
  51%, 100% { border-color: transparent; }
}

@keyframes particleMove {
  0% { background-position: 0 0; }
  100% { background-position: 20px 20px; }
}

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

@keyframes statGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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


@keyframes quoteFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(5deg); }
}

@keyframes quoteGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes calculatorFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(3deg); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(5px); }
}

@keyframes calculatorGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== NEW 3D SHAPE ANIMATIONS ===== */
@keyframes hexagonSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes diamondPulse {
  0%, 100% { transform: rotate(45deg) scale(1); opacity: 0.6; }
  50% { transform: rotate(45deg) scale(1.3); opacity: 1; }
}

@keyframes gradientSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes starTwinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  25% { transform: scale(1.2) rotate(90deg); opacity: 1; }
  50% { transform: scale(0.8) rotate(180deg); opacity: 0.6; }
  75% { transform: scale(1.1) rotate(270deg); opacity: 1; }
}

@keyframes morphShape {
  0% { transform: perspective(500px) rotateX(30deg) scale(1); border-radius: 30px; }
  25% { transform: perspective(500px) rotateX(60deg) scale(1.1); border-radius: 50%; }
  50% { transform: perspective(500px) rotateX(90deg) scale(0.9); border-radius: 10px; }
  75% { transform: perspective(500px) rotateX(120deg) scale(1.05); border-radius: 40px; }
  100% { transform: perspective(500px) rotateX(30deg) scale(1); border-radius: 30px; }
}

@keyframes orbitFloat {
  0% { transform: translateX(0px) translateY(0px) rotate(0deg); }
  25% { transform: translateX(30px) translateY(-20px) rotate(90deg); }
  50% { transform: translateX(0px) translateY(-40px) rotate(180deg); }
  75% { transform: translateX(-30px) translateY(-20px) rotate(270deg); }
  100% { transform: translateX(0px) translateY(0px) rotate(360deg); }
}

@keyframes octagonRotate {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.1); }
  50% { transform: rotate(180deg) scale(0.9); }
  75% { transform: rotate(270deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes prismFloat {
  0%, 100% { transform: perspective(300px) rotateY(45deg) translateY(0px); }
  33% { transform: perspective(300px) rotateY(135deg) translateY(-15px); }
  66% { transform: perspective(300px) rotateY(225deg) translateY(-10px); }
}

@keyframes blobMorph {
  0% { border-radius: 50% 10% 50% 10%; transform: rotate(0deg) scale(1); }
  25% { border-radius: 10% 50% 10% 50%; transform: rotate(90deg) scale(1.1); }
  50% { border-radius: 50% 50% 10% 10%; transform: rotate(180deg) scale(0.9); }
  75% { border-radius: 10% 10% 50% 50%; transform: rotate(270deg) scale(1.05); }
  100% { border-radius: 50% 10% 50% 10%; transform: rotate(360deg) scale(1); }
}

@keyframes ellipseFloat {
  0%, 100% { transform: perspective(400px) rotateX(60deg) translateY(0px) scale(1); }
  33% { transform: perspective(400px) rotateX(30deg) translateY(-20px) scale(1.1); }
  66% { transform: perspective(400px) rotateX(90deg) translateY(-10px) scale(0.95); }
}

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

@keyframes countUp {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); color: #10B981; }
  100% { transform: scale(1); }
}

@keyframes badgeShine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #00A8A8 0%, rgba(0, 168, 168, 0.8) 20%, rgba(0, 168, 168, 0.4) 50%, rgba(245, 247, 250, 0.9) 80%, #F5F7FA 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 25%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(0, 168, 168, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: servicesParticleFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(0, 168, 168, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(30, 144, 255, 0.15) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 60px 60px;
  animation: servicesPatternMove 30s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: var(--radius-large);
  box-shadow: 
    0 10px 30px rgba(0, 168, 168, 0.1),
    0 4px 20px rgba(30, 144, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 168, 168, 0.1);
  animation: serviceCardFloat 6s ease-in-out infinite;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 1s; }
.service-card:nth-child(3) { animation-delay: 2s; }
.service-card:nth-child(4) { animation-delay: 3s; }
.service-card:nth-child(5) { animation-delay: 4s; }
.service-card:nth-child(6) { animation-delay: 5s; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00A8A8 0%, #1E90FF 50%, #0A1F44 100%);
  transition: left 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 168, 168, 0.1),
    transparent,
    rgba(30, 144, 255, 0.1),
    transparent
  );
  animation: serviceCardGlow 8s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-card:hover::before {
  left: 0;
}

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

.service-card:hover {
  transform: translateY(-15px) rotateX(5deg) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 168, 168, 0.2),
    0 15px 35px rgba(30, 144, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(45deg, #00A8A8, #1E90FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--text-light);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 
    0 10px 25px rgba(0, 168, 168, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #00A8A8, #1E90FF, #FFD700);
  border-radius: 50%;
  z-index: -1;
  animation: serviceIconGlow 4s ease-in-out infinite;
  opacity: 0;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  transform: scale(1.15) rotateY(180deg);
  box-shadow: 
    0 20px 40px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.service-card:hover .service-icon::before {
  opacity: 1;
}

.service-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-description {
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.service-card:hover .service-link {
  color: var(--text-light);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--section-padding);
  position: relative;
  z-index: 10;
  background: var(--text-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  animation: fadeInLeft 0.8s ease;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #666;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about-visual {
  animation: fadeInRight 0.8s ease;
}

.about-image {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  height: 400px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-large);
  transition: transform 0.6s ease;
}

.about-image:hover .about-img {
  transform: scale(1.05);
}

.image-placeholder {
  font-size: 4rem;
  color: var(--text-light);
  opacity: 0.7;
}

/* ===== USPS SECTION ===== */
.usps {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.usp-card {
  background: var(--text-light);
  padding: 40px 30px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: all var(--transition-medium);
  animation: fadeInUp 0.6s ease;
}

.usp-card:nth-child(2) {
  animation-delay: 0.2s;
}

.usp-card:nth-child(3) {
  animation-delay: 0.4s;
}

.usp-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.usp-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-light);
  transition: all var(--transition-medium);
}

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

.usp-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.usp-description {
  line-height: 1.6;
  color: #666;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: var(--section-padding);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
}

.testimonial-card {
  display: none;
  background: var(--text-light);
  padding: 50px 40px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
  display: block;
}

.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--accent-color);
  font-weight: bold;
}

.author-name {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.author-position {
  color: #666;
  font-size: 0.9rem;
}

.testimonials-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  transform: scale(1.1);
}

.testimonials-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background: var(--accent-color);
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.case-study-card {
  background: var(--text-light);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  animation: fadeInUp 0.6s ease;
}

.case-study-card:nth-child(2) {
  animation-delay: 0.2s;
}

.case-study-card:nth-child(3) {
  animation-delay: 0.4s;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.case-study-image {
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}

.case-study-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-study-card:hover .case-study-img {
  transform: scale(1.1);
}

.case-study-content {
  padding: 30px;
}

.case-study-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.case-study-description {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  text-align: center;
}

.case-study-metrics {
  display: flex;
  gap: 30px;
}

.metric {
  text-align: center;
}

.metric-value {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: var(--section-padding);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: float 8s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

.cta-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--text-light);
}

.cta-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.contact-item i {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  margin-top: auto;
  margin-bottom: 0;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo .logo-text {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.footer-logo .logo-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.8;
  display: block;
  line-height: 1;
}

.footer-description {
  margin: 20px 0 30px;
  opacity: 0.8;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0.8;
}

.contact-detail i {
  margin-top: 2px;
  color: var(--accent-color);
}

/* Footer Certifications Section */
.footer-certifications {
  padding: 50px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.certifications-container {
  max-width: 800px;
  margin: 0 auto;
}

.certifications-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 0.5px;
}

.certifications-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.certification-item {
  transition: all 0.4s ease;
}

.certification-item:hover {
  transform: translateY(-5px);
}

.certification-circle {
  width: 100px;
  height: 100px;
  background: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 
    0 8px 25px rgba(255, 255, 255, 0.1),
    0 4px 15px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.certification-circle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(30, 144, 255, 0.1),
    transparent,
    rgba(0, 168, 168, 0.1),
    transparent
  );
  animation: certificationGlow 8s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.certification-item:hover .certification-circle::before {
  opacity: 1;
}

.certification-item:hover .certification-circle {
  transform: scale(1.1);
  box-shadow: 
    0 15px 40px rgba(255, 255, 255, 0.2),
    0 8px 25px rgba(255, 255, 255, 0.1);
}

.certification-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.certification-item:hover .certification-logo {
  transform: scale(1.05);
}

/* Certification Animation */
@keyframes certificationGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile Responsive for Certifications */
@media (max-width: 768px) {
  .footer-certifications {
    padding: 40px 0;
    margin-top: 40px;
  }
  
  .certifications-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  
  .certifications-grid {
    gap: 30px;
  }
  
  .certification-circle {
    width: 80px;
    height: 80px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .footer-certifications {
    padding: 30px 0;
    margin-top: 30px;
  }
  
  .certifications-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
  
  .certifications-grid {
    gap: 20px;
  }
  
  .certification-circle {
    width: 70px;
    height: 70px;
    padding: 10px;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin: 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-title-enhanced {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .cta-title {
    font-size: 3rem;
  }
  
  .hero-stats-enhanced {
    gap: 20px;
  }
  
  .hero-dashboard {
    right: -150px;
    top: -30px;
  }
  
  .dashboard-card {
    width: 240px;
    padding: 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .floating-shape {
    display: none;
  }
  
  /* Stats section responsive adjustments */
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .stat-card-enhanced {
    padding: 35px 25px;
  }
  
  .stat-icon-enhanced {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .stat-number-counter,
  .stat-number-display {
    font-size: 3rem;
  }
  
  .stat-plus,
  .stat-percent,
  .stat-suffix {
    font-size: 2rem;
  }
  
  .stats-floating-shape {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Logo responsive styles for mobile */
  .logo-image {
    height: 50px;
    max-width: 200px;
  }
  
  .footer-logo-image {
    height: 45px;
    max-width: 180px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left var(--transition-medium);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero-title-enhanced {
    font-size: 2.8rem;
  }
  
  .typewriter-text {
    font-size: 1.2rem;
  }
  
  .hero-buttons-enhanced {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-stats-enhanced {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .hero-dashboard {
    display: none;
  }
  
  .floating-action-bubble {
    bottom: 20px;
    right: 20px;
  }
  
  .bubble-main {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .bubble-action {
    width: 40px;
    height: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .usps-grid {
    grid-template-columns: 1fr;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  /* Stats section mobile responsive */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-card-enhanced {
    padding: 30px 20px;
  }
  
  .stat-icon-enhanced {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .stat-number-counter,
  .stat-number-display {
    font-size: 2.5rem;
  }
  
  .stat-plus,
  .stat-percent,
  .stat-suffix {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 1.1rem;
  }
  
  .stats-cta-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  /* Logo responsive styles for small mobile */
  .logo-image {
    height: 45px;
    max-width: 180px;
  }
  
  .footer-logo-image {
    height: 40px;
    max-width: 160px;
  }

  .container {
    padding: 0 15px;
  }
  
  .hero-title-enhanced {
    font-size: 2.2rem;
  }
  
  .hero-badge-enhanced {
    padding: 12px 20px;
  }
  
  .badge-line {
    font-size: 0.8rem;
  }
  
  .badge-subline {
    font-size: 0.6rem;
  }
  
  .typewriter-text {
    font-size: 1rem;
    white-space: normal;
    border-right: none;
    animation: none;
    width: auto;
  }
  
  .btn-3d,
  .btn-glass {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  
  .stat-card-glass {
    min-width: 140px;
    padding: 20px 15px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .stat-number-enhanced {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .service-card,
  .usp-card {
    padding: 30px 20px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .case-study-content {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .floating-action-bubble {
    bottom: 15px;
    right: 15px;
  }
  
  .bubble-main {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .bubble-actions {
    bottom: 55px;
  }
  
  .bubble-action {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
  
  /* Footer Certifications Responsive */
  .footer-certifications {
    padding: 40px 0;
    margin-top: 40px;
  }
  
  .certifications-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  
  .certifications-grid {
    gap: 30px;
  }
  
  .certification-circle {
    width: 80px;
    height: 80px;
    padding: 12px;
  }
}

/* ===== REDUCED MOTION PREFERENCES ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .typewriter-text {
    animation: none;
    width: auto;
    border-right: none;
  }
  
  .title-word {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .floating-shape {
    animation: none;
  }
  
  .hero-gradient-mesh {
    animation: none;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

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

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

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


/* ===== SERVICE VISUAL ELEMENTS ===== */
.service-visual-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Lead Generation Funnel Graphic */
.funnel-graphic {
  position: absolute;
  top: 20%;
  right: 8%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: funnelFloat 6s ease-in-out infinite;
}

.funnel-stage {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.funnel-stage:hover::before {
  left: 100%;
}

.funnel-top {
  width: 180px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.2), rgba(0, 168, 168, 0.2));
}

.funnel-middle {
  width: 140px;
  margin-left: 20px;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.2), rgba(16, 185, 129, 0.2));
}

.funnel-bottom {
  width: 100px;
  margin-left: 40px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.2));
}

.funnel-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.funnel-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Target Graphic */
.target-graphic {
  position: absolute;
  top: 60%;
  right: 15%;
  width: 120px;
  height: 120px;
  animation: targetPulse 4s ease-in-out infinite;
}

.target-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: targetRipple 3s ease-in-out infinite;
}

.target-outer {
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.target-middle {
  width: 80px;
  height: 80px;
  top: 20px;
  left: 20px;
  animation-delay: 0.5s;
}

.target-inner {
  width: 40px;
  height: 40px;
  top: 40px;
  left: 40px;
  animation-delay: 1s;
}

.target-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
  animation: targetCenter 2s ease-in-out infinite;
}

/* Appointment Generation Calendar Graphic */
.calendar-graphic {
  position: absolute;
  top: 25%;
  right: 10%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  animation: calendarFloat 5s ease-in-out infinite;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-light);
  font-weight: 600;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  width: 200px;
}

.calendar-day {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.calendar-day.booked {
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  color: var(--text-light);
  animation: calendarPulse 2s ease-in-out infinite;
}

.calendar-day.available {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Email Marketing Dashboard */
.email-dashboard {
  position: absolute;
  top: 30%;
  right: 8%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  width: 250px;
  animation: dashboardFloat 6s ease-in-out infinite;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.dashboard-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.stat-value {
  font-weight: 700;
  color: var(--text-light);
}

.stat-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 5px;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 3px;
  animation: statGrow 3s ease-in-out infinite;
}

/* Account Network Graphic */
.account-network {
  position: absolute;
  top: 25%;
  right: 10%;
  width: 200px;
  height: 200px;
  animation: networkFloat 7s ease-in-out infinite;
}

.network-node {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  animation: nodePulse 3s ease-in-out infinite;
}

.network-node.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-color: var(--text-light);
  font-size: 1.4rem;
  animation-delay: 0s;
}

.network-node.node-1 {
  top: 10%;
  left: 30%;
  animation-delay: 0.5s;
}

.network-node.node-2 {
  top: 20%;
  right: 10%;
  animation-delay: 1s;
}

.network-node.node-3 {
  bottom: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

.network-node.node-4 {
  bottom: 10%;
  left: 20%;
  animation-delay: 2s;
}

.network-connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: connectionPulse 4s ease-in-out infinite;
}

/* Content Distribution Network */
.content-network {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 220px;
  height: 180px;
  animation: contentFloat 6s ease-in-out infinite;
}

.content-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
  animation: hubPulse 3s ease-in-out infinite;
}

.content-satellite {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  animation: satelliteOrbit 8s linear infinite;
}

.content-satellite.sat-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.content-satellite.sat-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.content-satellite.sat-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

.content-satellite.sat-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: 6s;
}

/* Database Visualization */
.database-visual {
  position: absolute;
  top: 30%;
  right: 12%;
  animation: databaseFloat 5s ease-in-out infinite;
}

.database-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.database-layer {
  width: 120px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.database-layer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: dataFlow 3s ease-in-out infinite;
}

.database-layer.active {
  background: linear-gradient(45deg, rgba(30, 144, 255, 0.3), rgba(0, 168, 168, 0.3));
  border-color: var(--accent-color);
}

.database-connections {
  position: absolute;
  top: 0;
  left: 130px;
  width: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.connection-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
  animation: connectionFlow 2s ease-in-out infinite;
}

/* ===== SERVICE VISUAL ELEMENT ANIMATIONS ===== */
@keyframes funnelFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes targetPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes targetRipple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes targetCenter {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes calendarFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-12px) rotateY(3deg); }
}

@keyframes calendarPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes statGrow {
  0% { width: 0%; }
  100% { width: var(--stat-width, 75%); }
}

@keyframes networkFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes connectionPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes contentFloat {
  0%, 100% { transform: translateY(0px) rotateZ(0deg); }
  50% { transform: translateY(-20px) rotateZ(1deg); }
}

@keyframes hubPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes satelliteOrbit {
  0% { transform: rotate(0deg) translateX(60px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}

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

@keyframes dataFlow {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes connectionFlow {
  0% { opacity: 0.3; transform: scaleX(0); }
  50% { opacity: 0.8; transform: scaleX(1); }
  100% { opacity: 0.3; transform: scaleX(0); }
}

/* ===== ENHANCED LEAD GENERATION PAGE STYLES ===== */

/* Statistics Showcase Section */
.stats-showcase {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A1F44 0%, #1E90FF 50%, #00A8A8 100%);
  position: relative;
  overflow: hidden;
}

.stats-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: statsParticleFloat 15s ease-in-out infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card-enhanced {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: statCardFloat 6s ease-in-out infinite;
}

.stat-card-enhanced:nth-child(1) { animation-delay: 0s; }
.stat-card-enhanced:nth-child(2) { animation-delay: 1.5s; }
.stat-card-enhanced:nth-child(3) { animation-delay: 3s; }
.stat-card-enhanced:nth-child(4) { animation-delay: 4.5s; }

.stat-card-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: statCardGlow 8s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.stat-card-enhanced:hover::before {
  opacity: 1;
}

.stat-card-enhanced:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon-enhanced {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--text-light);
  transition: all 0.6s ease;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.stat-card-enhanced:hover .stat-icon-enhanced {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.stat-number-counter {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: inline-block;
}

.stat-plus,
.stat-percent {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-left: 5px;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
}

/* Problem Statement Section */
.problem-statement {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
}

.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-visual {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-heavy);
}

.problem-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.problem-visual:hover .problem-image {
  transform: scale(1.05);
}

.problem-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.8), rgba(220, 38, 127, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-stats {
  text-align: center;
  color: var(--text-light);
}

.problem-stat {
  margin-bottom: 30px;
}

.problem-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.problem-text {
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.problem-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.problem-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.problem-point {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: #555;
}

.problem-point i {
  color: #EF4444;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Solution Content */
.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-visual {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-heavy);
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution-visual:hover .solution-image {
  transform: scale(1.05);
}

.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(5, 150, 105, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.solution-visual:hover .solution-overlay {
  opacity: 1;
}

.solution-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  text-align: center;
}

.solution-highlight i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.solution-highlight span {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.solution-benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: #555;
}

.solution-benefit i {
  color: #10B981;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: var(--text-light);
  position: relative;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
}

.process-step {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.process-step:nth-child(even) .step-content {
  text-align: right;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
  z-index: 2;
}

.step-content {
  flex: 1;
  max-width: 450px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, rgba(0, 168, 168, 0.1), rgba(30, 144, 255, 0.1));
  border: 2px solid rgba(0, 168, 168, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: all 0.6s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.1);
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  color: var(--text-light);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.step-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.step-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-image {
  border-radius: var(--radius-medium);
  overflow: hidden;
  height: 200px;
  box-shadow: var(--shadow-medium);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process-step:hover .step-image img {
  transform: scale(1.05);
}

/* Industry Expertise Section */
.industry-expertise {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.industry-card {
  background: var(--text-light);
  border-radius: var(--radius-large);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: var(--shadow-light);
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.05), rgba(30, 144, 255, 0.05));
  transition: left 0.6s ease;
  z-index: -1;
}

.industry-card:hover::before {
  left: 0;
}

.industry-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 168, 168, 0.2);
  box-shadow: var(--shadow-heavy);
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-light);
  margin: 0 auto 25px;
  transition: all 0.6s ease;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 12px 35px rgba(30, 144, 255, 0.4);
}

.industry-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.industry-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.industry-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.industry-stat {
  padding: 8px 16px;
  background: linear-gradient(45deg, rgba(0, 168, 168, 0.1), rgba(30, 144, 255, 0.1));
  border: 1px solid rgba(0, 168, 168, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.industry-image {
  border-radius: var(--radius-medium);
  overflow: hidden;
  height: 200px;
  box-shadow: var(--shadow-medium);
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-card:hover .industry-image img {
  transform: scale(1.05);
}

/* Enhanced Animations */
@keyframes statsParticleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

@keyframes statCardGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile Responsive for Enhanced Sections */
@media (max-width: 1024px) {
  .problem-content,
  .solution-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: row !important;
    padding-left: 80px;
  }
  
  .process-step:nth-child(even) .step-content {
    text-align: left;
  }
  
  .step-number {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .industry-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-card-enhanced {
    padding: 30px 25px;
  }
  
  .stat-number-counter {
    font-size: 2.8rem;
  }
  
  .stat-plus,
  .stat-percent {
    font-size: 2rem;
  }
  
  .problem-visual,
  .solution-visual {
    height: 300px;
  }
  
  .problem-number {
    font-size: 3rem;
  }
  
  .process-step {
    margin-bottom: 60px;
    padding-left: 60px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    left: 25px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-image {
    height: 150px;
  }
  
  .industry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .industry-card {
    padding: 30px 25px;
  }
  
  .industry-stats {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .stats-showcase {
    padding: 60px 0;
  }
  
  .stat-card-enhanced {
    padding: 25px 20px;
  }
  
  .stat-icon-enhanced {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .stat-number-counter {
    font-size: 2.5rem;
  }
  
  .stat-plus,
  .stat-percent {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .problem-points,
  .solution-benefits {
    gap: 12px;
  }
  
  .problem-point,
  .solution-benefit {
    font-size: 0.9rem;
  }
  
  .process-step {
    padding-left: 50px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    left: 20px;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .industry-card {
    padding: 25px 20px;
  }
  
  .industry-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .industry-image {
    height: 180px;
  }
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories {
  padding: 100px 0;
  background: var(--text-light);
  position: relative;
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.success-story-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-large);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: var(--shadow-light);
}

.success-story-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 168, 168, 0.2);
  box-shadow: var(--shadow-heavy);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.05), rgba(30, 144, 255, 0.05));
}

.client-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.client-name {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.client-industry {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.story-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.success-story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-content {
  padding: 30px;
}

.story-challenge {
  font-style: italic;
  color: #666;
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.story-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.result-metric {
  text-align: center;
  padding: 20px 15px;
  background: rgba(0, 168, 168, 0.05);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(0, 168, 168, 0.1);
}

.result-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== TECHNOLOGY & TOOLS SECTION ===== */
.technology-tools {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.tech-category {
  background: var(--text-light);
  border: 2px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-large);
  padding: 40px 30px;
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
}

.tech-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.03), rgba(30, 144, 255, 0.03));
  transition: left 0.6s ease;
  z-index: -1;
}

.tech-category:hover::before {
  left: 0;
}

.tech-category:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 168, 168, 0.2);
  box-shadow: var(--shadow-medium);
}

.tech-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.tech-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-light);
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.tech-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.tech-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.tech-tool {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(0, 168, 168, 0.05);
  border: 1px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-medium);
  transition: all 0.3s ease;
}

.tech-tool:hover {
  background: rgba(0, 168, 168, 0.1);
  border-color: rgba(0, 168, 168, 0.2);
  transform: translateY(-2px);
}

.tech-tool i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.tech-tool span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.tech-integration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.integration-visual {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  height: 350px;
  box-shadow: var(--shadow-medium);
}

.integration-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.integration-visual:hover img {
  transform: scale(1.05);
}

.integration-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.8), rgba(30, 144, 255, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.integration-visual:hover .integration-overlay {
  opacity: 1;
}

.integration-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.integration-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.integration-stat i {
  font-size: 2rem;
  margin-bottom: 5px;
}

.integration-stat span {
  font-weight: 600;
  font-size: 1.1rem;
}

.integration-title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.integration-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.integration-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.integration-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.integration-feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

/* ===== FAQ SECTION ENHANCEMENTS ===== */
.faq-section {
  padding: 100px 0;
  background: var(--text-light);
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 168, 168, 0.1);
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: rgba(0, 168, 168, 0.02);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-question h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: rgba(0, 168, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle i {
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.faq-item.active .faq-toggle {
  background: var(--accent-color);
  transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
  color: var(--text-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 25px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== MOBILE RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tech-integration {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tech-tools-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .success-story-card {
    margin: 0 10px;
  }
  
  .story-header {
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .story-content {
    padding: 25px 20px;
  }
  
  .story-results {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .result-metric {
    padding: 15px 10px;
  }
  
  .result-number {
    font-size: 1.5rem;
  }
  
  .tech-category {
    padding: 30px 20px;
  }
  
  .tech-category-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .tech-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .tech-tools-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .tech-tool {
    padding: 12px;
  }
  
  .integration-visual {
    height: 250px;
  }
  
  .integration-title {
    font-size: 1.5rem;
  }
  
  .integration-description {
    font-size: 1rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-question {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .success-story-card {
    margin: 0 5px;
  }
  
  .story-header {
    padding: 20px 15px;
  }
  
  .story-content {
    padding: 20px 15px;
  }
  
  .client-logo {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .client-name {
    font-size: 1.1rem;
  }
  
  .story-challenge {
    font-size: 0.9rem;
  }
  
  .result-number {
    font-size: 1.3rem;
  }
  
  .result-label {
    font-size: 0.75rem;
  }
  
  .tech-category {
    padding: 25px 15px;
  }
  
  .tech-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .tech-title {
    font-size: 1.2rem;
  }
  
  .tech-tool {
    padding: 10px;
  }
  
  .tech-tool span {
    font-size: 0.85rem;
  }
  
  .integration-visual {
    height: 200px;
  }
  
  .integration-title {
    font-size: 1.3rem;
  }
  
  .integration-description {
    font-size: 0.9rem;
  }
  
  .integration-feature {
    font-size: 0.9rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-toggle {
    width: 25px;
    height: 25px;
  }
}

/* ===== SERVICES SECTION ANIMATIONS ===== */
@keyframes servicesParticleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-25px) rotate(120deg); }
  66% { transform: translateY(-15px) rotate(240deg); }
}

@keyframes servicesPatternMove {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 50px 50px, -80px -80px, 60px 60px; }
}

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

@keyframes serviceCardGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes serviceIconGlow {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ===== LEADERSHIP TEAM ANIMATIONS ===== */
@keyframes leadershipCardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes leadershipCardGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-particles,
.cta-particles {
  will-change: transform;
}

.service-card,
.usp-card,
.case-study-card {
  will-change: transform;
}

.btn {
  will-change: transform;
}

.roi-calculator,
.roi-calculator-trigger {
  will-change: transform, opacity;
}

/* ===== PREMIUM SERVICES DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 168, 168, 0.2);
  border-radius: var(--radius-large);
  box-shadow: 
    0 20px 40px rgba(10, 31, 68, 0.15),
    0 10px 25px rgba(0, 168, 168, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  padding: 15px;
  margin-top: 15px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 168, 168, 0.2);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
  backdrop-filter: blur(20px);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  text-decoration: none;
  color: var(--text-dark);
  border-radius: var(--radius-medium);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

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

.dropdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.1), rgba(30, 144, 255, 0.1));
  transition: left 0.4s ease;
  z-index: -1;
}

.dropdown-item:hover::before {
  left: 0;
}

.dropdown-item:hover {
  color: var(--primary-color);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 168, 168, 0.2);
}

.dropdown-item.active {
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.15), rgba(30, 144, 255, 0.1));
  color: var(--primary-color);
  border: 1px solid rgba(0, 168, 168, 0.3);
}

.dropdown-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.dropdown-item:hover i {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.dropdown-content {
  flex: 1;
}

.dropdown-title {
  display: block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.2;
}

.dropdown-desc {
  display: block;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.3;
}

.dropdown-item:hover .dropdown-desc {
  color: #555;
}

/* ===== SERVICE PAGES STYLES ===== */
.service-hero {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
  padding-top: 120px;
}

.service-hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  animation: fadeInUp 0.6s ease;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--text-light);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
  color: var(--text-light);
  font-weight: 600;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.service-badge i {
  font-size: 1.2rem;
}

.service-hero-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 25px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.service-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.service-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.service-section {
  padding: 80px 0;
  position: relative;
}

.service-section-alt {
  background: var(--bg-light);
}

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

.service-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  text-align: center;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-feature-card {
  background: var(--text-light);
  padding: 40px 30px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.service-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.05), rgba(30, 144, 255, 0.05));
  transition: left 0.6s ease;
  z-index: -1;
}

.service-feature-card:hover::before {
  left: 0;
}

.service-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(0, 168, 168, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-light);
  transition: all var(--transition-medium);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.service-feature-card:hover .feature-icon {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 12px 35px rgba(30, 144, 255, 0.4);
}

.feature-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-description {
  color: #666;
  line-height: 1.6;
  text-align: center;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 60px auto 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: var(--text-light);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.05), rgba(30, 144, 255, 0.05));
  transition: left 0.6s ease;
  z-index: -1;
}

.benefit-item:hover::before {
  left: 0;
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
  flex-shrink: 0;
  transition: all var(--transition-medium);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.3);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

.benefit-content {
  flex: 1;
  text-align: left;
}

.benefit-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.benefit-description {
  color: #666;
  line-height: 1.6;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
}

.about-hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.about-hero-title {
  font-family: var(--font-primary);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 30px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.about-hero-description {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-hero-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

/* About Who We Are Section */
.about-who-we-are {
  padding: var(--section-padding);
  background: var(--text-light);
  position: relative;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-story-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: var(--radius-large);
  box-shadow: 
    0 10px 30px rgba(0, 168, 168, 0.1),
    0 4px 20px rgba(30, 144, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 168, 168, 0.1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.about-story-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 168, 168, 0.05),
    transparent,
    rgba(30, 144, 255, 0.05),
    transparent
  );
  animation: serviceCardGlow 8s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-story-card:hover::before {
  opacity: 1;
}

.about-story-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 25px 50px rgba(0, 168, 168, 0.15),
    0 15px 35px rgba(30, 144, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 168, 168, 0.2);
}

.story-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #00A8A8, #1E90FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-light);
  flex-shrink: 0;
  transition: all 0.6s ease;
  box-shadow: 0 8px 25px rgba(0, 168, 168, 0.3);
}

.about-story-card:hover .story-icon {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 12px 35px rgba(0, 168, 168, 0.4);
}

.story-content h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.story-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.about-visual-content {
  position: relative;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* Mission & Vision Section */
.about-mission-vision {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #00A8A8 0%, rgba(0, 168, 168, 0.8) 20%, rgba(0, 168, 168, 0.4) 50%, rgba(245, 247, 250, 0.9) 80%, #F5F7FA 100%);
  position: relative;
  overflow: hidden;
}

.about-mission-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 25%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(0, 168, 168, 0.15) 0%, transparent 50%);
  animation: servicesParticleFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 50px 40px;
  border-radius: var(--radius-large);
  box-shadow: 
    0 15px 40px rgba(0, 168, 168, 0.15),
    0 8px 25px rgba(30, 144, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 168, 168, 0.1);
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 168, 168, 0.1),
    transparent,
    rgba(30, 144, 255, 0.1),
    transparent
  );
  animation: serviceCardGlow 8s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
  opacity: 1;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(0, 168, 168, 0.2),
    0 15px 40px rgba(30, 144, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 168, 168, 0.3);
}

.mission-vision-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(45deg, #00A8A8, #1E90FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-light);
  transition: all 0.6s ease;
  box-shadow: 0 10px 30px rgba(0, 168, 168, 0.3);
}

.mission-card:hover .mission-vision-icon,
.vision-card:hover .mission-vision-icon {
  transform: scale(1.15) rotateY(180deg);
  box-shadow: 0 15px 40px rgba(0, 168, 168, 0.4);
}

.mission-vision-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.mission-vision-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
  text-align: center;
}

.mission-vision-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(45deg, rgba(0, 168, 168, 0.1), rgba(30, 144, 255, 0.1));
  border-radius: var(--radius-full);
  color: var(--primary-color);
  font-weight: 600;
  border: 1px solid rgba(0, 168, 168, 0.2);
}

.mission-vision-highlight i {
  color: var(--accent-color);
}

/* Why Choose Section */
.about-why-choose {
  padding: var(--section-padding);
  background: var(--text-light);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.why-choose-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: var(--radius-large);
  box-shadow: 
    0 10px 30px rgba(0, 168, 168, 0.1),
    0 4px 20px rgba(30, 144, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 168, 168, 0.1);
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 168, 168, 0.1),
    transparent,
    rgba(30, 144, 255, 0.1),
    transparent
  );
  animation: serviceCardGlow 8s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.why-choose-card:hover::before {
  opacity: 1;
}

.why-choose-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 168, 168, 0.15),
    0 15px 35px rgba(30, 144, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 168, 168, 0.2);
}

.why-choose-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(45deg, #00A8A8, #1E90FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--text-light);
  transition: all 0.6s ease;
  box-shadow: 0 10px 25px rgba(0, 168, 168, 0.3);
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.15) rotateY(180deg);
  box-shadow: 0 15px 35px rgba(0, 168, 168, 0.4);
}

.why-choose-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.why-choose-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
}

.feature-point i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

/* Leadership Team Section */
.about-leadership-team {
  padding: var(--section-padding);
  background: var(--text-light);
  position: relative;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.leadership-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: var(--radius-large);
  box-shadow: 
    0 10px 30px rgba(0, 168, 168, 0.1),
    0 4px 20px rgba(30, 144, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 168, 168, 0.1);
  animation: leadershipCardFloat 6s ease-in-out infinite;
}

.leadership-card:nth-child(1) { animation-delay: 0s; }
.leadership-card:nth-child(2) { animation-delay: 2s; }
.leadership-card:nth-child(3) { animation-delay: 4s; }

.leadership-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 168, 168, 0.1),
    transparent,
    rgba(30, 144, 255, 0.1),
    transparent
  );
  animation: leadershipCardGlow 8s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.leadership-card:hover::before {
  opacity: 1;
}

.leadership-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 168, 168, 0.15),
    0 15px 35px rgba(30, 144, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 168, 168, 0.2);
}

.leadership-photo {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  padding: 4px;
  transition: all 0.6s ease;
  box-shadow: 0 10px 30px rgba(0, 168, 168, 0.3);
}

.leadership-card:hover .leadership-photo {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 168, 168, 0.4);
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.6s ease;
  background: var(--text-light);
}

.leadership-card:hover .leader-image {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 168, 168, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.leadership-photo:hover .photo-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.leadership-content {
  position: relative;
  z-index: 2;
}

.leader-name {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.leader-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leader-bio {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
  text-align: left;
}

.leader-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.expertise-tag {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(45deg, rgba(0, 168, 168, 0.1), rgba(30, 144, 255, 0.1));
  border: 1px solid rgba(0, 168, 168, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.expertise-tag:hover {
  background: linear-gradient(45deg, rgba(0, 168, 168, 0.2), rgba(30, 144, 255, 0.2));
  border-color: rgba(0, 168, 168, 0.3);
  transform: translateY(-2px);
}

/* Values Section */
.about-values {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  background: var(--text-light);
  padding: 40px 30px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.05), rgba(30, 144, 255, 0.05));
  transition: left 0.6s ease;
  z-index: -1;
}

.value-card:hover::before {
  left: 0;
}

.value-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(0, 168, 168, 0.2);
}

.value-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--text-light);
  transition: all 0.6s ease;
  box-shadow: 0 10px 25px rgba(30, 144, 255, 0.3);
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotateY(180deg);
  box-shadow: 0 15px 35px rgba(30, 144, 255, 0.4);
}

.value-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.value-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.value-highlight {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(45deg, rgba(0, 168, 168, 0.1), rgba(30, 144, 255, 0.1));
  border-radius: var(--radius-full);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 168, 168, 0.2);
}

/* About CTA Section */
.about-cta {
  padding: var(--section-padding);
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Mobile Responsive for About Page */
@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 3.5rem;
  }
  
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Leadership Team responsive */
  .leadership-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .leadership-photo {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.8rem;
  }
  
  .about-hero-description {
    font-size: 1.2rem;
  }
  
  .about-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .about-story-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 25px;
  }
  
  .mission-card,
  .vision-card {
    padding: 40px 30px;
  }
  
  .why-choose-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Leadership Team mobile responsive */
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .leadership-card {
    padding: 30px 25px;
  }
  
  .leadership-photo {
    width: 120px;
    height: 120px;
  }
  
  .leader-name {
    font-size: 1.4rem;
  }
  
  .leader-title {
    font-size: 0.9rem;
  }
  
  .leader-bio {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .leader-expertise {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2.2rem;
  }
  
  .about-hero-description {
    font-size: 1rem;
  }
  
  .about-story-card,
  .why-choose-card,
  .value-card {
    padding: 25px 20px;
  }
  
  .mission-card,
  .vision-card {
    padding: 30px 20px;
  }
  
  .mission-vision-title {
    font-size: 1.6rem;
  }
  
  .mission-vision-description {
    font-size: 1rem;
  }
  
  /* Leadership Team small mobile responsive */
  .leadership-card {
    padding: 25px 20px;
  }
  
  .leadership-photo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  
  .leader-name {
    font-size: 1.3rem;
  }
  
  .leader-title {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  
  .leader-bio {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  
  .expertise-tag {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
}

.contact-hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.contact-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: badgeFloat 3s ease-in-out infinite;
  overflow: hidden;
}

.contact-hero-title {
  font-family: var(--font-primary);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 30px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.contact-hero-description {
  margin-bottom: 50px;
}

.contact-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  background: var(--text-light);
  position: relative;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.form-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.form-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Premium Form Styles */
.premium-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-large);
  padding: 50px;
  box-shadow: 
    0 20px 60px rgba(0, 168, 168, 0.1),
    0 10px 30px rgba(30, 144, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 168, 168, 0.1);
  position: relative;
  overflow: hidden;
}

.premium-form::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 168, 168, 0.03),
    transparent,
    rgba(30, 144, 255, 0.03),
    transparent
  );
  animation: serviceCardGlow 12s linear infinite;
  opacity: 0.5;
  pointer-events: none;
}

/* Progress Indicator */
.form-progress {
  margin-bottom: 50px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 168, 168, 0.1);
  border-radius: 2px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
  width: 33.33%;
  transition: width 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.progress-step.active {
  opacity: 1;
}

.progress-step.completed {
  opacity: 1;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 168, 168, 0.1);
  border: 2px solid rgba(0, 168, 168, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  transition: all 0.4s ease;
}

.progress-step.active .step-circle {
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-color: var(--accent-color);
  color: var(--text-light);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.progress-step.completed .step-circle {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-light);
}

.step-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Form Sections */
.form-section {
  margin-bottom: 50px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-large);
  border: 1px solid rgba(0, 168, 168, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.03), rgba(30, 144, 255, 0.03));
  transition: left 0.6s ease;
  z-index: -1;
}

.form-section:hover::before {
  left: 0;
}

.form-section:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 168, 168, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 168, 0.1);
}

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

.section-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-title i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.section-description {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.required {
  color: #EF4444;
  margin-left: 2px;
}

/* Input Styles */
.input-wrapper {
  position: relative;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-medium);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-family: var(--font-secondary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: var(--text-light);
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
  transform: translateY(-2px);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-input.success,
.form-select.success {
  border-color: #10B981;
  background: rgba(16, 185, 129, 0.05);
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  pointer-events: none;
}

.form-input:focus + .input-icon,
.form-select:focus + .input-icon {
  color: var(--accent-color);
}

.input-focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.form-input:focus ~ .input-focus-border {
  width: 100%;
}

/* Email Validation Indicator */
.email-validation-indicator {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.email-validation-indicator.valid {
  opacity: 1;
  color: #10B981;
}

.email-validation-indicator.invalid {
  opacity: 1;
  color: #EF4444;
}

/* Select Styles */
.select-wrapper {
  position: relative;
}

.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 50px;
}

.select-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.form-select:focus ~ .select-icon {
  transform: translateY(-50%) rotate(180deg);
  color: var(--accent-color);
}

/* Textarea Styles */
.textarea-wrapper {
  position: relative;
}

.form-textarea {
  padding: 16px 20px;
  resize: vertical;
  min-height: 120px;
}

.textarea-focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.form-textarea:focus ~ .textarea-focus-border {
  width: 100%;
}

.character-count {
  text-align: right;
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-option {
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 2px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-medium);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.radio-label:hover {
  border-color: rgba(0, 168, 168, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

.radio-option input[type="radio"]:checked + .radio-label {
  border-color: var(--accent-color);
  background: rgba(30, 144, 255, 0.1);
  color: var(--accent-color);
}

.radio-circle {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.radio-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-label .radio-circle {
  border-color: var(--accent-color);
}

.radio-option input[type="radio"]:checked + .radio-label .radio-circle::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Checkbox Styles */
.checkbox-group {
  margin-bottom: 8px;
}

.checkbox-group input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-box i {
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  color: var(--text-light);
  font-size: 0.8rem;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-label .checkbox-box {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-label .checkbox-box i {
  opacity: 1;
  transform: scale(1);
}

.privacy-link {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Form Privacy */
.form-privacy {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 168, 168, 0.05);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(0, 168, 168, 0.1);
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.btn-prev,
.btn-next,
.btn-submit {
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.btn-submit {
  min-width: 180px;
}

.btn-submit .btn-text,
.btn-submit .btn-loading,
.btn-submit .btn-success {
  transition: all 0.3s ease;
}

.btn-submit .btn-loading,
.btn-submit .btn-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.btn-submit.loading .btn-text {
  opacity: 0;
}

.btn-submit.loading .btn-loading {
  opacity: 1;
}

.btn-submit.success .btn-text,
.btn-submit.success .btn-loading {
  opacity: 0;
}

.btn-submit.success .btn-success {
  opacity: 1;
}

/* Form Errors and Help */
.form-error {
  color: #EF4444;
  font-size: 0.85rem;
  margin-top: 5px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.form-error.show {
  opacity: 1;
  transform: translateY(0);
}

.form-help {
  color: #666;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-large);
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.form-success.hidden {
  display: none;
}

.success-animation {
  margin-bottom: 30px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: successPulse 0.6s ease;
}

.success-checkmark i {
  font-size: 2rem;
  color: var(--text-light);
}

.success-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.success-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.success-next-steps {
  background: var(--text-light);
  padding: 30px;
  border-radius: var(--radius-medium);
  margin-bottom: 30px;
  text-align: left;
}

.success-next-steps h4 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.success-next-steps ul {
  list-style: none;
  padding: 0;
}

.success-next-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #666;
}

.success-next-steps li:last-child {
  margin-bottom: 0;
}

.success-next-steps i {
  color: var(--accent-color);
  width: 20px;
  text-align: center;
}

/* Contact Information Section */
.contact-info-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-methods {
  /* Styles inherited from existing patterns */
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 40px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--text-light);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 168, 168, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(30, 144, 255, 0.4);
}

.contact-content {
  flex: 1;
}

.contact-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-description {
  color: #666;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-color);
}

.contact-address {
  font-style: normal;
  line-height: 1.5;
  color: var(--accent-color);
  font-weight: 500;
}

.business-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.day {
  font-weight: 600;
  color: var(--text-dark);
}

.time {
  color: #666;
}

/* Trust Signals */
.trust-signals {
  /* Styles inherited from existing patterns */
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}

.trust-card {
  padding: 25px;
  background: var(--text-light);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 168, 168, 0.2);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 0 auto 15px;
  transition: all 0.4s ease;
}

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

.trust-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.trust-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--text-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 168, 168, 0.1);
  margin-bottom: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-question h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: rgba(0, 168, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle i {
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.faq-item.active .faq-toggle {
  background: var(--accent-color);
  transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
  color: var(--text-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 25px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta {
  padding: var(--section-padding);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-guarantee i {
  color: #10B981;
  font-size: 1.1rem;
}

/* Animations */
@keyframes successPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile Responsive for Contact Page */
@media (max-width: 1024px) {
  .contact-hero-title {
    font-size: 3.5rem;
  }
  
  .contact-hero-content {
    padding-top: 140px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .premium-form {
    padding: 40px 30px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2.8rem;
  }
  
  .contact-hero-content {
    padding-top: 160px;
  }
  
  .breadcrumb {
    margin-bottom: 15px;
    font-size: 0.85rem;
  }
  
  .contact-badge {
    margin-bottom: 30px;
    padding: 14px 24px;
  }
  
  .contact-hero-description .typewriter-text {
    font-size: 1.2rem;
  }
  
  .premium-form {
    padding: 30px 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-prev,
  .btn-next,
  .btn-submit {
    width: 100%;
    min-width: auto;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-cards {
    gap: 20px;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 2.2rem;
  }
  
  .contact-hero-content {
    padding-top: 180px;
  }
  
  .breadcrumb {
    margin-bottom: 12px;
    font-size: 0.8rem;
    gap: 6px;
  }
  
  .contact-badge {
    margin-bottom: 25px;
    padding: 12px 20px;
    gap: 10px;
  }
  
  .badge-line {
    font-size: 0.85rem;
  }
  
  .badge-subline {
    font-size: 0.65rem;
  }
  
  .contact-hero-description .typewriter-text {
    font-size: 1rem;
    white-space: normal;
    border-right: none;
    animation: none;
    width: auto;
  }
  
  .premium-form {
    padding: 25px 15px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .step-title {
    font-size: 1.5rem;
  }
  
  .progress-steps {
    gap: 10px;
  }
  
  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-label {
    font-size: 0.8rem;
  }
  
  .contact-stats {
    gap: 15px;
  }
  
  .stat-card-glass {
    min-width: 120px;
    padding: 15px 10px;
  }
  
  .stat-number-enhanced {
    font-size: 1.8rem;
  }
  
  .stat-label-enhanced {
    font-size: 0.8rem;
  }
  
  .success-title {
    font-size: 1.6rem;
  }
  
  .success-description {
    font-size: 1rem;
  }
  
  .success-next-steps {
    padding: 20px;
  }
}

/* ===== MOBILE DROPDOWN STYLES ===== */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 0;
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
    padding: 20px 0;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-item:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown-desc {
    color: rgba(255, 255, 255, 0.8);
  }

  .service-hero-title {
    font-size: 2.5rem;
  }

  .service-hero-subtitle {
    font-size: 1.1rem;
  }

  .service-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

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

@media (max-width: 480px) {
  .service-hero-title {
    font-size: 2rem;
  }

  .service-hero-subtitle {
    font-size: 1rem;
  }

  .service-feature-card,
  .benefit-item {
    padding: 25px 20px;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
}

/* ===== COOKIE CONSENT BANNER STYLES ===== */

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 31, 68, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.cookie-banner-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.cookie-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-light);
  flex-shrink: 0;
  animation: cookieFloat 3s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.cookie-message {
  flex: 1;
}

.cookie-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.2;
}

.cookie-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cookie {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

.btn-cookie:hover::before {
  left: 100%;
}

.btn-cookie-accept {
  background: linear-gradient(45deg, #10B981, #059669);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-cookie-accept-all {
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.btn-cookie-accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.btn-cookie-customize {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cookie-customize:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transform: translateY(-2px);
}

.cookie-banner-links {
  width: 100%;
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.cookie-link:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.cookie-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 10px;
}

/* Cookie Preference Center Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.cookie-modal.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-modal.hidden {
  opacity: 0;
  visibility: hidden;
}

.cookie-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.cookie-modal-content {
  position: relative;
  background: var(--text-light);
  border-radius: var(--radius-large);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.cookie-modal.visible .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px 20px;
  border-bottom: 1px solid rgba(0, 168, 168, 0.1);
}

.cookie-modal-title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.cookie-modal-title i {
  color: var(--accent-color);
  font-size: 1.6rem;
}

.cookie-modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 168, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-dark);
}

.cookie-modal-close:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: scale(1.1);
}

.cookie-modal-body {
  padding: 30px 40px;
  max-height: 60vh;
  overflow-y: auto;
}

.cookie-intro {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 168, 168, 0.05);
  border-radius: var(--radius-medium);
  border-left: 4px solid var(--accent-color);
}

.cookie-intro p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-large);
  padding: 25px;
  transition: all var(--transition-fast);
}

.cookie-category:hover {
  border-color: rgba(0, 168, 168, 0.2);
  box-shadow: 0 5px 20px rgba(0, 168, 168, 0.1);
}

.cookie-category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-category-title i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.cookie-category-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-label {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ddd;
  border-radius: 13px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.toggle-label:hover {
  background: #ccc;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: var(--text-light);
  border-radius: 50%;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input[type="checkbox"]:checked + .toggle-label {
  background: var(--accent-color);
}

input[type="checkbox"]:checked + .toggle-label .toggle-slider {
  transform: translateX(24px);
}

input[type="checkbox"]:disabled + .toggle-label {
  background: var(--secondary-color);
  cursor: not-allowed;
  opacity: 0.8;
}

input[type="checkbox"]:disabled + .toggle-label .toggle-slider {
  transform: translateX(24px);
}

.toggle-status {
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-details {
  padding-top: 15px;
  border-top: 1px solid rgba(0, 168, 168, 0.1);
}

.cookie-details p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.cookie-details p:last-child {
  margin-bottom: 0;
}

.cookie-modal-footer {
  padding: 25px 40px 30px;
  border-top: 1px solid rgba(0, 168, 168, 0.1);
  background: rgba(245, 247, 250, 0.5);
}

.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cookie-modal-links {
  text-align: center;
}

/* Cookie Settings Button (for footer or other locations) */
.cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: rgba(10, 31, 68, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 1000;
  font-size: 1.2rem;
}

.cookie-settings-btn:hover {
  background: var(--accent-color);
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(30, 144, 255, 0.3);
}

/* Cookie Banner Animations */
@keyframes cookieFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}

@keyframes cookiePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Mobile Responsive for Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cookie-banner-text {
    flex-direction: column;
    gap: 15px;
    min-width: auto;
    text-align: center;
  }
  
  .cookie-banner-actions {
    justify-content: center;
    width: 100%;
  }
  
  .btn-cookie {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
  
  .cookie-modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .cookie-category-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .cookie-toggle {
    justify-content: center;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-cookie {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 20px 0;
  }
  
  .cookie-banner-content {
    padding: 0 15px;
  }
  
  .cookie-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .cookie-title {
    font-size: 1.1rem;
  }
  
  .cookie-description {
    font-size: 0.9rem;
  }
  
  .btn-cookie {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .cookie-modal-title {
    font-size: 1.5rem;
  }
  
  .cookie-modal-body {
    max-height: 50vh;
  }
  
  .cookie-category {
    padding: 20px;
  }
  
  .cookie-settings-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    bottom: 15px;
    left: 15px;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-modal,
  .cookie-modal-content,
  .btn-cookie,
  .toggle-slider {
    transition: none;
  }
  
  .cookie-icon {
    animation: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .cookie-banner {
    background: #000;
    border-top: 2px solid #fff;
  }
  
  .cookie-modal-content {
    border: 2px solid #000;
  }
  
  .btn-cookie {
    border: 2px solid currentColor;
  }
}

/* Focus Styles for Accessibility */
.btn-cookie:focus,
.cookie-modal-close:focus,
.toggle-label:focus,
.cookie-link:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .cookie-banner,
  .cookie-modal,
  .cookie-settings-btn {
    display: none !important;
  }
}

/* ===== LEGAL PAGES STYLES ===== */

/* Legal Meta Information */
.legal-meta {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.legal-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.legal-meta-item i {
  color: var(--accent-color);
}

/* Legal Content Section */
.legal-content-section {
  padding: 100px 0;
  background: var(--text-light);
}

.legal-content-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

/* Legal Sidebar */
.legal-sidebar {
  position: sticky;
  top: 120px;
}

.legal-toc {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-large);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 
    0 10px 30px rgba(0, 168, 168, 0.1),
    0 4px 20px rgba(30, 144, 255, 0.05);
}

.toc-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc-title i {
  color: var(--accent-color);
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-link {
  display: block;
  padding: 10px 15px;
  color: #666;
  text-decoration: none;
  border-radius: var(--radius-medium);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}

.toc-link:hover {
  background: rgba(0, 168, 168, 0.1);
  color: var(--primary-color);
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.toc-link.active {
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.15), rgba(30, 144, 255, 0.1));
  color: var(--primary-color);
  border-left-color: var(--accent-color);
  font-weight: 600;
}

/* Quick Actions */
.legal-quick-actions {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-large);
  padding: 25px;
  box-shadow: 
    0 10px 30px rgba(0, 168, 168, 0.1),
    0 4px 20px rgba(30, 144, 255, 0.05);
}

.quick-actions-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.quick-actions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(0, 168, 168, 0.05);
  border: 1px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-medium);
  color: var(--text-dark);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.quick-action-btn:hover {
  background: rgba(0, 168, 168, 0.1);
  border-color: rgba(0, 168, 168, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 168, 168, 0.2);
}

.quick-action-btn i {
  color: var(--accent-color);
  width: 16px;
  text-align: center;
}

/* Legal Main Content */
.legal-main-content {
  max-width: 800px;
}

.legal-section {
  margin-bottom: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-large);
  box-shadow: 
    0 10px 30px rgba(0, 168, 168, 0.1),
    0 4px 20px rgba(30, 144, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.02), rgba(30, 144, 255, 0.02));
  transition: left 0.6s ease;
  z-index: -1;
}

.legal-section:hover::before {
  left: 0;
}

.legal-section:hover {
  border-color: rgba(0, 168, 168, 0.2);
  transform: translateY(-2px);
  box-shadow: 
    0 15px 40px rgba(0, 168, 168, 0.15),
    0 8px 25px rgba(30, 144, 255, 0.1);
}

.legal-section-title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 168, 168, 0.1);
}

.legal-section-title i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.legal-section-content {
  line-height: 1.7;
  color: #555;
}

.legal-section-content h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 30px 0 15px 0;
}

.legal-section-content h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 25px 0 10px 0;
}

.legal-section-content p {
  margin-bottom: 15px;
}

.legal-section-content ul,
.legal-section-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-section-content li {
  margin-bottom: 8px;
}

.legal-section-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.legal-section-content a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Legal Highlights and Warnings */
.legal-highlight {
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.1), rgba(30, 144, 255, 0.05));
  border: 1px solid rgba(0, 168, 168, 0.2);
  border-left: 4px solid var(--accent-color);
  border-radius: var(--radius-medium);
  padding: 20px;
  margin: 25px 0;
}

.legal-highlight h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.legal-warning {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-left: 4px solid #FFC107;
  border-radius: var(--radius-medium);
  padding: 20px;
  margin: 25px 0;
}

.legal-warning p {
  margin: 0;
  color: #856404;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.right-item {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-medium);
  padding: 20px;
  transition: all var(--transition-fast);
}

.right-item:hover {
  border-color: rgba(0, 168, 168, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 168, 168, 0.1);
}

.right-item h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1rem;
}

.right-item h4 i {
  color: var(--accent-color);
  width: 20px;
  text-align: center;
}

.right-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 25px 0;
}

.contact-method {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 168, 168, 0.1);
  border-radius: var(--radius-medium);
  padding: 25px;
  transition: all var(--transition-fast);
}

.contact-method:hover {
  border-color: rgba(0, 168, 168, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 168, 168, 0.1);
}

.contact-method h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.contact-method h4 i {
  color: var(--accent-color);
  width: 20px;
  text-align: center;
}

.contact-method p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 1024px) {
  .legal-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .legal-sidebar {
    position: static;
    order: -1;
  }
  
  .legal-toc,
  .legal-quick-actions {
    padding: 20px;
  }
  
  .legal-meta {
    gap: 15px;
  }
  
  .rights-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .legal-content-section {
    padding: 80px 0;
  }
  
  .legal-section {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  
  .legal-section-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .legal-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .legal-meta-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .toc-nav {
    gap: 5px;
  }
  
  .toc-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .quick-actions-list {
    gap: 8px;
  }
  
  .quick-action-btn {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .legal-section {
    padding: 20px 15px;
  }
  
  .legal-section-title {
    font-size: 1.3rem;
  }
  
  .legal-section-content h3 {
    font-size: 1.2rem;
  }
  
  .legal-section-content h4 {
    font-size: 1rem;
  }
  
  .legal-highlight,
  .legal-warning {
    padding: 15px;
    margin: 20px 0;
  }
  
  .right-item,
  .contact-method {
    padding: 15px;
  }
  
  .legal-toc,
  .legal-quick-actions {
    padding: 15px;
  }
}
