/* ======================================================
   SEO Landing Pages — GM Events
   Shared styles for all category SEO pages
====================================================== */

/* HERO */
.seo-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2744 60%, #1e3a5f 100%);
  padding: 90px 0 70px;
  color: #fff;
  text-align: center;
}
.seo-hero .badge {
  display: inline-block;
  background: rgba(59,130,246,.18);
  border: 1px solid rgba(59,130,246,.4);
  color: #93c5fd;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.seo-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 auto 20px;
  max-width: 820px;
}
.seo-hero h1 span { color: #fbbf24; }
.seo-hero p {
  font-size: 1.05rem;
  color: #93c5fd;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.seo-hero p strong { color: #fbbf24; }

/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-wa {
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
  border: none;
  cursor: pointer;
}
.btn-wa:hover { background: #22c55e; transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-blue {
  background: #1d4ed8;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
}
.btn-blue:hover { background: #1e40af; transform: translateY(-2px); }

/* STATS BAR */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 32px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1.1;
}
.stat span {
  font-size: .8rem;
  color: #64748b;
  margin-top: 4px;
  display: block;
}

/* SECTIONS */
.seo-section { padding: 64px 0; }
.seo-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 36px;
  text-align: center;
}
.seo-section h2 span { color: #1d4ed8; }
.bg-light { background: #f8fafc; }
.section-cta { text-align: center; margin-top: 32px; }

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.item-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px;
  transition: .25s;
}
.item-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.09);
  transform: translateY(-4px);
  border-color: #bfdbfe;
}
.card-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.item-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}
.item-card p {
  font-size: .875rem;
  color: #64748b;
  margin: 0 0 14px;
  line-height: 1.55;
}
.price-tag {
  font-size: .875rem;
  font-weight: 700;
  color: #1d4ed8;
  background: #eff6ff;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
}

/* SPECS GRID */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.spec-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.spec-item > span { font-size: 1.6rem; flex-shrink: 0; }
.spec-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #0f172a;
}
.spec-item small {
  font-size: .8rem;
  color: #64748b;
  line-height: 1.4;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  padding: 18px 22px;
  font-weight: 700;
  font-size: .95rem;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-q:hover { background: #f8fafc; }
.faq-q::after {
  content: '▼';
  font-size: .65rem;
  color: #94a3b8;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 20px; }
.faq-a p { margin: 0; color: #475569; font-size: .9rem; line-height: 1.65; }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, #1d4ed8, #1e3a5f);
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}
.cta-band h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-band p {
  color: #93c5fd;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* PROCESS STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -12px;
  right: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #eff6ff;
  line-height: 1;
}
.step-card .step-icon { font-size: 1.8rem; margin-bottom: 14px; }
.step-card h3 { font-size: .95rem; font-weight: 700; color: #0f172a; margin: 0 0 8px; }
.step-card p { font-size: .85rem; color: #64748b; margin: 0; line-height: 1.5; }

/* BREADCRUMBS */
.breadcrumb {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
}
.breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #64748b;
  flex-wrap: wrap;
}
.breadcrumb a { color: #1d4ed8; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #94a3b8; }

/* RELATED LINKS */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.related-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: .2s;
}
.related-card:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
  transform: translateY(-2px);
}
.related-card .rel-icon { font-size: 1.6rem; flex-shrink: 0; }
.related-card strong { display: block; font-size: .9rem; font-weight: 700; color: #0f172a; }
.related-card span { font-size: .78rem; color: #64748b; }

/* ── Social / Instagram Mini-Banner ── */
.ig-mini-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.ig-mini-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ig-mini-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ig-mini-icon svg { width: 22px; height: 22px; color: #fff; }
.ig-mini-text strong { display: block; color: #fff; font-size: .95rem; font-weight: 700; }
.ig-mini-text span { color: rgba(255,255,255,.55); font-size: .8rem; }
.ig-mini-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ig-mini-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: .82rem; font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
  white-space: nowrap;
}
.ig-mini-btn:hover { opacity: .85; }
.ig-mini-btn--ig { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); color: #fff; }
.ig-mini-btn--wa { background: #25d366; color: #fff; }
.ig-mini-btn--tg { background: #2ca5e0; color: #fff; }

/* ======================================================
   NAV-CONTAINER — used on rent-* SEO pages
   (alternative header style with nav-logo / nav-links)
====================================================== */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img.logo-img {
  width: auto;
  height: 40px;
  max-width: 220px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.nav-logo .logo-gm {
  display: none; /* replaced by logo-img */
}
.nav-logo .logo-events {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #0f172a;
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-links li a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-links li a:hover { background: #f1f5f9; color: #0f172a; }
.nav-links li a.active { background: #eff6ff; color: #1d4ed8; font-weight: 700; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1d4ed8;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, transform .15s;
}
.nav-cta:hover { background: #1e40af; transform: translateY(-1px); }

/* Language Switcher (SEO pages) */
.seo-lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 3px;
  flex-shrink: 0;
}
.seo-lang-btn {
  padding: 4px 10px;
  border: none;
  background: transparent;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
  letter-spacing: .03em;
}
.seo-lang-btn:hover { color: #0f172a; background: rgba(255,255,255,.7); }
.seo-lang-btn.active { background: #fff; color: #1d4ed8; box-shadow: 0 1px 3px rgba(0,0,0,.1); }

/* ======================================================
   FOOTER — seo-page variant (footer-content / footer-brand)
====================================================== */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { }
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-brand .footer-logo .logo-gm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  border-radius: 8px;
}
.footer-brand .footer-logo .logo-events {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
}
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
}
.footer-links h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links ul li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  text-decoration: none;
  transition: color .15s;
}
.footer-links ul li a:hover { color: #fff; }
.footer-contact h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.footer-contact p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-contact a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
}
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin: 0;
  text-align: center;
}

/* ── WhatsApp floating button ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  z-index: 999;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .seo-hero { padding: 60px 0 50px; }
  .seo-section { padding: 44px 0; }
  .cta-band { padding: 50px 20px; }
  .ig-mini-banner { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .nav-container { gap: 16px; }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}
