/* =========================================================
   Sankalp WEALTH ADVISORS — stylesheet
   Design tokens
   ========================================================= */
:root {
  --ink: #14211B;
  /* near-black green-ink, primary text */
  --forest: #0E3B2E;
  /* deep forest green, brand primary */
  --forest-2: #135241;
  /* lighter forest for gradients/hover */
  --gold: #C9A227;
  /* muted gold, accent */
  --gold-2: #E4C355;
  /* bright gold for highlights */
  --teal: #1F6F5C;
  /* secondary accent */
  --paper: #F6F8F6;
  /* page background, faint mint-white */
  --paper-2: #FFFFFF;
  /* card background */
  --muted: #5C6B65;
  /* secondary text */
  --line: #DDE4E0;
  /* hairline borders */
  --danger: #A63B2A;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-card: 0 1px 2px rgba(14, 59, 46, 0.06), 0 8px 24px -12px rgba(14, 59, 46, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1,
h2,
h3,
h4,
.display-font {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

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

.text-forest {
  color: var(--forest) !important;
}

.text-muted-custom {
  color: var(--muted) !important;
}

.bg-forest {
  background-color: var(--forest) !important;
}

.bg-paper {
  background-color: var(--paper) !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--forest) 0%, var(--gold) 50%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.animated-gradient-text {
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--gold-2), var(--forest));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  animation: gradientAnimation 8s ease-in-out infinite;
  background-color: #000;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  margin: 0;
  letter-spacing: normal;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

a {
  color: var(--forest);
}

a:hover {
  color: var(--gold);
}

::selection {
  background: var(--gold-2);
  color: var(--ink);
}

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

.container-narrow {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all .2s ease;
}

.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-outline-light-custom {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-outline-forest {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}

.btn-outline-forest:hover {
  background: var(--forest);
  color: #fff;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--forest);
  color: #fff;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */
  /* right: 0; */
  z-index: 1001;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-contact span,
.top-bar-contact a {
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar-contact a:hover {
  color: var(--gold-2);
}

.top-bar-contact i {
  margin-right: 0.45rem;
  font-size: 0.95rem;
}

.top-bar-contact i.bi-telephone-fill {
  color: #10b981;
}

.top-bar-contact i.bi-envelope-fill {
  color: var(--gold-2);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s ease;
  text-decoration: none;
}

.social-icon.facebook {
  background-color: #1877F2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
  background-color: #FF0000;
}

.social-icon.whatsapp {
  background-color: #25D366;
}

.social-icon:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  color: #fff !important;
}

.language-selector .dropdown-toggle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.language-selector .dropdown-toggle:hover {
  color: var(--gold-2);
}

.language-selector .dropdown-menu {
  min-width: 120px;
  z-index: 9999 !important;
}

.brand-mark {
  text-decoration: none;
  line-height: 1.2;
}

.brand-mark img {
  display: block;
}

.brand-mark .text-warning {
  color: #c9a227 !important;
  /* Gold */
  font-weight: 600;
  letter-spacing: 1px;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar-Sankalp {
  background: rgba(246, 248, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  transition: box-shadow .2s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-Sankalp.scrolled {
  box-shadow: 0 4px 20px -10px rgba(14, 33, 27, 0.25);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #000 !important;
}

.brand-glyph {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--ink);
  line-height: 1;
}

.brand-word span {
  color: var(--gold);
}

.desktop-logo,
.desktop-text {
  display: inline-block;
}

.mobile-text {
  display: none;
}

.navbar-Sankalp .nav-link {
  color: var(--ink);
  font-weight: 500;
  font-size: .93rem;
  margin: 0 .35rem;
  position: relative;
  transition: .3s;
}

.navbar-Sankalp .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .3s;
}

.navbar-Sankalp .nav-link:hover,
.navbar-Sankalp .nav-link.active {
  color: var(--gold);
}

.navbar-Sankalp .nav-link:hover::after,
.navbar-Sankalp .nav-link.active::after {
  width: 100%;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-2) 100%);
  color: #F3F6F4;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}

.hero-eyebrow {
  color: var(--gold-2);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  line-height: 1.08;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-word-bounce 0.7s cubic-bezier(.2, .8, .2, 1) forwards;
  will-change: transform, opacity;
}

.hero p.lead {
  color: rgba(243, 246, 244, 0.82);
  font-size: 1.12rem;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-2);
}

.hero-stat .label {
  font-size: .78rem;
  color: rgba(243, 246, 244, 0.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-chart-wrap {
  position: relative;
}

.hero-chart-svg {
  width: 100%;
  height: auto;
}

.hero-chart-line {
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 2.5;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-line 2.4s ease-out forwards .3s;
}

.hero-chart-area {
  opacity: 0;
  animation: fade-in .8s ease-out forwards 1.6s;
}

.hero-chart-dot {
  opacity: 0;
  animation: pop-in .4s ease-out forwards 2.5s;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes service-card-bob {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }

  60% {
    opacity: 1;
    transform: translateY(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-word-bounce {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }

  60% {
    opacity: 1;
    transform: translateY(-6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-chart-card {
  position: absolute;
  bottom: -1.4rem;
  left: 1rem;
  background: var(--paper-2);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: .85rem 1.1rem;
  box-shadow: var(--shadow-card);
  font-family: var(--font-mono);
  font-size: .82rem;
  opacity: 0;
  animation: fade-in .6s ease-out forwards 2.8s;
}

.hero-chart-card .lab {
  color: var(--muted);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-chart-card .val {
  font-weight: 600;
  color: var(--forest);
  font-size: 1.05rem;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 2.6rem 0;
}

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

.trust-item .num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
}

.trust-item .label {
  font-size: .82rem;
  color: var(--muted);
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section {
  padding: 2.5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-top: .5rem;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.service-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.9rem;
  height: 100%;
  opacity: 0;
  transform: translateY(-24px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card.reveal-on-scroll.visible {
  opacity: 1;
  animation: service-card-bob 0.7s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: var(--card-delay, 0s);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--forest);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 4px 10px rgba(201, 162, 39, 0.25);
  color: var(--ink) !important;
  font-size: 1.2rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.12) rotate(4deg);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.service-card p {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 0;
}

.service-card-extra.d-none {
  display: none;
}

.service-card-toggle {
  text-align: center;
}

.service-card-toggle .btn {
  min-width: 220px;
}

/* =========================================================
   WHY / COMPOUNDING STRIP
   ========================================================= */
.why-strip {
  background: var(--ink);
  color: #F3F6F4;
}

.why-strip .section-head h2 {
  color: #fff;
}

.why-strip .section-head p {
  color: rgba(243, 246, 244, 0.7);
}

.compound-fact {
  border-left: 2px solid var(--gold);
  padding-left: 1.1rem;
}

.compound-fact .big {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--gold-2);
  font-weight: 600;
}

.compound-fact p {
  color: rgba(243, 246, 244, 0.68);
  font-size: .9rem;
  margin-top: .3rem;
}

/* =========================================================
   SIP CALCULATOR — signature element (ledger card)
   ========================================================= */
.calc-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.calc-inputs {
  padding: 2.4rem;
  border-bottom: 1px solid var(--line);
}

.calc-row {
  margin-bottom: 1.7rem;
}

.calc-row:last-child {
  margin-bottom: 0;
}

.calc-label-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .5rem;
}

.calc-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}

.calc-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--forest);
  font-size: 1.05rem;
}

.form-range {
  accent-color: var(--forest);
}

.form-range::-webkit-slider-thumb {
  background: var(--forest);
}

.calc-minmax {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-top: .25rem;
}

.calc-results {
  padding: 2.4rem;
  background: var(--paper);
}

.result-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px dashed var(--line);
}

.result-line:last-of-type {
  border-bottom: none;
}

.result-line .r-label {
  font-size: .85rem;
  color: var(--muted);
}

.result-line .r-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.05rem;
}

.result-highlight {
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  margin-top: 1.2rem;
}

.result-highlight .r-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.result-highlight .r-value {
  color: var(--gold-2);
  font-size: 1.9rem;
}

.calc-chart-wrap {
  padding: 1.5rem 2.4rem 2.2rem;
}

.calc-footnote {
  font-size: .74rem;
  color: var(--muted);
  padding: 0 2.4rem 1.6rem;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  height: 100%;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.55;
}

.testimonial-quote::before {
  content: "“";
  color: var(--gold);
  font-size: 1.6rem;
}

.testimonial-who {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.3rem;
}

.avatar-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: .85rem;
}

.testimonial-who .name {
  font-weight: 600;
  font-size: .88rem;
}

.testimonial-who .role {
  font-size: .76rem;
  color: var(--muted);
}

/* =========================================================
   TESTIMONIALS IMAGE
   ========================================================= */
.testimonial-image-card {
  width: 100%;
}

.testimonial-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.testimonial-copy .fs-1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.05;
}

@media (max-width: 767.98px) {
  .testimonial-copy {
    text-align: center !important;
  }
}

/* =========================================================
   FEEDBACK / CONTACT FORM
   ========================================================= */
/* .feedback-section{ background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.form-control, .form-select{
  border-radius: var(--radius-sm); border: 1px solid var(--line); padding: .7rem .9rem; font-size: .92rem;
}
.form-control:focus, .form-select:focus{ border-color: var(--forest); box-shadow: 0 0 0 3px rgba(14,59,46,0.12); }
.form-label{ font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.rating-group{ display:flex; gap: .4rem; }
.rating-group input{ display:none; }
.rating-group label{
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  display:flex; align-items:center; justify-content:center; cursor:pointer; font-family: var(--font-mono); font-weight:600;
  color: var(--muted); transition: all .15s ease;
}
.rating-group input:checked + label{ background: var(--forest); color:#fff; border-color: var(--forest); }
.rating-group label:hover{ border-color: var(--forest); color: var(--forest); }
#feedbackSuccess{ display:none; } */

.feedback-section {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}

/* Contact Info Card */

.contact-info-card {
  /* background:#fff; */
  /* border:1px solid #e9ecef; */
  border-radius: 18px;
  padding: 29px;
  height: 100%;
  /* box-shadow:0 12px 35px rgba(0,0,0,.08); */
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

/* Base contact icon style */
.contact-list i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Alternating yellow/gold and green colors for icons */
.contact-list li:nth-child(1) i,
.contact-list li:nth-child(3) i {
  color: var(--gold-2);
}

.contact-list li:nth-child(2) i,
.contact-list li:nth-child(4) i {
  color: #10b981;
}

.contact-list li:hover i {
  transform: scale(1.1);
  background-color: var(--forest-2);
}

.contact-list span {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.contact-list a {
  color: inherit;
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--gold) !important;
  text-decoration: underline !important;
}

/* Form Card */

.contact-form-card {
  /* background:#fff; */
  border: 1px solid #e9ecef;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  height: 100%;
}

/* Form */

.form-control,
.form-select {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  transition: .3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(14, 59, 46, .12);
}

textarea.form-control {
  resize: none;
}

.btn-gold {
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-gold:hover {
  transform: translateY(-2px);
}

#feedbackSuccess {
  display: none;
}

/* =========================================================
   CONTACT STRIP / CTA
   ========================================================= */
.cta-strip {
  background: linear-gradient(120deg, var(--forest) 0%, var(--teal) 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
}

.cta-strip h2 {
  color: #fff;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.82);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer.site-footer {
  background: var(--ink);
  color: rgba(243, 246, 244, 0.7);
  padding: 3.5rem 0 1.5rem;
}

footer.site-footer h6 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1rem;
}

footer.site-footer a {
  color: rgba(243, 246, 244, 0.65);
  text-decoration: none;
  font-size: .88rem;
}

footer.site-footer a:hover {
  color: var(--gold-2);
}

footer.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.site-footer li {
  margin-bottom: .55rem;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  font-size: .74rem;
  color: rgba(243, 246, 244, 0.45);
  line-height: 1.6;
}

.footer-bottom {
  font-size: .78rem;
  color: rgba(243, 246, 244, 0.45);
}

.social-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
  color: #fff !important;
  transition: transform 0.2s ease, filter 0.2s ease;
  text-decoration: none;
}

.social-dot.facebook {
  background-color: #1877F2;
}

.social-dot.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-dot.youtube {
  background-color: #FF0000;
}

.social-dot.whatsapp {
  background-color: #25D366;
}

.social-dot:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  color: #fff !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .financial-text {
    font-size: 0.2rem;
  }
}

