/* ==================================================
   FOOD TOUR IN DELHI — STYLES
   ================================================== */

:root {
  --primary-gold: #c6821f;
  --primary-gold-dark: #a86a15;
  --primary-gold-light: #e0a748;
  --dark: #241f1a;
  --dark-soft: #3a332c;
  --white: #ffffff;
  --cream: #fdf8f1;
  --text: #2c2620;
  --text-muted: #6b6058;
  --border: #e7ddcf;
  --shadow: 0 20px 45px rgba(36, 31, 26, 0.16);
  --shadow-sm: 0 8px 20px rgba(36, 31, 26, 0.10);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--dark);
  margin: 0;
}

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

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary-gold-light);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.section-heading { margin-bottom: 2.5rem; }
.section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.section-underline {
  display: inline-block;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--primary-gold);
  margin-top: 0.75rem;
}

/* ==================================================
   HEADER
   ================================================== */
.site-header {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: relative;
  z-index: 40;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand-logo { flex-shrink: 0; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-line1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.brand-line2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-gold);
  letter-spacing: 0.08em;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}
.header-contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.header-contact-text { display: flex; flex-direction: column; line-height: 1.25; }
.header-contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.header-contact-number {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.header-rating {
  align-items: center;
  gap: 0.4rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--border);
}
.header-rating-star { color: var(--primary-gold); font-size: 1.1rem; }
.header-rating-text { font-size: 0.8rem; line-height: 1.2; color: var(--text-muted); }
.header-rating-text strong { color: var(--dark); font-size: 0.95rem; }
.header-rating-stars { color: var(--primary-gold); display: block; font-size: 0.75rem; letter-spacing: 1px; }
.header-rating-reviews { display: block; }

.header-tripadvisor {
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--border);
  font-size: 1.3rem;
  color: var(--dark);
}
.header-tripadvisor-text { display: flex; flex-direction: column; line-height: 1.2; }
.header-tripadvisor-name { font-weight: 700; font-size: 0.85rem; }
.header-tripadvisor-dots { color: #34a853; font-size: 0.6rem; letter-spacing: 2px; }
.header-tripadvisor-reviews { font-size: 0.72rem; color: var(--text-muted); }

/* ==================================================
   HERO
   ================================================== */
.hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.617) 42%, rgba(255,255,255,0.35) 68%, rgba(255,255,255,0.08) 100%);
  z-index: -1;
}

.hero-content { padding-top: 1rem; }

.hero-heading {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
}
.hero-heading-accent { color: var(--primary-gold); }

.hero-underline {
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 2px;
  background: var(--primary-gold);
  margin: 1.25rem 0 1.25rem;
}

.hero-copy {
  font-size: 1.02rem;
  color: black;
  max-width: 32rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.hero-benefits { display: flex; flex-direction: column; gap: 0.9rem; }
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--dark-soft);
  font-size: 1rem;
}
.hero-benefit-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

/* Booking card */
.hero-form-col { display: flex; justify-content: center; }

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem 1.9rem 1.75rem;
  width: 100%;
  max-width: 400px;
  margin-top: 0.25rem;
}

.booking-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.booking-card-title span { color: var(--primary-gold); }

.booking-card-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0.6rem 0 1.4rem;
  line-height: 1.5;
}

.honeypot { position: absolute; left: -9999px; top: -9999px; }

.form-field {
  position: relative;
  margin-bottom: 0.85rem;
}

.form-field-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  text-align: left;
  letter-spacing: 0.02em;
}
.form-field-input-wrap {
  position: relative;
}
.form-field-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}
.form-field-textarea .form-field-icon { top: 1rem; transform: none; }

.form-field .form-control,
.form-field .form-select {
  padding-left: 2.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  color: var(--text);
}
.form-field .form-control:focus,
.form-field .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(198, 130, 31, 0.15);
}
.form-field .form-control.is-invalid,
.form-field .form-select.is-invalid {
  border-color: #d64545;
}
.form-field .invalid-feedback { font-size: 0.75rem; }

.btn-cta {
  background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--white); }
