/* FINOPLE CHITS - PREMIUM STYLESHEET
    Theme: Deep Navy & Emerald Blue (CFO Inspired)
*/

/* --- RESET & LAYOUT --- */
* { 
    box-sizing: border-box; 
}

html, body {
    margin: 0; 
    padding: 0; 
    min-height: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex; 
    flex-direction: column;
    background-color: #0f172a; /* CFO Deep Navy */
    scroll-behavior: smooth;
}

main { 
    flex: 1; 
    background-color: #ffffff; 
}

:root {
    --primary: #2563eb;
    --navy: #0f172a;
    --slate: #64748b;
    --wa-green: #25D366;
    --fb-blue: #1877F2;
    --light-bg: #f8fafc;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

/* --- NAVIGATION --- */
.ft-nav { 
    padding: 25px 0; 
    background: #ffffff; 
    border-bottom: 1px solid #f1f5f9; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    transition: 0.3s ease;
}

.ft-nav.sticky {
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-wrapper { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.ft-logo { 
    font-size: 22px; 
    font-weight: 800; 
    text-decoration: none; 
    color: var(--navy); 
}

.ft-logo span { 
    color: var(--primary); 
    font-weight: 400; 
}

.ft-links a { 
    text-decoration: none; 
    margin-left: 30px; 
    font-weight: 700; 
    color: var(--navy); 
    font-size: 14px; 
}

.ft-btn-nav { 
    background: var(--navy); 
    color: #ffffff !important; 
    padding: 10px 20px; 
    border-radius: 8px; 
}

/* --- HERO SECTION --- */
.ft-hero { 
    padding: 120px 0; 
    text-align: center; 
    background: radial-gradient(circle at top right, #f1f5f9, #ffffff); 
}

.badge { 
    background: #dbeafe; 
    color: var(--primary); 
    padding: 6px 14px; 
    border-radius: 20px; 
    font-size: 12px; 
    font-weight: 700; 
}

.ft-hero h1 { 
    font-size: 64px; 
    font-weight: 800; 
    letter-spacing: -2px; 
    line-height: 1.1; 
    margin: 20px 0; 
    color: var(--navy);
}

.accent-text { 
    color:#14b8a6; 
}

.hero-actions { 
    display: flex; 
    gap: 15px; 
    justify-content: center; 
    margin-top: 30px; 
}

.btn-primary { 
    background: var(--primary); 
    color: #ffffff; 
    padding: 15px 32px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-block;
}

.btn-secondary { 
    background: #ffffff; 
    border: 1px solid #e2e8f0; 
    padding: 15px 32px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-block;
}

/* --- CONTENT SECTIONS --- */
.section-padding { 
    padding: 100px 0; 
}

.centered { 
    text-align: center; 
    margin-bottom: 50px;
}

.why-row { 
    display: flex; 
    gap: 24px; 
}

.why-card { 
    flex: 1; 
    background: #ffffff; 
    padding: 40px; 
    border-radius: 20px; 
    border: 1px solid #e2e8f0; 
    text-align: left; 
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon-circle { 
    width: 44px; 
    height: 44px; 
    background: #eff6ff; 
    color: var(--primary); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 800; 
    margin-bottom: 20px; 
}

/* --- SAVING CYCLE (POINTS) --- */
.dark-accent-bg {
    background-color: #f8fafc;
}

.points-wrapper { 
    max-width: 800px; 
    margin: 0 auto; 
}

.point-item { 
    display: flex; 
    gap: 30px; 
    margin-bottom: 40px; 
    align-items: flex-start; 
}

.point-num { 
    width: 50px; 
    height: 50px; 
    background: var(--primary); 
    color: #ffffff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 20px; 
    font-weight: 800; 
    flex-shrink: 0; 
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); 
}

.point-content h3 { 
    margin: 0 0 10px; 
    font-weight: 800; 
    color: var(--navy);
}

.point-content p { 
    color: var(--slate); 
    line-height: 1.6; 
}

/* --- PREMIUM FOOTER --- */
.ft-footer-premium { 
    background: var(--navy); 
    color: #94a3b8; 
    padding: 80px 0 0; 
    width: 100%; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 60px; 
    padding-bottom: 60px; 
}

.footer-logo { 
    color: #ffffff; 
    font-size: 26px; 
    font-weight: 800; 
    text-decoration: none; 
    display: block; 
    margin-bottom: 20px; 
}

.footer-logo span { 
    color: var(--primary); 
}

.social-links { 
    display: flex; 
    gap: 15px; 
    margin-top: 25px; 
}

.social-icon { 
    width: 45px; 
    height: 45px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #ffffff; 
    text-decoration: none; 
    transition: 0.3s; 
}

.social-icon.fb { background-color: var(--fb-blue); }
.social-icon.ig { background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%); }

.footer-bottom { 
    background: #0a101e; 
    padding: 30px 0; 
    text-align: center; 
    border-top: 1px solid rgba(255,255,255,0.05); 
}

/* --- WHATSAPP FLOATING MENU --- */
/* --- MINI WHATSAPP MENU (REPLACED MODAL) --- */
.wa-mini-menu {
    display: none; /* Hidden by default */
    position: absolute;
    bottom: 60px; /* Positions it above the icon */
    left: 0;
    width: 240px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2000;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    animation: slideUpMenu 0.3s ease-out;
}

.wa-mini-menu.show {
    display: block;
}

.wa-menu-header {
    background: #075e54; /* WhatsApp Dark Green */
    color: #ffffff;
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wa-menu-item {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.wa-menu-item:last-child {
    border-bottom: none;
}

.wa-menu-item:hover {
    background: #f8fafc;
}

.wa-menu-item strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    margin-bottom: 2px;
}

.wa-menu-item span {
    color: var(--wa-green);
    font-size: 12px;
    font-weight: 600;
}

@keyframes slideUpMenu {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ensure WA social icon has cursor and color */
.social-icon.wa { 
    background-color: var(--wa-green); 
    cursor: pointer;
}
/* ===============================
   INDEX PAGE – ENHANCEMENTS
   (Trust, Certifications, Depth)
================================ */

/* ---------- METRICS STRIP ---------- */

.metrics-strip {
  background: #f8fafc;
  padding: 70px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.metric h3 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.metric p {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
}

/* ---------- SECTION HEADERS ---------- */

.section-header .title {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}

.section-header .subtitle {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
}

/* ---------- CERTIFICATIONS ---------- */

.light-bg {
  background-color: #f8fafc;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.cert-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}

.cert-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.cert-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.cert-note {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #64748b;
}

/* ---------- CTA SECTION ---------- */

.centered .btn-primary {
  margin-top: 25px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .ft-hero h1 {
    font-size: 44px;
  }

  .section-header .title {
    font-size: 34px;
  }

  .why-row {
    flex-direction: column;
  }

  .point-item {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 500px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric h3 {
    font-size: 30px;
  }
}






/* --- FInople chits Plans --- */
/* ================= CHIT PLANS ================= */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.plan-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15,23,42,0.12);
}

.plan-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-duration {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
}

.plan-details p {
  font-size: 15px;
  margin: 8px 0;
}

.benefits-list {
  list-style: disc;
  margin: 30px auto;
  max-width: 700px;
  padding-left: 20px;
}

.benefits-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #475569;
}

/* --- WHATSAPP FLOATING MENU --- */

/* ================= PLAN FILTER ================= */

.plan-filter {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.plan-filter select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

/* ================= FAQ ================= */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
  color: #475569;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}


:root {
    --teal: #0f766e;
    --aquamarine: #14b8a6;
    --navy: #0f172a;
    --slate: #64748b;
    --bg-light: #f8fafc;
}

body { font-family: 'Plus Jakarta Sans', sans-serif; margin: 0; background: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.accent-teal { color: var(--aquamarine); }
.section-padding { padding: 80px 0; }
.centered-header { text-align: center; margin-bottom: 50px; }

/* HEADER */
.ft-nav { padding: 20px 0; background: white; border-bottom: 1px solid #eee; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.ft-logo { font-size: 22px; font-weight: 800; text-decoration: none; color: var(--navy); }
.ft-logo span { color: var(--teal); }
.ft-links a { margin-left: 25px; text-decoration: none; color: var(--navy); font-weight: 600; }
.ft-btn-nav { background: var(--teal); color: white !important; padding: 10px 20px; border-radius: 8px; }

/* FILTER BAR */
.plan-filter-bar { display: flex; justify-content: center; gap: 20px; background: var(--bg-light); padding: 20px; border-radius: 15px; margin-bottom: 40px; }
.filter-item { display: flex; flex-direction: column; gap: 5px; }
.filter-item label { font-size: 10px; font-weight: 800; text-transform: uppercase; color: var(--teal); }
.filter-item select { padding: 10px 15px; border-radius: 8px; border: 1px solid #ddd; font-weight: 600; min-width: 180px; }

/* GRID & CARDS (Kodachadri Style) */
.chit-grid-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.chit-card-premium { background: white; border: 1px solid #eef2f6; border-radius: 16px; overflow: hidden; transition: 0.3s; text-align: center; }
.chit-card-premium:hover { transform: translateY(-8px); border-color: var(--aquamarine); box-shadow: 0 15px 30px rgba(15,118,110,0.1); }
.card-img-box { background: var(--bg-light); padding: 20px; height: 160px; display: flex; align-items: center; justify-content: center; }
.card-img-box img { max-width: 100%; max-height: 100%; object-fit: contain; }
.card-body { padding: 20px; }
.title-row { display: flex; justify-content: center; align-items: center; gap: 6px; margin-bottom: 10px; }
.title-row h3 { font-size: 16px; margin: 0; font-weight: 700; }
.dur { color: var(--slate); font-size: 14px; }
.desc { font-size: 13px; color: #475569; line-height: 1.5; margin-bottom: 15px; }
.view-details-btn { width: 100%; background: var(--teal); color: white; border: none; padding: 12px; border-radius: 10px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px; }
.view-details-btn svg { width: 18px; fill: white; }

/* MODAL */
.fnd-modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(15,23,42,0.8); backdrop-filter: blur(4px); }
.modal-content { background: white; margin: 10% auto; width: 90%; max-width: 800px; border-radius: 20px; overflow: hidden; position: relative; }
.modal-flex { display: flex; }
.modal-details-side { flex: 1.5; padding: 40px; }
.modal-action-side { flex: 1; padding: 40px; background: var(--bg-light); text-align: center; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid #eee; }
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 25px; text-align: left; }
.det-item label { font-size: 10px; text-transform: uppercase; color: var(--slate); font-weight: 800; }
.det-item p { font-weight: 700; margin: 4px 0; font-size: 16px; }
.price-box h2 { color: var(--teal); margin: 0; font-size: 32px; }
.btn-subscribe { background: var(--teal); color: white; text-decoration: none; padding: 15px; border-radius: 10px; font-weight: 800; display: block; margin-top: 20px; }
.close-modal { position: absolute; right: 20px; top: 15px; font-size: 28px; cursor: pointer; color: var(--slate); }
.fnd-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
.ft-footer-premium { background: var(--navy); color: #94a3b8; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { font-size: 24px; font-weight: 800; color: white; text-decoration: none; }
.footer-logo span { color: var(--aquamarine); }
.footer-col h4 { color: white; margin-bottom: 20px; }
.footer-col a { display: block; color: #94a3b8; text-decoration: none; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; text-align: center; font-size: 13px; }

/* WA MENU */
.social-links { position: relative; margin-top: 20px; }
.wa-btn { background: #25d366; color: white; border: none; padding: 10px 18px; border-radius: 25px; font-weight: 700; display: flex; align-items: center; gap: 8px; cursor: pointer; }
.wa-mini-menu { display: none; position: absolute; bottom: 50px; left: 0; width: 220px; background: white; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); overflow: hidden; z-index: 10; }
.wa-mini-menu.show { display: block; }
.wa-header { background: #075e54; color: white; padding: 10px; font-size: 11px; font-weight: 700; }
.wa-item { display: block; padding: 10px; text-decoration: none; border-bottom: 1px solid #eee; }
.wa-item strong { display: block; font-size: 14px; color: var(--navy); }
.wa-item span { font-size: 12px; color: var(--slate); }

/* RESPONSIVE */
@media (max-width: 1000px) { .chit-grid-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .chit-grid-container { grid-template-columns: 1fr; } .modal-flex { flex-direction: column; } .footer-grid { grid-template-columns: 1fr; } }


/* ---------- BUSINESS GRID & CARDS ---------- */
/* =========================================================
   INDEX PAGE – TRUST + DEPTH + PREMIUM CARD ENHANCEMENTS
   Safe to paste at END of fintech.css
========================================================= */

/* ---------------- METRICS STRIP ---------------- */

.metrics-strip {
  background: #f8fafc;
  padding: 70px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.metric h3 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.metric p {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
}

/* ---------------- SECTION HEADERS ---------------- */

.section-header .title {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}

.section-header .subtitle {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
}

/* ---------------- LIGHT BG ---------------- */

.light-bg {
  background-color: #f8fafc;
}

/* ---------------- CERTIFICATIONS ---------------- */

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.cert-card {
  padding: 34px;
}

/* ---------------- CTA SPACING ---------------- */

.centered .btn-primary {
  margin-top: 25px;
}

/* =========================================================
   PREMIUM CARD UPGRADE (WHY / CERT / PLAN)
========================================================= */

.why-card,
.cert-card,
.plan-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 70%,
    #f8fafc 100%
  );
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
}

/* TOP GRADIENT ACCENT */
.why-card::before,
.cert-card::before,
.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--primary),
    #14b8a6
  );
  opacity: 0.95;
}

/* SUBTLE GLOW ORB */
.why-card::after,
.cert-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(37,99,235,0.12),
    transparent 70%
  );
  border-radius: 50%;
}

/* HOVER EFFECT */
.why-card:hover,
.cert-card:hover,
.plan-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.12),
    0 10px 20px rgba(15, 23, 42, 0.06);
  border-color: transparent;
}

/* ---------------- CARD TYPOGRAPHY ---------------- */

.why-card h4,
.cert-card h4,
.plan-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy);
}

.why-card p,
.cert-card p,
.plan-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* HOVER TEXT ACCENT */
.why-card:hover h4,
.cert-card:hover h4,
.plan-card:hover h3 {
  color: var(--primary);
}

/* ---------------- PLAN CARD SPECIAL ---------------- */

.plan-card {
  text-align: left;
}

.plan-card h3 {
  font-size: 22px;
}

.plan-card .plan-duration {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 20px;
}

.plan-card a.btn-primary {
  margin-top: 20px;
  display: inline-block;
}

/* =========================================================
   RESPONSIVE FIXES
========================================================= */

@media (max-width: 900px) {
  .ft-hero h1 {
    font-size: 44px;
  }

  .section-header .title {
    font-size: 34px;
  }

  .why-row {
    flex-direction: column;
  }

  .point-item {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 500px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric h3 {
    font-size: 30px;
  }
}


.feature-grid {
  max-width: 900px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.feature-item .dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, var(--primary), #14b8a6);
  border-radius: 50%;
  margin-top: 6px;
}


.cert-list {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
}

.cert-list li {
  padding: 14px 0 14px 28px;
  position: relative;
  font-size: 15px;
  color: var(--navy);
  border-bottom: 1px solid #e2e8f0;
}

.cert-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  color: #14b8a6;
  font-weight: 800;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 50px auto 0;
  text-align: center;
}

.audience-grid h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}


/* ================= FINOPLE MODAL STYLES ================= */

/* Backdrop */
.fnd-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}
.fnd-modal.show {
    display: flex;
}


/* Modal Box */
.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 720px;
    border-radius: 18px;
    padding: 32px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    animation: modalPop 0.25s ease-out;
}

/* Animation */
@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 28px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
}

