/* ===== SEO Section Styles ===== */
.seo-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  padding: 100px 0;
  position: relative;
  color: #333;
}

.seo-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.seo-section .section-header {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 2rem;
}

.seo-section .section-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
}

.seo-section .section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

.seo-content {
  margin-top: 40px;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Left Side - Features */
.seo-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.seo-intro {
  margin-bottom: 1rem;
}

.seo-intro h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.seo-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.seo-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.seo-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.seo-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seo-feature-icon i {
  font-size: 1.3rem;
  color: white;
}

.seo-feature-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #222;
}

.seo-feature-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Right Side - Benefits */
.seo-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.seo-stats-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.seo-stat-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.seo-stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.seo-stat-item:first-child {
  padding-top: 0;
}

.seo-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00b4d8;
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
}

.seo-stat-label {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Checklist - Simple List with Image */
.seo-checklist {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.seo-checklist-content h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #222;
  position: relative;
  padding-bottom: 1rem;
}

.seo-checklist-content h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #00b4d8 0%, #0096c7 100%);
  border-radius: 2px;
}

.seo-checklist-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.seo-checklist-items li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  transition: all 0.2s ease;
  padding-left: 0;
}

.seo-checklist-items li:hover {
  transform: translateX(5px);
  color: #222;
}

.seo-checklist-items li i {
  color: #00b4d8;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.seo-checklist-image {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, rgba(0, 150, 199, 0.12) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 180, 216, 0.15);
}

.seo-checklist-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 150, 199, 0.1) 0%, transparent 50%);
}

.seo-checklist-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.seo-checklist-image::after {
  content: 'SEO';
  position: absolute;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Oswald', sans-serif;
  z-index: 0;
  letter-spacing: 0.1em;
  user-select: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .seo-feature-list {
    grid-template-columns: 1fr;
  }
  
  .seo-checklist {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .seo-checklist-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .seo-section {
    padding: 60px 0;
  }
  
  .seo-section .section-header {
    margin-bottom: 40px;
  }
  
  .seo-intro h3 {
    font-size: 1.5rem;
  }
  
  .seo-stats-card {
    padding: 2rem;
  }
  
  .seo-stat-number {
    font-size: 2.5rem;
  }
  
  .seo-checklist-content h4 {
    font-size: 1.6rem;
  }
  
  .seo-checklist-items {
    gap: 1.2rem;
  }
  
  .seo-checklist-items li {
    font-size: 1rem;
  }
  
  .seo-checklist-image {
    height: 300px;
  }
  
  .seo-checklist-image::after {
    font-size: 7rem;
  }
}

@media (max-width: 480px) {
  .seo-section {
    padding: 40px 0;
  }
  
  .seo-feature-list {
    gap: 1rem;
  }
  
  .seo-stats-card {
    padding: 1.5rem;
  }
  
  .seo-intro p,
  .seo-feature-content p {
    font-size: 0.95rem;
  }
  
  .seo-checklist-content h4 {
    font-size: 1.4rem;
  }
  
  .seo-checklist-items li {
    font-size: 0.95rem;
  }
  
  .seo-checklist-image {
    height: 250px;
  }
}
