/* ==========================================================================
   GOLD BUYERS MADURAI — LIGHT LUXURY PREMIUM CSS
   ========================================================================== */

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

/* ---------- CSS Variables (Light Theme) ---------- */
:root {
  --gold: #C52121;
  --gold-light: #E03E3E;
  --gold-dark: #911616;
  --gold-glow: rgba(197, 33, 33, 0.3);
  --charcoal: #1A1A1A;
  --charcoal-soft: #2D2D2D;
  --white: #FFFFFF;
  --light-gray: #F8F8F8;
  --card-bg: #FFFFFF;
  --border-color: rgba(197, 33, 33, 0.2);
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --font-heading: 'Sen', sans-serif;
  --font-body: 'Sen', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 8px 30px rgba(197, 33, 33, 0.25);
  --radius: 1rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--light-gray);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--charcoal); line-height: 1.25; }

.gold-gradient-text {
  background: linear-gradient(135deg, #B8960F 0%, #D4AF37 50%, #997A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(197, 33, 33, 0.45);
  filter: brightness(1.05);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(197, 33, 33, 0.1);
  transform: translateY(-2px);
  color: var(--gold-dark);
}

/* ---------- Layout & Sections ---------- */
.section { padding: 4.5rem 0; }
.section-sm { padding: 3rem 0; }
.container { max-width: 1350px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 3rem; } }
@media (min-width: 1024px) { .container { padding: 0 5rem; } }
@media (min-width: 1400px) { .container { padding: 0 7rem; } }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(197, 33, 33,0.4);
  border-radius: 2rem;
  background: rgba(197, 33, 33,0.08);
  margin-top: 0.5rem;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  font-weight: 400;
  line-height: 1.35;
  font-variant-numeric: lining-nums;
}

.title-num {
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(-0.03em);
  font-variant-numeric: lining-nums;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.8;
  margin: 0 auto;
}

.divider {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, rgba(197, 33, 33,0.1) 0%, #D4AF37 35%, #D4AF37 65%, rgba(197, 33, 33,0.1) 100%);
  margin: 0.75rem auto 1.25rem;
  border-radius: 3px;
  display: block;
}

/* ---------- Minimal Floating Navbar ---------- */
#main-header {
  position: fixed;
  top: 0.6rem; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  #main-header { padding: 0 5rem; }
}
@media (min-width: 1400px) {
  #main-header { padding: 0 7rem; }
}

.navbar-glass {
  max-width: 1350px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 33, 33, 0.3);
  border-radius: 3rem;
  padding: 0.55rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

@media (min-width: 640px) {
  .navbar-glass {
    justify-content: space-between;
  }
}

#main-header.scrolled .navbar-glass {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(197, 33, 33, 0.2);
}

.logo img {
  height: 2.8rem;
  width: auto;
  transition: var(--transition);
}
.logo:hover img {
  transform: translateY(-1px);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .header-actions {
    display: flex;
  }
}

.header-actions .btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  border-radius: 2rem;
}

/* ---------- Hero Section ---------- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF6ED 50%, #F5EFEB 100%);
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  background: rgba(197, 33, 33, 0.12);
  border: 1px solid rgba(197, 33, 33, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.hero-badge span.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(1.65rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 640px) {
  .trust-badges { grid-template-columns: repeat(4, 1fr); }
}

.trust-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--white);
  padding: 0.55rem 0.6rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(197, 33, 33, 0.25);
  box-shadow: var(--shadow-sm);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.trust-badge-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ---------- Lead Form (Glass Card) ---------- */
.lead-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 15px 40px rgba(197, 33, 33, 0.12), var(--shadow-md);
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1023px) {
  .lead-form-card {
    margin-left: auto;
    margin-right: auto;
  }
}

.form-title {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 0.2rem;
}

.form-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.1rem;
}

