:root {
  /* Ana renkler */
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #60A5FA;
  --text-color: #F8FAFC;
  --text-muted: #94A3B8;
  --dark-bg: #0F172A;
  --darker-bg: #020617;
  --border-color: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(30, 41, 59, 0.5);
  
  /* Timeline ve adım renkleri */
  --step-1-color: #FF4444;
  --step-1-light: #FF6B6B;
  --step-1-dark: #FF0000;
  --step-1-shadow: rgba(255, 0, 0, 0.3);
  --step-1-glow: rgba(255, 0, 0, 0.4);
  
  --step-2-color: #FFD700;
  --step-2-light: #FFE55C;
  --step-2-dark: #FFA500;
  --step-2-shadow: rgba(255, 215, 0, 0.3);
  --step-2-glow: rgba(255, 215, 0, 0.4);
  
  --step-3-color: #4ADE80;
  --step-3-light: #86EFAC;
  --step-3-dark: #16A34A;
  --step-3-shadow: rgba(74, 222, 128, 0.3);
  --step-3-glow: rgba(74, 222, 128, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--darker-bg);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--primary-light);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--text-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  top: 0;
  left: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--text-color), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}



.steps-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 1.5rem;
  position: relative;
}

.step-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  padding: 1.75rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-card.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(10px);
}

.step-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

/* Step 1 - Kırmızı */
.step-1 .step-icon,
.step-card:nth-child(1) .step-icon {
  background: linear-gradient(135deg, var(--step-1-light), var(--step-1-dark));
  box-shadow: 0 8px 16px -4px var(--step-1-shadow);
}

.step-1 .step-number,
.step-card:nth-child(1) .step-number {
  background: linear-gradient(135deg, var(--step-1-light), var(--step-1-dark));
  box-shadow: 0 4px 8px -2px var(--step-1-glow);
}

/* Step 2 - Sarı */
.step-2 .step-icon,
.step-card:nth-child(2) .step-icon {
  background: linear-gradient(135deg, var(--step-2-light), var(--step-2-dark));
  box-shadow: 0 8px 16px -4px var(--step-2-shadow);
  color: #1f2937;
}

.step-2 .step-number,
.step-card:nth-child(2) .step-number {
  background: linear-gradient(135deg, var(--step-2-light), var(--step-2-dark));
  box-shadow: 0 4px 8px -2px var(--step-2-glow);
  color: #1f2937;
}

/* Step 3 - Yeşil */
.step-3 .step-icon,
.step-card:nth-child(3) .step-icon {
  background: linear-gradient(135deg, var(--step-3-light), var(--step-3-dark));
  box-shadow: 0 8px 16px -4px var(--step-3-shadow);
}

.step-3 .step-number,
.step-card:nth-child(3) .step-number {
  background: linear-gradient(135deg, var(--step-3-light), var(--step-3-dark));
  box-shadow: 0 4px 8px -2px var(--step-3-glow);
}

.step-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
}

.step-number {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 3;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 60px;
  bottom: 60px;
  width: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

/* Timeline Progress */
.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg,
        #FF0000 0%,
        #FF0000 32%,
        #FFD700 33%,
        #FFD700 65%,
        #00FF00 66%,
        #00FF00 100%
    );
    transition: height 0.8s ease-in-out;
}

/* Kırmızı Adım */
#step1 {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

#step1 .step-icon {
    background: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    color: white;
}

#step1 .step-number {
    background: #FF0000;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#step1 .step-glow {
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
}

/* Sarı Adım */
#step2 {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

#step2 .step-icon {
    background: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    color: white;
}

#step2 .step-number {
    background: #FFD700;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#step2 .step-glow {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
}

/* Yeşil Adım */
#step3 {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
}

#step3 .step-icon {
    background: #00FF00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    color: white;
}

#step3 .step-number {
    background: #00FF00;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#step3 .step-glow {
    background: radial-gradient(circle at center, rgba(0, 255, 0, 0.2) 0%, transparent 70%);
}

/* Hover Durumları */
#step1:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
}

#step2:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

#step3:hover {
    background: rgba(0, 255, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.3);
}

