/**
* VantageScan Pro - AI-Powered Web Scraping Platform
* Dark theme with glassmorphism effects and purple accent color
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #464D82;
  --primary-dark: #3a4070;
  --primary-light: #5a6194;
  --bg-dark: #0a0b0f;
  --bg-dark-secondary: #1a1b23;
  --bg-glass: rgba(70, 77, 130, 0.1);
  --text-light: #ffffff;
  --text-gray: #b8bcc8;
  --text-dark-gray: #8892b0;
  --border-glass: rgba(255, 255, 255, 0.1);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
  
  /* Typography System */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Font Sizes - Professional Scale */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  
  /* Font Weights */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  
  /* Animation Easing */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast: 0.15s;
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  color: var(--text-light);
  background: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(70, 77, 130, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(70, 77, 130, 0.2) 0%, transparent 50%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-smooth);
}

a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: var(--text-5xl); font-weight: var(--weight-bold); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.section-bg {
  background: var(--bg-dark-secondary);
}

/*--------------------------------------------------------------
# Glassmorphism Components
--------------------------------------------------------------*/
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow: var(--shadow-glass);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  transition: all var(--duration-slow) var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
}

.back-to-top i {
  font-size: var(--text-2xl);
  color: var(--text-light);
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-glass);
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(10, 11, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.5s ease;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled {
  background: rgba(10, 11, 15, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: var(--text-light);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 991px) {
  #header {
    padding: 12px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  white-space: nowrap;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primary-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 12px 24px;
  margin-left: 30px;
  border-radius: 8px;
  line-height: 1;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: var(--bg-dark);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(70, 77, 130, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(70, 77, 130, 0.2) 0%, transparent 50%);
  animation: float 8s ease-in-out infinite;
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-stream {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  opacity: 0.08;
  animation: pulse 4s ease-in-out infinite;
}

.ai-nodes {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.4;
  animation: rotate 15s linear infinite;
}

#hero h1 {
  margin: 0;
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s var(--ease-smooth) 0.2s both;
}

#hero h2 {
  color: var(--text-gray);
  margin: 0 0 2.5rem 0;
  font-size: var(--text-xl);
  font-weight: var(--weight-normal);
  line-height: 1.6;
  animation: fadeInUp 1s var(--ease-smooth) 0.4s both;
}

#hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all var(--duration-normal) var(--ease-smooth);
  color: var(--text-light);
  background: var(--primary-color);
  text-decoration: none;
  margin-right: 1rem;
  animation: fadeInUp 1s var(--ease-smooth) 0.6s both;
}

#hero .btn-get-started:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(70, 77, 130, 0.4);
}

#hero .btn-demo {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all var(--duration-normal) var(--ease-smooth);
  color: var(--primary-color);
  background: transparent;
  border: 2px solid var(--primary-color);
  text-decoration: none;
  animation: fadeInUp 1s var(--ease-smooth) 0.8s both;
}

#hero .btn-demo:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
  #hero h1 {
    font-size: 2.5rem;
  }
  #hero h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 2rem;
  }
  #hero h2 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  #hero .btn-get-started,
  #hero .btn-demo {
    padding: 14px 24px;
    font-size: 14px;
    margin-bottom: 10px;
  }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.05; }
  50% { transform: scale(1.02); opacity: 0.1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding: 0 0 60px 0;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.1s both;
}

.section-title h2 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  margin-bottom: 20px;
  color: var(--text-light);
  position: relative;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.section-title span {
  color: var(--primary-color);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
  font-family: var(--font-primary);
}

.section-title p {
  color: var(--text-gray);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# New Component Styles
--------------------------------------------------------------*/

/* Industry Cards */
.industry-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
  height: 100%;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glass);
}

.industry-card .icon {
  font-size: var(--text-5xl);
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.industry-card:hover .icon {
  transform: scale(1.1);
  color: var(--primary-light);
}

.industry-card h4 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: 15px;
  color: var(--text-light);
  font-family: var(--font-heading);
}

.industry-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: var(--text-base);
  font-family: var(--font-primary);
}

