/* ==========================================================================
   AMEGO HOMES — STANDALONE GOOGLE ADS LANDING PAGE STYLESHEET (OPTIMIZED)
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary: #E8471C;
  --primary-light: #FF5A2D;
  --primary-dark: #C73A14;
  --secondary: #7C3AED;
  --secondary-light: #9B59EF;
  --secondary-dark: #5B21B6;
  --gold: #C9A227;
  --gold-light: #E8BB3A;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  /* Neutrals */
  --dark: #0D0D14;
  --dark-2: #171723;
  --dark-3: #25253A;
  --mid: #52526A;
  --mid-light: #7B7B99;
  --light: #FCFCFA;
  --light-2: #F5F4F1;
  --border: #E8E3DC;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Gradients & Shadows */
  --grad-brand: linear-gradient(135deg, var(--primary) 0%, #F0622A 40%, var(--secondary) 100%);
  --grad-brand-h: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary-dark) 100%);
  --grad-dark: linear-gradient(135deg, #171723 0%, #25253A 100%);
  --grad-hero: linear-gradient(to right, rgba(13, 13, 20, 0.88) 0%, rgba(13, 13, 20, 0.65) 50%, rgba(13, 13, 20, 0.15) 100%);

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Border Radius & Transition */
  --radius-card: 16px;
  --radius-btn: 8px;
  --transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Offset for sticky header + spacing */
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 75px; /* Offset for solid white sticky header bar */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--dark-2);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--secondary);
}

.section-sub {
  color: var(--mid);
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 71, 28, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 71, 28, 0.4);
  background: var(--grad-brand-h);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  background: var(--whatsapp-dark);
}

.btn-white {
  background: #fff;
  color: var(--dark-2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-white:hover {
  background: var(--light-2);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --- Dedicated Premium Sticky White Header Bar --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #EEEEEE;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  height: 75px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-divider {
  width: 1.5px;
  height: 32px;
  background: #EEEEEE;
  margin: 0 15px;
}

.ap-badge-header {
  height: 34px;
  width: auto;
  display: block;
}


/* --- Header Live Consultant Status Indicator --- */
.header-live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 50px;
  padding: 6px 14px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  60%  { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.live-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #128c7e;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Hero badge dot (replaces AP logo icon in pill badge) */
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: livePulse 2s infinite;
}

@media (max-width: 576px) {
  .live-label {
    display: none; /* Show dot only on very small screens for compactness */
  }
  .header-live-status {
    padding: 6px 9px;
  }
}


/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 2.5rem 0; /* Reset top padding since offset is handled by body */
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(1.1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 71, 28, 0.12);
  border: 1px solid rgba(232, 71, 28, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
}

.hero-title {
  font-family: var(--font-head);
  font-size: 2.85rem;
  line-height: 1.15;
  font-weight: 800;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 580px;
}

.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-bullet-item i {
  color: var(--gold-light);
  font-size: 1rem;
}

/* Lead Form Card */
.form-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem;
  color: var(--dark-2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--border);
  position: relative;
}

.urgency-badge {
  display: block;
  text-align: center;
  background: rgba(232, 71, 28, 0.08);
  border: 1px dashed var(--primary);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 1.25rem;
}

.form-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.form-header h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: var(--dark);
  font-weight: 700;
}

.form-header p {
  color: var(--mid);
  font-size: 0.85rem;
  font-weight: 500;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mid);
  margin-bottom: 4px;
}

.form-group i {
  position: absolute;
  left: 14px;
  top: 35px;
  color: var(--mid-light);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--dark-2);
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 71, 28, 0.15);
}

/* Trust Box directly below form */
.form-trust-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.form-trust-stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.form-trust-rating {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-2);
}

.form-trust-reviews {
  font-size: 0.75rem;
  color: var(--mid);
  font-weight: 500;
}

/* --- Stats Banner Section (Directly below hero) --- */
.stats-banner {
  background: var(--light-2);
  border-bottom: 1.5px solid var(--border);
  padding: 1.75rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
}

.stat-item {
  border-right: 1.5px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-body);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Reusable CTA Row Banner (Scrolls Up to Form) --- */
