/* -------------------
   SEO Page Styles
   ------------------- */

body.seo-page {
  font-family: 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

/* Hero Section */
.service-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url('../images/seo.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}

.service-hero .wrap {
  max-width: 900px;
  margin: auto;
}

.service-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Service Content */
.service-content {
  display: flex;
  gap: 2rem;
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
}

.service-content .text {
  flex: 1 1 500px;
}

.service-content h2 {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  color: #222;
}

.service-content p {
  margin: 0.8rem 0 1.5rem;
  color: #555;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
  color: #111;
}

/* Media Image */
.service-content .media {
  flex: 1 1 400px;
  text-align: center;
}

.service-content .media img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* Why Choose Section */
.service-why {
  background: #f7f8fa;
  padding: 3rem 1.5rem;
  text-align: center;
}

.service-why h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-why ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-why li {
  margin: 0.8rem 0;
  font-size: 1.1rem;
  color: #444;
  position: relative;
  padding-left: 1.8rem;
}

.service-why li::before {
  content: "\f058"; /* Font Awesome check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #27ae60; /* Green accent */
}

/* Call to Action */
.service-cta {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #27ae60, #1e8449);
  color: #fff;
}

.service-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-cta .btn {
  display: inline-block;
  background: #fff;
  color: #1e8449;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.service-cta .btn:hover {
  background: #f0f0f0;
  color: #145a32;
}

/* -------------------
   Responsive
   ------------------- */
@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2rem;
  }
  .service-hero p {
    font-size: 1rem;
  }

  .service-content {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .service-cta h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 3rem 1rem;
  }
  .service-hero h1 {
    font-size: 1.8rem;
  }
  .service-content h2 {
    font-size: 1.4rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
}