@media (max-width: 991.98px) {
  .top-bar {
    padding: 0.4rem 0;
    z-index: 1001;
  }

  .top-bar .container {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0;
  }

  .top-bar-contact {
    font-size: 0.8rem;
    gap: 1rem;
    justify-content: flex-start;
    width: auto;
  }

  .top-bar-contact span,
  .top-bar-contact a {
    display: inline-flex;
    align-items: center;
  }

  .top-bar-right {
    width: auto;
    justify-content: flex-end;
    gap: 0.75rem;
  }

  .social-icons {
    gap: 0.5rem;
  }

  .language-selector .dropdown-toggle {
    font-size: 0.8rem;
  }

  .navbar-Sankalp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    height: auto;
    min-height: 55px;
    max-height: none;
    overflow: visible !important;
  }

  .navbar-brand {
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    max-width: none;
    width: auto;
    white-space: nowrap;
    overflow: visible !important;
    flex: 1;
    min-width: 0;
  }

  .navbar-brand img {
    height: 38px !important;
    max-width: 77px !important;
    object-fit: contain;
    flex-shrink: 0;
    display: block !important;
  }

  .navbar-brand .brand-word:first-child {
    text-transform: uppercase;
    font-size: 0.7rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible !important;
    flex-shrink: 1;
  }

  .navbar-brand .brand-word:last-child {
    font-size: 0.6rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible !important;
    flex-shrink: 1;
  }

  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline-block;
  }

  .navbar-Sankalp .container {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    overflow: visible !important;
    height: auto;
    max-width: 100%;
    min-width: 0;
  }

  .navbar-Sankalp .container.d-flex {
    overflow: visible !important;
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .navbar-toggler {
    margin-left: 0.25rem;
    flex-shrink: 0;
    padding: 0.25rem 0.5rem;
  }

  body {
    overflow-x: hidden;
  }

  .hero {
    padding-top: 7.5rem;
    padding-bottom: 4rem;
    text-align: center;
  }

  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-chart-wrap {
    margin-top: 3rem;
  }

  .trust-bar {
    padding: 2rem 0;
  }

  .section {
    padding: 3rem 0;
  }

  .calc-inputs,
  .calc-results {
    padding: 1.6rem;
  }

  .calc-chart-wrap {
    padding: 1rem 1.6rem 1.8rem;
  }

  .calc-footnote {
    padding: 0 1.6rem 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .hero-stats {
    gap: 1.3rem;
  }

  .section {
    padding: 3.6rem 0;
  }
}

/* =========================================================
   FIXED CTA ANCHOR
   ========================================================= */
.fixed-anchor-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  background: var(--gold);
  color: var(--ink);
  padding: .95rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(14, 59, 46, 0.16);
  font-weight: 700;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.fixed-anchor-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(14, 59, 46, 0.22);
  /* text-decoration-color: #DDE4E0; */
  color: var(--paper);
}

.fixed-anchor-cta:active {
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .fixed-anchor-cta {
    right: .75rem;
    bottom: .75rem;
    padding: .85rem 1.2rem;
    font-size: .95rem;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }
}