/* ============================================================
   Spiritual Guidance — Premium UI Stylesheet
   ============================================================ */

:root {
  --gold: #d4af37;
  --gold-soft: #e6c75a;
  --gold-deep: #b8932a;
  --dark: #1e1e1e;
  --dark-2: #262626;
  --dark-3: #2e2e2e;
  --ivory: #f8f5f0;
  --cream: #fff8e7;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-100: #f3f1ec;
  --gray-200: #e8e3d8;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;

  --grad-gold: linear-gradient(135deg, #f0d674 0%, #d4af37 45%, #b8932a 100%);
  --grad-dark: linear-gradient(160deg, #1e1e1e 0%, #2a2a2a 60%, #1a1a1a 100%);
  --grad-ivory: linear-gradient(180deg, #fff 0%, #f8f5f0 100%);

  --shadow-sm: 0 4px 14px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 20, 20, 0.08);
  --shadow-lg: 0 22px 60px rgba(20, 20, 20, 0.12);
  --shadow-gold: 0 14px 40px rgba(212, 175, 55, 0.28);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;

  --t: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Poppins", system-ui, sans-serif;
  background: var(--ivory);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Montserrat", "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; }
h3 { font-size: 1.25rem; }

a { color: inherit; text-decoration: none; transition: color 0.25s var(--t); }
a:hover { color: var(--gold); }

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

::selection { background: var(--gold); color: #fff; }

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

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: grid; place-items: center;
  transition: opacity 0.6s var(--t), visibility 0.6s var(--t);
}
#preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-mark { display: flex; gap: 8px; }
.preloader-mark span {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  animation: bounce 1.2s infinite ease-in-out;
}
.preloader-mark span:nth-child(2) { animation-delay: 0.15s; }
.preloader-mark span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-gold);
  z-index: 9998; transition: width 0.1s linear;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--t), box-shadow 0.25s var(--t), background 0.25s var(--t), color 0.25s var(--t);
  border: 1px solid transparent;
}
.btn-lg { padding: 0.95rem 2rem; font-size: 1rem; }

.btn-gold {
  background: var(--grad-gold);
  color: #1a1206;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  color: #1a1206;
  box-shadow: 0 18px 50px rgba(212, 175, 55, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(30,30,30,0.18);
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn-dark-gold {
  background: var(--dark);
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-dark-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.9rem 0;
  transition: all 0.35s var(--t);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(212, 175, 55, 0.18);
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
  padding: 0.6rem 0;
}

.brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--text) !important;
}
.brand em { font-style: normal; color: var(--gold); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--grad-gold);
  color: #1a1206;
  font-family: "Montserrat", serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
}

.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--text) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute; left: 50%; bottom: 4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--t), left 0.3s var(--t);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 22px; left: calc(50% - 11px);
}
.navbar-nav .nav-link.active { color: var(--gold) !important; }

.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler .bar {
  display: block; width: 26px; height: 2px;
  background: var(--text); margin: 5px 0;
  border-radius: 2px; transition: transform 0.3s var(--t), opacity 0.3s var(--t);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 0.6rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
}

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.section { padding: clamp(4rem, 7vw, 7rem) 0; position: relative; }
.section-light { background: var(--white); }
.section-ivory { background: var(--ivory); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--grad-dark); color: var(--ivory); }
.section-dark h2, .section-dark h3 { color: #fff; }
.text-light { color: #fff !important; }
.text-muted-light { color: rgba(255,255,255,0.6) !important; }

.section-head { margin-bottom: 3rem; }
.section-head h2 { margin: 0.5rem 0 0.75rem; }
.section-head p { color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  background: rgba(212,175,55,0.06);
}
.eyebrow.gold-line { background: rgba(212,175,55,0.1); }

.text-gold { color: var(--gold); }

.section-divider {
  height: 60px; display: flex; justify-content: center; align-items: center;
  background: var(--ivory);
}
.section-divider span {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 8rem; padding-bottom: 4rem;
  background:
    radial-gradient(900px 600px at 85% 10%, rgba(212,175,55,0.12), transparent 60%),
    radial-gradient(700px 500px at 15% 80%, rgba(212,175,55,0.08), transparent 60%),
    var(--ivory);
  overflow: hidden;
}
.hero-bg-shapes .shape {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.45;
  animation: float 12s ease-in-out infinite;
}
.shape-1 { width: 260px; height: 260px; background: #f0d674; top: 8%; left: -60px; }
.shape-2 { width: 360px; height: 360px; background: #e6c75a; bottom: -120px; right: -100px; animation-delay: 3s; }
.shape-3 { width: 200px; height: 200px; background: #d4af37; top: 50%; right: 35%; opacity: 0.18; animation-delay: 6s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero-title { margin: 1rem 0 1.25rem; }
.hero-sub { font-size: 1.08rem; color: var(--text-muted); max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.75rem 0; }

.trust-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  font-size: 0.92rem; color: var(--text-muted);
}
.trust-list i { color: var(--gold); margin-right: 0.5rem; }

.hero-visual { position: relative; padding: 2rem 1rem; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #f8f5f0, #fff);
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.gold-glow {
  position: absolute; inset: -30%;
  background: radial-gradient(circle, rgba(212,175,55,0.4), transparent 60%);
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow-md);
  font-size: 0.88rem;
  animation: floatY 5s ease-in-out infinite;
}
.float-card strong { display: block; font-family: "Montserrat", sans-serif; font-size: 0.9rem; }
.float-card span { color: var(--text-muted); font-size: 0.78rem; }
.float-card .fc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--dark); color: var(--gold);
}
.float-card .fc-icon.gold { background: var(--grad-gold); color: #1a1206; }
.float-card-1 { top: 8%; left: -8%; animation-delay: 0s; }
.float-card-2 { bottom: 12%; right: -6%; animation-delay: 1.5s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.counters-row { margin-top: clamp(3rem, 6vw, 5rem); }
.counter-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--t), box-shadow 0.35s var(--t);
}
.counter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.counter-card .counter,
.counter-card .counter-plus {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
}
.counter-card p { margin: 0.5rem 0 0; color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   PROBLEM CARDS
   ============================================================ */
.problem-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.4rem;
  transition: transform 0.35s var(--t), box-shadow 0.35s var(--t), border-color 0.35s var(--t);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.06), transparent);
  opacity: 0; transition: opacity 0.35s var(--t);
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.5);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212,175,55,0.2);
}
.problem-card:hover::before { opacity: 1; }
.problem-card .pc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #fff8e7, #fdeec2);
  color: var(--gold-deep);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: transform 0.4s var(--t);
}
.problem-card:hover .pc-icon {
  transform: rotate(-6deg) scale(1.08);
  background: var(--grad-gold);
  color: #1a1206;
}
.problem-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.problem-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ============================================================
   WHY US (dark)
   ============================================================ */
