/* Modern Premium SMM Panel Styles - Custom Components */
/* Navbar, Hero, Signin/Signup, Blog, Services, FAQ, Platforms, Footer, Special Pages */
.modern-navbar {
  position: fixed;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--primary-100);
  box-shadow: 
    0 8px 32px rgba(249, 115, 22, 0.08),
    0 4px 16px rgba(249, 115, 22, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

[data-theme="dark"] .modern-navbar {
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
}

/* Brand Section */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.navbar-brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 25px rgba(249, 115, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.brand-logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.brand-logo:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(249, 115, 22, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.brand-logo i {
  font-size: 22px;
  color: #fff;
  z-index: 2;
  position: relative;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  font-family: var(--font-family);
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-family);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
  transition: left 0.6s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(249, 115, 22, 0.05);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(249, 115, 22, 0.15),
    0 4px 12px rgba(249, 115, 22, 0.05);
  border-color: rgba(249, 115, 22, 0.08);
}

/* Right Side */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.icon-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gradient-primary);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.icon-btn:hover::before {
  width: 100%;
  height: 100%;
}

.icon-btn:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(249, 115, 22, 0.12),
    0 4px 12px rgba(249, 115, 22, 0.08);
}

.icon-btn i {
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}

.language-selector {
  padding: 12px 20px;
  background: linear-gradient(145deg, var(--white) 0%, var(--gray-50) 100%);
  border-radius: var(--radius-large);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--border-primary);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.language-selector::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
  transition: left 0.5s ease;
}

.language-selector:hover::before {
  left: 100%;
}

.language-selector:hover {
  background: linear-gradient(145deg, var(--primary-50) 0%, var(--primary-100) 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(249, 115, 22, 0.08),
    0 6px 20px rgba(249, 115, 22, 0.15);
  border-color: var(--primary-300);
}

.language-dropdown {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  padding: 4px 32px 4px 8px;
  border-radius: 8px;
  transition: all var(--transition-normal);
  font-family: var(--font-family);
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.language-dropdown:hover {
  background: var(--bg-tertiary);
  color: var(--primary-color);
}

.language-dropdown option {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 12px 16px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  margin: 2px 0;
  transition: all var(--transition-normal);
}

.language-dropdown option:hover {
  background: var(--primary-50);
  color: var(--primary-600);
}





/* Hero Section */
.bulkmedya-signin-hero {
  min-height: 80vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bulkmedya-signin-hero::before {
  display: none;
}

.bulkmedya-hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px;
  position: relative;
  z-index: 2;
}

.bulkmedya-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: start;
  padding: 0;
}

/* Left Hero Content */
.hero-content-left {
  color: var(--text-primary);
  flex: 1;
  padding-right: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-align: left;
  max-width: 550px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: rgba(249, 115, 22, 0.5);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  backdrop-filter: none;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  color: rgba(249, 115, 22, 0.7);
}

.hero-badge i {
  color: rgba(249, 115, 22, 0.4);
  font-size: 14px;
  transition: all 0.3s ease;
  margin-right: 4px;
}

.hero-badge:hover i {
  color: rgba(249, 115, 22, 0.6);
}

.hero-badge span {
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.hero-feature:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-feature i {
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #ffffff;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin: 40px 0 60px 0;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  justify-content: flex-start;
  align-items: center;
}

.hero-learn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-primary);
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-family);
  position: relative;
  overflow: hidden;
}

.hero-learn-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.4s ease;
  z-index: -1;
}

.hero-learn-btn:hover::before {
  left: 0;
}

.hero-learn-btn:hover {
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(249, 115, 22, 0.12),
    0 6px 20px rgba(249, 115, 22, 0.08);
}

/* Hero Stats Mini */
.hero-stats-mini {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-family);
  line-height: 1;
}

.stat-text {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-giant-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 24px 0;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-family);
  animation: fadeInUp 0.8s ease-out;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(249, 115, 22, 0.05);
  position: relative;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 50%, var(--primary-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { 
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 50%, var(--primary-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  50% { 
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 50%, var(--primary-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

.hero-giant-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 24px 0 48px 0;
  max-width: 520px;
  font-family: var(--font-family);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--gradient-accent);
  border: none;
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-family);
  box-shadow: 
    0 10px 30px rgba(249, 115, 22, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

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

.hero-signup-btn:hover::before {
  left: 100%;
}

.hero-signup-btn:hover {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 50%, var(--primary-600) 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(249, 115, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-decoration: none;
}

.hero-signup-btn i {
  transition: transform 0.3s ease;
}

.hero-signup-btn:hover i {
  transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
  margin-top: 40px;
}

.hero-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0;
  align-items: center;
}

.hero-stats .stat-item {
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(145deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-primary);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(249, 115, 22, 0.06);
  flex: 1;
  min-width: 0;
}

.hero-stats .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 20px 20px 0 0;
}

.hero-stats .stat-item:hover {
  background: linear-gradient(145deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
  box-shadow: 
    0 15px 35px rgba(249, 115, 22, 0.08),
    0 8px 20px rgba(249, 115, 22, 0.15);
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(249, 115, 22, 0.12);
}

.hero-stats .stat-value {
  font-size: 2.6rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-family: var(--font-family);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}


.hero-content-right {
  animation: fadeInUp 0.8s ease-out 0.6s both;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 0;
  padding-top: 0;
}


/* Customer Reviews Section */
.customer-reviews-section {
  background: var(--bg-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.customer-reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.015) 0%, transparent 50%);
  pointer-events: none;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(249, 115, 22, 0.12);
}

.reviews-badge i {
  font-size: 0.7rem;
}

.reviews-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-family);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary-700);
}

.reviews-visual {
  display: none;
}

.reviews-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
}

.review-slide {
  display: none;
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 4px 15px rgba(249, 115, 22, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 400px;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-slide.active {
  display: flex !important;
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-content {
  position: relative;
  background: transparent;
  padding: 0;
  width: 100%;
}

.review-avatar {
  margin-bottom: 25px;
}

.avatar-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary-300);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.12);
  transition: all var(--transition-normal);
  margin: 0 auto;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.avatar-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}

.review-info {
  margin-bottom: 20px;
}

.reviewer-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.reviewer-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0;
}

.review-text {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.quote-mark {
  font-size: 3rem;
  color: var(--gray-300);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1;
}

.quote-start {
  position: absolute;
  top: -15px;
  left: -15px;
}

.quote-end {
  position: absolute;
  bottom: -30px;
  right: -15px;
}

.review-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
  padding: 0 30px;
  font-weight: 400;
}

.reviews-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  padding: 0 40px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  box-shadow: 
    0 6px 20px rgba(249, 115, 22, 0.15),
    0 3px 10px rgba(249, 115, 22, 0.12);
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

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

.nav-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 
    0 10px 30px rgba(249, 115, 22, 0.18),
    0 5px 15px rgba(249, 115, 22, 0.15);
}

.nav-btn:active {
  transform: translateY(-1px) scale(1.05);
}

.nav-btn i {
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.prev-btn {
  margin-left: 0;
}

.next-btn {
  margin-right: 0;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 0 20px;
}

.pagination-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pagination-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-500);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-dot.active {
  background: var(--primary-600);
  transform: scale(1.3);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.12);
}

.pagination-dot.active::before {
  width: 100%;
  height: 100%;
}

