/* ============================================================
   Kerala Sellers — SEO Marketing Pages Shared CSS
   Reuses existing design tokens: #1a4845, #FDFFF0, Jost font
   ============================================================ */

/* ── Page shell ── */
.seo-page {
  background-color: #FDFFF0;
  min-height: 100vh;
  font-family: 'Jost', 'Quicksand', sans-serif;
}

/* ── Breadcrumb ── */
.seo-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 13px;
  color: #64748b;
}
.seo-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: center;
}
.seo-breadcrumb__link {
  color: #1a4845;
  text-decoration: none;
}
.seo-breadcrumb__link:hover { text-decoration: underline; }
.seo-breadcrumb__sep { margin: 0 4px; }

/* ── Hero ── */
.seo-hero {
  background: linear-gradient(135deg, #1a4845 0%, #2d6b5e 60%, #3a7d6e 100%);
  color: #fff;
  padding: 72px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.seo-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.seo-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}
.seo-hero__h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}
.seo-hero__h1 em {
  font-style: normal;
  color: #a3e635;
}
.seo-hero__sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.87);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 30px;
}
.seo-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.seo-hero__pill {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
}
.seo-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Buttons ── */
.seo-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #a3e635;
  color: #1a4845;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.seo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(163,230,53,0.35);
}
.seo-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.45);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.seo-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ── Section shell ── */
.seo-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}
.seo-section--alt {
  background: #fff;
}
.seo-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a4845;
  margin-bottom: 10px;
}
.seo-section__h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a2b2a;
  line-height: 1.2;
  margin: 0 0 14px;
}
.seo-section__lead {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 40px;
}

/* ── Pain/Solution grid ── */
.seo-problems {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.seo-problem-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.seo-problem-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.seo-problem-card__emoji { font-size: 2rem; margin-bottom: 12px; }
.seo-problem-card__problem {
  font-weight: 700;
  font-size: 0.95rem;
  color: #991b1b;
  margin-bottom: 10px;
  line-height: 1.4;
}
.seo-problem-card__solution {
  font-size: 0.9rem;
  color: #15803d;
  line-height: 1.5;
  padding-left: 14px;
  border-left: 3px solid #bbf7d0;
}

/* ── Feature grid ── */
.seo-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.seo-feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.seo-feature-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.07); }
.seo-feature-card__icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.seo-feature-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2b2a;
  margin-bottom: 6px;
}
.seo-feature-card__desc {
  font-size: 0.87rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

/* ── Brand closing section ── */
.seo-closer {
  background: linear-gradient(135deg, #1a4845, #2d6b5e);
  color: #fff;
  text-align: center;
  padding: 64px 24px;
}
.seo-closer__quote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.4;
}
.seo-closer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #a3e635;
  color: #1a4845;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.18s;
}
.seo-closer__cta:hover { transform: translateY(-2px); }

/* ── Stats bar ── */
.seo-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background: #1a4845;
  padding: 0;
  justify-content: center;
}
.seo-stat {
  flex: 1 1 160px;
  text-align: center;
  padding: 28px 16px;
  color: #fff;
}
.seo-stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: #a3e635;
  display: block;
}
.seo-stat__label {
  font-size: 0.85rem;
  opacity: 0.82;
  margin-top: 4px;
}

/* ── Internal link box ── */
.seo-links-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 40px;
}
.seo-links-box__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.seo-links-box__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.seo-links-box__list a {
  color: #1a4845;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  transition: background 0.15s;
}
.seo-links-box__list a:hover { background: #dcfce7; }

/* ── FAQ section ── */
.seo-faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
}
.seo-faq__h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #1a2b2a;
  margin: 0 0 32px;
  text-align: center;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item--open { box-shadow: 0 4px 16px rgba(26,72,69,0.1); border-color: #1a4845; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  color: #1a2b2a;
  text-align: left;
  line-height: 1.4;
  font-family: inherit;
}
.faq-question:hover { background: #f9fafb; }
.faq-icon { flex-shrink: 0; color: #1a4845; }
.faq-answer { padding: 0 20px 18px; }
.faq-answer p { margin: 0; font-size: 0.92rem; color: #374151; line-height: 1.65; }

/* ── Nav dropdown (Header additions) ── */
.nav-dropdown-wrapper {
  position: relative;
}
.nav-dropdown-wrapper:hover .nav-dropdown-panel,
.nav-dropdown-wrapper:focus-within .nav-dropdown-panel {
  display: block;
}
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  min-width: 280px;
  z-index: 200;
  padding: 14px 0;
}
.nav-dropdown-item {
  display: block;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a4845;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-item:hover { background: #f0fdf4; }
.nav-dropdown-item small {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 2px;
}
.nav-dropdown-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 8px 0;
}
.nav-item-with-arrow::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .seo-hero { padding: 52px 16px 40px; }
  .seo-section { padding: 44px 16px; }
  .seo-closer { padding: 48px 16px; }
  .seo-faq { padding: 40px 16px; }
  .seo-stats { flex-direction: column; gap: 0; }
  .seo-stat { padding: 20px 16px; }
}