.form-group { margin-bottom: 0.75rem; }

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.form-input, .form-select {
  width: 100%;
  background: var(--light-gray);
  border: 1.5px solid rgba(197, 33, 33, 0.25);
  border-radius: 0.625rem;
  padding: 0.6rem 0.85rem;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 33, 33, 0.15);
}

.form-submit {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  margin-top: 0.4rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(197, 33, 33, 0.45);
}

/* ---------- Services Section ---------- */
#services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(197, 33, 33, 0.2);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 60px; height: 60px;
  border-radius: 1rem;
  background: rgba(197, 33, 33, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: #FFFFFF;
  transform: rotate(-5deg) scale(1.05);
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Why Choose Gold Buyers Madurai ---------- */
#why-choose { background: var(--light-gray); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--white);
  border: 1px solid rgba(197, 33, 33, 0.15);
  border-radius: 1.25rem;
  padding: 1.8rem 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 14px 35px rgba(197, 33, 33, 0.2);
}

.feature-icon-box {
  width: 52px; height: 52px;
  border-radius: 0.875rem;
  background: rgba(197, 33, 33, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold-dark);
  transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
  transform: rotate(10deg);
  background: rgba(197, 33, 33, 0.25);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- Process Section ---------- */
#process { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.process-card {
  background: var(--light-gray);
  border: 1px solid rgba(197, 33, 33, 0.2);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  background: var(--white);
}

.process-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-gold);
}

.process-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.process-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- Counter Section ---------- */
#counter-section {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: var(--white);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .counters-grid { grid-template-columns: repeat(4, 1fr); }
}

.counter-item { text-align: center; }

.counter-value {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.counter-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ---------- Testimonials ---------- */
#testimonials { background: var(--light-gray); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(197, 33, 33, 0.2);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.author-box { display: flex; align-items: center; gap: 0.85rem; }

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(197, 33, 33, 0.15);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--gold-dark);
}

.author-name { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); }
.author-location { font-size: 0.78rem; color: var(--text-secondary); }

/* ---------- FAQ Section ---------- */
#faq { background: var(--white); }

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border: 1px solid rgba(197, 33, 33, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: var(--transition);
  background: var(--light-gray);
}

.faq-item.open {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(197, 33, 33, 0.15);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Call To Action Banner ---------- */
#cta-banner {
  background: linear-gradient(135deg, #2D0404 0%, #150101 100%);
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
}

.cta-box {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ---------- Contact Section ---------- */
#contact { background: var(--light-gray); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(197, 33, 33, 0.2);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 1rem;
  background: rgba(197, 33, 33, 0.12);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-val {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}

.map-container {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(197, 33, 33, 0.2);
  box-shadow: var(--shadow-sm);
  height: 250px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
#footer {
  background: linear-gradient(135deg, #2D0404 0%, #150101 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 2rem;
  border-top: 2px solid var(--gold);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-logo img { height: 2.8rem; width: auto; }

.footer-contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  padding: 0.9rem 1.4rem;
  border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 600;
  box-shadow: var(--shadow-md);
  transform: translateY(2rem); opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast.success { background: #0F4C2A; color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }
.toast.error { background: #5a1818; color: #fca5a5; border: 1px solid rgba(252,165,165,0.3); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- Typing Cursor & Keyframe Animations ---------- */
.typing-cursor {
  display: inline-block;
  color: var(--gold);
  font-weight: 300;
  margin-left: 2px;
  animation: blink-cursor 0.7s infinite;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Gold Pulse Micro Interaction for CTA Buttons */
.btn-gold {
  animation: gold-pulse 3s infinite ease-in-out;
}

@keyframes gold-pulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(197, 33, 33, 0.25); }
  50% { box-shadow: 0 12px 32px rgba(197, 33, 33, 0.45); }
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 4.9rem;
  right: 1.5rem;
  z-index: 9999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(197, 33, 33, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(197, 33, 33, 0.45);
}

/* Hide floating action buttons on desktop and tablet viewports */
@media (min-width: 640px) {
  .floating-wa-btn,
  .floating-call-btn {
    display: none;
  }
}