.pagination-dot:hover {
  background: var(--primary-400);
  transform: scale(1.1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .reviews-slider {
    padding: 0 40px;
  }
  
  .review-slide {
    padding: 40px 20px;
  }
  
  .reviews-title {
    font-size: 1.8rem;
  }
  
  .reviews-description {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .review-quote {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .quote-mark {
    font-size: 2.5rem;
  }
  
  .quote-start {
    top: -12px;
    left: -8px;
  }
  
  .quote-end {
    bottom: -25px;
    right: -8px;
  }
  
  .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  
  .prev-btn {
    margin-left: 0;
  }
  
  .next-btn {
    margin-right: 0;
  }
  
  .reviews-navigation {
    top: 50%;
    padding: 0 20px;
  }
  
  .reviews-slider {
    padding: 0 60px;
  }
}

@media (max-width: 480px) {
  .customer-reviews-section {
    padding: 60px 0;
  }
  
  .reviews-container {
    padding: 0 20px;
  }
  
  .reviews-title {
    font-size: 1.8rem;
  }
  
  .avatar-image {
    width: 100px;
    height: 100px;
  }
  
  .reviewer-name {
    font-size: 1.3rem;
  }
  
  .review-quote {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .reviews-slider {
    padding: 0 50px;
  }
  
  .reviews-navigation {
    padding: 0 10px;
  }
  
  .review-slide {
    min-height: 350px;
    max-height: 350px;
    padding: 30px 20px;
  }
  
  .avatar-image {
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
  
  .reviewer-name {
    font-size: 1.1rem;
  }
  
  .review-quote {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .quote-mark {
    font-size: 2.5rem;
  }
  
  .quote-start {
    top: -10px;
    left: -10px;
  }
  
  .quote-end {
    bottom: -20px;
    right: -10px;
  }
}

/* Blog Section */
.blog-section {
  background: var(--bg-primary);
  padding: 80px 0;
  position: relative;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(249, 115, 22, 0.12);
}

.blog-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-700);
}

.blog-description {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

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

.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-primary);
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-600);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

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

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.blog-cta {
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.12);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
}

/* API Section */
.api-section {
  background: var(--bg-primary);
  padding: 80px 0;
}

.api-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.api-header {
  text-align: center;
  margin-bottom: 50px;
}

.api-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(249, 115, 22, 0.12);
}

.api-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-700);
}

.api-description {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.api-info {
  margin-bottom: 50px;
}

.api-info-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-primary);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.post-method {
  background: #ef4444;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  width: fit-content;
}

.url {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  background: var(--bg-secondary);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-primary);
}

.api-endpoints {
  margin-bottom: 50px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-500);
}

.endpoint-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-primary);
  overflow: hidden;
}

.endpoint-header {
  background: var(--bg-secondary);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-primary);
}

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

.endpoint-method {
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.endpoint-method.get {
  background: #10b981;
  color: white;
}

.endpoint-method.post {
  background: var(--primary-color);
  color: white;
}

.endpoint-content {
  padding: 25px;
}

.parameters h5,
.response-example h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.param-table {
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-primary);
}

.param-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid var(--border-primary);
}

.param-row:last-child {
  border-bottom: none;
}

.param-name {
  background: var(--primary-50);
  padding: 12px 15px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-weight: 600;
  color: var(--primary-700);
  font-size: 0.9rem;
}

.param-desc {
  padding: 12px 15px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.code-block {
  background: #1e293b;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.code-header {
  background: #334155;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.code-title {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.9rem;
}

.copy-btn {
  background: transparent;
  border: none;
  color: #e2e8f0;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.copy-btn:hover {
  background: #475569;
}

.code-block pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
}

.code-block code {
  color: #e2e8f0;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
}

.api-code-example {
  margin-bottom: 50px;
}

.api-cta {
  text-align: center;
  background: var(--card-bg);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-primary);
}

.api-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.api-cta p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

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

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.cta-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.12);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
}

.cta-secondary {
  background: transparent;
  color: var(--primary-600);
  border: 2px solid var(--primary-600);
}

.cta-secondary:hover {
  background: var(--primary-600);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .api-info-card {
    grid-template-columns: 1fr;
  }
  
  .param-row {
    grid-template-columns: 1fr;
  }
  
  .param-name {
    background: var(--primary-100);
    border-bottom: 1px solid var(--border-primary);
  }
  
  .endpoint-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Customer Success Stories Section */
.success-stories-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.success-stories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.015) 0%, transparent 50%);
  pointer-events: none;
}

.success-stories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.success-stories-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.success-stories-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-large);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 
    0 8px 25px rgba(249, 115, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
  position: relative;
}

.success-stories-icon i {
  font-size: 24px;
  color: #ffffff;
}

.success-stories-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.success-stories-title {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-family: var(--font-family);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(249, 115, 22, 0.05);
  position: relative;
}

.success-stories-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 2px;
}

.success-stories-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-family);
  font-weight: 500;
}

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

.success-story-card {
  background: var(--card-bg);
  border-radius: var(--radius-large);
  padding: 24px;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.06),
    0 3px 12px rgba(249, 115, 22, 0.04);
  border: 1px solid var(--border-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 20px 20px 0 0;
}

.success-story-card:hover {
  background: linear-gradient(145deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
  box-shadow: 
    0 15px 35px rgba(249, 115, 22, 0.08),
    0 8px 20px rgba(249, 115, 22, 0.15);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(249, 115, 22, 0.12);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

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

.story-info {
  flex: 1;
}

.story-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  font-family: inherit;
}

.story-role {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.story-rating {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 14px;
}

.story-content {
  margin-bottom: 20px;
}

.story-text {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  position: relative;
}

.story-text::before {
  content: '"';
  font-size: 24px;
  color: var(--primary-color);
  position: absolute;
  top: -8px;
  left: -8px;
  font-family: serif;
}

.story-text::after {
  content: '"';
  font-size: 24px;
  color: var(--primary-color);
  position: absolute;
  bottom: -8px;
  right: -8px;
  font-family: serif;
}

.story-stats {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.story-stat {
  text-align: center;
  flex: 1;
}

.story-stat .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  font-family: var(--font-family);
  line-height: 1;
}

.story-stat .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.success-stories-cta {
  background: var(--card-bg);
  border-radius: var(--radius-large);
  padding: 32px;
  text-align: center;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.06),
    0 3px 12px rgba(249, 115, 22, 0.04);
  border: 1px solid var(--border-primary);
  position: relative;
  overflow: hidden;
}

.success-stories-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 20px 20px 0 0;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: inherit;
}

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

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-card);
  font-weight: 700;
  font-size: 16px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.12);
}

.cta-primary-btn:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
  color: white;
  text-decoration: none;
}

.cta-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-card);
  font-weight: 700;
  font-size: 16px;
  transition: all var(--transition-normal);
}

.cta-secondary-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.015) 0%, transparent 50%);
  pointer-events: none;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.features-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.features-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: float 3s ease-in-out infinite;
  display: inline-block;
  position: relative;
}

.features-title {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-family: var(--font-family);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(249, 115, 22, 0.05);
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 2px;
}

.features-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-family);
  font-weight: 500;
}

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

.feature-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(249, 115, 22, 0.06);
  border: 1px solid var(--border-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 20px 20px 0 0;
}

