/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

:root {
  --primary-color: #1e5fb8;
  --primary-dark: #153d7a;
  --primary-light: #4d8fd6;
  --secondary-color: #00d4ff;
  --accent-color: #ff6b6b;
  --success-color: #06d6a0;
  --warning-color: #ffd166;
  --danger-color: #ef476f;
  --neutral-50: #f8f9fa;
  --neutral-100: #f1f3f5;
  --neutral-200: #dee2e6;
  --neutral-300: #ced4da;
  --neutral-600: #495057;
  --neutral-700: #343a40;
  --neutral-900: #212529;
  --text-light: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(30, 95, 184, 0.25);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --gradient-premium: linear-gradient(135deg, #1e5fb8 0%, #00d4ff 50%, #06d6a0 100%);
  --gradient-warm: linear-gradient(135deg, #ff6b6b 0%, #ffd166 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-700);
  background: linear-gradient(135deg, #ffffff 0%, #f0f5ff 50%, #e8f4ff 100%);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   ANIMATED BACKGROUND ELEMENTS
   ============================================ */

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 50%, #f0f5ff 100%);
}

.blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.25;
  animation: blob-animation 12s infinite;
  filter: blur(80px);
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, #1e5fb8, #00d4ff);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #00d4ff, #06d6a0);
  bottom: 50px;
  right: -100px;
  animation-delay: 2s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(45deg, #1e5fb8, #06d6a0);
  top: 30%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes blob-animation {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -80px) scale(1.15);
  }
  66% {
    transform: translate(-40px, 40px) scale(0.95);
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 244, 255, 0.95) 100%);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px rgba(30, 95, 184, 0.1);
  z-index: 1000;
  animation: slideDown 0.6s ease-out;
  border-bottom: 1px solid rgba(30, 95, 184, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  animation: fadeInScale 0.8s ease-out;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 28px;
  background: linear-gradient(135deg, #1e5fb8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  font-size: 32px;
  animation: bounce 2s ease-in-out infinite;
}

.oman-badge {
  display: inline-block;
  margin-left: 12px;
  padding: 4px 10px;
  color: white;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 15px;
  align-items: center;
}

.nav-link {
  color: var(--neutral-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: var(--transition-smooth);
  padding: 8px 12px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0066ff, #00d4ff);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.nav-button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 13px;
}

.demo-btn {
  background: linear-gradient(135deg, #1e5fb8, #153d7a);
  color: white;
  box-shadow: 0 8px 24px rgba(30, 95, 184, 0.3);
  position: relative;
  overflow: hidden;
}

.demo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.demo-btn:hover::before {
  left: 100%;
}

.demo-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 95, 184, 0.4);
}

.login-btn {
  background: rgba(30, 95, 184, 0.1);
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}

.login-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 95, 184, 0.3);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--neutral-700);
  cursor: pointer;
  z-index: 1001;
}

/* ============================================
   HERO SECTION
   ============================================ */

.header-content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
  margin-left: 10%;
        margin-right: 10%;
}

.header-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1e5fb8 0%, #00d4ff 50%, #06d6a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.text-gradient {
  background: linear-gradient(135deg, #1e5fb8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 95, 184, 0.1);
  border: 1px solid rgba(30, 95, 184, 0.2);
  padding: 10px 18px;
  border-radius: 25px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--primary-color);
  animation: slideInLeft 0.8s ease-out;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #1e5fb8, #00d4ff);
  color: white;
  border-radius: 50%;
  font-size: 12px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #1e5fb8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--neutral-600);
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out;
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #1e5fb8, #153d7a);
  color: white;
  box-shadow: 0 8px 24px rgba(30, 95, 184, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 36px rgba(30, 95, 184, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: rgba(0, 102, 255, 0.1);
  transform: translateY(-4px);
}

/* ============================================
   FORM STYLING
   ============================================ */

.form-container {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 12px 48px rgba(30, 95, 184, 0.15);
  border: 1px solid rgba(30, 95, 184, 0.15);
  animation: fadeInScale 1s ease-out;
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e5fb8, #00d4ff, #06d6a0);
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--neutral-900);
}

.form-header p {
  color: var(--neutral-600);
  font-size: 14px;
}

.form-trust-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(6, 214, 160, 0.1);
  border: 1px solid rgba(6, 214, 160, 0.2);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--success-color);
}

.animated-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
  animation: fadeInUp 0.6s ease-out;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.05);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition-smooth);
  color: var(--neutral-900);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(0, 102, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: -12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 244, 255, 0.95) 100%);
  padding: 0 8px;
  color: var(--neutral-600);
  font-size: 12px;
  font-weight: 500;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label {
  color: var(--primary-color);
  top: -12px;
}

.form-submit-btn {
  background: linear-gradient(135deg, #0066ff, #0052cc);
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-lg);
}

.form-submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.form-submit-btn:active {
  transform: translateY(-1px);
}

