/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--transition);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Glass Card Effect - True Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .glass-card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0.6;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.glass-card.hover-lift:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] .glass-card.hover-lift:hover {
  background: rgba(22, 27, 34, 0.8);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Gradient Text Effects */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-highlight {
  font-size: 1.2em;
  letter-spacing: -0.02em;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation - Minimal Style */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem 0;
  margin: 16px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(22, 27, 34, 0.8);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo h2 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-glass-hover);
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.nav-link-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  padding: 8px 4px;
  margin-left: 4px;
  border-radius: 4px;
  transition: background 0.2s ease;
  display: none; /* Hidden by default on desktop */
}

.dropdown-toggle:hover {
  background: var(--bg-glass-hover);
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 8px;
}

[data-theme="dark"] .nav-dropdown .dropdown-menu {
  background: rgba(22, 27, 34, 0.95);
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.dropdown-section {
  margin-bottom: 4px;
  padding-left: 10px;
}

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

.dropdown-item {
  display: block;
  padding: 8px 12px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  color: var(--text-primary);
  background: var(--bg-glass-hover);
}

.dropdown-item.main-category {
  font-weight: 600;
  color: var(--text-primary);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  margin-bottom: 4px;
}

.subcategory-menu {
  margin-left: 12px;
}

.dropdown-item.subcategory {
  font-size: 0.85rem;
  padding-left: 20px;
  position: relative;
}

/* .dropdown-item.subcategory::before {
  content: '→';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  opacity: 0.6;
} */

/* Hide dropdown arrows on desktop for first-hand categories */
@media (min-width: 1243px) {
  .nav-link i.fa-chevron-down,
  .dropdown-toggle,
  .dropdown-arrow,
  .nav-dropdown .dropdown-toggle {
    display: none !important;
  }
}

/* Mobile dropdown arrows */
@media (max-width: 1242px) {
  .nav-link i.fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
  }

  .nav-dropdown:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
  }
}

/* Mobile Dropdown Styles */
@media (max-width: 1242px) {
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    margin-left: 1rem;
    transition: all 0.3s ease;
  }
  
  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }
  
  /* Mobile dropdown toggle visibility */
  .nav-link-wrapper {
    justify-content: space-between;
    width: 100%;
  }
  
  .dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
  }

  .dropdown-item.main-category {
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    margin-bottom: 8px;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .subcategory-menu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-left: 1rem;
  }
  
  .dropdown-section.open .subcategory-menu {
    max-height: 300px;
  }
  
  .dropdown-arrow, .subcategory-arrow {
    transition: transform 0.3s ease;
  }
  
  .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .dropdown-section.open .subcategory-arrow {
    transform: rotate(180deg);
  }

  .subcategory-menu {
    margin-left: 8px;
    margin-bottom: 8px;
  }

  .dropdown-item.subcategory {
    padding-left: 16px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Language Selector */
.nav-language {
  position: relative;
}

.nav-language-dropdown {
  position: relative;
}

.nav-language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 6px 12px;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.85rem;
  min-width: 70px;
  box-shadow: 0 4px 16px var(--shadow-color);
}

.nav-language-btn:hover {
  background: var(--bg-secondary);
  transform: translateY(-1px);
}

.nav-language-btn.active {
  background: var(--accent-primary);
  color: white;
}

.nav-language-btn .dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: 0.7rem;
}

.nav-language-btn.active .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  min-width: 200px;
  box-shadow: 0 8px 32px var(--shadow-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.nav-language-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-language-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  padding-left: 10px !important;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
  color: inherit;
}

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

.nav-language-item:hover {
  background: var(--bg-secondary);
}

.nav-language-item.active {
  background: var(--accent-primary);
  color: white;
}

.nav-language-item .lang-name {
  flex: 1;
  font-weight: 500;
  font-size: 0.9rem;
}

.flag-image {
  width: 20px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Navigation Theme Toggle */
.nav-theme-toggle {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--shadow-color);
}

.nav-theme-toggle:hover {
  background: var(--bg-glass-hover);
  transform: scale(1.05);
}

.nav-theme-toggle i {
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.nav-theme-toggle .dark-icon {
  display: none;
}

[data-theme="dark"] .nav-theme-toggle .light-icon {
  display: none;
}

[data-theme="dark"] .nav-theme-toggle .dark-icon {
  display: block;
}

/* Hero Section - Rescale Style */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
}

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