.feature-card:hover {
  background: linear-gradient(145deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
  box-shadow: 
    0 15px 35px rgba(249, 115, 22, 0.08),
    0 8px 20px rgba(249, 115, 22, 0.15);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(249, 115, 22, 0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%) !important;
  border-radius: var(--radius-large);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
  box-shadow: 
    0 8px 25px rgba(249, 115, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: inherit;
}

.feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: inherit;
}

/* Sign In Page FAQ - Footer Spacing */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  animation: fadeInUp 0.6s ease-out;
}

.faq-badge i {
  font-size: 0.8rem;
}

.faq-title {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(249, 115, 22, 0.1);
  position: relative;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 2px;
}

.faq-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-family);
  font-weight: 500;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 24px;
  margin-top: 60px;
  padding-bottom: 150px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 15px rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 25px rgba(249, 115, 22, 0.2);
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.faq-item.active::before {
  opacity: 1;
}

.faq-item.active .faq-question {
  background: linear-gradient(145deg, var(--primary-50) 0%, var(--primary-100) 100%);
}

.faq-item.active .faq-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.faq-item:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 25px rgba(249, 115, 22, 0.15);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(249, 115, 22, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: linear-gradient(145deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
}

.faq-question:hover {
  background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.faq-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-large);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
  transition: all var(--transition-normal);
}

.faq-question:hover .faq-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.faq-question-text {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  font-family: inherit;
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 36px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 115, 22, 0.02) 100%);
  border-top: 2px solid transparent;
  position: relative;
}

.faq-answer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 28px 36px 36px;
  max-height: 500px;
  border-top-color: var(--primary-200);
}

.faq-item.active .faq-answer::before {
  opacity: 1;
}

.faq-answer-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
  font-family: inherit;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
}

.faq-answer-text::before {
  content: 'ğŸ’¡';
  position: absolute;
  left: -20px;
  top: 0;
  font-size: 1rem;
  opacity: 0.7;
}

/* Platforms Section - Modern Design */
.platforms-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.platforms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.platforms-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.platforms-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.platforms-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-large);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 
    0 8px 25px rgba(249, 115, 22, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
  position: relative;
}

.platforms-icon i {
  font-size: 24px;
  color: #ffffff;
}

.platforms-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.platforms-title {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-family: var(--font-family);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(249, 115, 22, 0.05);
  position: relative;
}

.platforms-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 2px;
}

.platforms-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-family);
  font-weight: 500;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.stats-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: float 3s ease-in-out infinite;
  display: inline-block;
  position: relative;
}

.stats-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

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

.stats-title {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  font-family: var(--font-family);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(249, 115, 22, 0.05);
  position: relative;
}

.stats-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 2px;
}

.stats-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-family);
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(145deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-radius: var(--radius-large);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-primary);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 20px 20px 0 0;
}

.stat-item:hover {
  background: linear-gradient(145deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
  box-shadow: 
    0 20px 50px rgba(249, 115, 22, 0.15),
    0 10px 30px rgba(249, 115, 22, 0.05);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(249, 115, 22, 0.08);
}

.stat-value {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-family: var(--font-family);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platforms-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  scroll-behavior: smooth;
  max-width: 100%;
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(249, 115, 22, 0.3) transparent;
}

.platforms-grid::-webkit-scrollbar {
  height: 8px;
}

.platforms-grid::-webkit-scrollbar-track {
  background: rgba(226, 232, 240, 0.3);
  border-radius: 4px;
}

.platforms-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.6) 0%, rgba(234, 88, 12, 0.4) 100%);
  border-radius: 4px;
  transition: all var(--transition-normal);
}

.platforms-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.8) 0%, rgba(234, 88, 12, 0.6) 100%);
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  min-width: 100px;
  max-width: 110px;
  flex-shrink: 0;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.platform-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.02) 0%, rgba(249, 115, 22, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.platform-item:hover::before {
  opacity: 1;
}

.platform-item:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(249, 115, 22, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-color: rgba(249, 115, 22, 0.4);
}

.platform-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.platform-item:hover .platform-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Platform Specific Colors - Original Social Media Colors */
.platform-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.platform-icon.tiktok {
  background: #000000;
  color: white;
}

.platform-icon.youtube {
  background: #ff0000;
  color: white;
}

.platform-icon.twitter {
  background: #1da1f2;
  color: white;
}

.platform-icon.facebook {
  background: #1877f2;
  color: white;
}

.platform-icon.telegram {
  background: #0088cc;
  color: white;
}

.platform-icon.spotify {
  background: #1db954;
  color: white;
}

.platform-icon.twitch {
  background: #9146ff;
  color: white;
}

.platform-icon.discord {
  background: #5865f2;
  color: white;
}

.platform-icon.soundcloud {
  background: #ff5500;
  color: white;
}

.platform-icon.threads {
  background: #000000;
  color: white;
}

.platform-icon.linkedin {
  background: #0077b5;
  color: white;
}

.platform-icon.pinterest {
  background: #e60023;
  color: white;
}

.platform-icon.reddit {
  background: #ff4500;
  color: white;
}

.platform-icon.snapchat {
  background: #fffc00;
  color: #000000;
  -webkit-text-stroke: 1px #000;
  text-shadow: 1px 1px 0 #000;
}

.platform-icon.tumblr {
  background: #001935;
  color: white;
}

/* Additional Platform Icons - Original Colors */
.platform-icon.whatsapp {
  background: #25d366;
  color: white;
}

.platform-icon.viber {
  background: #665cac;
  color: white;
}

.platform-icon.skype {
  background: #00aff0;
  color: white;
}

.platform-icon.vk {
  background: #4c75a3;
  color: white;
}

.platform-icon.wechat {
  background: #07c160;
  color: white;
}

.platform-icon.line {
  background: #00c300;
  color: white;
}

.platform-icon.signal {
  background: #3a76f0;
  color: white;
}

.platform-icon.wire {
  background: #000000;
  color: white;
}

.platform-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-family);
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}

.platform-item:hover .platform-name {
  color: #1e293b;
  transform: translateY(-2px);
}

/* How It Works Section - With Video */
.how-it-works-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header - Centered */
.how-it-works-header {
  text-align: center;
  margin-bottom: 50px;
}

.how-it-works-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.how-it-works-badge i {
  font-size: 14px;
  color: var(--primary-color);
}

.how-it-works-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.how-it-works-gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-600) 50%, var(--primary-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.how-it-works-gradient-text::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-600) 100%);
  border-radius: 2px;
  opacity: 0.3;
}

.how-it-works-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-family);
}

/* Grid Layout */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Video Section */
.how-it-works-video {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

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

.video-container:hover .video-image {
  transform: scale(1.05);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}

.video-play-button i {
  font-size: 24px;
  color: var(--primary-color);
  margin-left: 4px;
}

.video-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-600) 100%);
  padding: 16px 20px;
  text-align: center;
}

.video-banner span {
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Content Section */
.how-it-works-content {
  padding-left: 20px;
}

.steps-container {
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-large);
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.1);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(249, 115, 22, 0.2);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-600) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  font-family: var(--font-family);
}

.step-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  font-family: var(--font-family);
}

/* CTA Buttons */
.how-it-works-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-btn,
.register-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-card);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-normal);
  font-family: var(--font-family);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-btn {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: white;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
  color: white;
  text-decoration: none;
}

.register-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-600) 100%);
  color: white;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
  color: white;
  text-decoration: none;
}

