/* =========================
   GLOBAL STYLING
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #333;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   HERO SECTION – RED GOLD ELITE
========================= */

.seo-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6%;
  color: #fff;
  background: linear-gradient(120deg, #D32F2F, #B71C1C, #D32F2F);
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* subtle gold glow */
.seo-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.25), transparent 70%);
  top: -200px;
  right: -200px;
}

.seo-hero-content {
  max-width: 900px;
  animation: fadeUp 1.2s ease forwards;
}

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

.seo-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 50px;
  margin-bottom: 20px;
  text-shadow: 0 0 25px rgba(255,215,0,0.5);
}

.seo-hero p {
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.95;
}

/* =========================
   CONTENT SECTION
========================= */

.seo-content {
  padding: 120px 6%;
  max-width: 1100px;
  margin: auto;
}

.seo-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  color: #D32F2F;
  margin-bottom: 25px;
  position: relative;
}

.seo-content h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #FFD700;
  display: block;
  margin-top: 12px;
  border-radius: 4px;
}

.seo-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  margin-top: 45px;
  margin-bottom: 15px;
  color: #212121;
}

.seo-content p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #444;
}

.seo-content ul {
  margin-left: 25px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.seo-content li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* =========================
   PREMIUM INFO CARD BLOCK
========================= */

.highlight-card {
  margin-top: 60px;
  padding: 50px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-top: 4px solid #FFD700;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255,215,0,0.6),
              0 0 15px rgba(211,47,47,0.4);
}

/* =========================
   CTA SECTION – CONSISTENT BRAND
========================= */

.seo-cta {
  padding: 130px 6%;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #B71C1C, #D32F2F);
  position: relative;
  overflow: hidden;
}

.seo-cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.35), transparent 70%);
  top: -150px;
  left: -150px;
}

.seo-cta h2 {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.seo-cta p {
  font-size: 18px;
  margin-bottom: 35px;
}

/* Elite Gold Button */
.seo-cta-btn {
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(90deg, #FFD700, #ffcc00);
  color: #D32F2F;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

.seo-cta-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px #FFD700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .seo-hero h1 {
    font-size: 32px;
  }

  .seo-hero p {
    font-size: 16px;
  }

  .seo-content {
    padding: 80px 6%;
  }

  .seo-content h2 {
    font-size: 26px;
  }

  .seo-cta {
    padding: 90px 6%;
  }

  .seo-cta h2 {
    font-size: 26px;
  }

}