/* User Tiers */
.user-tier {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.user-tier.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.tier-badge {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.user-tier h4 {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.user-tier p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.user-tier ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.user-tier ul li {
  color: var(--text-gray);
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.user-tier ul li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Pain Points */
.pain-point {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
  height: 100%;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.3s both;
}

.pain-point:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glass);
}

.pain-point .icon {
  font-size: var(--text-4xl);
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.pain-point:hover .icon {
  transform: scale(1.1);
  color: var(--primary-light);
}

.pain-point h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: 15px;
  color: var(--text-light);
  font-family: var(--font-heading);
}

.pain-point p {
  color: var(--text-gray);
  font-size: var(--text-base);
  line-height: 1.6;
  font-family: var(--font-primary);
}

/* Feature Highlights */
.feature-highlight {
  display: flex;
  align-items: flex-start;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

.feature-content p {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Pricing Cards */
.pricing-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
  height: 100%;
  position: relative;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glass);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.03);
  box-shadow: var(--shadow-glass);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  font-family: var(--font-primary);
}

.pricing-header h3 {
  font-size: var(--text-2xl);
  color: var(--text-light);
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
}

.price {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.price span {
  font-size: 1rem;
  color: var(--text-gray);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-card ul li {
  color: var(--text-gray);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-glass);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.btn-pricing {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.btn-pricing:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.pricing-footer {
  text-align: center;
  margin-top: 50px;
}

.pricing-footer p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.btn-compare {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.special-focus {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
}

.special-focus h3 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.special-focus p {
  color: var(--text-gray);
  margin: 0;
}

/*--------------------------------------------------------------
# About Page Specific Styles
--------------------------------------------------------------*/

/* Platform Visual */
.platform-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.tech-stack-diagram {
  position: relative;
  width: 300px;
  height: 300px;
}

.layer {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ai-layer {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.scraping-layer {
  top: 80px;
  left: 0;
  width: 180px;
  height: 60px;
}

.data-layer {
  top: 80px;
  right: 0;
  width: 180px;
  height: 60px;
}

.infrastructure-layer {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 60px;
}

.layer:hover {
  transform: translateX(-50%) translateY(-5px);
  border-color: var(--primary-color);
}

/* Tech Components */
.tech-component {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.tech-component:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.tech-component .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.tech-component h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

.tech-component p {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.tech-component ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.tech-component ul li {
  color: var(--text-gray);
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
}

.tech-component ul li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Competitive Edge */
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.advantage-item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.advantage-item h4 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.advantage-item h4 i {
  color: var(--primary-color);
  margin-right: 10px;
}

.advantage-item p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

.competitors-comparison {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px;
  height: fit-content;
}

.competitors-comparison h4 {
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-glass);
}

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

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

.advantage {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 50px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-glass);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
}

.timeline-badge.current {
  background: var(--primary-color);
}

.timeline-badge.future {
  border-color: var(--text-gray);
  color: var(--text-gray);
}

.timeline-content {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px;
  width: calc(50% - 50px);
  margin-left: 50px;
  margin-right: 50px;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 50px;
  margin-right: 0;
}

.timeline-content h4 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.timeline-content p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

/* Compliance Cards */
.compliance-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.compliance-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.compliance-card .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.compliance-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-light);
}

.compliance-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-badge {
    left: 20px;
    width: 60px;
    height: 60px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
    margin-right: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Pricing Page Specific Styles
--------------------------------------------------------------*/

/* Pricing Hero */
.pricing-hero {
  padding: 100px 0 50px 0;
  text-align: center;
}

.pricing-toggle {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.toggle-label {
  color: var(--text-gray);
  font-weight: 500;
}

.discount {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-left: 8px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-glass);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-light);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Enhanced Pricing Cards */
.main-pricing .pricing-card {
  position: relative;
  overflow: hidden;
}

.trial-card {
  border: 2px dashed var(--border-glass);
}

.enterprise-card {
  background: linear-gradient(135deg, var(--bg-glass), rgba(70, 77, 130, 0.2));
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  color: var(--text-gray);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  margin-right: 12px;
  font-size: 1.2rem;
}

.feature-list li.not-included {
  opacity: 0.5;
}

.feature-list li.not-included i {
  color: var(--text-dark-gray);
}

.trial-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px dashed var(--primary-color);
}

.trial-btn:hover {
  background: var(--primary-color);
  color: var(--text-light);
  border-style: solid;
}

.enterprise-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light);
}

.enterprise-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(70, 77, 130, 0.4);
}

/* Feature Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
}

.comparison-table th {
  background: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-table td {
  color: var(--text-gray);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-light);
}

.category-row td {
  background: var(--bg-dark-secondary);
  color: var(--primary-color);
  font-weight: 600;
  text-align: left;
  font-size: 1.1rem;
}

.comparison-table .text-success {
  color: var(--primary-color) !important;
}

.comparison-table .text-danger {
  color: var(--text-dark-gray) !important;
}

/* Enterprise Solutions */
.enterprise-feature {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.enterprise-feature:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.enterprise-feature .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.enterprise-feature h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-light);
}

.enterprise-feature p {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.enterprise-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px 30px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
}

.enterprise-cta h3 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 2rem;
}