.pricing-btn i,
.register-btn i {
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 50px 0;
  }
  
  .how-it-works-header {
    margin-bottom: 40px;
  }
  
  .how-it-works-title {
    font-size: 2rem;
  }
  
  .how-it-works-description {
    font-size: 1rem;
  }
  
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .how-it-works-content {
    padding-left: 0;
  }
  
  .video-thumbnail {
    height: 350px;
  }
  
  .step-item {
    padding: 16px;
    gap: 14px;
    margin-bottom: 20px;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .how-it-works-buttons {
    flex-direction: column;
  }
  
  .pricing-btn,
  .register-btn {
    justify-content: center;
  }
}









/* Enhanced Modern Signin Section */
.modern-signin-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-tertiary) 100%);
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.015) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 32px 60px;
  position: relative;
}

/* Modern Signin Card */
.modern-signin-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  padding-top: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  max-width: 450px;
  width: 450px;
  margin: 0;
  margin-top: 0;
  margin-left: auto;
}

.modern-signin-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Modern Signup Card - Smaller */
.modern-signup-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 28px;
  padding-top: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  max-width: 450px;
  width: 450px;
  margin: 0;
  margin-top: 0;
  margin-left: auto;
}

.modern-signup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 20px 20px 0 0;
}

.modern-signin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

/* Signin Card Header */
.signin-card-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  margin-top: 0;
  padding-top: 12px;
}

/* Signup Card Header - Smaller */
.signup-card-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  margin-top: 0;
  padding-top: 12px;
}

.signin-logo {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: white;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Signup Logo - Smaller */
.signup-logo {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  margin-top: 0;
  color: white;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.signin-logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.signin-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-family: inherit;
}

.signin-card-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  font-family: inherit;
}

/* Signup Card Title - Smaller */
.signup-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--font-family);
}

.signup-card-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 24px 0;
  font-family: var(--font-family);
  font-weight: 500;
}

/* Modern Forgot Password */
.modern-forgot-password {
  text-align: right;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* Modern Signup Link */
.modern-signup-link {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-color);
}

.modern-signup-link p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
  font-family: inherit;
}

.modern-signup-text {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.modern-signup-text:hover {
  color: var(--primary-dark);
  transform: translateX(2px);
}


.form-group {
  margin-bottom: 18px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-family: var(--font-family);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: all var(--transition-normal);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.05);
  background: var(--bg-primary);
}

.form-input::placeholder {
  color: #9ca3af;
}

.forgot-password {
  text-align: right;
  margin-top: 8px;
}

.forgot-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: var(--font-family);
}

.forgot-link:hover {
  color: var(--primary-700);
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  font-family: var(--font-family);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-secondary);
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  transition: all var(--transition-normal);
  background: var(--bg-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-600);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-signin {
  width: 100%;
  padding: 14px 24px;
  background: var(--primary-600);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  margin-bottom: 20px;
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-signin:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

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

/* Enhanced Google Signin */
.modern-google-signin {
  text-align: center;
  margin: var(--space-xl) 0;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-color);
  position: relative;
}

.modern-google-signin::before {
  content: 'OR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-primary);
  padding: 0 var(--space-md);
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
}

/* Ultra Modern Google Button */
.ultra-modern-google-btn {
  width: 100%;
  background: var(--card-bg);
  border: 2px solid var(--primary-200);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  cursor: pointer;
  transition: all var(--transition-bounce);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.ultra-modern-google-btn:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-secondary);
}

.ultra-modern-google-btn:active {
  transform: translateY(0);
}

.google-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-logo {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-text {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-main-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.google-sub-text {
  font-size: 12px;
  color: var(--text-secondary);
}

.google-arrow {
  color: var(--primary-color);
  font-size: 14px;
  transition: transform var(--transition-normal);
}

.ultra-modern-google-btn:hover .google-arrow {
  transform: translateX(4px);
}

/* Ultra Modern Captcha Container */
.ultra-modern-captcha-container {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.captcha-header-modern {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.captcha-icon-modern {
  position: relative;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: var(--shadow-md);
}

.captcha-icon-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}

.captcha-info-modern {
  flex: 1;
}

.captcha-title-modern {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.captcha-subtitle-modern {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
}

.captcha-content-modern {
  margin-bottom: var(--space-md);
}

.captcha-frame-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.captcha-footer-modern {
  display: flex;
  justify-content: center;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.security-badge i {
  color: var(--success-color);
}

/* Modern Footer */
.modern-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 40px 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
}

.footer-section h3 {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  font-family: inherit;
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-normal);
  display: inline-block;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-color);
}

.footer-copyright {
  color: var(--text-tertiary);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-normal);
}

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

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

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

.scroll-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.scroll-to-top:active {
  transform: translateY(-1px) scale(1.05);
}

/* Modern Language Selector */
.modern-language-selector {
  position: relative;
  z-index: 1001;
}

.language-trigger {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 120px;
}

.language-trigger:hover {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
  transform: translateY(-1px);
}

.language-trigger.active {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
}

.current-language {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.flag {
  font-size: 16px;
}

.lang-text {
  font-size: 14px;
  font-weight: 600;
}

.language-arrow {
  font-size: 12px;
  transition: transform var(--transition-normal);
  margin-left: auto;
}

.language-trigger.active .language-arrow {
  transform: rotate(180deg);
}

.language-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm) 0;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  backdrop-filter: blur(20px);
  pointer-events: none;
}

.language-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  pointer-events: auto;
}

.language-option:hover {
  background: var(--bg-secondary);
  color: var(--primary-color);
  transform: translateX(4px);
}

.language-option.active {
  background: var(--primary-color);
  color: white;
}

.language-trigger.active .language-arrow {
  transform: rotate(180deg);
}

/* Enhanced Form Help Text */
.form-help-text {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: var(--space-xs);
  font-weight: 500;
  line-height: 1.4;
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  z-index: 2;
}

.password-toggle:hover {
  color: var(--primary-color);
  background: var(--bg-secondary);
}

.password-toggle:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Form Divider */
.form-divider {
  position: relative;
  text-align: center;
  margin: var(--space-xl) 0;
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 500;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
  z-index: 1;
}

.form-divider span {
  background: var(--bg-primary);
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--transition-normal);
}

[data-theme="dark"] .loading-overlay {
  background: rgba(15, 23, 42, 0.95);
}

.loading-spinner {
  text-align: center;
  color: var(--text-primary);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--space-md);
}

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

.loading-spinner p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

/* Enhanced Animations */
@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}


/* Enhanced Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: 0;
}

.mobile-menu-toggle:hover {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  margin: 2px 0;
  transition: all var(--transition-normal);
  border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Modern Signup Page Styles */
.signup-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.02) 0%, transparent 50%);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

/* Modern Signup Features Grid */
.signup-features-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}

.signup-feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.signup-feature-card:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.signup-feature-card:hover .feature-icon {
  transform: scale(1.05);
}

.signup-feature-card .feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
  position: relative;
}

.signup-feature-card .feature-content {
  flex: 1;
}

.signup-feature-card .feature-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  font-family: var(--font-family);
  line-height: 1.3;
}

.signup-feature-card .feature-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

.signup-trust-section {
  margin: 32px 0;
}

.trust-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-card);
  border: 1px solid rgba(249, 115, 22, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  flex: 1;
  min-width: 140px;
}

.trust-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.05);
  background: rgba(255, 255, 255, 0.95);
}