.why-card {
  height: 100%;
  padding: 2rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s var(--t), background 0.35s var(--t), border-color 0.35s var(--t);
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(212,175,55,0.06);
  border-color: rgba(212,175,55,0.4);
}
.why-card .wc-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad-gold);
  color: #1a1206;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-gold);
}
.why-card h3 { color: #fff; margin-bottom: 0.5rem; }
.why-card p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.95rem; }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.timeline { position: relative; }
.timeline-line {
  position: absolute; top: 60px; left: 8%; right: 8%;
  height: 2px; background: rgba(212,175,55,0.18);
  overflow: hidden; border-radius: 2px;
}
.timeline-line span {
  position: absolute; inset: 0;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  animation: lineGrow 2.4s 0.4s var(--t) forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }
@media (max-width: 767.98px) { .timeline-line { display: none; } }

.step-card {
  height: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--t), box-shadow 0.35s var(--t);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute; top: 14px; right: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800; font-size: 2.4rem;
  color: rgba(212,175,55,0.18);
  letter-spacing: -0.05em;
}
.step-icon {
  width: 78px; height: 78px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  background: var(--grad-gold);
  color: #1a1206;
  font-size: 1.7rem;
  box-shadow: var(--shadow-gold);
  position: relative; z-index: 2;
}
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-carousel { padding: 1rem 0 3rem; }
.testi-card {
  height: 100%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--t);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card .stars { color: var(--gold); margin-bottom: 0.75rem; font-size: 0.9rem; }
.testi-card .stars i { margin-right: 2px; }
.testi-card p {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}
.testi-user {
  display: flex; align-items: center; gap: 0.85rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212,175,55,0.18);
}
.testi-user img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
}
.testi-user strong { display: block; font-family: "Montserrat", sans-serif; }
.testi-user span { color: var(--text-muted); font-size: 0.85rem; }