.close-modal:hover {
    color: #14b8a6;
}

/* Layout */
.modal-flex {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: center;
}

/* Left Side */
.modal-details-side h4 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 22px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.det-item label {
    font-size: 13px;
    color: #64748b;
}

.det-item p {
    font-size: 16px;
    font-weight: 600;
    color: #020617;
    margin-top: 4px;
}

/* Right Side */
.modal-action-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.price-box {
    background: #f0fdfa;
    border-radius: 16px;
    padding: 26px;
    text-align: center;
}

.price-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f766e;
}

.price-box label {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #475569;
}

/* CTA Button */
.btn-subscribe {
    display: block;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 118, 110, 0.35);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 22px;
    }

    .modal-flex {
        grid-template-columns: 1fr;
    }

    .modal-details-side h4 {
        font-size: 22px;
    }

    .price-box h2 {
        font-size: 28px;
    }
}


.wa-mini-menu {
    position: absolute;
    bottom: 48px;
    right: 0;
    width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 9999;
}

.wa-mini-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-menu-header {
    padding: 12px;
    font-weight: 700;
    background: #14b8a6;
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.wa-menu-item {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: #111;
}

.wa-menu-item:hover {
    background: #f0fdfa;
}


.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #111;
}


@media (max-width: 768px) {

  .burger {
    display: flex;
  }

  .ft-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;

    display: none; /* IMPORTANT */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .ft-links.show {
    display: flex;
  }
}

@media (min-width: 769px) {
  .ft-links {
    display: flex !important;
  }
}
.ft-links {
  transition: all 0.3s ease;
}