.trust-stat .trust-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%) !important;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.12);
}

.trust-stat .trust-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-stat .trust-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  font-family: var(--font-family);
}

.trust-stat .trust-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.signup-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.05) 100%);
  color: var(--primary-color);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.signup-hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.15);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(234, 88, 12, 0.08) 100%);
}

.signup-hero-badge i {
  font-size: 16px;
  color: var(--primary-color);
}

.signup-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 0;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.signup-gradient-text {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 50%, var(--primary-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.signup-gradient-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: 2px;
  opacity: 0.3;
}

.signup-hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
}

.signup-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.signup-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.signup-benefit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.benefit-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.signup-stats {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.signup-stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.signup-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-top: 24px;
}

.cta-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.signup-signin-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-normal);
}

.signup-signin-link:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

.signup-signin-link i {
  font-size: 14px;
  transition: transform var(--transition-normal);
}

.signup-signin-link:hover i {
  transform: translateX(4px);
}

/* Modern Services Page Styles */
.modern-services-page {
  min-height: 100vh;
  background: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.modern-services-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 30%, rgba(249, 115, 22, 0.01) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(234, 88, 12, 0.005) 50%, transparent 70%);
  pointer-events: none;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

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

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.12);
}

.services-badge i {
  font-size: 14px;
}

.services-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  font-family: var(--font-family);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  font-family: var(--font-family);
  font-weight: 500;
}

/* Services Stats */
.services-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-card);
  border: 1px solid rgba(249, 115, 22, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.05);
  background: rgba(255, 255, 255, 0.95);
}

.stat-item .stat-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.12);
}

.stat-item .stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-item .stat-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  font-family: var(--font-family);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Services Features Section */
.services-features {
  margin: 60px 0;
  position: relative;
  z-index: 2;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-large);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-600) 100%);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
}

.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-large);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.feature-card .feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

/* Services CTA Section */
.services-cta {
  margin: 80px 0 60px;
  position: relative;
  z-index: 2;
}

.cta-content {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(249, 115, 22, 0.3);
}

.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary-btn,
.cta-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-card);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.cta-primary-btn {
  background: white;
  color: var(--primary-600);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: var(--primary-700);
}

.cta-secondary-btn {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
  background: transparent;
}

/* Modern Services Controls */
.services-controls {
  background: #ffffff;
  border-radius: var(--radius-large);
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid #e5e7eb;
}

.controls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 24px;
  align-items: end;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.control-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.control-label i {
  color: var(--primary-color);
  font-size: 14px;
}

/* Modern Dropdown */
.modern-dropdown {
  position: relative;
}

.dropdown-trigger {
  width: 100%;
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.dropdown-trigger:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.05);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

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

.dropdown-item {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.dropdown-item:hover {
  background: rgba(249, 115, 22, 0.05);
  color: var(--primary-color);
}

.dropdown-item i {
  color: var(--text-secondary);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

/* Modern Search */
.search-group {
  grid-column: span 1;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.modern-search-input {
  width: 100%;
  padding: 12px 16px;
  padding-right: 48px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

.modern-search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.05);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.search-btn:hover {
  background: var(--primary-600);
  transform: translateY(-50%) scale(1.05);
}

/* Modern Services Table */
.services-table-container {
  background: #ffffff;
  border-radius: var(--radius-large);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-card);
}

.modern-services-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.modern-services-table thead {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
}

.modern-services-table th {
  padding: 16px 12px;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.modern-services-table td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(249, 115, 22, 0.05);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.modern-services-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.02);
}

/* Category Header */
.category-header {
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
}

.category-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.category-icon {
  color: var(--primary-color);
  font-size: 18px;
}

.category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.category-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(249, 115, 22, 0.05);
  padding: 4px 8px;
  border-radius: 6px;
  margin-left: auto;
}

/* Service Rows */
.service-row {
  transition: all var(--transition-normal);
}

.service-row:hover {
  background: rgba(249, 115, 22, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.05);
}

.service-name {
  font-weight: 600;
  color: var(--text-primary);
}

.rate-value {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
}

.favorite-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all var(--transition-normal);
  color: var(--text-secondary);
}

.favorite-btn:hover {
  background: rgba(249, 115, 22, 0.05);
  color: var(--primary-color);
}

.favorite-btn.favorite-active {
  color: #fbbf24;
}

.favorite-btn.favorite-active:hover {
  color: #f59e0b;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.services-hero {
  max-width: 600px;
  margin: 0 auto;
}

.services-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: white;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.services-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.services-title {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
  font-family: inherit;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.services-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: inherit;
  font-weight: 500;
}

/* Services Controls */
.services-controls {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  align-items: end;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.control-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.control-label i {
  color: var(--primary-color);
  font-size: 16px;
}

/* Modern Dropdown */
.modern-dropdown {
  position: relative;
}

.dropdown-trigger {
  width: 100%;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  min-height: 48px;
}

.dropdown-trigger:hover {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
}

.dropdown-trigger:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.05);
}

.dropdown-trigger[aria-expanded="true"] {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
}

.dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-text {
  flex: 1;
  text-align: left;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform var(--transition-normal);
  color: var(--text-tertiary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  backdrop-filter: blur(20px);
  max-height: 300px;
  overflow-y: auto;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.dropdown-item:hover {
  background: var(--bg-secondary);
  color: var(--primary-color);
  transform: translateX(4px);
}

.dropdown-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.emoji-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.category-image {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Search Input */
.search-group {
  grid-column: 1 / -1;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.modern-search-input {
  width: 100%;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 14px 50px 14px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text-primary);
  transition: all var(--transition-normal);
  min-height: 48px;
}

.modern-search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.05);
  background: var(--bg-primary);
}

.modern-search-input::placeholder {
  color: var(--text-tertiary);
}

.search-btn {
  position: absolute;
  right: 8px;
  background: var(--primary-color);
  border: none;
  border-radius: var(--radius-md);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  color: white;
}

.search-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.search-btn:active {
  transform: scale(0.95);
}

/* Services Table */
.services-table-container {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

.modern-services-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.modern-services-table thead {
  background: var(--bg-secondary);
}

.modern-services-table th {
  padding: var(--space-lg) var(--space-md);
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 10;
}

.modern-services-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  color: var(--text-primary);
  font-size: 14px;
}

.modern-services-table tbody tr {
  transition: all var(--transition-normal);
}

.modern-services-table tbody tr:hover {
  background: var(--bg-secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Category Header */
.category-header {
  background: var(--gradient-primary);
  color: white;
}

.category-header td {
  border-bottom: none;
  padding: var(--space-lg) var(--space-md);
}

.category-header-content {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.category-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.category-emoji {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.category-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  flex: 1;
}

.category-count {
  font-size: 12px;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Service Rows */
.service-row {
  background: var(--card-bg);
}

.favorite-cell {
  text-align: center;
  width: 50px;
}

.favorite-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  color: var(--text-tertiary);
  font-size: 16px;
}

.favorite-btn:hover {
  background: var(--bg-secondary);
  color: var(--warning-color);
  transform: scale(1.1);
}

.favorite-btn.favorite-active {
  color: var(--warning-color);
}

.favorite-btn.favorite-active:hover {
  color: var(--text-tertiary);
}

.id-cell {
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 13px;
}

.name-cell {
  font-weight: 600;
  max-width: 300px;
}

.service-name-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-name {
  font-weight: 600;
  color: var(--text-primary);
}

.service-description-mobile {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: var(--space-xs);
}

.rate-cell {
  font-weight: 700;
  color: var(--success-color);
}

.rate-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rate-value {
  font-weight: 700;
  color: var(--success-color);
}

.converted-rate {
  font-weight: 700;
  color: var(--success-color);
  position: relative;
  cursor: help;
}

.min-cell, .max-cell {
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

.time-cell {
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

.time-value {
  font-size: 13px;
  background: var(--bg-secondary);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.description-cell {
  max-width: 250px;
}

.service-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Info Tooltip */
.info-tooltip {
  background: none;
  border: none;
  cursor: help;
  color: var(--text-tertiary);
  font-size: 12px;
  margin-left: var(--space-xs);
  padding: 2px;
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.info-tooltip:hover {
  color: var(--primary-color);
  background: var(--bg-secondary);
}

/* No Results */
.no-results {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--card-bg);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.no-results-content {
  max-width: 400px;
  margin: 0 auto;
}

.no-results-content i {
  font-size: 48px;
  color: var(--text-tertiary);
  margin-bottom: var(--space-lg);
}

.no-results-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.no-results-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-container {
    padding: 0 32px;
  }
  
  .services-title {
    font-size: 2.8rem;
  }
  
  .services-stats {
    gap: 24px;
  }
  
  .controls-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .search-group {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .services-title {
    font-size: 2.2rem;
  }
  
  .services-subtitle {
    font-size: 1rem;
  }
  
  .services-controls {
    padding: var(--space-lg);
  }
  
  .services-table-container {
    padding: var(--space-lg);
  }
  
  .modern-services-table th,
  .modern-services-table td {
    padding: var(--space-sm);
    font-size: 13px;
  }
  
  .category-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .category-count {
    align-self: flex-end;
  }
  
  /* Signup Page Tablet Styles */
  .signup-hero-title {
    font-size: 2.2rem;
  }
  
  .signup-benefits {
    gap: var(--space-sm);
  }
  
  .signup-benefit {
    padding: var(--space-sm);
  }
  
  .signup-stats {
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 0 20px;
  }
  
  .services-title {
    font-size: 2.4rem;
  }
  
  .services-stats {
    gap: 16px;
  }
  
  .stat-item {
    padding: 12px 16px;
  }
  
  .services-controls {
    padding: 20px;
  }
  
  .services-table-container {
    padding: var(--space-md);
  }
  
  .modern-services-table {
    font-size: 12px;
  }
  
  .modern-services-table th,
  .modern-services-table td {
    padding: var(--space-xs);
  }
  
  /* Signup Page Mobile Styles */
  .signup-hero-title {
    font-size: 2rem;
  }
  
  .signup-hero-description {
    font-size: 0.9rem;
  }
  
  .signup-benefits {
    gap: var(--space-sm);
  }
  
  .signup-benefit {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
  }
  
  .signup-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .signup-cta {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
  }
}

.signup-link {
  text-align: center;
}

.signup-link p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
  font-family: var(--font-family);
}

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

.signup-text:hover {
  color: var(--primary-700);
}

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

.terms-link:hover {
  color: var(--primary-700);
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
  .dark-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .signin-hero-content {
    grid-template-columns: 1fr;
  }

  .hero-main-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .login-card {
    padding: 32px;
  }

  .signin-main-title {
    font-size: 1.75rem;
  }

  .signin-login-card {
    padding: 36px;
  }
  
  /* FAQ 2 Columns on Tablet */
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .modern-signin-card {
    padding: 32px;
  }
  
  .modern-signup-card {
    padding: 20px;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  /* Navbar Mobile */
  .navbar-container {
    padding: 0 20px;
    height: 60px;
  }
  
  .navbar-links {
    display: none;
  }
  
  .navbar-right {
    gap: 8px;
  }
  
  .modern-language-selector {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .brand-name {
    font-size: 16px;
  }
  
  .brand-logo {
    width: 36px;
    height: 36px;
  }
  
  .brand-logo i {
    font-size: 16px;
  }
  
  /* Cards Mobile */
  .modern-signin-card,
  .modern-signup-card {
    padding: 28px;
    padding-top: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
  
  .signin-card-title {
    font-size: 1.5rem;
  }
  
  .signup-card-title {
    font-size: 1.2rem;
  }
  
  /* Forms Mobile */
  .modern-form-input {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .modern-signin-btn,
  .modern-signup-btn {
    padding: 14px 20px;
    font-size: 16px;
  }
  
  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  /* Scroll to Top Mobile */
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
  
  .dark-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 20px 0;
  }

  .signin-hero {
    padding-top: 40px;
  }

  .hero-left {
    padding-right: 0;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
    margin: 0 auto 24px;
  }
  
  .hero-cta {
    margin: 0 auto;
  }

  .login-card {
    padding: 32px 24px;
  }

  /* Signin page mobile */
  .signin-hero-blue {
    padding: 60px 20px 40px;
  }

  .signin-main-title {
    font-size: 1.5rem;
  }

  .signin-description {
    font-size: 0.875rem;
  }

  .signin-login-card {
    padding: 28px 20px;
  }

  .signin-form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Modern Signin Mobile */
  .modern-signin-section {
    padding: 80px 20px 40px;
  }

  .modern-signin-card {
    padding: 32px 24px;
    max-width: 100%;
  }

  .signin-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .signin-logo i {
    font-size: 20px;
  }

  .modern-signin-card .signin-card-title {
    font-size: 1.2rem;
  }

  .modern-form-input {
    font-size: 16px;
  }

  .modern-signin-btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  /* Modern Signup Features Mobile */
  .signup-features-grid {
    gap: 12px;
    margin: 24px 0;
  }

  .signup-feature-card {
    padding: 16px;
    gap: 16px;
  }

  .signup-feature-card .feature-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .signup-feature-card .feature-content h4 {
    font-size: 1rem;
  }

  .signup-feature-card .feature-content p {
    font-size: 0.85rem;
  }

  /* Modern Trust Stats Mobile */
  .trust-stats {
    gap: 16px;
    margin: 24px 0;
  }

  .trust-stat {
    padding: 14px 16px;
    min-width: 120px;
  }

  .trust-stat .trust-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .trust-stat .trust-number {
    font-size: 1.1rem;
  }

  .trust-stat .trust-label {
    font-size: 0.8rem;
  }

  /* Signup Trust Stats Mobile */
  .signup-page .hero-trust-stats {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .signup-page .trust-stat {
    padding: 12px 16px;
    gap: 10px;
  }

  .signup-page .trust-stat-icon {
    width: 36px;
    height: 36px;
  }

  .signup-page .trust-stat-icon i {
    font-size: 14px;
  }

  .signup-page .trust-stat-number {
    font-size: 1.2rem;
  }

  .signup-page .trust-stat-text {
    font-size: 0.75rem;
  }

  /* Features Mobile */
  .features-section {
    padding: 60px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .features-title {
    font-size: 2.2rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 80px 0 0 0;
  }
  
  .faq-grid {
    padding-bottom: 100px;
  }
  
  .faq-item.active .faq-answer {
    padding: 24px 24px 32px;
  }
  
  .faq-answer-text {
    padding-left: 16px;
  }
  
  .faq-answer-text::before {
    left: -16px;
  }
  
  .faq-container {
    padding: 0 20px;
  }
  
  .faq-title {
    font-size: 2.5rem;
  }
  
  .faq-subtitle {
    font-size: 1.1rem;
  }
  
  .faq-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .faq-question {
    padding: 28px 24px;
    gap: 20px;
  }
  
  .faq-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  
  .faq-question-text {
    font-size: 1.1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 24px 24px 28px;
  }

  /* Success Stories Mobile */
  .success-stories-section {
    padding: 60px 0;
  }
  
  .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .success-story-card {
    padding: 20px;
  }
  
  .success-stories-title {
    font-size: 2.2rem;
  }
  
  .success-stories-subtitle {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* BulkMedya Hero Mobile */
  .bulkmedya-signin-hero {
    padding: 40px 0;
    min-height: 80vh;
  }

  .bulkmedya-hero-container {
    padding: 0 20px;
  }

  .bulkmedya-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
  }

  .hero-content-left {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-content-right {
    padding-left: 0;
    justify-content: center;
  }
  
  .modern-signin-card,
  .modern-signup-card {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
  
  .signup-hero-title {
    font-size: 2rem;
  }

  /* Services Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .services-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .services-title {
    font-size: 2.5rem;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
  }
  
  /* Services CTA Mobile */
  .cta-content {
    padding: 40px 24px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-giant-description {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
  }

  .hero-feature {
  justify-content: center;
  }

  .hero-stats-mini {
  justify-content: center;
  gap: 16px;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 2rem;
  }
  
  .services-subtitle {
    font-size: 1rem;
  }
  
  .feature-card .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
  
  .stat-item .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  /* Services CTA Small Mobile */
  .cta-content {
    padding: 32px 20px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 0.95rem;
  }
  
  .cta-icon {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
}

/* Force Orange Colors for All Icons - Override any blue colors */
.feature-icon,
.signup-feature-card .feature-icon,
.trust-stat .trust-icon,
.fas.fa-bolt,
.fas.fa-shield-alt,
.fas.fa-chart-line,
.fas.fa-users,
.fas.fa-star,
.fas.fa-clock {
  background: var(--gradient-primary);
  color: white;
}

/* Modern Services Page Styles */
.modern-services-page {
  min-height: 100vh;
  background: var(--bg-primary);
}

/* Hero Section */
.services-hero {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: var(--font-family);
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Filters Section */
.filters-section {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  padding: 32px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.filters-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.filter-item {
  position: relative;
}

.search-filter {
  grid-column: 1;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0 16px;
  transition: all var(--transition-normal);
}

.search-box:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.search-box i:first-child {
  color: var(--text-tertiary);
  margin-right: 12px;
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
}

.search-box input::placeholder {
  color: var(--text-tertiary);
}

.search-btn {
  background: var(--primary-color);
  border: none;
  border-radius: var(--radius-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all var(--transition-normal);
  margin-left: 8px;
}

.search-btn:hover {
  background: var(--primary-600);
  transform: scale(1.05);
}

/* Filter Dropdowns */
.filter-dropdown {
  position: relative;
}

.dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.dropdown-btn:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.dropdown-btn i:first-child {
  color: var(--primary-color);
  margin-right: 8px;
}

.dropdown-btn i:last-child {
  transition: transform var(--transition-normal);
}

.dropdown-btn.active i:last-child {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  max-height: 300px;
  overflow-y: auto;
  margin-top: 4px;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

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

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

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

/* Services Grid */
.services-section {
  padding: 40px 0;
}

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

/* Category Header */
.category-header {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.category-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.category-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.category-emoji {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
}

.category-details {
  display: flex;
  flex-direction: column;
}

.category-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 4px 0;
}

.category-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

/* Service Cards */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

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

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.service-id {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-weight: 600;
  background: var(--bg-secondary);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.favorite-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--text-tertiary);
  cursor: pointer;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.favorite-btn:hover,
.favorite-btn.active {
  color: var(--primary-color);
  background: rgba(249, 115, 22, 0.1);
}

.service-content {
  margin-bottom: 20px;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.service-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.detail-value.rate {
  color: var(--primary-color);
  font-weight: 700;
}

.service-actions {
  margin-top: auto;
}

.order-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

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

/* No Results */
.no-results {
  padding: 80px 0;
  text-align: center;
}

.no-results-content {
  max-width: 400px;
  margin: 0 auto;
}

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

.no-results-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.no-results-text {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.clear-filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.clear-filters-btn:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .filters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .search-filter {
    grid-column: 1 / -1;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .filters-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-details {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .category-header {
    padding: 16px 20px;
  }
}

/* ============================================
   Clean Table Style Services Page - Minimal Design
   ============================================ */

.clean-services-page {
  min-height: 100vh;
  background: var(--bg-primary);
  padding: 32px 0;
}

/* Page Header */
.services-page-header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.services-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.services-page-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  font-family: var(--font-family);
  position: relative;
  padding-left: 12px;
}

.services-page-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Filters Bar */
.services-filters-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-dropdown-mini {
  position: relative;
}

.filter-btn-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family);
}

.filter-btn-mini:hover {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
  color: var(--primary-color);
}

.filter-btn-mini i {
  color: var(--text-secondary);
  font-size: 14px;
}

.filter-menu-mini {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  max-height: 300px;
  overflow-y: auto;
}

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

.filter-option-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

.filter-option-mini:last-child {
  border-bottom: none;
}

.filter-option-mini:hover {
  background: var(--bg-secondary);
}

.filter-option-mini.active {
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-color);
  font-weight: 600;
}

.filter-option-mini i {
  font-size: 14px;
  width: 18px;
  color: var(--text-secondary);
}

/* Search Box */
.services-search-box {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0 12px;
  min-width: 200px;
}

.services-search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 8px;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  font-family: var(--font-family);
}

.services-search-box input::placeholder {
  color: var(--text-tertiary);
}

.search-btn-mini {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.search-btn-mini:hover {
  color: var(--text-primary);
}

/* Services Table */
.services-content-section {
  padding: 32px 0;
}

.services-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
}

.services-table thead {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0.02) 100%);
  border-bottom: 2px solid rgba(249, 115, 22, 0.1);
}

.services-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
  font-family: var(--font-family);
  white-space: nowrap;
}

.services-table th i {
  color: var(--text-tertiary);
  font-size: 12px;
  margin-left: 4px;
}

/* Category Header Row */
.service-category-row {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0.03) 100%);
  border-left: 3px solid var(--primary-color);
}

.category-header-cell {
  padding: 12px 16px !important;
}

.category-header-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-family);
}

.category-new-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--primary-color);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(249, 115, 22, 0.2);
}

/* Service Rows */
.service-row {
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.service-row:hover {
  background: rgba(249, 115, 22, 0.02);
  border-left: 2px solid var(--primary-color);
}

.service-row td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-primary);
  vertical-align: middle;
}

.service-id-cell {
  font-family: monospace;
  font-weight: 600;
  color: var(--text-tertiary);
  width: 80px;
}

.service-name-cell {
  max-width: 500px;
  position: relative;
}

.service-name-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-name-text {
  flex: 1;
  min-width: 200px;
  color: var(--text-primary);
  line-height: 1.5;
}

.service-order-btn-table {
  background: var(--primary-color);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.25);
}

.service-order-btn-table:hover {
  background: var(--primary-600);
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.35);
}

.favorite-btn-table {
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  margin-top: 4px;
}

.favorite-btn-table:hover,
.favorite-btn-table.active {
  color: #f59e0b;
}

.service-rate-cell {
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.service-min-cell,
.service-max-cell {
  color: var(--text-secondary);
  white-space: nowrap;
}

.service-time-cell {
  color: var(--text-secondary);
  white-space: nowrap;
}

.service-desc-cell {
  text-align: center;
}

.show-description-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family);
}

.show-description-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(249, 115, 22, 0.05);
}

/* No Results */
.no-results-table {
  padding: 80px 20px;
  text-align: center;
}

.no-results-content-table {
  max-width: 400px;
  margin: 0 auto;
}

.no-results-content-table i {
  font-size: 3rem;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.no-results-content-table h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: var(--font-family);
}

.no-results-content-table p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Services Text Content */
.moreservices-text-content {
  padding: 40px 0;
}

.services-text-wrapper {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--border-color);
}

/* Column Widths */
.col-id {
  width: 80px;
}

.col-service {
  min-width: 400px;
}

.col-rate {
  width: 120px;
}

.col-min,
.col-max {
  width: 100px;
}

.col-time {
  width: 140px;
}

.col-desc {
  width: 140px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-filters-bar {
    width: 100%;
    justify-content: flex-start;
  }

  .services-table-wrapper {
    overflow-x: scroll;
  }

  .services-table {
    min-width: 1000px;
  }
}

@media (max-width: 768px) {
  .clean-services-page {
    padding: 20px 0;
  }

  .services-page-header {
    padding: 16px 0;
  }

  .services-page-title {
    font-size: 1.5rem;
  }

  .services-filters-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .filter-btn-mini,
  .services-search-box {
    width: 100%;
  }

  .services-table th,
  .service-row td {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .services-page-title {
    font-size: 1.25rem;
  }

  .services-table {
    min-width: 800px;
  }
}

/* Dark Mode Support */
[data-theme="dark"] .services-table {
  background: var(--card-bg);
}

[data-theme="dark"] .service-category-row {
  background: var(--bg-tertiary);
}

[data-theme="dark"] .services-table thead {
  background: var(--bg-tertiary);
}

/* ============================================
   Modern Blog Section - Smmturk.net Style
   ============================================ */

.modern-blog-section {
  padding: 80px 0;
  background: var(--bg-primary);
  min-height: 70vh;
}

.modern-blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
}

/* Blog Post Item */
.modern-blog-post-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.modern-blog-post-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.3);
}

/* Blog Post Header */
.blog-post-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.blog-post-author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-post-author {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.blog-post-author::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.blog-post-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-left: auto;
}

.blog-post-date i {
  color: var(--primary-color);
  font-size: 14px;
}

/* Blog Post Title */
.blog-post-title {
  margin: 0 0 16px 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--font-family);
}