.custom-ctrl {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--text);
  opacity: 1; top: 50%; transform: translateY(-50%);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
  transition: background 0.25s var(--t), color 0.25s var(--t), transform 0.25s var(--t);
}
.custom-ctrl:hover { background: var(--grad-gold); color: #1a1206; transform: translateY(-50%) scale(1.05); }
.carousel-control-prev.custom-ctrl { left: -10px; }
.carousel-control-next.custom-ctrl { right: -10px; }
@media (max-width: 575.98px) {
  .carousel-control-prev.custom-ctrl, .carousel-control-next.custom-ctrl { display: none; }
}

.custom-ind { bottom: -10px; }
.custom-ind button {
  width: 10px !important; height: 10px !important;
  border-radius: 50% !important;
  background: rgba(212,175,55,0.3) !important;
  border: none !important;
  margin: 0 5px;
}
.custom-ind button.active { background: var(--gold) !important; width: 28px !important; border-radius: 999px !important; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-accordion { max-width: 820px; }
.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 1.4rem;
  background: #fff;
  border-radius: var(--radius-md) !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #fff8e7, #fff);
  color: var(--text);
  box-shadow: inset 0 -1px 0 rgba(212,175,55,0.25);
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 1.6rem; line-height: 1;
  color: var(--gold);
  transform: none !important;
  transition: transform 0.3s var(--t);
  width: auto; height: auto;
}
.faq-accordion .accordion-button:not(.collapsed)::after { content: "−"; }
.faq-accordion .accordion-body {
  padding: 0 1.4rem 1.25rem;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  background: var(--grad-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-card::before {
  content: ""; position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--grad-gold);
  opacity: 0.18;
  filter: blur(40px);
}
.contact-card h3 { color: #fff; margin-bottom: 0.4rem; font-size: 1.5rem; }
.contact-card .muted { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }

.contact-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row span { display: block; color: rgba(255,255,255,0.55); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; }
.contact-row a, .contact-row strong { color: #fff; font-weight: 600; }
.contact-row a:hover { color: var(--gold); }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(212,175,55,0.15); color: var(--gold);
  flex-shrink: 0;
}
.contact-bottom { margin-top: 1.5rem; }
.badge-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mini-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.mini-badge i { color: var(--gold); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.contact-form .form-label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.25s var(--t), box-shadow 0.25s var(--t);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}
.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid { border-color: #d9534f; }
.error-msg {
  font-size: 0.8rem; color: #d9534f; margin-top: 0.35rem;
  min-height: 1rem;
}

#cf-submit { position: relative; }
#cf-submit .btn-loader {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border: 2px solid rgba(26,18,6,0.25);
  border-top-color: #1a1206;
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
#cf-submit.loading .btn-text { visibility: hidden; }
#cf-submit.loading .btn-loader { display: block; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--grad-gold);
  color: #1a1206;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  color: #1a1206;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.final-cta h2 em { font-style: italic; color: #fff; }
.final-cta p {
  font-size: 1.1rem; max-width: 640px; margin: 0 auto 2rem;
  color: rgba(26,18,6,0.78);
}
.cta-shapes span {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  animation: floatY 6s ease-in-out infinite;
}
.cta-shapes span:nth-child(1) { width: 120px; height: 120px; top: 12%; left: 8%; }
.cta-shapes span:nth-child(2) { width: 80px; height: 80px; bottom: 18%; right: 12%; animation-delay: 1.5s; }
.cta-shapes span:nth-child(3) { width: 50px; height: 50px; top: 70%; left: 22%; animation-delay: 3s; }
.cta-shapes span:nth-child(4) { width: 160px; height: 160px; top: 30%; right: 25%; animation-delay: 2s; opacity: 0.08; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand em { font-style: normal; color: var(--gold); }
.footer-about { font-size: 0.92rem; line-height: 1.7; max-width: 360px; }
.socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  color: #fff;
  transition: background 0.25s var(--t), color 0.25s var(--t), transform 0.25s var(--t);
}
.socials a:hover { background: var(--grad-gold); color: #1a1206; transform: translateY(-2px); }

.site-footer h4 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; font-size: 0.92rem; }
.footer-links i { color: var(--gold); margin-right: 0.5rem; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin: 0; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.float-whatsapp {
  display: none !important;
  position: fixed; bottom: 24px; left: 24px;
  width: 56px; height: 56px;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 100;
  transition: transform 0.25s var(--t);
}
.float-whatsapp:hover { transform: scale(1.08); color: #fff; }

.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%; border: none;
  background: var(--grad-gold); color: #1a1206;
  box-shadow: var(--shadow-gold);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s var(--t);
  z-index: 100;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gray-200);
  display: none;
  z-index: 95;
  padding: 0.5rem env(safe-area-inset-right) calc(0.5rem + env(safe-area-inset-bottom)) env(safe-area-inset-left);
}
.mcb-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 0.5rem;
  font-size: 0.7rem;
  color: var(--text);
}
.mcb-item i { font-size: 1.05rem; }
.mcb-item.primary {
  background: var(--grad-gold);
  color: #1a1206;
  margin: 0.35rem 0.5rem;
  border-radius: 14px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
  .scroll-top { bottom: 84px; }
  .float-whatsapp { bottom: 84px; }
  .float-card-1 { left: 0; top: 4%; }
  .float-card-2 { right: 0; }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-notice {
  position: fixed; top: 90px; right: 24px;
  background: #fff; color: var(--text);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.85rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  max-width: 340px;
  opacity: 0; visibility: hidden;
  transform: translateX(20px);
  transition: all 0.35s var(--t);
}
.toast-notice.show { opacity: 1; visibility: visible; transform: translateX(0); }
.toast-notice i { color: #2bb673; font-size: 1.4rem; }
.toast-notice strong { display: block; font-family: "Montserrat", sans-serif; font-size: 0.95rem; }
.toast-notice span { font-size: 0.82rem; color: var(--text-muted); }
@media (max-width: 575.98px) {
  .toast-notice { right: 16px; left: 16px; max-width: none; }
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991.98px) {
  .hero { min-height: auto; padding-top: 6rem; }
  .float-card-1 { left: 5%; }
  .float-card-2 { right: 5%; }
}
@media (max-width: 575.98px) {
  .contact-form, .contact-card { padding: 1.5rem; }
  .float-card { padding: 0.65rem 0.85rem; font-size: 0.78rem; }
  .float-card .fc-icon { width: 32px; height: 32px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