.enterprise-cta p {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.btn-enterprise {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-light);
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-enterprise:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(70, 77, 130, 0.4);
  color: var(--text-light);
}

/* FAQ */
.faq-item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-item h4 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
  
  .enterprise-cta h3 {
    font-size: 1.5rem;
  }
  
  .enterprise-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .pricing-toggle {
    flex-direction: column;
    gap: 15px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 0;
}

.featured-services .icon-box {
  padding: 20px;
  color: #5f687b;
  background: #f9f9fa;
  border-radius: 4px;
  border: 1px solid #f9f9fa;
  transition: 0.3s;
  height: 100%;
}

.featured-services .icon {
  margin: 0 0 15px 0;
}

.featured-services .icon i {
  color: #16df7e;
  font-size: 36px;
}

.featured-services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #5f687b;
  transition: 0.3s;
}

.featured-services .icon-box:hover {
  border-color: #eaecef;
}

.featured-services .icon-box:hover .title a {
  color: #16df7e;
}

.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #5f687b;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #16df7e;
}

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

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #16df7e;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #fff;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #16df7e;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #5f687b;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #eaecef;
}

.services .icon-box:hover h4 a {
  color: #16df7e;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #16df7e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #5f687b;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #949cac;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #206bfb;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #16df7e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #16df7e;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #16df7e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(95, 104, 123, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e4e6ea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: white;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #16df7e;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #16df7e;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #16df7e;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #206bfb;
  border-color: #206bfb;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 100%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #16df7e;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
}

.contact .section-title {
  margin-bottom: 60px;
}

.contact .info {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  transition: all var(--duration-normal) var(--ease-smooth);
  animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.contact .info:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glass);
}

.contact .info i {
  font-size: var(--text-2xl);
  color: var(--primary-color);
  float: left;
  width: 56px;
  height: 56px;
  background: var(--bg-glass);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.contact .info:hover i {
  background: var(--primary-color);
  color: var(--text-light);
  transform: scale(1.1);
}

.contact .info h4 {
  padding: 0 0 0 76px;
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: 8px;
  color: var(--text-light);
  font-family: var(--font-heading);
}

.contact .info p {
  padding: 0 0 0 76px;
  margin-bottom: 0;
  font-size: var(--text-base);
  color: var(--text-gray);
  line-height: 1.6;
}

.contact .php-email-form {
  width: 100%;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

.contact .php-email-form .form-group {
  margin-bottom: 24px;
}

.contact .php-email-form label {
  color: var(--text-light);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  margin-bottom: 8px;
  display: block;
  font-family: var(--font-primary);
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--text-light);
  background: #dc3545;
  text-align: left;
  padding: 16px;
  font-weight: var(--weight-medium);
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: var(--text-sm);
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--text-light);
  background: var(--primary-color);
  text-align: center;
  padding: 16px;
  font-weight: var(--weight-medium);
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: var(--text-sm);
}