/* Gradient Orbs - More Subtle */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: floatOrb 25s ease-in-out infinite;
  opacity: 0.3;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #667eea, #764ba2);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #f093fb, #f5576c);
  top: 60%;
  right: -150px;
  animation-delay: -8s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #4facfe, #00f2fe);
  bottom: -125px;
  left: 50%;
  animation-delay: -16s;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .hero-badge {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Enhanced Glass Buttons */
.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 6px 20px rgba(59, 130, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(59, 130, 246, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .btn-glass {
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .btn-glass:hover {
  background: rgba(22, 27, 34, 0.9);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Sections - Modern Layout */
.section {
  padding: 6rem 0;
  position: relative;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .section-badge {
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* About Story */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.highlight-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Story Visual */
.story-visual {
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.floating-icon:nth-child(1) { top: 20%; right: 15%; }
.floating-icon:nth-child(2) { top: 60%; left: 10%; }
.floating-icon:nth-child(3) { bottom: 25%; right: 20%; }
.floating-icon:nth-child(4) { top: 35%; left: 70%; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(5deg); }
  66% { transform: translateY(5px) rotate(-3deg); }
}

/* About Values */
.about-values {
  text-align: center;
  margin-top: 2rem;
}

.about-values h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

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

.value-card {
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .value-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.value-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* About Expertise */
.about-expertise {
  background: var(--bg-glass);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-content h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.expertise-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tech-category {
  text-align: center;
}

.tech-category h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.tech-item {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(37, 99, 235, 0.2);
  transition: var(--transition);
}

.tech-item:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-2px);
}

[data-theme="dark"] .tech-item {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-primary);
  border-color: rgba(59, 130, 246, 0.2);
}

/* About Hero Section */
.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent-secondary);
}

.breadcrumb span {
  margin: 0 0.5rem;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-stats .stat-item {
  padding: 1.5rem;
  text-align: center;
  border-radius: 15px;
}

.about-hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.about-hero-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
}

.cta-content {
  padding: 3rem;
  text-align: center;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.cta-buttons .btn {
  min-width: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero {
    min-height: 60vh;
    padding: 4rem 0 3rem;
  }
  
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .cta-text h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-visual {
    order: -1;
  }
  
  .about-image {
    max-width: 300px;
    padding: 2rem;
  }
  
  .floating-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-expertise {
    padding: 2rem;
  }
  
  .story-text h3,
  .about-values h3,
  .expertise-content h3 {
    font-size: 1.8rem;
  }
}

/* Services Section - Minimal Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  padding: 2rem;
  text-align: left;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .service-card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card.featured {
  border: 2px solid var(--accent-primary);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--accent-primary);
  color: white;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 0 14px 0 12px;
  letter-spacing: 0.05em;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-glass-hover);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.25rem;
  border: 1px solid var(--border-color);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: var(--bg-glass-hover);
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  overflow: hidden;
  transition: var(--transition);
}

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

.portfolio-image {
  height: 200px;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.portfolio-content p {
  color: var(--text-secondary);
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: var(--accent-primary);
  font-size: 1.2rem;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
}

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

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: var(--bg-glass-hover);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent-primary);
  background: var(--bg-primary);
  padding: 0 0.5rem;
}

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

/* Footer */
.footer {
  margin-top: 5rem;
  padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--accent-primary);
}

.footer-section p a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section p a:hover {
  color: var(--accent-primary);
}

/* Footer Social Media */
.footer-social {
  padding: 2rem 0 1rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-secondary);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-decoration: none;
  overflow: hidden;
}

.social-link:hover {
  transform: translateY(-2px);
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 16px var(--shadow-color);
}

.social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: var(--transition);
  filter: var(--icon-filter);
}

.social-link:hover .social-icon {
  filter: none;
}

/* Mobile responsive for social links */
@media (max-width: 768px) {
  .social-links {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-icon {
    width: 20px;
    height: 20px;
  }
  
  .footer-social {
    padding: 1.5rem 0 1rem;
  }
  
  .footer-logo {
    height: 45px;
  }
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  text-align: center;
  color: var(--text-muted);
}

/* Responsive Design - Modern Mobile First */
@media (max-width: 1242px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    width: calc(100% - 40px);
    margin: 0 20px;
    text-align: left;
    transition: 0.3s ease-in-out;
    box-shadow: 0 8px 32px var(--shadow-color);
    border-radius: 16px;
    padding: 2rem 0;
    border: 1px solid var(--border-color);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  
  [data-theme="dark"] .nav-menu {
    background: rgba(22, 27, 34, 0.9);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .navbar {
    margin: 10px 16px;
  }
  
  .logo-img {
    height: 35px;
  }
  
  /* Navigation controls in mobile menu */
  .nav-language,
  .nav-theme {
    margin-top: 1rem;
    padding-top: 1rem;
    /* border-top: 1px solid var(--border-color); */
  }
  
  .nav-language-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-width: 80px;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
  }
  
  .nav-language-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    margin-top: 1rem;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-language-dropdown.open .nav-language-menu {
    opacity: 1;
    visibility: visible;
    max-height: fit-content; /* Increased height */
    overflow-y: auto; /* Enable scrolling */
    padding-right: 5px; /* Space for scrollbar */
  }
  
  /* Custom scrollbar for mobile language menu */
  .nav-language-dropdown.open .nav-language-menu::-webkit-scrollbar {
    width: 4px;
  }
  
  .nav-language-dropdown.open .nav-language-menu::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 2px;
  }
  
  .nav-language-dropdown.open .nav-language-menu::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 2px;
  }
  
  .nav-language-item {
    padding: 12px 16px;
    margin: 4px 0;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-bottom: none;
    color: var(--text-primary);
  }
  
  /* Mobile active language item with proper contrast */
  .nav-language-item.active {
    background: var(--accent-primary) !important;
    color: white !important;
    font-weight: 600;
  }
  
  .nav-language-item:hover {
    background: var(--bg-tertiary);
  }
  
  .nav-menu .nav-item {
    margin: 0.5rem 0;
    padding: 0 2rem;
    display: block;
    width: 100%;
  }
  
  .nav-menu .nav-item a {
    display: block;
    padding: 12px 0;
    text-align: left;
    /* border-bottom: 1px solid var(--border-color); */
    width: 100%;
    color: var(--text-primary);
    font-weight: 500;
  }
  
  .nav-menu .nav-item:last-child a {
    border-bottom: none;
  }
  
  .nav-menu li {
    display: block;
    width: 100%;
  }
  
  /* Mobile active nav links - remove underline, make bolder */
  .nav-menu .nav-item a.active {
    font-weight: 700;
    color: var(--accent-primary);
    position: relative;
  }
  
  .nav-menu .nav-item a.active::after {
    display: none; /* Remove the blue underline in mobile */
  }
  
  .nav-theme-toggle {
    width: 42px;
    height: 42px;
    margin: 0 auto;
  }
  
  .hero {
    padding: 100px 20px 60px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .gradient-orb {
    opacity: 0.2;
  }
  
  .orb-1 {
    width: 300px;
    height: 300px;
  }
  
  .orb-2 {
    width: 200px;
    height: 200px;
  }
  
  .orb-3 {
    width: 150px;
    height: 150px;
  }
  
  /* Mobile optimizations for new sections */
  .dashboard-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .dashboard-mockup {
    order: 2;
  }
  
  .ai-chat-mockup {
    order: 1;
  }
  
  .partners-grid {
    gap: 2rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .integration-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .milestones-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .milestone-number {
    font-size: 2rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-text h2 {
    font-size: 2rem;
  }
  
  .story-cta {
    justify-content: center;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .chart-section {
    flex-direction: column;
    gap: 1rem;
  }
  
  .metrics-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .integration-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .milestone-card,
  .service-card,
  .process-step,
  .testimonial-card,
  .pricing-card {
    padding: 1.25rem;
  }
  
  .dashboard-mockup,
  .ai-chat-mockup {
    padding: 1rem;
  }
  
  .mockup-content {
    padding: 1rem;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .service-card,
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  .about-text {
    padding: 1.5rem;
  }
}

/* Smooth scrolling animations and effects */
@media (prefers-reduced-motion: no-preference) {
  .glass-card {
    animation: fadeInUp 0.6s ease-out;
  }
  
  .hero-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }
  
  .hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }
  
  .hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }
  
  .hero-stats {
    animation: fadeInUp 0.8s ease-out 0.8s both;
  }
}

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

/* Dashboard Preview Section */
.dashboard-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.dashboard-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.dashboard-mockup {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .dashboard-mockup {
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mockup-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mockup-nav {
  display: flex;
  gap: 1rem;
}

.nav-item {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.nav-item.active {
  background: var(--accent-primary);
  color: white;
}

.mockup-content {
  padding: 2rem;
}

.metrics-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  flex: 1;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

[data-theme="dark"] .metric-card {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .metric-card:hover {
  background: rgba(22, 27, 34, 0.9);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.chart-section {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.chart-bars {
  display: flex;
  gap: 8px;
  align-items: end;
  height: 100px;
}

.bar {
  width: 20px;
  background: var(--gradient-primary);
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
}

.pie-chart {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(var(--accent-primary) 0deg 120deg, var(--accent-secondary) 120deg 240deg, var(--accent-success) 240deg 360deg);
}

.ai-chat-mockup {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .ai-chat-mockup {
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.chat-header {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.message {
  margin-bottom: 1rem;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.user-message {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
  margin-left: 2rem;
}

.ai-message {
  background: var(--accent-primary);
  color: white;
  margin-right: 2rem;
}

/* Partners Section */
.partners-section {
  padding: 3rem 0;
  text-align: center;
  background: var(--bg-secondary);
}

.partners-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--accent-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .partners-badge {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo {
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  color: var(--accent-primary);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.03) 0%, rgba(0, 242, 254, 0.03) 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.process-step {
  padding: 2rem;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(35px) saturate(200%);
  -webkit-backdrop-filter: blur(35px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .process-step {
  background: rgba(22, 27, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-primary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.step-illustration {
  margin-bottom: 1.5rem;
}

.illustration-placeholder {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 2rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.process-cta {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .process-cta {
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.process-cta p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Integration Section */
.integration-section {
  background: var(--bg-secondary);
}

.integration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.integration-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .integration-card {
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.integration-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.integration-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
}

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

.integration-visual {
  padding: 2rem;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-model-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-secondary);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.integration-diagram {
  position: relative;
  width: 200px;
  height: 200px;
}

.center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.connection-node {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--bg-glass-hover);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { right: 0; top: 50%; transform: translateY(-50%); }
.node-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-4 { left: 0; top: 50%; transform: translateY(-50%); }

.reliability-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent-success);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Milestones Section */
.milestones-section {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.milestone-card {
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(35px) saturate(200%);
  -webkit-backdrop-filter: blur(35px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.milestone-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .milestone-card {
  background: rgba(22, 27, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .milestone-card:hover {
  background: rgba(22, 27, 34, 0.7);
}

.milestone-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.milestone-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.milestones-cta {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .milestones-cta {
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Team Section */
.team-section {
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.team-member {
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .team-member {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .team-member:hover {
  background: rgba(22, 27, 34, 0.8);
}

.member-photo {
  margin-bottom: 1.5rem;
}

.photo-placeholder {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 2.5rem;
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.team-member p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-glass-hover);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-primary);
}

/* Story Section */
.story-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.03) 0%, rgba(0, 242, 254, 0.03) 100%);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.story-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.story-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-image {
  aspect-ratio: 1;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image:first-child {
  grid-column: 1 / -1;
}

.story-image .image-placeholder {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

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

.testimonial-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(35px) saturate(200%);
  -webkit-backdrop-filter: blur(35px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .testimonial-card {
  background: rgba(22, 27, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.toggle-switch {
  position: relative;
}

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

.toggle-switch label {
  display: block;
  width: 50px;
  height: 26px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 26px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.toggle-switch label::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--accent-primary);
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + label::after {
  transform: translateX(24px);
}

.save-badge {
  background: var(--accent-success);
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  padding: 2rem;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.3);
  box-shadow: 
    0 16px 48px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .pricing-card {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .pricing-card.featured {
  background: rgba(59, 130, 246, 0.15);
  border: 2px solid rgba(59, 130, 246, 0.4);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-success);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(35px) saturate(200%);
  -webkit-backdrop-filter: blur(35px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

[data-theme="dark"] .faq-item {
  background: rgba(22, 27, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .faq-item:hover {
  background: rgba(22, 27, 34, 0.7);
}

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

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

/* Contact CTA Section */
.contact-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.availability {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.cta-description {
  font-size: 1rem;
  opacity: 0.8;
}

/* Additional Modern Touches */
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  opacity: 0.5;
}

/* Additional Glass Effects for Consistency */
.story-image {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .story-image {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.integration-visual {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .integration-visual {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Subtle Grid Pattern Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.05) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}

/* 3D Tech Cube */
.tech-cube-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px 0 100px 0;
  perspective: 1200px;
  position: relative;
  min-height: 300px;
}

.tech-cube {
  width: 160px;
  height: 160px;
  position: relative;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite, rotate3d 20s linear infinite;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.tech-cube:hover {
  animation-play-state: paused;
  transform: rotateX(15deg) rotateY(15deg) scale(1.1);
}

.cube-face {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .cube-face {
  background: rgba(22, 27, 34, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}



.cube-face.front {
  transform: rotateY(0deg) translateZ(80px);
}

.cube-face.back {
  transform: rotateY(180deg) translateZ(80px);
}

.cube-face.right {
  transform: rotateY(90deg) translateZ(80px);
}

.cube-face.left {
  transform: rotateY(-90deg) translateZ(80px);
}

.cube-face.top {
  transform: rotateX(90deg) translateZ(80px);
}

.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(80px);
}

.cube-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

.cube-face i {
  font-size: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.cube-face span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-cube:hover .cube-face {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .tech-cube:hover .cube-face {
  background: rgba(22, 27, 34, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.tech-cube:hover .cube-face i {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
  33% {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  }
  66% {
    transform: translateY(-5px) rotateX(-3deg) rotateY(-3deg);
  }
}

@keyframes rotate3d {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  33% {
    transform: rotateX(120deg) rotateY(120deg) rotateZ(0deg);
  }
  66% {
    transform: rotateX(240deg) rotateY(240deg) rotateZ(120deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

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

/* Responsive adjustments for 3D cube */
@media (max-width: 768px) {
  .tech-cube {
    width: 100px;
    height: 100px;
  }
  
  .cube-face {
    width: 100px;
    height: 100px;
  }
  
  .cube-face.front,
  .cube-face.back,
  .cube-face.right,
  .cube-face.left {
    transform: rotateY(var(--rotation)) translateZ(50px);
  }
  
  .cube-face.top,
  .cube-face.bottom {
    transform: rotateX(var(--rotation)) translateZ(50px);
  }
  
  .cube-face i {
    font-size: 24px;
  }
  
  .cube-face span {
    font-size: 10px;
  }
  
  .cube-glow {
    width: 130px;
    height: 130px;
  }
}

/* Ripple effect animation */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Process Section */
.process-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

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

.process-section .container {
  position: relative;
  z-index: 1;
}

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

.process-card {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

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

.process-card:hover::before {
  left: 100%;
}

.process-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .process-card:hover {
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  animation: float 3s ease-in-out infinite;
}

.process-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.process-icon {
  margin: 20px 0;
}

.process-icon i {
  font-size: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon i {
  transform: scale(1.1) rotateY(360deg);
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0 15px 0;
  color: var(--text-primary);
}

.process-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 16px;
}

.process-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.feature-tag {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
}

[data-theme="dark"] .feature-tag {
  background: rgba(102, 126, 234, 0.2);
  color: #9ca3f4;
  border-color: rgba(102, 126, 234, 0.3);
}

.process-card:hover .feature-tag {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

[data-theme="dark"] .process-card:hover .feature-tag {
  background: rgba(102, 126, 234, 0.3);
}

@keyframes ping {
  75%, 100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* Responsive adjustments for process section */
@media (max-width: 768px) {
  .process-section {
    padding: 80px 0;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .process-card {
    padding: 30px 20px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
  }
  
  .process-number::after {
    width: 60px;
    height: 60px;
  }
  
  .process-icon i {
    font-size: 36px;
  }
  
  .process-card h3 {
    font-size: 20px;
  }
  
  .process-card p {
    font-size: 14px;
  }
}

/* Team & Achievements Section */
.team-achievements-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

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

/* Team Cards */
.team-card {
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  animation: rotate 6s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.team-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .team-card:hover {
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.team-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.team-card:hover .avatar-placeholder {
  transform: scale(1.1) rotateY(360deg);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.status-indicator {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  transition: all 0.3s ease;
}

.status-indicator.online {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-indicator.away {
  background: #f59e0b;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.team-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.team-role {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
}

.skill-tag {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
}

[data-theme="dark"] .skill-tag {
  background: rgba(102, 126, 234, 0.2);
  color: #9ca3f4;
  border-color: rgba(102, 126, 234, 0.3);
}

.team-card:hover .skill-tag {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.team-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

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

.social-link:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Achievement Cards */
.achievement-card {
  padding: 30px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.achievement-card:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .achievement-card:hover {
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1) rotateZ(360deg);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.achievement-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.achievement-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
}

.achievement-sparkle {
  position: absolute;
  top: 20px;
  right: 20px;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fbbf24;
  border-radius: 50%;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle:nth-child(1) {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  top: -10px;
  left: 15px;
  animation-delay: 0.7s;
}

.sparkle:nth-child(3) {
  top: 10px;
  left: 8px;
  animation-delay: 1.4s;
}

/* Floating Tech Icons */
.floating-tech-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-tech-icon {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 18px;
  animation: floatTech 8s ease-in-out infinite;
  animation-delay: var(--delay);
}

[data-theme="dark"] .floating-tech-icon {
  background: rgba(22, 27, 34, 0.3);
  border-color: rgba(255, 255, 255, 0.05);
}

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

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

@keyframes floatTech {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-15px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-5px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-10px) rotate(270deg);
    opacity: 0.5;
  }
}

/* Responsive adjustments for team section */
@media (max-width: 768px) {
  .team-achievements-section {
    padding: 80px 0;
  }
  
  .team-achievements-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .team-card, .achievement-card {
    padding: 25px 20px;
  }
  
  .team-avatar {
    width: 60px;
    height: 60px;
  }
  
  .avatar-placeholder {
    font-size: 24px;
  }
  
  .achievement-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .floating-tech-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* Contact Page Styles */
.contact-hero {
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 30px;
  border-radius: 25px;
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.contact-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  position: relative;
}

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

.contact-form-wrapper {
  width: 100%;
}

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

.form-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.form-header p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.contact-form {
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgb(154 154 154 / 50%);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: rgba(22, 27, 34, 0.4);
  border-color: rgba(255, 255, 255, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
  background: rgba(22, 27, 34, 0.6);
}

.form-group.focused label {
  color: var(--accent-primary);
  transform: translateY(-2px);
}

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

.form-group.focused .form-focus-line {
  width: 100%;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent-primary);
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info {
  padding: 40px 30px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.method-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.method-content p {
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 3px;
  font-weight: 500;
}

.method-content small {
  font-size: 13px;
  color: var(--text-secondary);
}

.social-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.social-buttons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Quick Response Card */
.quick-response {
  padding: 30px;
  text-align: center;
}

.response-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 20px;
}

.quick-response h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.quick-response p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.response-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.response-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.response-features .feature i {
  color: #10b981;
  font-size: 12px;
}

/* FAQ Section */
.contact-faq-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .contact-faq-section {
  background: rgba(0, 0, 0, 0.2);
}

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

.faq-item {
  padding: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  padding-right: 20px;
}

.faq-question i {
  color: var(--accent-primary);
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .faq-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 80px 0;
}

.cta-content {
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.cta-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.cta-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  border: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
}

[data-theme="dark"] .notification {
  background: rgba(22, 27, 34, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  border-left: 4px solid #10b981;
}

.notification.success i {
  color: #10b981;
}

.notification.info {
  border-left: 4px solid var(--accent-primary);
}

.notification.info i {
  color: var(--accent-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 80px;
  }
  
  .contact-form-section {
    padding: 80px 0;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    gap: 20px;
  }
  
  .method-icon {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  .social-buttons {
    justify-content: center;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-item {
    padding: 25px 20px;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    transform: translateY(-100px);
  }
  
  .notification.show {
    transform: translateY(0);
  }
}

/* Blog Styles */
.blog-filters {
  padding: 2rem;
  margin-bottom: 2rem;
}

.filter-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.search-form {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.search-group {
  display: flex;
  flex: 1;
  max-width: 400px;
}

.search-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 8px 0 0 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: var(--bg-glass-hover);
}

.search-btn {
  padding: 12px 16px;
  background: var(--accent-primary);
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--accent-secondary);
}

.category-filter select {
  padding: 12px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  cursor: pointer;
  min-width: 150px;
}

.category-filter select:focus {
  outline: none;
  border-color: var(--accent-primary);
}

/* Blog Grid */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-image-placeholder {
  height: 200px;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.blog-category {
  background: var(--accent-primary);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.blog-date,
.blog-reading-time {
  padding: 4px 0;
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-title a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-title a:hover {
  color: var(--accent-primary);
}

.blog-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-read-more {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.blog-read-more:hover {
  color: var(--accent-secondary);
}

/* Blog Detail Styles */
.blog-header {
  padding: 120px 0 60px;
}

.blog-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero .blog-meta {
  justify-content: center;
  margin-bottom: 2rem;
}

.blog-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.blog-featured-image {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content-section {
  padding: 2rem 0 6rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.blog-main-content {
  min-width: 0;
}

.blog-content {
  padding: 2.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  color: var(--text-primary);
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.blog-content h2 {
  font-size: 1.8rem;
}

.blog-content h3 {
  font-size: 1.5rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.blog-content ul,
.blog-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.blog-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-glass-hover);
  border-left: 4px solid var(--accent-primary);
  border-radius: 8px;
  font-style: italic;
}

.blog-content code {
  background: var(--bg-glass-hover);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.blog-content pre {
  background: var(--bg-glass-hover);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-footer-meta {
  padding: 2rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.blog-tags h4,
.blog-share h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tag-link {
  background: var(--bg-glass-hover);
  color: var(--accent-primary);
  padding: 6px 12px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tag-link:hover {
  background: var(--accent-primary);
  color: white;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.facebook { background: #4267b2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.copy { background: var(--accent-primary); }

.share-btn:hover {
  transform: translateY(-2px);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-widget h4 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.author-info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-details h5 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.author-details p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.quick-links li {
  margin-bottom: 0.75rem;
}

.quick-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.5rem 0;
  display: block;
}

.quick-links a:hover {
  color: var(--accent-primary);
  padding-left: 0.5rem;
}

/* Related Posts */
.related-posts-section {
  background: var(--bg-secondary);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-post-card {
  overflow: hidden;
  transition: var(--transition);
}

.related-post-card:hover {
  transform: translateY(-5px);
}

.related-post-image {
  height: 220px;
  overflow: hidden;
}

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

.related-post-image-placeholder {
  height: 220px;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.related-post-content {
  padding: 1.5rem;
}

.related-post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.related-post-category {
  background: var(--accent-secondary);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.related-post-title {
  margin-bottom: 1rem;
}

.related-post-title a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  transition: var(--transition);
}

.related-post-title a:hover {
  color: var(--accent-primary);
}

.related-post-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-glass-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
  font-size: 2rem;
}

.empty-state h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Responsive Blog Styles */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-sidebar {
    position: static;
    order: 2;
  }
  
  .blogs-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .blog-header {
    padding: 100px 0 40px;
  }
  
  .blog-hero .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .blog-content {
    padding: 1.5rem;
    font-size: 1rem;
  }
  
  .blog-footer-meta {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .filter-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .search-group {
    max-width: none;
  }
  
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  /* Adjust related post image heights for mobile */
  .related-post-image,
  .related-post-image-placeholder {
    height: 180px;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .related-post-image,
  .related-post-image-placeholder {
    height: 250px;
  }
}

/* Medium desktop */
@media (min-width: 992px) and (max-width: 1199px) {
  .related-post-image,
  .related-post-image-placeholder {
    height: 220px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 991px) {
  .related-post-image,
  .related-post-image-placeholder {
    height: 200px;
  }
}

/* Small tablet */
@media (min-width: 426px) and (max-width: 768px) {
  .related-post-image,
  .related-post-image-placeholder {
    height: 210px;
  }
}

/* Mobile */
@media (max-width: 425px) {
  .related-post-image,
  .related-post-image-placeholder {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .blog-content {
    padding: 1rem;
  }
  
  .sidebar-widget {
    padding: 1rem;
  }
  
  .related-post-content {
    padding: 1rem;
  }
}

/* About Page Dynamic Sections */
.about-sections {
  background: var(--bg-secondary);
}

.about-dynamic-content {
  display: grid;
  gap: 2rem;
}

.about-section {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  align-items: flex-start;
  transition: var(--transition);
}

.about-section:hover {
  transform: translateY(-3px);
}

.section-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.section-content {
  flex: 1;
}

.section-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.content-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}

.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
  color: var(--text-primary);
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}

.content-text p {
  margin-bottom: 1rem;
}

.content-text ul,
.content-text ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.content-text li {
  margin-bottom: 0.5rem;
}

.content-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.content-text em {
  font-style: italic;
  color: var(--accent-primary);
}

/* Additional About Sections Grid */
.additional-about-sections {
  padding: 4rem 0;
}

.about-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-section-card {
  padding: 2rem;
  transition: var(--transition);
}

.about-section-card:hover {
  transform: translateY(-5px);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.card-content {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-content h1,
.card-content h2,
.card-content h3,
.card-content h4,
.card-content h5,
.card-content h6 {
  color: var(--text-primary);
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

.card-content p {
  margin-bottom: 1rem;
}

.card-content ul,
.card-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.card-content li {
  margin-bottom: 0.5rem;
}

.card-meta {
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.keywords {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Responsive About Sections */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
  }
  
  .section-icon {
    margin: 0 auto;
  }
  
  .about-sections-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-section-card {
    padding: 1.5rem;
  }
  
  .section-content h3 {
    font-size: 1.3rem;
  }
  
  .content-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 1.5rem;
  }
  
  .section-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .about-section-card {
    padding: 1.25rem;
  }
  
  .card-header h4 {
    font-size: 1.1rem;
  }
}

/* Legal Pages (Privacy & Terms) Styles */
.policy-info {
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
}

.policy-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.effective-date,
.version {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.effective-date i,
.version i {
  color: var(--accent-primary);
}

/* Legal Content Layout */
.legal-content-section {
  padding: 2rem 0 4rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.legal-main-content {
  min-width: 0;
}

.legal-content {
  padding: 2.5rem;
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.legal-content .content-text {
  line-height: 1.8;
  font-size: 1.05rem;
}

.legal-content .content-text h1,
.legal-content .content-text h2,
.legal-content .content-text h3,
.legal-content .content-text h4,
.legal-content .content-text h5,
.legal-content .content-text h6 {
  color: var(--text-primary);
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.legal-content .content-text h3 {
  font-size: 1.4rem;
  color: var(--accent-primary);
}

.legal-content .content-text h4 {
  font-size: 1.2rem;
}

.legal-content .content-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.legal-content .content-text ul,
.legal-content .content-text ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-content .content-text li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-content .content-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-content .content-text em {
  font-style: italic;
  color: var(--accent-primary);
}

/* Legal Sidebar */
.legal-sidebar {
  position: sticky;
  top: 100px;
}

.document-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-label {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

/* Additional Legal Sections */
.additional-legal-sections {
  background: var(--bg-secondary);
}

.legal-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.legal-section-card {
  padding: 2rem;
  transition: var(--transition);
}

.legal-section-card:hover {
  transform: translateY(-5px);
}

.legal-section-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-section-card .card-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.card-meta .effective-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-meta .version {
  background: var(--accent-primary);
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 500;
}

.legal-section-card .card-content {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: flex-start;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Full Content Toggle */
.full-content {
  margin-top: 1.5rem;
}

.content-divider {
  height: 1px;
  background: var(--border-color);
  margin: 1.5rem 0;
}

.full-text {
  color: var(--text-secondary);
  line-height: 1.7;
}

.full-text h1,
.full-text h2,
.full-text h3,
.full-text h4,
.full-text h5,
.full-text h6 {
  color: var(--text-primary);
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}

.full-text p {
  margin-bottom: 1rem;
}

.full-text ul,
.full-text ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.full-text li {
  margin-bottom: 0.5rem;
}

.full-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Legal Pages Responsive Design */
@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .legal-sidebar {
    position: static;
    order: 2;
  }
  
  .legal-sections-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .policy-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .legal-content {
    padding: 2rem 1.5rem;
  }
  
  .legal-content h2 {
    font-size: 1.75rem;
  }
  
  .legal-content .content-text {
    font-size: 1rem;
  }
  
  .legal-section-card {
    padding: 1.5rem;
  }
  
  .legal-section-card .card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .card-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .legal-sections-grid {
    grid-template-columns: 1fr;
  }
  
  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .policy-info {
    padding: 1rem;
    margin: 1rem auto;
  }
  
  .legal-content {
    padding: 1.5rem 1rem;
  }
  
  .legal-content h2 {
    font-size: 1.5rem;
  }
  
  .legal-section-card {
    padding: 1.25rem;
  }
  
  .sidebar-widget {
    padding: 1rem;
  }
}

/* Enhanced Contact Form Styles */
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-container {
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.form-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto;
}

.contact-form {
  padding: 3rem;
  position: relative;
  overflow: visible;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 20px 20px 0 0;
}

.form-section {
  margin-bottom: 3rem;
  position: relative;
}

.form-section:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 20%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.1) 80%, 
    transparent 100%
  );
}

[data-theme="dark"] .form-section:not(:last-child)::after {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.05) 20%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(255, 255, 255, 0.05) 80%, 
    transparent 100%
  );
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
}

.section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  position: relative;
  z-index: 3;
}

.required {
  color: #ef4444;
  margin-left: 0.25rem;
}

.input-wrapper,
.select-wrapper,
.textarea-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 1.125rem;
  color: var(--text-muted);
  z-index: 2;
  font-size: 0.875rem;
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}

.form-input:focus + .input-icon,
.form-select:focus + .select-arrow,
.form-textarea:focus + .input-icon {
  color: var(--accent-primary);
  transform: translateX(2px);
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-primary);
}

.select-wrapper {
  position: relative;
}

.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 3rem;
}

.select-arrow {
  position: absolute;
  right: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  font-size: 0.75rem;
  transition: var(--transition);
}

.form-select:focus + .select-arrow {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.textarea-wrapper .input-icon {
  top: 1.125rem;
  transform: none;
  align-self: flex-start;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  font-family: inherit;
}

.error-message {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  clear: both;
}

[data-theme="dark"] .error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}



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

.form-footer {
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  justify-content: center;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.btn-large:active {
  transform: translateY(0);
}

.btn-icon {
  transition: var(--transition);
}

.btn-large:hover .btn-icon {
  transform: translateX(4px);
}

.form-note {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.form-note i {
  color: var(--accent-primary);
}

/* Enhanced Alert Styles */
.alert {
  margin-bottom: 2rem;
  padding: 1.25rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

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

.alert-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.125rem;
}

.alert-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.alert-text p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #059669;
}

.alert-success .alert-icon {
  background: rgba(34, 197, 94, 0.15);
  color: #059669;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.alert-error .alert-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}

/* Contact Info Enhancement */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .form-title {
    font-size: 2.25rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .form-section-title {
    font-size: 1.25rem;
  }
  
  .section-number {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.8125rem;
  }
  
  .contact-info {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  
  .info-card {
    min-width: 200px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-title {
    font-size: 1.75rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
  
  .btn-large {
    width: 100%;
    min-width: unset;
  }
  
  .contact-info {
    flex-direction: column;
  }
  
  .info-card {
    min-width: unset;
    padding: 1.5rem;
  }
  
  .info-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.375rem;
  }
}