/* ============================================================
   Luxytrix Travel — SEO Landing Pages Stylesheet
   css/seo-pages.css
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy: #0f2d5e;
  --navy-dark: #091e42;
  --navy-light: #1a4a8a;
  --gold: #d4a017;
  --gold-light: #f5c842;
  --green: #16a34a;
  --wa: #25d366;
  --white: #ffffff;
  --bg-light: #f8f9fc;
  --text-dark: #1a1a2e;
  --text-gray: #555;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

/* ---- Utility Reset ---- */
*, *::before, *::after { box-sizing: border-box; }

/* ============================================================
   BREADCRUMB BAR
   ============================================================ */
.breadcrumb-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 5%;
  font-size: .82rem;
  color: var(--text-gray);
}
.breadcrumb-bar a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-seo { font-size: .78rem; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.breadcrumb-seo a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb-seo a:hover { color: var(--gold-light); }

/* ============================================================
   SEO HERO SECTION
   ============================================================ */
.seo-hero {
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  padding: 100px 5% 70px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* dark overlay so text is readable over background images */
.seo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,45,94,.78);
  pointer-events: none;
  z-index: 0;
}
@media(max-width:900px) {
  .seo-hero { grid-template-columns: 1fr; padding: 90px 5% 50px; gap: 32px; }
}

/* CSS alias: HTML uses .hero-content — maps to .seo-hero-left */
.seo-hero-left,
.hero-content { position: relative; z-index: 1; }

.seo-hero-left h1,
.hero-content h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.seo-hero-left h1 span,
.hero-content h1 span { color: var(--gold-light); }

/* CSS alias: HTML uses .hero-sub — maps to .seo-hero-desc */
.seo-hero-desc,
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 520px;
}

/* CSS alias: HTML uses .hero-badges — maps to .seo-hero-badges */
.seo-hero-badges,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

/* CSS alias: HTML uses .badge — maps to .badge-chip */
.badge-chip,
.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.badge-chip i, .badge i { color: var(--gold-light); margin-right: 5px; }
.badge-chip:hover, .badge:hover {
  background: rgba(212,160,23,.25);
  border-color: var(--gold);
}

/* CSS alias: HTML uses .hero-ctas — maps to .seo-hero-ctas */
.seo-hero-ctas,
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-wa-hero:hover { background: #1da84f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.45); }

.btn-call-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: var(--transition);
}
.btn-call-hero:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ---- Hero Form Card ---- */
.seo-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.seo-form-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.seo-form-card .form-sub {
  font-size: .82rem;
  color: var(--text-gray);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.seo-form-card .form-sub i { color: var(--green); }

.seo-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media(max-width:500px) { .seo-form-card .form-row { grid-template-columns: 1fr; } }

.seo-form-card .form-group { margin-bottom: 14px; }
.seo-form-card label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.seo-form-card input,
.seo-form-card select,
.seo-form-card textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  font-family: inherit;
  margin-bottom: 10px;
}
.seo-form-card input:focus,
.seo-form-card select:focus,
.seo-form-card textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,45,94,.1);
}
.seo-form-card textarea { resize: vertical; min-height: 70px; }

.btn-submit-form {
  width: 100%;
  padding: 13px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
  letter-spacing: .3px;
}
.btn-submit-form:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(15,45,94,.3); }

.form-note {
  text-align: center;
  font-size: .74rem;
  color: var(--text-gray);
  margin-top: 10px;
}
.form-note i { color: var(--green); }

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section {
  background: var(--navy);
  padding: 56px 5%;
  position: relative;
  overflow: hidden;
  /* Flex layout so counter-items placed directly inside display in a row */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.counter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
/* counter-grid: still works when explicitly added as a wrapper */
.counter-grid {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media(max-width:768px) { .counter-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:420px) { .counter-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* counter-item as direct flex child of counter-section */
.counter-item {
  flex: 1 0 200px;
  max-width: 260px;
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
@media(max-width:768px) { .counter-item { flex: 1 0 180px; max-width: 48%; } }
@media(max-width:480px) { .counter-item { flex: 1 0 140px; max-width: 46%; } }
.counter-item:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.counter-icon {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}
/* counter-icon as a wrapper div (luxury page variant) */
.counter-icon i { font-size: inherit; color: inherit; }
.counter-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.counter-num span { color: var(--gold-light); }
.counter-label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.seo-section {
  padding: 72px 5%;
  max-width: 100%;
}
.seo-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.bg-light-section { background: var(--bg-light); }

.section-label {
  display: inline-block;
  background: rgba(212,160,23,.12);
  color: var(--gold);
  border: 1px solid rgba(212,160,23,.3);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 12px;
}

.seo-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 40px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 16px;
}
.seo-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* CSS alias: HTML uses .section-center-h on <h2> elements */
.section-center-h {
  text-align: center;
}
.section-center-h::after {
  left: 50%;
  transform: translateX(-50%);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
@media(max-width:768px) {
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }
}

.content-text p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--text-gray);
  margin-bottom: 16px;
}
/* section-cta-line: flex button container used in Ahmedabad/SEO pages */
.section-cta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 8px;
  align-items: center;
}

/* CSS alias: HTML uses .content-img — maps to .content-img-wrap */
.content-img-wrap,
.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.content-img-wrap img,
.content-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.content-img-wrap:hover img,
.content-img:hover img { transform: scale(1.04); }

/* ============================================================
   KEY POINTS / FEATURES GRID
   ============================================================ */
.keypoints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
@media(max-width:900px) { .keypoints-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:560px) { .keypoints-grid { grid-template-columns: 1fr; } }

.kp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.kp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: var(--transition);
}
.kp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,160,23,.3);
}
.kp-card:hover::before { opacity: 1; }