/* Aktif Durumlar */
#step1.active {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
}

#step2.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

#step3.active {
    background: rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.4);
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .steps-container {
    margin: 0 auto;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
  
  .step-card {
    padding: 1.25rem;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }
  
  .header-content {
    height: 60px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .steps-container {
    padding: 1.5rem;
  }
  
  .step-card {
    padding: 1rem;
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  
  .step-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  
  .step-content h3 {
    font-size: 1.1rem;
    justify-content: center;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .timeline-line {
    display: none;
  }
  
  .step-number {
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}

/* Animasyon iyileştirmeleri */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.tech-item {
  animation: fadeInUp 0.6s ease-out backwards;
}

.tech-item:nth-child(1) { animation-delay: 0.3s; }
.tech-item:nth-child(2) { animation-delay: 0.4s; }
.tech-item:nth-child(3) { animation-delay: 0.5s; }
.tech-item:nth-child(4) { animation-delay: 0.6s; }

/* Hover efektleri */
.step-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  transform: translateY(-5px) translateX(5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.tech-item {
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

/* Tech Stack Section */
.tech-stack {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--card-bg);
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
}

.tech-item img {
  width: 24px;
  height: 24px;
}

.tech-item span {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    top: 0;
    left: 0;
}

.product-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-light);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(4px);
}

.product-badge i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.2);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.feature-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary-light);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.3) 100%);
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.feature-hover-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-hover-effect {
    opacity: 1;
}

@media (max-width: 768px) {
    .modern-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .feature-icon-wrapper i {
        font-size: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 4rem 0;
    }

    .modern-features-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-badge {
        font-size: 0.9rem;
        padding: 0.625rem 1.25rem;
    }
}

/* Animasyonlar */
@keyframes featureCardFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.feature-card {
    animation: featureCardFloat 3s ease-in-out infinite;
    animation-play-state: paused;
}

.feature-card:hover {
    animation-play-state: running;
}

/* Additional Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.feature-card i {
  animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .tech-stack {
    gap: 1rem;
  }
  
  .tech-item {
    padding: 0.75rem 1rem;
  }
}

.app-features {
  padding: 100px 0;
  background: var(--darker-bg);
  position: relative;
}

.app-features::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  top: 0;
  left: 0;
}

.feature-title {
  color: #60A5FA;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.feature-subtitle {
  color: #60A5FA;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.features-container {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-top: 3rem;
}

.features-list {
  flex: 1;
  list-style: none;
}

.features-list li {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.features-list li i {
  color: #60A5FA;
  font-size: 1.2rem;
}

.app-screenshots {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 300px;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.phone-stack {
  position: relative;
  perspective: 1000px;
}

.phone-stack .phone-mockup {
  position: absolute;
  transition: all 0.3s ease;
}

.phone-stack .phone-mockup:nth-child(1) {
  transform: translateX(-50%) rotateY(-15deg);
}

.phone-stack .phone-mockup:nth-child(2) {
  transform: translateX(0);
  z-index: 2;
}

.phone-stack .phone-mockup:nth-child(3) {
  transform: translateX(50%) rotateY(15deg);
}

.admin-panel {
  padding: 6rem 0;
  background: var(--darker-bg);
  position: relative;
  overflow: hidden;
}

.admin-feature-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
  position: relative;
}

.admin-feature-item:last-child {
  margin-bottom: 0;
}

.admin-feature-item.reverse {
  flex-direction: row-reverse;
}

.admin-feature-text {
  flex: 1;
}

.admin-feature-text h3 {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.admin-feature-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.admin-feature-image {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.admin-feature-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.admin-feature-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
}

@media (max-width: 1024px) {
  .admin-feature-item {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .admin-feature-item.reverse {
    flex-direction: column;
  }

  .admin-feature-text {
    max-width: 600px;
    margin: 0 auto;
  }

  .admin-feature-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .admin-feature-text h3 {
    font-size: 1.75rem;
  }

  .admin-feature-text p {
    font-size: 1rem;
  }

  .admin-feature-item {
    margin-bottom: 4rem;
  }
}

@media (max-width: 480px) {
  .admin-feature-text h3 {
    font-size: 1.5rem;
  }

  .admin-panel {
    padding: 4rem 0;
  }

  .admin-feature-item {
    margin-bottom: 3rem;
  }
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.pricing-card.pro {
    border: 2px solid var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: var(--primary-light);
    font-size: 1.25rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 2rem;
    font-size: 1.1rem;
    padding: 1rem;
    text-align: center;
    border-radius: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-card .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Navigation Styles */