.contact .php-email-form .loading {
  display: none;
  background: var(--bg-glass);
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  color: var(--text-light);
  font-size: var(--text-sm);
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select {
  border-radius: 12px;
  box-shadow: none;
  font-size: var(--text-base);
  font-family: var(--font-primary);
  background: var(--bg-dark-secondary);
  border: 2px solid var(--border-glass);
  color: var(--text-light);
  padding: 16px 20px;
  width: 100%;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: var(--primary-color);
  outline: none;
  background: var(--bg-dark);
  box-shadow: 0 0 0 3px rgba(70, 77, 130, 0.1);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--text-dark-gray);
  font-size: var(--text-base);
}

.contact .php-email-form textarea {
  padding: 20px;
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact .php-email-form button[type=submit] {
  background: var(--primary-color);
  border: 0;
  padding: 18px 36px;
  color: var(--text-light);
  transition: all var(--duration-normal) var(--ease-smooth);
  border-radius: 12px;
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  font-family: var(--font-primary);
  cursor: pointer;
  min-width: 160px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(70, 77, 130, 0.4);
}

/*--------------------------------------------------------------
# Contact Information Cards
--------------------------------------------------------------*/
.contact-info {
  padding: 80px 0;
}

.contact-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
  height: 100%;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.3s both;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glass);
  border-color: var(--primary-color);
}

.contact-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.contact-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card .icon i {
  font-size: var(--text-3xl);
  color: var(--text-light);
}

.contact-card h4 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: 15px;
  color: var(--text-light);
  font-family: var(--font-heading);
}

.contact-card p {
  font-size: var(--text-base);
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-card strong {
  color: var(--primary-light);
}

/*--------------------------------------------------------------
# Support Options
--------------------------------------------------------------*/
.support-option {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
  animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

.support-option:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glass);
}

.support-option .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--bg-dark-secondary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.support-option:hover .icon {
  background: var(--primary-color);
  transform: scale(1.05);
}

.support-option .icon i {
  font-size: var(--text-2xl);
  color: var(--primary-color);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.support-option:hover .icon i {
  color: var(--text-light);
}

.support-option h5 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: 10px;
  color: var(--text-light);
  font-family: var(--font-heading);
}

.support-option p {
  font-size: var(--text-sm);
  color: var(--text-gray);
  margin-bottom: 0;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--bg-dark-secondary);
  color: var(--text-gray);
  font-size: 14px;
  position: relative;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0 40px 0;
}

#footer .footer-top h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#footer .footer-top p {
  font-size: 1rem;
  margin: 0 0 30px 0;
  padding: 0;
  color: var(--text-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#footer .footer-newsletter h4 {
  color: var(--text-light);
  margin-bottom: 10px;
}

#footer .footer-newsletter p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

#footer .footer-newsletter form {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  padding: 8px;
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 12px 16px;
  background: transparent;
  color: var(--text-light);
  flex: 1;
}

#footer .footer-newsletter form input[type=email]::placeholder {
  color: var(--text-dark-gray);
}

#footer .footer-newsletter form input[type=submit] {
  border: 0;
  background: var(--primary-color);
  font-size: 16px;
  padding: 12px 24px;
  color: var(--text-light);
  transition: 0.3s;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--primary-light);
}

#footer .footer-links {
  padding: 40px 0;
}

#footer .footer-links h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

#footer .footer-links ul a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer .footer-links ul a:hover {
  color: var(--primary-color);
}

#footer .social-links {
  margin: 40px 0;
}

#footer .social-links a {
  font-size: 20px;
  display: inline-block;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  color: var(--text-gray);
  line-height: 1;
  padding: 12px;
  margin: 0 8px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  text-align: center;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .social-links a:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

#footer .footer-bottom {
  border-top: 1px solid var(--border-glass);
  z-index: 2;
  position: relative;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .copyright {
  color: var(--text-gray);
}

#footer .footer-legal {
  color: var(--text-gray);
}

#footer .footer-legal a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer .footer-legal a:hover {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  #footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}