.btn-cta:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }
.btn-spinner { display: none; }
.btn-cta.is-loading .btn-spinner { display: inline-block; }
.btn-cta.is-loading .btn-text,
.btn-cta.is-loading .bi-arrow-right { display: none; }

.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin: 0.85rem 0 0;
  line-height: 1.4;
}
.form-privacy i { color: var(--primary-gold); }

.form-alert {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  margin-top: 1rem;
}
.form-alert-success { background: #eef7ee; color: #2c6b2f; }
.form-alert-error { background: #fbeaea; color: #a13333; }
.form-alert-whatsapp {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 700;
  color: #1d7a3f;
  text-decoration: underline;
}

/* ==================================================
   SERVICES
   ================================================== */
.services { padding: 4.5rem 0 3rem; background: var(--white); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.service-card-image { position: relative; aspect-ratio: 4 / 2.8; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-image img { transform: scale(1.06); }

.service-card-icon {
  position: absolute;
  left: 1.25rem;
  bottom: 12px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--primary-gold);
}

.service-card-body { padding: 2rem 1.4rem 1.5rem; }
.service-card-number {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.85rem;
}
.service-card-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0.25rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.service-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* ==================================================
   TESTIMONIALS
   ================================================== */
.testimonials { padding: 4rem 0 4.5rem; background: var(--cream); }

.tripadvisor-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  color: var(--dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
}
.tripadvisor-trust-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--dark);
}
.tripadvisor-owl-icon { display: flex; align-items: center; }
.tripadvisor-trust-text { font-size: 0.9rem; line-height: 1.3; }
.tripadvisor-bubbles { color: #00AA6C; letter-spacing: 2px; margin: 0 0.3rem; font-size: 0.85rem; }
.tripadvisor-review-count { color: var(--text-muted); font-size: 0.85rem; }

.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-track { overflow: hidden; width: 100%; }

.testimonial-row {
  transition: transform 0.4s ease;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem 1.5rem;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(231, 221, 207, 0.7);
}
.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.tripadvisor-mini-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00875a;
  background: #e3fcef;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.testimonial-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.testimonial-stars { color: #00AA6C; letter-spacing: 2px; font-size: 0.95rem; margin: 0.2rem 0 0.5rem; }
.testimonial-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.testimonial-card blockquote {
  margin: 0 0 1.15rem;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.6;
  flex-grow: 1;
}
.testimonial-card figcaption { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid #f0eae1; padding-top: 0.85rem; }
.testimonial-card figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.testimonial-name { display: block; font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-country { display: flex; align-items: center; gap: 0.25rem; font-size: 0.78rem; color: var(--text-muted); }

.btn-outline-tripadvisor {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00AA6C;
  border: 1.5px solid #00AA6C;
  background: var(--white);
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.btn-outline-tripadvisor:hover {
  background: #00AA6C;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 170, 108, 0.28);
}

.testimonial-arrow {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.testimonial-arrow:hover { background: var(--primary-gold); color: var(--white); border-color: var(--primary-gold); }

/* ==================================================
   BOTTOM CTA BAR
   ================================================== */
.bottom-cta {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
  padding: 2.25rem 0;
  color: var(--white);
}
.bottom-cta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--white);
}
@media (min-width: 768px) { .bottom-cta-item { justify-content: flex-start; } }
.bottom-cta-item i { font-size: 1.4rem; flex-shrink: 0; }
.bottom-cta-label { display: block; font-size: 0.78rem; opacity: 0.9; }
.bottom-cta-value { display: block; font-weight: 700; font-size: 1rem; }

/* ==================================================
   FOOTER
   ================================================== */
.site-footer { padding: 1.4rem 0 5.5rem; text-align: center; background: var(--white); }
.footer-inner { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; color: var(--text-muted); font-size: 0.85rem; }
.footer-inner p { margin: 0; display: flex; align-items: center; gap: 0.4rem; }
.footer-inner i { color: var(--primary-gold); }
.footer-divider { color: var(--border); }
.footer-legal { display: flex; justify-content: center; gap: 1.25rem; margin-top: 0.6rem; font-size: 0.78rem; }
.footer-legal a { color: var(--text-muted); text-decoration: underline; }

@media (min-width: 992px) { .site-footer { padding-bottom: 1.4rem; } }

/* ==================================================
   FLOATING WHATSAPP BUTTON
   ================================================== */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 5.75rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 50;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: var(--white); }

@media (min-width: 992px) { .whatsapp-float { bottom: 1.75rem; } }

/* ==================================================
   MOBILE STICKY CTA
   ================================================== */
.mobile-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
  z-index: 45;
}
.mobile-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 0.8rem 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.mobile-sticky-cta a:last-child { border-right: none; }
.mobile-sticky-cta a i { font-size: 1.1rem; color: var(--primary-gold); }
.mobile-sticky-cta a:first-child i { color: #25d366; }

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 991.98px) {
  .hero { padding: 2.5rem 0 3rem; }
  .hero-overlay { background: rgba(255,255,255,0.94); }
  .hero-heading { font-size: 2.3rem; }
  .booking-card { max-width: 100%; margin-top: 2rem; }
  .header-inner { gap: 0.75rem; }
  .header-contact-label { display: none; }
}

@media (max-width: 767.98px) {
  .site-header { padding: 0.65rem 0; }
  .brand-line1 { font-size: 0.95rem; }
  .brand-line2 { font-size: 0.7rem; }
  .brand-logo { width: 38px; height: 38px; }
  .header-contact-number { font-size: 0.82rem; }
  .hero-heading { font-size: 1.85rem; }
  .booking-card { padding: 1.6rem 1.3rem 1.4rem; }
  .services { padding: 3rem 0 2rem; }
  .testimonials { padding: 3rem 0 3.25rem; }
  .site-footer { padding-bottom: 5.75rem; }
}

@media (max-width: 575.98px) {
  .header-rating { display: none !important; }
  .hero-benefits li { font-size: 0.92rem; }
}

/* ==================================================
   THANK YOU PAGE
   ================================================== */
.thank-you-page {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thank-you-page .site-header {
  background: var(--white);
}

.thank-you-section {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem;
}

.thank-you-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem 2.5rem;
  width: 100%;
  max-width: 620px;
  text-align: center;
  position: relative;
  margin: 0 auto;
}

.thank-you-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold), var(--primary-gold-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 25px rgba(198, 130, 31, 0.35);
}

.thank-you-heading {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.thank-you-heading-accent {
  color: var(--primary-gold);
}

.thank-you-underline {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--primary-gold);
  margin: 0.85rem auto 1.5rem;
}

.thank-you-copy {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0 auto 2rem;
  max-width: 480px;
}

.thank-you-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.thank-you-btn-whatsapp {
  flex: 1 1 200px;
  padding: 0.9rem 1.4rem;
  font-size: 0.98rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-top: 0;
}

.btn-outline-gold {
  background: transparent;
  color: var(--primary-gold-dark);
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.4rem;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1 1 200px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-outline-gold:hover {
  background: var(--primary-gold);
  color: var(--white);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.thank-you-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.thank-you-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.thank-you-meta-item i {
  color: var(--primary-gold);
  font-size: 0.95rem;
}

.thank-you-meta-item a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
}

.thank-you-meta-divider {
  color: var(--border);
  font-weight: bold;
}

.thank-you-back {
  margin-top: 1.5rem;
}

.thank-you-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s ease, transform 0.15s ease;
}

.thank-you-back-link:hover {
  color: var(--primary-gold);
  transform: translateX(-3px);
}

.thank-you-page .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* Responsive styles for Thank You Page */
@media (max-width: 575.98px) {
  .thank-you-section {
    padding: 2rem 1rem 3rem;
  }
  .thank-you-card {
    padding: 2rem 1.25rem 1.75rem;
  }
  .thank-you-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  .thank-you-heading {
    font-size: 1.75rem;
  }
  .thank-you-copy {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .thank-you-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .thank-you-btn-whatsapp,
  .btn-outline-gold {
    width: 100%;
    flex: 1 1 100%;
  }
  .thank-you-meta {
    flex-direction: column;
    gap: 0.4rem;
  }
  .thank-you-meta-divider {
    display: none;
  }
  .thank-you-page .site-footer {
    padding: 1.5rem 1.25rem 6.25rem;
  }
}