.repeated-cta-section {
  background: var(--grad-dark);
  color: #fff;
  padding: 3rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.cta-row-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.cta-row-text {
  flex: 1.5;
}

.cta-row-text h3 {
  font-family: var(--font-head);
  font-size: 1.85rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.cta-row-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.cta-row-action {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cta-row-action .btn {
  padding: 1rem 2.25rem;
}

/* --- Trust section --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  border-color: rgba(232, 71, 28, 0.15);
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(232, 71, 28, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1.25rem auto;
}

.trust-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark-2);
}

.trust-card p {
  color: var(--mid);
  font-size: 0.9rem;
}

/* --- Before & After Section --- */
.before-after-section {
  background: var(--light);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.ba-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.ba-card-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 1.25rem;
  text-align: center;
}

.ba-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ba-image-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--border);
}

.ba-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.ba-label--before {
  background: #6c757d;
}

.ba-label--after {
  background: var(--primary);
  box-shadow: 0 4px 8px rgba(232, 71, 28, 0.3);
}

.ba-caption {
  font-size: 0.85rem;
  color: var(--mid);
  text-align: center;
  margin-top: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

/* --- Project Showcase (6 items, gallery presentation) --- */
.showcase-section {
  background: var(--light-2);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,20,0.95) 0%, rgba(13,13,20,0.4) 60%, rgba(13,13,20,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-card:hover .showcase-overlay {
  opacity: 1;
}

.showcase-info h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4px;
}

.showcase-info p {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- Reviews Section --- */
.reviews-section {
  background: #fff;
}

.rating-summary-card {
  background: var(--light-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 550px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.rating-score {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-body);
  color: var(--dark-2);
  line-height: 1;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.rating-count {
  color: var(--mid);
  font-size: 0.85rem;
  font-weight: 600;
}

.rating-google-icon {
  font-size: 2.25rem;
  color: #4285F4;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--light-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-stars {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.review-text {
  color: var(--dark-3);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-light);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info h5 {
  font-weight: 600;
  color: var(--dark-2);
  font-size: 0.9rem;
}

.author-info p {
  color: var(--mid-light);
  font-size: 0.75rem;
}

/* --- Process Section --- */
.process-section {
  background: var(--light-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.process-step h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--dark-2);
  margin-bottom: 0.35rem;
}

.process-step p {
  color: var(--mid);
  font-size: 0.85rem;
  padding: 0 5px;
}

/* --- FAQ Section --- */
.faq-section {
  background: var(--light);
}

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark-2);
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.25s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
  padding: 0 1.5rem;
  color: var(--mid);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* --- Footer (No Leaks, Clean CRO) --- */
.site-footer {
  background: #09090e;
  color: rgba(255,255,255,0.5);
  padding: 3.5rem 0 2.5rem 0;
  border-top: 1px solid var(--border-dark);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-brand {
  flex: 1.5;
  min-width: 280px;
}

.footer-brand h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.footer-contact {
  flex: 1;
  min-width: 240px;
}

.footer-contact h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 3px;
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: #fff;
}

/* --- Mobile Responsiveness / Mobile-First Optimization --- */

@media (max-width: 992px) {
  html {
    font-size: 15px;
    scroll-padding-top: 85px; /* Adjusted offset for mobile sticky header */
  }

  body {
    padding-top: 75px; /* Match mobile header height */
  }

  .site-header {
    height: 75px;
  }

  .logo-img {
    height: 36px;
  }

  .logo-divider {
    height: 24px;
    margin: 0 10px;
  }

  .ap-badge-header {
    height: 25px;
  }

  .header-phone {
    font-size: 0.95rem;
  }

  .header-phone i {
    font-size: 0.95rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-bullets {
    justify-content: center;
    width: 100%;
    max-width: 500px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .cta-row-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cta-row-action {
    justify-content: center;
    width: 100%;
  }

  .cta-row-action .btn {
    width: 100%;
    max-width: 400px;
  }

  .ba-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-grid, .showcase-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero {
    padding: 2.5rem 0;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 320px;
  }

  .form-card {
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 1rem;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .ba-comparison {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ba-image-container {
    height: 180px;
  }

  .trust-grid, .showcase-grid, .reviews-grid, .process-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .rating-summary-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   THANK YOU PAGE SPECIFIC STYLES
   ========================================================================== */

.success-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem auto;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.08);
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  color: #128c7e;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 1rem;
}

.ty-timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}

.ty-timeline::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 17px;
  bottom: 5px;
  width: 2px;
  background: var(--border);
}

.ty-timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.ty-timeline-item:last-child {
  margin-bottom: 0;
}

.ty-timeline-icon {
  position: absolute;
  left: -2.5rem;
  top: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 10;
}

.ty-timeline-item.active .ty-timeline-icon {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
}

.ty-timeline-content h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--dark-2);
  margin-bottom: 4px;
  font-weight: 700;
}

.ty-timeline-content p {
  color: var(--mid);
  font-size: 0.92rem;
}

.expert-cta-box {
  background: var(--grad-dark);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.expert-cta-box h2 {
  font-family: var(--font-head);
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.expert-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.expert-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.expert-buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  min-width: 220px;
}

.bonus-offer-box {
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.08);
  position: relative;
  overflow: hidden;
}

.bonus-offer-box::before {
  content: 'BONUS';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 30px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
  z-index: 5;
}

.bonus-offer-box h3 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--dark-2);
  margin-bottom: 0.5rem;
}

.bonus-offer-box p.bonus-sub {
  color: var(--mid);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto 1.75rem auto;
  text-align: left;
}

.bonus-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark-3);
  font-size: 1.05rem;
}

.bonus-list-item i {
  color: var(--gold);
  font-size: 1.15rem;
}

.bonus-urgency {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Helper class for 4-column trust grid on thank you page */
.trust-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .trust-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-grid--4col {
    grid-template-columns: 1fr;
  }
}

/* Premium Asian Paints trust badge in hero */
.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.08); /* Green tinted bg */
  border: 1.5px solid rgba(37, 211, 102, 0.35); /* Soft green border */
  color: #128c7e; /* Dark green text */
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.04);
}

.badge-ap-icon {
  height: 16px;
  width: auto;
  display: block;
}

/* Form trust strip below CTA */
.form-trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  gap: 8px;
}

.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  flex: 1;
}

.trust-strip-item .stars {
  color: var(--gold);
  font-size: 0.75rem;
  display: flex;
  gap: 1px;
}

.trust-strip-item i.check-icon {
  color: #25d366;
  font-size: 0.85rem;
}

.trust-strip-item i.shield-icon {
  color: var(--primary);
  font-size: 0.85rem;
}

.trust-strip-item .label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark-3);
  white-space: nowrap;
}

.trust-strip-divider {
  width: 1px;
  height: 25px;
  background: var(--border);
}

@media (max-width: 480px) {
  .form-trust-strip {
    gap: 4px;
  }
  .trust-strip-item .label {
    font-size: 0.72rem;
  }
}

@media (max-width: 576px) {
  .hero-badge-premium {
    font-size: 0.72rem;
    padding: 5px 12px;
    gap: 6px;
  }
  .badge-ap-icon {
    height: 13px;
  }
}

