/* ==========================================================================
   Sasrha Enterprises - Cash for Credit Card Landing Page
   Theme: Luxury Gold & Deep Obsidian / Crisp White
   Typography: Outfit (Headings) & Inter (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Surface & Canvas */
  --bg-primary: #ffffff;
  --bg-surface: #fdfbf7;
  --bg-surface-subtle: #f8f5ee;
  --bg-surface-card: #ffffff;
  --bg-surface-gold: rgba(212, 175, 55, 0.08);

  /* Gold Palette */
  --gold-50: #fefce8;
  --gold-100: #fef9c3;
  --gold-200: #fef08a;
  --gold-300: #fae188;
  --gold-400: #f5d061;
  --gold-500: #e5a93b;
  --gold-600: #d4af37;
  --gold-700: #b8860b;
  --gold-800: #92400e;
  --gold-900: #78350f;

  /* Contrast Dark Sections */
  --dark-navy: #0d0f18;
  --dark-surface: #141724;
  --dark-card: #1c2032;
  --dark-border: rgba(212, 175, 55, 0.28);

  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #996515 100%);
  --gold-gradient-shine: linear-gradient(135deg, #fff3a8 0%, #f5d061 50%, #d4af37 100%);
  --gold-btn-gradient: linear-gradient(135deg, #f5d061 0%, #d4af37 50%, #b8860b 100%);
  --gold-btn-hover: linear-gradient(135deg, #fae276 0%, #e5a93b 50%, #996515 100%);

  /* Accent Colors */
  --wa-green: #25d366;
  --wa-green-hover: #1eb857;

  /* Typography */
  --text-main: #14161f;
  --text-muted: #4b5563;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --text-gold: #b8860b;
  --text-gold-bright: #d4af37;

  /* Borders & Radii */
  --border-subtle: rgba(212, 175, 55, 0.2);
  --border-medium: rgba(212, 175, 55, 0.38);
  --border-gold: #d4af37;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 14px rgba(212, 175, 55, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(212, 175, 55, 0.12), 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 45px rgba(212, 175, 55, 0.16), 0 8px 18px rgba(0, 0, 0, 0.06);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-gold { color: var(--gold-700) !important; }
.text-gold-large {
  color: var(--gold-700);
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-heading);
}

.text-gold-gradient {
  background: var(--gold-btn-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title-wrap {
  margin-bottom: 3.2rem;
  position: relative;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0.5rem auto 0;
}

.section-underline-gold {
  width: 60px;
  height: 3.5px;
  background: var(--gold-btn-gradient);
  border-radius: 3px;
  margin: 0.85rem auto 0;
}

.section {
  padding: 5rem 0;
  position: relative;
}

/* Global Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: var(--gold-btn-gradient);
  color: #14161f;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  background: var(--gold-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-call {
  background: #ffffff;
  color: #111827;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.48rem 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.btn-call:hover {
  border-color: var(--gold-600);
  background: #fffdf5;
  color: #000000;
}

.btn-whatsapp {
  background: var(--wa-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
}

.btn-outline-gold:hover {
  background: var(--gold-btn-gradient);
  color: #14161f;
}

/* ==========================================================================
   1. STICKY HEADER (All Views - No Nav Menu)
   ========================================================================== */
.header.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--gold-500);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon-box {
  width: 44px;
  height: 44px;
  background: var(--gold-btn-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14161f;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.brand-icon-box svg {
  width: 24px;
  height: 24px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #14161f;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ==========================================================================
   2. BANNER SECTION (Hero with Clean Left Form & Right Curved Theme Content)
   ========================================================================== */
.banner-area.hero-banner {
  position: relative;
  background-color: #fffcf4;
  background-image: linear-gradient(135deg, #fffcf5 0%, #fdf5e2 40%, #f8ecc8 100%);
  padding: 4.8rem 0 5.2rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

/* Curved Backdrop Arch (Starts from behind the form to cover 100% of right content) */
.hero-curved-backdrop {
  position: absolute;
  top: -15%;
  left: 320px;
  right: -80px;
  bottom: -15%;
  background: linear-gradient(135deg, #d99a18 0%, #ba7b02 40%, #8c5b00 100%);
  border-radius: 420px 0 0 420px;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 100px rgba(254, 240, 138, 0.25), -20px 0 45px rgba(0, 0, 0, 0.08);
}

/* Decorative Dots Matrix */
.hero-decor-dots {
  position: absolute;
  top: 2.2rem;
  left: 2.5rem;
  display: grid;
  grid-template-columns: repeat(5, 6px);
  gap: 12px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.hero-decor-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d97706;
  display: block;
}

/* Top Right Accent Plus */
.hero-decor-plus {
  position: absolute;
  top: 2.5rem;
  right: 14%;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  pointer-events: none;
  z-index: 2;
  line-height: 1;
}

.banner-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
}

.banner-two-col-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 4.8rem;
  align-items: center;
}

/* LEFT COLUMN: Clean Elevated White Form Card */
.banner-left-form-col {
  width: 100%;
}

.banner-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.2rem 1.85rem;
  box-shadow: 0 25px 60px rgba(140, 91, 0, 0.2), 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  position: relative;
}

.form-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #14161f;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.form-card-subtitle {
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 1.3rem;
  line-height: 1.4;
}

.hero-lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-input {
  width: 100%;
  background: #fdfcf9;
  border: 1.5px solid #e7ddc4;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  color: #1e293b;
  outline: none;
  transition: var(--transition-fast);
  font-family: inherit;
}

.form-input::placeholder {
  color: #94a3b8;
  font-size: 0.88rem;
}

.form-input:focus {
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid #e7ddc4;
  background: #fdfcf9;
  transition: var(--transition-fast);
}

.phone-input-wrap:focus-within {
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.phone-prefix {
  padding: 0.8rem 0.9rem;
  background: #fcf6e8;
  color: #b45309;
  font-weight: 700;
  font-size: 0.9rem;
  border-right: 1.5px solid #e7ddc4;
  user-select: none;
}

.phone-field {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 0.8rem !important;
}

/* Validation UI States */
.form-input.is-invalid,
.phone-input-wrap.is-invalid {
  border-color: #ef4444 !important;
  background-color: #fffaf9 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.form-input.is-valid,
.phone-input-wrap.is-valid {
  border-color: #10b981 !important;
  background-color: #f8fdfa !important;
}

.form-error-msg {
  display: none;
  font-size: 0.74rem;
  font-weight: 600;
  color: #dc2626;
  margin-top: 0.15rem;
  padding-left: 0.25rem;
  line-height: 1.2;
}

.form-error-msg.visible {
  display: block;
}

.form-chips-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.15rem;
}

.form-amount-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.form-chip {
  background: #fdfaf3;
  border: 1.5px solid #ebd8ab;
  color: #78350f;
  padding: 0.45rem 0.2rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.form-chip:hover, .form-chip.active {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #14161f;
  border-color: #b8860b;
  font-weight: 800;
}

.form-submit-btn {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #14161f;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.4rem;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  margin-top: 0.35rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, #e5be48 0%, #c6951b 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.form-guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  color: #64748b;
  margin-top: 0.35rem;
  text-align: center;
}

/* RIGHT COLUMN: Themed Content & Badges */
.banner-right-content-col {
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.hero-banner-title {
  font-family: var(--font-heading);
  font-size: 3.15rem;
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-gold-rate {
  color: #fff275;
  font-weight: 900;
  display: inline-block;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.28rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-lead-desc {
  font-size: 0.98rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Visual Badge Row (Photo + Stat + Info) */
.hero-visual-badge-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.2rem;
}

.hero-circle-photo-wrap {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.hero-circle-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-circle-stat-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3.5px solid #ffffff;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-circle-stat-wrap .stat-big {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.hero-circle-stat-wrap .stat-small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fef08a;
  margin-top: 2px;
}

.hero-badge-info {
  display: flex;
  flex-direction: column;
}

.hero-badge-info .badge-info-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-badge-info .badge-info-sub {
  font-size: 0.88rem;
  color: #fef9c3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

/* Action Pills */
.hero-action-pills-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-phone-pill-btn {
  background: #ffffff;
  color: #14161f;
  padding: 0.75rem 1.45rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.hero-phone-pill-btn:hover {
  background: #fefcf6;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: #b45309;
}

.pill-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #14161f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wa-pill-btn {
  background: #25d366;
  color: #ffffff;
  padding: 0.75rem 1.45rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.hero-wa-pill-btn:hover {
  background: #1eb954;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* Responsive Rules for Banner */
@media (max-width: 1024px) {
  .banner-two-col-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .hero-banner-title {
    font-size: 2.5rem;
  }
  .banner-form-card {
    max-width: 520px;
    margin: 0 auto;
  }
  .hero-curved-backdrop {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .banner-area.hero-banner {
    padding: 3rem 0 3.5rem;
  }
  .hero-decor-dots, .hero-decor-plus {
    display: none;
  }
  .hero-banner-title {
    font-size: 2.1rem;
  }
  .banner-form-card {
    padding: 1.75rem 1.25rem;
  }
  .hero-visual-badge-row {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-action-pills-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-phone-pill-btn, .hero-wa-pill-btn {
    justify-content: center;
  }
}

/* ==========================================================================
   3. CTN (CALL TO ACTION / ENQUIRE STRIP) SECTION
   ========================================================================== */
.ctn-action-section {
  background: linear-gradient(135deg, #fefcf9 0%, #f8f2e2 50%, #fbf6ec 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: inset 0 2px 12px rgba(212, 175, 55, 0.08);
}

.ctn-container {
  position: relative;
  z-index: 2;
}

.ctn-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 2.5rem;
  align-items: center;
}

/* Left Column */
.ctn-left-content {
  display: flex;
  flex-direction: column;
}

.ctn-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-800);
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-600);
  border-radius: 50%;
  animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.ctn-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #14161f;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.ctn-description {
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.ctn-trust-pills {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ctn-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
}

/* Right Column (Enquire CTA Group) */
.ctn-right-enquire {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
  text-align: center;
}

.ctn-enquire-btn {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  font-weight: 900;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
}

.ctn-direct-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ctn-call-badge,
.ctn-wa-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.ctn-call-badge {
  background: var(--bg-surface-subtle);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-800);
}

.ctn-call-badge:hover {
  background: var(--gold-50);
  border-color: var(--gold-500);
}

.ctn-wa-badge {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #0d8a3d;
}

.ctn-wa-badge:hover {
  background: var(--wa-green);
  color: #ffffff;
  border-color: transparent;
}

/* ==========================================================================
   4. IMAGE WITH SERVICE SECTION
   ========================================================================== */
.services-section {
  background: #ffffff;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
}

.service-image-box {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #f1f5f9;
}

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

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

.service-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16, 20, 32, 0.88);
  backdrop-filter: blur(8px);
  color: var(--gold-300);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card-action {
  margin-top: auto;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--gold-800);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.service-btn:hover {
  background: var(--gold-btn-gradient);
  color: #14161f;
  border-color: transparent;
}

/* ==========================================================================
   5. TRUST BUILD ICON SECTION
   ========================================================================== */
.trust-section {
  background: var(--bg-surface);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.trust-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.trust-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

.trust-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.trust-card:hover .trust-icon-box {
  background: var(--gold-btn-gradient);
  color: #14161f;
  transform: scale(1.08);
}

.trust-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.trust-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.trust-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: #111420;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}

.trust-stat-box {
  text-align: center;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

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

.trust-stat-box .stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-300);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.trust-stat-box .stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.06em;
}

.card-networks-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.network-logo-pill {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  transition: all 0.25s ease;
  user-select: none;
}

.network-logo-pill:hover {
  transform: translateY(-3px) scale(1.06);
}

.network-logo-pill .card-brand-img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

.network-logo-pill .img-mastercard {
  height: 42px;
}

/* ==========================================================================
   6. SPOT CASH SERVICE AREAS IN CHENNAI SECTION
   ========================================================================== */
.service-areas-section {
  background: #fcfbf9;
  padding: 4.5rem 0 5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.areas-header {
  max-width: 780px;
  margin: 0 auto 2.75rem;
}

.areas-badge {
  display: inline-block;
  background: #f7edd8;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #92580a;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.areas-heading {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 900;
  color: #14161f;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.areas-subheading {
  font-size: 0.96rem;
  color: #555e6d;
  line-height: 1.55;
  margin: 0 auto;
}

.service-areas-cloud,
.locations-cloud-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 0.85rem;
  max-width: 1060px;
  margin: 0 auto;
}

.area-pill,
.loc-pill-card {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  background: #ffffff;
  border: 1.5px solid #ebd8ab;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: #1f2937;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  user-select: none;
}

.area-pin,
.loc-pin {
  font-size: 0.95rem;
}

.area-pill:hover,
.loc-pill-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-600);
  background: #fffdf7;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.22);
  color: #000000;
}

.area-pill.highlight,
.loc-pill-card.loc-primary {
  background: linear-gradient(135deg, #fffcf5 0%, #f7edd8 100%);
  border: 1.5px solid #d4af37;
  color: #14161f;
  font-weight: 800;
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.18);
}

.area-pill.full-coverage {
  background: linear-gradient(135deg, #fefcf5 0%, #f7edd8 100%);
  border: 1.5px solid #d4af37;
  font-weight: 800;
  color: #14161f;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   7. RICH FOOTER SECTION (Contact Numbers, Office Address & Location Map)
   ========================================================================== */
.footer.main-footer {
  background: #0b0d14;
  border-top: 1.5px solid rgba(212, 175, 55, 0.35);
  padding: 4rem 0 1.8rem;
  color: #cbd5e1;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.1fr;
  gap: 3rem;
  margin-bottom: 2.75rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo .brand-title.text-gold {
  color: #f5d77f;
}

.footer-logo .brand-tagline.text-light {
  color: #94a3b8;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 1.1rem 0;
}

.footer-badge-pill {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #f5d77f;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  width: fit-content;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #f5d77f;
  letter-spacing: 0.05em;
  margin-bottom: 1.3rem;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: #d4af37;
  border-radius: 2px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5d77f;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #f5d77f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-val {
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.45;
  font-style: normal;
}

.landmark-text {
  font-size: 0.8rem;
  color: #f5d77f;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.15rem;
}

.footer-phone-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-tel-link {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.5);
  transition: all 0.2s;
}

.footer-tel-link:hover {
  color: #f5d77f;
  text-decoration-color: #f5d77f;
}

.phone-separator {
  color: #94a3b8;
  font-weight: 700;
}

.footer-action-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-btn {
  padding: 0.45rem 1rem;
  font-size: 0.84rem;
  border-radius: 20px;
}

.footer-map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  background: #14161f;
}

.footer-map-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
}

.footer-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f5d77f;
  margin-top: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-directions-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
}

.copyright-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: #94a3b8;
}

/* ==========================================================================
   8. MOBILE STICKY FOOTER CTN SECTION
   ========================================================================== */
.mobile-sticky-action-bar {
  display: none;
}

/* Floating Actions on Left */
.floating-left-actions {
  position: fixed;
  bottom: 25px;
  left: 20px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition-fast);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-call {
  background: #facc15;
  color: #0f121d;
}

.float-wa {
  background: #22c55e;
  color: #ffffff;
}

/* Back to Top */
.back-to-top-btn {
  position: fixed;
  bottom: 25px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  color: var(--gold-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 990;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--gold-btn-gradient);
  color: #14161f;
  transform: translateY(-3px);
}

/* ==========================================================================
   9. RESPONSIVE BREAKPOINTS (ALL VIEWS)
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .banner-two-col-grid {
    grid-template-columns: 400px 1fr;
    gap: 3rem;
  }

  .hero-banner-title {
    font-size: 2.3rem;
  }

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

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

  .common-grid-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ctn-two-col-grid {
    grid-template-columns: 1fr 280px;
    gap: 1.5rem;
  }

  /* Footer Tablet Responsive */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-map-col {
    grid-column: span 2;
  }
}

/* Mobile & Small Tablet (max-width: 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: 64px; /* Space for mobile sticky footer bar */
  }

  .section {
    padding: 3.5rem 0;
  }

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

  .navbar {
    height: 64px;
  }

  .brand-title {
    font-size: 1.25rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
  }

  .header-phone-text {
    display: inline-block;
    font-weight: 700;
    font-size: 0.92rem;
    color: #111827;
  }

  .btn-call {
    padding: 0.42rem 0.8rem;
    font-size: 0.92rem;
  }

  .banner-area.hero-banner {
    padding: 2.5rem 0 3.5rem;
    background-position: center;
  }

  .banner-two-col-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .banner-left-form-col {
    order: 1; /* Form sits on top in mobile view as requested */
  }

  .banner-right-content-col {
    order: 2;
    text-align: center;
  }

  .banner-tag-badge {
    margin: 0 auto 1rem;
  }

  .hero-banner-title {
    font-size: 2rem;
  }

  .doorstep-badge-pill {
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
    margin: 0 auto 1.25rem;
  }

  .hero-feature-points {
    text-align: left;
  }

  .hero-call-action-box {
    align-items: center;
    text-align: center;
  }

  .hero-call-link {
    justify-content: center;
  }

  .hero-call-sub {
    margin-left: 0;
  }

  .hero-sub-actions {
    justify-content: center;
  }

  .banner-form-card {
    padding: 1.6rem 1.25rem;
  }

  .form-amount-chips {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTN section mobile */
  .ctn-two-col-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .ctn-badge {
    align-self: center;
  }

  .ctn-heading {
    font-size: 1.55rem;
  }

  .ctn-trust-pills {
    justify-content: center;
    gap: 0.75rem;
  }

  /* Services & Trust mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-icons-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

  .trust-stat-box .stat-number {
    font-size: 1.85rem;
  }

  /* Service Areas mobile */
  .areas-heading {
    font-size: 1.65rem;
  }

  .area-pill {
    padding: 0.45rem 0.95rem;
    font-size: 0.82rem;
  }

  /* Footer Mobile */
  .footer.main-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-map-col {
    grid-column: span 1;
  }

  /* Sticky Footer Mobile Action Bar */
  .mobile-sticky-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #0d0f18;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    z-index: 999;
    padding: 0 0.5rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
  }

  .mobile-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 100%;
    font-size: 0.72rem;
    font-weight: 700;
    color: #e2e8f0;
    transition: var(--transition-fast);
  }

  .mobile-bar-btn.btn-phone {
    color: var(--gold-300);
  }

  .mobile-bar-btn.btn-wa {
    color: var(--wa-green);
  }

  .mobile-bar-btn.btn-calc {
    color: #ffffff;
    background: var(--gold-btn-gradient);
    color: #14161f;
    border-radius: var(--radius-sm);
    margin: 6px 4px;
    height: 48px;
  }

  .floating-left-actions {
    bottom: 75px;
    left: 15px;
  }

  .back-to-top-btn {
    bottom: 75px;
    right: 15px;
  }
}

/* Extra small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero-banner-title {
    font-size: 1.7rem;
  }

  .hero-call-number {
    font-size: 1.4rem;
  }

  .calc-box {
    padding: 1.5rem 1.15rem;
  }
}

/* =========================================================================
   THANK YOU PAGE & FORM LOADING STYLES
   ========================================================================= */
.form-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.form-submit-btn .btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(20, 22, 31, 0.3);
  border-top-color: #14161f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.thankyou-body {
  background-color: #0b1a30;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thankyou-main-wrapper {
  flex: 1;
  position: relative;
  padding: 120px 0 60px;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%), #0b1a30;
  overflow: hidden;
}

.thankyou-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-top: 6px solid #d4af37;
  position: relative;
}