.blog-post-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Blog Post Image */
.blog-post-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  max-height: 240px;
  height: 240px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-post-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.modern-blog-post-item:hover .blog-post-image img {
  transform: scale(1.02);
}

/* Blog Post Content Wrapper */
.blog-post-content-wrapper {
  margin-bottom: 20px;
}

.blog-post-content-preview {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
  display: block;
}

.blog-post-content-full {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blog Post Footer */
.blog-post-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.blog-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-family);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.blog-read-more-btn:hover {
  color: var(--primary-600);
  gap: 12px;
}

.blog-read-more-btn i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.blog-read-more-btn:hover i {
  transform: translateX(3px);
}

/* Pagination */
.modern-blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pagination-number:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(249, 115, 22, 0.05);
}

.pagination-number.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pagination-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(249, 115, 22, 0.05);
}

.pagination-btn i {
  font-size: 12px;
}

.pagination-next {
  margin-left: 8px;
}

/* Newsletter Section */
.modern-blog-newsletter {
  max-width: 700px;
  margin: 80px auto 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0.02) 100%);
  border: 1px solid rgba(249, 115, 22, 0.1);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

.newsletter-content {
  position: relative;
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

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

.newsletter-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  outline: none;
  transition: all 0.2s ease;
  font-family: var(--font-family);
}

