/* ============================================================
   TIRAL Chit's Private Limited — Global Stylesheet
   Save Money, Live Better
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #9B1C1B;
  --primary-dark: #E01717;
  --primary-light: #C42828;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --gold-dark: #D97706;
  --white: #FFFFFF;
  --off-white: #FEF2F3;
  --text-dark: #1C0A0A;
  --text-mid: #6B3535;
  --text-light: #B08080;
  --border: #F0D8D8;
  --shadow: 0 4px 24px rgba(155, 28, 27, 0.12);
  --shadow-lg: 0 12px 48px rgba(155, 28, 27, 0.22);
  --glass: rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.20);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-mid);
  font-size: 1rem;
}

/* ── Section Layout ── */
.section {
  padding: 90px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-weight: 800;
}

.section-title span {
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.55);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13, 76, 110, 0.35);
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 76, 110, 0.5);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

.nav-brand-text h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}

.nav-brand-text span {
  font-size: 0.65rem;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--primary-dark);

  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--off-white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* Mobile Nav */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.4rem;
    padding: 12px 32px;
    color: var(--primary-dark);
    width: 100%;
    text-align: center;
  }

  .hamburger {
    z-index: 1001;
    position: relative;
  }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 380px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.07) 0%, transparent 40%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 900;
}

.page-hero p {
  color: var(--white);

  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  color: var(--white);

  font-size: 0.85rem;
  margin-top: 20px;
  font-family: var(--font-head);
}

.page-hero .breadcrumb a {
  color: var(--gold-light);
}

.page-hero .breadcrumb a:hover {
  text-decoration: underline;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 160, 23, 0.3);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 76, 110, 0.1), rgba(13, 76, 110, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(1.1) rotate(-5deg);
}

/* ── GRID ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--primary-dark);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-label {
  color: var(--white);

  font-size: 0.85rem;
  margin-top: 6px;
  font-family: var(--font-body);
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin: 16px auto 32px;
}

.gold-divider.left {
  margin-left: 0;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(212, 160, 23, 0.15);
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ── PLAN CARDS ── */
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.plan-card.featured {
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(212, 160, 23, 0.25);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-head);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 28px 24px;
  text-align: center;
  color: var(--white);
}

.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.plan-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.plan-amount span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.75;
}

.plan-body {
  padding: 24px;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-mid);
}

.plan-feature:last-child {
  border-bottom: none;
}

.plan-feature .check {
  color: #22C55E;
  font-size: 1rem;
  font-weight: 700;
}

.plan-cta {
  padding: 0 24px 24px;
}

.plan-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--primary-dark);
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ── PROCESS STEPS ── */
.step-card {
  text-align: center;
  position: relative;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(13, 76, 110, 0.3);
}

/* ── FORM ── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(13, 76, 110, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── CONTACT INFO ── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--white);
}

.contact-info-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  background: var(--primary-dark);
  color: var(--white);

  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand .tagline {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-head);
}

.footer-brand p {
  color: var(--white);

  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);

  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--white);

  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-col p {
  color: var(--white);

  font-size: 0.88rem;
}

.footer-bottom {
  background: #F97316; /* Fallback orange if --gold is not exactly what they meant, but let's stick to theme gold/orange */
  background: var(--gold);
  padding: 20px;
  text-align: center;
}

.footer-bottom p {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gold-light);
}

.cin-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 8px;
  font-family: var(--font-head);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

/* ── TRUST BADGES ── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);

  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── VALUE CARDS (about) ── */
.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

/* ── CALCULATOR ── */
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .calc-wrapper {
    grid-template-columns: 1fr;
  }
}

.calc-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.calc-result {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
}

.calc-result h3 {
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 28px;
  font-size: 1.3rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
  border-bottom: none;
}

.result-label {
  color: var(--white);

  font-size: 0.9rem;
}

.result-value {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.result-main {
  text-align: center;
  padding: 24px;
  background: rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.result-main-label {
  font-size: 0.85rem;
  color: var(--white);

  margin-bottom: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-main-value {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
}

.calc-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 8px 0;
  overflow: hidden;
}

.calc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 4px;
  transition: width 0.8s ease;
}

/* Range input styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  outline: none;
  margin-top: 8px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(13, 76, 110, 0.4);
}

/* ── MAP ── */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── UTILITIES ── */
.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-32 {
  margin-bottom: 32px;
}

.bg-off {
  background: var(--off-white);
}

.bg-dark {
  background: var(--primary-dark);
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--white);
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 9000;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.5);
}

/* ── CHIT TABLES ── */
.chit-table-section {
  padding: 80px 0;
}

.table-container {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 32px;
  border: 1px solid var(--border);
}

.chit-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.chit-table th {
  background: var(--primary-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 16px 20px;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--gold);
}

.chit-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-dark);
}

.chit-table tr:last-child td {
  border-bottom: none;
}

.chit-table tr:nth-child(even) {
  background: var(--off-white);
}

.chit-table tr:hover {
  background: rgba(245, 158, 11, 0.05);
}

.chit-table .payout-col {
  font-weight: 700;
  color: var(--primary);
}

.table-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.table-header-info h3 {
  color: var(--primary-dark);
  margin: 0;
}

.plan-summary-badge {
  background: var(--gold-light);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-head);
}

@media (max-width: 768px) {
  .chit-table th, .chit-table td {
    padding: 12px 15px;
  }
}

.table-total-row {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 700;
}

.table-total-row .payout-col {
  color: var(--gold-light) !important;
}

.plan-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 32px;
}

.table-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-phone-link {
    color: var(--white);
    font-weight: 600;
}

.installment-options {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    flex-wrap: wrap;
    align-items: center;
}

.installment-options.bg-off {
    background: #FEF2F3;
}

.installment-options span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.installment-options span strong {
    color: var(--primary);
    font-size: 1.05rem;
    margin-left: 0.25rem;
}

@media (max-width: 768px) {
    .installment-options {
        gap: 0.75rem;
        padding: 0.875rem 1rem;
    }
}

/* ── Floating Action Buttons ── */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.32);
}

.float-btn.whatsapp {
  background: #25D366;
  animation: floatBob 3s ease-in-out infinite;
}

.float-btn.call {
  background: var(--primary-dark);
  animation: floatBob 3s ease-in-out infinite 0.6s;
}

.float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

.float-btn.whatsapp::before {
  border: 3px solid #25D366;
}

.float-btn.call::before {
  border: 3px solid var(--primary-dark);
}

.float-btn .float-label {
  position: absolute;
  right: 66px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-btn:hover .float-label {
  opacity: 1;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.7; }
  80%  { transform: scale(1.55); opacity: 0;   }
  100% { transform: scale(1.55); opacity: 0;   }
}