.kp-icon {
  width: 52px;
  height: 52px;
  background: rgba(15,45,94,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.kp-card h4 {
  font-size: .98rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.kp-card p {
  font-size: .86rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================================
   ITINERARY SECTION
   ============================================================ */
.itin-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.itin-tab {
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  bottom: -2px;
}
.itin-tab:hover { color: var(--navy); border-color: var(--navy); }
.itin-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 -2px 8px rgba(212,160,23,.3);
}

.itin-panel { display: none; }
.itin-panel.active { display: block; animation: fadeInUp 0.4s ease; }

.itin-day-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}
.itin-day-row::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -20px;
  width: 2px;
  background: var(--gold);
  opacity: .3;
}
.itin-day-row:last-child::before { display: none; }

.itin-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(15,45,94,.3);
}

/* CSS alias: HTML uses .itin-day-content — maps to .itin-content */
.itin-content,
.itin-day-content { flex: 1; padding: 4px 0; }

.itin-content h4, .itin-content h5,
.itin-day-content h4, .itin-day-content h5 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.itin-content p,
.itin-day-content p {
  font-size: .87rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* CSS alias: HTML uses .itin-price */
.itin-price {
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(212,160,23,.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media(max-width:900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover {
  background: var(--white);
  border-color: rgba(212,160,23,.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
/* keep text readable — override style.css which turns text white on hover */
.why-card:hover h4,
.why-card:hover p { color: inherit; }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(15,45,94,.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--navy);
  color: var(--white);
}
.why-card h4 {
  font-size: .98rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: .86rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================================
   REVIEWS AUTO-TICKER
   ============================================================ */
.reviews-section { overflow: hidden; }

.reviews-ticker {
  overflow: hidden;
  padding: 8px 0;
  position: relative;
}
.reviews-ticker::before,
.reviews-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-ticker::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.reviews-ticker::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }

.reviews-track-auto {
  display: flex;
  gap: 20px;
  animation: autoScroll 40s linear infinite;
  width: max-content;
}
.reviews-track-auto:hover { animation-play-state: paused; }

.review-card-seo {
  min-width: 320px;
  max-width: 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: var(--transition);
}
.review-card-seo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(212,160,23,.3);
}

.review-stars { color: var(--gold-light); font-size: .9rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text-seo {
  font-size: .88rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 14px;
  font-style: italic;
}
.review-text-seo::before { content: '\201C'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -5px; margin-right: 2px; }
.review-text-seo::after { content: '\201D'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -5px; margin-left: 2px; }

/* In the HTML, review cards have plain <p> and .reviewer instead of .review-text-seo + .review-author-seo */
.review-card-seo p {
  font-size: .88rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 12px;
  font-style: italic;
}
.review-card-seo p::before { content: '\201C'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -5px; margin-right: 2px; }
.review-card-seo p::after { content: '\201D'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -5px; margin-left: 2px; }

/* CSS alias: HTML uses .reviewer */
.reviewer {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 4px;
}

.review-author-seo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  flex-shrink: 0;
}
.review-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.review-loc { font-size: .76rem; color: var(--text-gray); }
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: .72rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 2px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list-seo { max-width: 780px; }

.faq-item-seo {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item-seo:first-child { border-top: 1px solid var(--border); }

.faq-q-seo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
  user-select: none;
}
.faq-q-seo:hover { color: var(--gold); }

/* CSS alias: HTML uses .faq-icon-seo — maps to .faq-icon */
.faq-q-seo .faq-icon,
.faq-q-seo .faq-icon-seo {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--navy);
  transition: var(--transition);
}
.faq-item-seo.open .faq-q-seo .faq-icon,
.faq-item-seo.open .faq-q-seo .faq-icon-seo {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-item-seo.open .faq-q-seo { color: var(--gold); }

.faq-a-seo {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 4px;
}
.faq-item-seo.open .faq-a-seo {
  max-height: 400px;
  padding: 0 4px 18px;
}
.faq-a-seo p {
  font-size: .9rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ============================================================
   CTA BAND (shared)
   ============================================================ */
.cta-band {
  background: var(--navy);
  padding: 64px 5%;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-band p {
  opacity: .85;
  margin-bottom: 30px;
  font-size: .98rem;
  line-height: 1.7;
}

/* CSS alias: HTML uses .cta-band-btns — maps to .cta-btns */
.cta-btns,
.cta-band-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   INTERNAL LINKS STRIP
   ============================================================ */
.related-links-section {
  background: var(--bg-light);
  padding: 40px 5%;
  border-top: 1px solid var(--border);
}
.related-links-inner { max-width: 1100px; margin: 0 auto; }
.related-links-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

/* CSS alias: HTML uses .related-chips — maps to .related-links-grid */
.related-links-grid,
.related-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .82rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.related-link-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.related-link-chip i { color: var(--gold); font-size: .78rem; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
#float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
#float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }

/* ============================================================
   SECTION FADE-IN ANIMATION
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes autoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.1); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media(max-width:768px) {
  .seo-section { padding: 52px 5%; }
  .counter-section { padding: 40px 5%; }
  .seo-hero { padding: 80px 5% 40px; }
  .seo-hero-left h1, .hero-content h1 { font-size: 1.7rem; }
  .seo-form-card { padding: 24px 20px; }
}
@media(max-width:480px) {
  .seo-hero-ctas, .hero-ctas { flex-direction: column; }
  .btn-wa-hero, .btn-call-hero { justify-content: center; text-align: center; }
  .review-card-seo { min-width: 280px; max-width: 280px; }
}

/* ============================================================
   SUCCESS / TOAST NOTIFICATION
   ============================================================ */
.form-toast {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 99999;
  animation: fadeInUp 0.4s ease;
}
.form-toast.show { display: flex; align-items: center; gap: 10px; }