/* ============================================
   FADE IN ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  animation-delay: var(--delay, 0s);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--neutral-900);
  background: linear-gradient(135deg, #1e5fb8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--neutral-600);
  max-width: 500px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.about-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(30, 95, 184, 0.1);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e5fb8, #00d4ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 212, 255, 0.3);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  animation: bounce 2s ease-in-out infinite;
}

.gradient-icon-1 {
  background: linear-gradient(135deg, #1e5fb8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-icon-2 {
  background: linear-gradient(135deg, #00d4ff, #06d6a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-icon-3 {
  background: linear-gradient(135deg, #06d6a0, #1e5fb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-footer {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(30, 95, 184, 0.1);
  font-size: 12px;
  color: var(--success-color);
  font-weight: 600;
}

.about-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--neutral-900);
}

.about-card p {
  color: var(--neutral-600);
  line-height: 1.8;
  font-size: 15px;
}

.certifications-section {
  margin-top: 80px;
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, rgba(30, 95, 184, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(30, 95, 184, 0.1);
}

.certifications-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--neutral-900);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(30, 95, 184, 0.15);
  transition: var(--transition-bounce);
}

.cert-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 95, 184, 0.15);
  border-color: rgba(30, 95, 184, 0.3);
}

.cert-badge i {
  font-size: 36px;
  background: linear-gradient(135deg, #1e5fb8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cert-badge span {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: var(--neutral-700);
  line-height: 1.5;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.product-section-all {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(30, 95, 184, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.product-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid rgba(30, 95, 184, 0.15);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.product-ribbon {
  position: absolute;
  top: 15px;
  right: -40px;
  background: linear-gradient(135deg, #ff6b6b, #ffd166);
  color: white;
  padding: 5px 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

.featured-ribbon {
  background: linear-gradient(135deg, #06d6a0, #1e5fb8);
}

.product-card.featured {
  border: 2px solid rgba(30, 95, 184, 0.3);
  box-shadow: 0 12px 48px rgba(30, 95, 184, 0.15);
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.product-card:hover::before {
  top: 0;
  right: 0;
}

.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(30, 95, 184, 0.2);
  border-color: rgba(0, 212, 255, 0.3);
}

.product-icon {
  font-size: 44px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.gradient-1 {
  background: linear-gradient(135deg, #1e5fb8, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-2 {
  background: linear-gradient(135deg, #00d4ff, #06d6a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-3 {
  background: linear-gradient(135deg, #06d6a0, #1e5fb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-4 {
  background: linear-gradient(135deg, #ff6b6b, #ffd166);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-5 {
  background: linear-gradient(135deg, #ffd166, #06d6a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-6 {
  background: linear-gradient(135deg, #1e5fb8, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--neutral-900);
  position: relative;
  z-index: 1;
}

.product-card p {
  color: var(--neutral-600);
  line-height: 1.7;
  font-size: 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-list li {
  font-size: 13px;
  color: var(--neutral-600);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list i {
  color: var(--success-color);
  font-weight: bold;
}

.product-tag {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #1e5fb8, #00d4ff);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.popular-tag {
  background: linear-gradient(135deg, #ff6b6b, #ffd166);
}

.featured-tag {
  background: linear-gradient(135deg, #06d6a0, #1e5fb8);
}

.enterprise-tag {
  background: linear-gradient(135deg, #ffd166, #ff6b6b);
}

.ai-tag {
  background: linear-gradient(135deg, #1e5fb8, #ff6b6b);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(30, 95, 184, 0.03) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(30, 95, 184, 0.15);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 20px;
  font-size: 120px;
  color: rgba(30, 95, 184, 0.05);
  font-family: Georgia, serif;
  font-weight: bold;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(30, 95, 184, 0.15);
  border-color: rgba(30, 95, 184, 0.3);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.stars i {
  color: #ffd166;
  font-size: 16px;
}

.testimonial-text {
  color: var(--neutral-700);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 95, 184, 0.1);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--neutral-900);
  font-size: 14px;
}

.author-info span {
  color: var(--neutral-600);
  font-size: 12px;
}

.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(30, 95, 184, 0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 95, 184, 0.1), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover::before {
  opacity: 1;
  top: 0;
  left: 0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(30, 95, 184, 0.15);
  border-color: rgba(30, 95, 184, 0.2);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  font-weight: 800;
  color: rgba(30, 95, 184, 0.1);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-number {
  color: rgba(30, 95, 184, 0.25);
}

.feature-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--neutral-900);
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--neutral-600);
  line-height: 1.7;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer {
  background: linear-gradient(135deg, #0f2438 0%, #1a3a52 100%);
  color: var(--text-light);
  padding-top: 80px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.footer-section:nth-child(1) {
  animation-delay: 0s;
}

.footer-section:nth-child(2) {
  animation-delay: 0.1s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(4) {
  animation-delay: 0.3s;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-section ul li a:hover {
  color: #00d4ff;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: linear-gradient(135deg, #0066ff, #00d4ff);
  border-color: #00d4ff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(30, 95, 184, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 20px;
  font-size: 11px;
  color: #00d4ff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e5fb8, #153d7a);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(30, 95, 184, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 32px rgba(30, 95, 184, 0.4);
}

/* ============================================
   LOADING OVERLAY
   ============================================ */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 244, 255, 0.95));
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  :root {
    --text-light: #ffffff;
  }

  .navbar {
    padding: 0 20px;
    height: 70px;
  }

  .menu-toggle {
    display: block;
    animation: slideIn 0.3s ease-out;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-link {
    font-size: 16px;
  }

  .nav-link::after {
    display: none;
  }

  .header {
    padding-top: 70px;
    padding-bottom: 30px;
  }

  .header-content-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .form-container {
    padding: 30px 20px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .about-grid,
  .product-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-card,
  .product-card,
  .feature-card {
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .blob {
    opacity: 0.15;
    filter: blur(60px);
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 22px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .feature-icon {
    font-size: 32px;
  }

  .product-icon {
    font-size: 36px;
  }

  .card-icon {
    font-size: 40px;
  }
}

/* ============================================
   ANIMATION UTILITIES
   ============================================ */

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Print styles */
@media print {
  .navbar,
  .scroll-to-top {
    display: none;
  }
}