.main-nav {
    margin: 0 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--text-color);
}

.nav-list a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }

    .main-nav {
        display: none;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
} 

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.3) 100%);
}

.contact-text h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.3) 100%);
    color: var(--text-color);
}

.contact-form-container {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--primary-light);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.8);
}

.input-wrapper:focus-within i {
    color: var(--text-color);
}

.contact-form button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.contact-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    top: 0;
    left: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }

    .contact-info-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .contact-text h3 {
        font-size: 1rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }

    .input-wrapper input,
    .input-wrapper textarea {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
        font-size: 0.95rem;
    }

    .input-wrapper i {
        font-size: 1.1rem;
        left: 0.875rem;
    }
} 

/* Footer Section */
.footer {
    background: rgba(15, 23, 42, 0.95);
    padding: 5rem 0 2rem;
    position: relative;
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 90%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand .logo {
    font-size: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-group h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-group h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 2rem;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.footer-group:hover h4::after {
    width: 100%;
}

.footer-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-group ul li {
    margin-bottom: 0.75rem;
}

.footer-group ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-group ul a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-group ul a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.footer-group ul a:hover::before {
    width: 1rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-group h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-group ul a:hover {
        transform: translateX(0) scale(1.05);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand .logo {
        font-size: 1.75rem;
    }

    .footer-brand p {
        font-size: 1rem;
    }

    .footer-group h4 {
        font-size: 1rem;
    }

    .footer-group ul a {
        font-size: 0.95rem;
    }
} 

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 1rem;
    z-index: 100;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.current-language:hover {
    background: rgba(255, 255, 255, 0.15);
}

.current-language img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.current-language span {
    color: var(--text-color);
    font-size: 0.875rem;
}

.current-language i {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.language-selector:hover .current-language i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    list-style: none;
}

.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.language-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-dropdown img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.language-dropdown .active a {
    background: rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
    }
    
    .current-language span {
        display: none;
    }
    
    .current-language {
        padding: 0.5rem;
    }
    
    .language-dropdown {
        right: -50%;
        width: 150px;
    }
} 

/* About Webview Section */
.about-webview-section {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.about-webview-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    top: 0;
    left: 0;
}

.section-header.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 20px;
}

.comparison-container {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    margin-bottom: 60px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-header h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.comparison-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.negative {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-card.positive {
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.card-header h4 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0;
}

.card-header i {
    font-size: 1.5rem;
}

.negative .card-header i {
    color: #ef4444;
}

.positive .card-header i {
    color: #22c55e;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.comparison-card li i {
    font-size: 1.2rem;
}

.negative li i {
    color: #ef4444;
}

.positive li i {
    color: #22c55e;
}

.development-time {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 15px;
    padding: 30px;
}

.time-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.time-item:hover {
    background: rgba(37, 99, 235, 0.1);
}

.time-item .time {
    color: #ef4444;
    font-weight: 600;
    min-width: 80px;
}

.time-item .task {
    color: var(--text-muted);
}

.time-item.total {
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
    padding-top: 20px;
}

.time-item.total .time {
    font-size: 1.2rem;
}

.video-section {
    text-align: center;
}

.video-section h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

.video-container {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-webview-section {
        padding: 60px 0;
    }

    .comparison-container {
        padding: 20px;
    }

    .comparison-header h3 {
        font-size: 1.75rem;
    }

    .card-header h4 {
        font-size: 1.25rem;
    }

    .comparison-card li {
        font-size: 1rem;
    }

    .time-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .section-header.text-center {
        margin-bottom: 40px;
    }

    .comparison-header h3 {
        font-size: 1.5rem;
    }

    .video-section h3 {
        font-size: 1.5rem;
    }
}

.process-list {
    margin-top: 30px;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.4);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateX(5px);
    background: rgba(15, 23, 42, 0.6);
}

.process-step {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.process-content {
    flex: 1;
}

.process-content h5 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0 0 5px;
}

.process-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.process-content .duration {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.negative .process-content .duration {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.positive .process-content .duration {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.process-summary {
    margin-top: 30px;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.process-summary.negative {
    background: rgba(239, 68, 68, 0.1);
}

.process-summary.positive {
    background: rgba(34, 197, 94, 0.1);
}

.process-summary i {
    font-size: 2rem;
}

.process-summary.negative i {
    color: #ef4444;
}

.process-summary.positive i {
    color: #22c55e;
}

.process-summary p {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.process-summary span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.publishing-support {
    margin-top: 60px;
    padding: 40px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 20px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.support-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon i {
    font-size: 2.5rem;
    color: var(--primary-light);
}

.support-content h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 0 15px;
}

.support-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 20px;
}

.support-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.support-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 1rem;
}

.support-content li i {
    color: #22c55e;
}

.support-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* FAQ Bölümü */
.faq-section {
    margin-top: 80px;
    padding: 60px 0;
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item:hover::before {
    opacity: 0.05;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    gap: 1rem;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h4 {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-question i {
    color: #3b82f6;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: #3b82f6;
    color: #fff;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-cta {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.faq-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.faq-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .faq-section {
        margin-top: 60px;
        padding: 40px 0;
        border-radius: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
        margin-top: 2rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-question i {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .faq-cta {
        margin-top: 3rem;
        padding: 1.5rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }

    .faq-cta .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin-top: 40px;
        padding: 30px 0;
    }

    .faq-grid {
        padding: 0 0.75rem;
        margin-top: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h4 {
        font-size: 0.938rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }

    .faq-cta {
        margin-top: 2rem;
        padding: 1.25rem;
    }
}

/* Admin Panel Slider Styles */
.admin-features-slider {
    position: relative;
    padding: 40px 0;
    background: var(--dark);
    border-radius: 20px;
    margin: 40px 0;
}

.swiper-container {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.admin-feature-item {
    display: flex;
    align-items: center;
    min-height: 400px;
    padding: 40px;
    gap: 40px;
}

.admin-feature-image {
    flex: 1;
    max-width: 50%;
    height: 100%;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--darker);
}

.admin-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-feature-text {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
}

.admin-feature-text h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.admin-feature-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.9;
}

/* Slider Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: var(--white);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .admin-feature-item {
        padding: 30px;
        gap: 30px;
    }

    .admin-feature-text h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1200px) {
    .admin-feature-item {
        min-height: 350px;
    }

    .admin-feature-text h3 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .admin-feature-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .admin-feature-image {
        min-height: 280px;
    }
}

@media (max-width: 992px) {
    .admin-feature-item {
        padding: 25px;
        gap: 25px;
        min-height: 300px;
    }

    .admin-feature-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .admin-feature-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .admin-features-slider {
        padding: 30px 0;
        margin: 30px 0;
    }

    .admin-feature-item {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        min-height: auto;
    }

    .admin-feature-image,
    .admin-feature-text {
        max-width: 100%;
        width: 100%;
    }

    .admin-feature-image {
        min-height: 220px;
        order: 1;
    }

    .admin-feature-text {
        order: 2;
        padding: 0 15px;
        text-align: center;
    }

    .admin-feature-text h3 {
        font-size: 1.6rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .admin-features-slider {
        padding: 20px 0;
        margin: 20px 0;
        border-radius: 15px;
    }

    .admin-feature-item {
        padding: 15px;
        gap: 15px;
    }

    .admin-feature-image {
        min-height: 180px;
        border-radius: 10px;
    }

    .admin-feature-text {
        padding: 0 10px;
    }

    .admin-feature-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .admin-feature-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 380px) {
    .admin-feature-text h3 {
        font-size: 1.2rem;
    }

    .admin-feature-image {
        min-height: 160px;
    }
}