.thankyou-success-badge {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  position: relative;
}

.badge-ring-pulse {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid #10b981;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.3; }
  100% { transform: scale(1.25); opacity: 0; }
}

.thankyou-pill-tag {
  display: inline-block;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.thankyou-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #0b1a30;
  margin-bottom: 12px;
}

.thankyou-title .highlight-name {
  color: #b8860b;
}

.thankyou-subtitle {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 30px;
}

.thankyou-subtitle .time-highlight {
  color: #0b1a30;
  font-weight: 700;
  background-color: #fef3c7;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Summary Box */
.thankyou-details-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 25px;
  margin-bottom: 30px;
  text-align: left;
}

.details-box-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b1a30;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 10px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.details-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.details-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.details-val {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
}

.details-val.gold-text {
  color: #b8860b;
}

/* Fast Track CTAs */
.thankyou-actions-section {
  margin-bottom: 35px;
}

.actions-prompt-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 15px;
}

.thankyou-btn-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.thankyou-cta-btn {
  padding: 14px 26px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-primary-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #14161f;
}

.btn-primary-gold:hover {
  background: linear-gradient(135deg, #e5be48 0%, #c6951b 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.4);
}

.thankyou-back-home {
  margin-top: 15px;
}

.back-home-link {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
}

.back-home-link:hover {
  color: #d4af37;
}

/* Trust features */
.thankyou-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 25px;
}

.trust-pill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  padding: 8px 14px;
  border-radius: 8px;
  text-align: left;
}

.trust-icon {
  font-size: 1rem;
}

/* Office Card */
.thankyou-office-card {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #ffffff;
}

.office-card-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.office-icon-wrap {
  color: #d4af37;
  padding-top: 2px;
}

.office-text-wrap h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.office-text-wrap p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 4px;
  line-height: 1.4;
}

.office-hours {
  font-size: 0.78rem;
  color: #d4af37;
  font-weight: 600;
}

@media (max-width: 768px) {
  .thankyou-main-wrapper {
    padding: 100px 15px 40px;
  }

  .thankyou-card {
    padding: 35px 20px;
  }

  .thankyou-title {
    font-size: 1.6rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .thankyou-trust-row {
    grid-template-columns: 1fr;
  }

  .thankyou-btn-row {
    flex-direction: column;
  }

  .thankyou-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .thankyou-office-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
}