.newsletter-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.newsletter-input::placeholder {
  color: var(--text-tertiary);
}

.newsletter-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.newsletter-submit-btn:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.newsletter-submit-btn i {
  font-size: 12px;
}

.newsletter-terms {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin: 0;
  line-height: 1.5;
}

.newsletter-terms a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.newsletter-terms a:hover {
  color: var(--primary-600);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .modern-blog-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .modern-blog-section {
    padding: 40px 0;
  }

  .modern-blog-posts {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modern-blog-post-item {
    padding: 20px;
  }

  .blog-post-title {
    font-size: 1.25rem;
  }

  .blog-post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .blog-post-date {
    margin-left: 0;
  }

  .blog-post-image {
    max-height: 200px;
    height: 200px;
  }

  .modern-blog-newsletter {
    padding: 32px 24px;
    margin-top: 60px;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .modern-blog-pagination {
    margin: 40px 0;
  }

  .pagination-number {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .blog-post-title {
    font-size: 1.25rem;
  }

  .newsletter-title {
    font-size: 1.25rem;
  }

  .pagination-numbers {
    gap: 4px;
  }

  .pagination-number,
  .pagination-btn {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

/* Dark Mode Support */
[data-theme="dark"] .modern-blog-post-item {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .modern-blog-newsletter {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
  border-color: rgba(249, 115, 22, 0.2);
}

/* ============================================
   Modern Blog Post Page
   ============================================ */

.modern-blogpost-section {
  padding: 60px 0;
  background: var(--bg-primary);
  min-height: 80vh;
}

.blogpost-back-container {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 32px;
}

.blogpost-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blogpost-back-btn:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateX(-3px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.blogpost-back-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.blogpost-back-btn:hover i {
  transform: translateX(-3px);
}

.modern-blogpost-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

.blogpost-cover-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blogpost-cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blogpost-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.blogpost-author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blogpost-author {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.blogpost-author::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.blogpost-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-left: auto;
}

.blogpost-date i {
  color: var(--primary-color);
  font-size: 14px;
}

.blogpost-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 32px 0;
  color: var(--text-primary);
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}

.blogpost-content {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
  font-family: var(--font-family);
}

.blogpost-content p {
  margin-bottom: 20px;
}

.blogpost-content h2,
.blogpost-content h3,
.blogpost-content h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

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

.blogpost-content h4 {
  font-size: 1.3rem;
}

.blogpost-content ul,
.blogpost-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.blogpost-content li {
  margin-bottom: 10px;
}

.blogpost-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

.blogpost-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blogpost-content a:hover {
  color: var(--primary-600);
  text-decoration: underline;
}

.blogpost-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-secondary);
}

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

.blogpost-content pre {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
}

.blogpost-content pre code {
  background: none;
  padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-blogpost-section {
    padding: 40px 0;
  }

  .modern-blogpost-article {
    padding: 32px 24px;
  }

  .blogpost-back-container {
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .blogpost-title {
    font-size: 2rem;
  }

  .blogpost-content {
    font-size: 1rem;
  }

  .blogpost-cover-image {
    max-height: 300px;
    margin-bottom: 24px;
  }

  .blogpost-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .blogpost-date {
    margin-left: 0;
  }
}

/* Dark Mode */
[data-theme="dark"] .modern-blogpost-article {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .blogpost-back-btn {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .blogpost-back-btn:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
}

