:root {
  --white: #ffffff;
  --blue: #344B73;
  --pink: #AF6B89;
  --pink-dark: #955576;
  --navy: #263859;
  --navy-mid: #344873;
  --hint: #9AAABB;
  --border: rgba(52, 72, 115, 0.1);
  --border-soft: rgba(52, 72, 115, 0.06);
  --text-main: #203748;
  --text-muted: #4A5568;
  --bg-color: #FAFAFA;
  --surface: #FFFFFF;
  --brdrClr: #ded8cc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

/* ===== HEADER ===== */
#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 38px;
  transition: .5s;
}

#mainHeader .logo-icon {
  display: none;
}

#mainHeader .logo-sticky {
  display: inline-block;
}

#mainHeader.scrolled {
  backdrop-filter: blur(18px);
  background-color: var(--white);
  box-shadow: 0 15px 45px rgba(0, 0, 0, .25);
}

#mainHeader .wrap-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#mainHeader .logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

#mainHeader .logo img {
  max-width: 170px;
}

#mainHeader nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

#mainHeader nav a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: .3s;
}

#mainHeader nav a:hover {
  background: linear-gradient(90deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#mainHeader .btn-reach-us {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 40px;
}

#mainHeader .btn-reach-us:hover {
  background: var(--pink);
}

#mainHeader .menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--blue);
}

@media (max-width: 991px) {
  #mainHeader nav#navMenu {
    display: none;
  }

  #mainHeader .menu-icon {
    display: block;
  }

  #mainHeader nav#navMenu.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 130%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 45px 45px rgba(0, 0, 0, .15);
  }

  #mainHeader nav#navMenu.active a {
    color: var(--blue);
    width: 100%;
  }

  #mainHeader nav#navMenu.active .btn-reach-us {
    width: fit-content;
  }
}

@media (max-width: 767px) {
  #mainHeader {
    padding: 10px 20px;
  }

  #mainHeader .logo img {
    max-width: 140px;
  }
}

/* ===== PAGE ===== */
.compare-page {
  padding: 120px 0 80px;
}

@media screen {
  .compare-page{
    padding: 80px 0 0;
  }
}

/* ===== CMP HEADER ===== */
.cmp-header {
  margin-bottom: 3rem;
}

.cmp-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: .5rem;
}

.cmp-title em {
  color: var(--pink);
  font-style: italic;
}

.cmp-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 18px;
}

/* ===== TABS ===== */
.plan-tabs {
  display: inline-flex;
  padding: 8px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(45, 53, 118, .10);
  margin-bottom: 2.5rem;
}

.tab-btn {
  border: 0;
  padding: 14px 28px;
  border-radius: 40px;
  background: transparent;
  color: #4d427d;
  font-weight: 900;
  transition: .3s;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
}

.tab-btn.active {
  background: #955576;
  color: #fff;
  box-shadow: 0 14px 35px rgba(231, 139, 195, .35);
}

/* ===== SCROLL HINT (mobile only) ===== */
.scroll-hint {
  display: none;
}

@media (max-width: 767px) {
  .scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--pink-dark);
    background: rgba(175, 107, 137, .08);
    border-radius: 999px;
    padding: 8px 16px;
    margin-bottom: 14px;
    width: fit-content;
  }

  .scroll-hint i {
    font-size: 11px;
  }
}

/* ===== TABLE WRAP ===== */
.twrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  box-shadow: 0 8px 40px -10px rgba(38, 56, 89, .08);
  margin-bottom: 3rem;
}

.ctbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.ctbl th:first-child,
.ctbl td:first-child {
  min-width: 260px;
}

.ctbl thead th {
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 10;
}

/* Highlight the "Popular" plan column for visual hierarchy */
.ctbl th:nth-child(4),
.ctbl td:nth-child(4) {
  background: rgba(175, 107, 137, .05);
}

.ctbl thead th:nth-child(4) {
  background: rgba(175, 107, 137, .09);
}

.ctbl tbody tr:hover td:nth-child(4) {
  background: rgba(175, 107, 137, .08);
}

.ctbl tr.price-row td {
  background: rgba(52, 72, 115, .035);
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.ctbl tr.price-row td:nth-child(4) {
  background: rgba(175, 107, 137, .09);
}

.ctbl tr.price-row .tdv {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.ctbl tr.price-row .tdv.pk {
  color: var(--pink-dark);
}

.th-f {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hint);
  width: 220px;
}

.th-p {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.th-p.wrap-allowed {
  white-space: normal;
}

/* Override the global .th-p flex/space-between rule (style.css) so the plan
   name and its badge sit together instead of being pushed to opposite ends */
.ctbl .th-p {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.ctbl .th-p .badge-pill {
  flex-shrink: 0;
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: .06em;
  margin-bottom: 0;
}

.th-p .th-sub {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--hint);
  letter-spacing: .04em;
  display: block;
  margin-top: .2rem;
}

.ctbl tbody tr {
  border-bottom: 1px solid var(--border-soft);
}

.ctbl tbody tr:last-child {
  border-bottom: none;
}

.ctbl tbody tr:hover td {
  background: rgba(52, 72, 115, .02);
}

.ctbl td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
}

.td-lbl {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.td-sub2 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: var(--hint);
  margin-top: .15rem;
}

.tdv {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: center;
}

.tdv.cta-cell {
  padding-top: 1.5rem;
}

.tdv.hi {
  font-weight: 700;
  color: var(--navy);
}

.tdv.pk {
  color: var(--pink-dark);
  font-weight: 700;
}

.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.ty {
  background: rgba(91, 173, 143, .15);
}

.ty svg {
  color: #3a9970;
}

.tn {
  background: rgba(52, 72, 115, .06);
}

.tn svg {
  color: var(--hint);
}

.tick svg {
  width: 12px;
  height: 12px;
}

.sec-row td {
  background: rgba(52, 72, 115, .03);
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hint);
  padding: .6rem 1.25rem;
  border-bottom: 1px solid var(--border-soft);
}

/* ===== CTA BUTTONS IN TABLE ===== */
.pcta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  width: 100%;
  text-decoration: none;
  white-space: nowrap;
}

.btn-n {
  background: var(--navy);
  color: #fff;
}

.btn-n:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  color: #fff;
}

.btn-p {
  background: var(--pink);
  color: #fff;
}

.btn-p:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn-o {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(52, 72, 115, .2);
}

.btn-o:hover {
  background: rgba(52, 72, 115, .04);
  transform: translateY(-2px);
  color: var(--navy);
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brochure-link {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-mid);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brochure-link:hover {
  color: var(--pink-dark);
}

/* ===== TOOLTIP ICON ===== */
.credit-tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-left: 4px;
  vertical-align: middle;
  z-index: 1;
  background: none;
  border: 0;
  padding: 0;
}

.credit-tooltip-icon {
  width: 14px;
  height: 14px;
  color: var(--hint);
  transition: color .2s;
}

.credit-tooltip-wrap:hover .credit-tooltip-icon {
  color: var(--pink);
}

/* ===== INFO MODAL ===== */
.info-modal {
  border-radius: 16px;
}

.info-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eef0f3;
  padding: 18px 22px;
}

.info-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}

.info-modal-body {
  padding: 20px 22px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #475467;
}

.info-modal-body p {
  margin: 0 0 12px;
}

.info-modal-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.info-modal-body li {
  margin-bottom: 6px;
}

.info-modal-link {
  color: var(--pink);
  text-decoration: underline;
}

.services-list-link {
  color: var(--pink);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

/* ===== CTA STRIP ===== */
.cstrip {
  background: var(--navy);
  border-radius: 28px;
  padding: 48px clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.cstrip::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(175, 107, 137, .25) 0%, transparent 70%);
  pointer-events: none;
}

.cstrip-txt {
  position: relative;
  z-index: 1;
}

.cstrip-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .4rem;
}

.cstrip-title em {
  color: #D9A5BF;
  font-style: italic;
}

.cstrip-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  margin: 0;
}

.cstrip-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
  box-shadow: 0 8px 24px rgba(175, 107, 137, .35);
  text-decoration: none;
}

.cstrip-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  color: #fff;
}

.cstrip-btn svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 700px) {
  .cstrip {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== FLOATING CALL BTN ===== */
.floating-call-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-btn-link {
  position: relative;
  z-index: 3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 28px rgba(175, 107, 137, .45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.call-btn-link:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(175, 107, 137, .6);
  color: #fff !important;
}

.call-btn-link i {
  animation: phone-ring 2.5s infinite;
}

@keyframes phone-ring {
  0% {
    transform: rotate(0)
  }

  5% {
    transform: rotate(15deg)
  }

  10% {
    transform: rotate(-12deg)
  }

  15% {
    transform: rotate(10deg)
  }

  20% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(0)
  }
}

.call-ripple {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(175, 107, 137, .35);
  z-index: 1;
  animation: ripple-out 2.5s ease-out infinite;
}

.call-ripple-2 {
  animation-delay: .8s;
  background: rgba(175, 107, 137, .20);
}

@keyframes ripple-out {
  0% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    transform: scale(2.4);
    opacity: 0
  }
}

.call-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #344B73;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 30px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}

.call-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #344B73;
}

.floating-call-btn:hover .call-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .floating-call-btn {
    bottom: 22px;
    right: 20px;
  }

  .call-btn-link {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }

  .call-ripple {
    width: 52px;
    height: 52px;
  }

  .call-tooltip {
    display: none;
  }
}

/* ===== FLOATING WHATSAPP BTN ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-whatsapp .call-btn-link {
  background: var(--navy-mid);
  box-shadow: 0 8px 28px rgba(52, 72, 115, .45);
}

.floating-whatsapp .call-btn-link:hover {
  box-shadow: 0 12px 36px rgba(52, 72, 115, .6);
}

.floating-whatsapp .call-ripple {
  background: rgba(52, 72, 115, .35);
}

.floating-whatsapp .call-ripple-2 {
  background: rgba(52, 72, 115, .20);
}

.floating-whatsapp:hover .call-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 84px;
    right: 20px;
  }

  .floating-whatsapp .call-tooltip {
    display: none;
  }
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.rd1 {
  transition-delay: .1s;
}

.rd2 {
  transition-delay: .2s;
}

.rd3 {
  transition-delay: .3s;
}

/* ===== MOBILE STICKY FIRST COL ===== */
@media (max-width: 860px) {

  .ctbl th:first-child,
  .ctbl td:first-child {
    position: sticky;
    left: 0;
    background: var(--surface);
    z-index: 999;
  }

  .ctbl thead th:first-child {
    z-index: 30;
  }

  .ctbl tr.sec-row td {
    position: static;
    background: rgba(52, 72, 115, .03);
    z-index: auto;
  }

  /* Sticky column backgrounds must stay fully opaque, otherwise the columns
     scrolling underneath bleed through the semi-transparent row tints */
  .ctbl tr.price-row td:first-child {
    background: #f1f2f6;
  }

  .ctbl tbody tr:hover td:first-child {
    background: #f6f7f9;
  }
}

/* ===== MOBILE PLAN CARDS (unused — table stays table on all sizes) ===== */
.pcards {
  display: none !important;
}

/* ===== MOBILE TABLE TUNING ===== */
@media (max-width: 767px) {
  .twrap {
    margin-bottom: 2rem;
    border-radius: 16px;
  }

  .ctbl {
    min-width: 720px;
  }

  .ctbl th:first-child,
  .ctbl td:first-child {
    min-width: 190px;
  }

  .ctbl thead th {
    padding: 1.1rem .9rem 1rem;
  }

  .th-p {
    font-size: 13px;
  }

  .td-lbl {
    font-size: 12.5px;
  }

  .ctbl td {
    padding: .85rem .9rem;
  }

  .tdv {
    font-size: 12.5px;
  }

  .ctbl tr.price-row .tdv {
    font-size: 13px;
  }

  .tick {
    width: 20px;
    height: 20px;
  }

  .pcta {
    font-size: 10px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .ctbl {
    min-width: 640px;
  }

  .ctbl th:first-child,
  .ctbl td:first-child {
    min-width: 160px;
  }

  .th-p {
    font-size: 12px;
  }

  .td-lbl {
    font-size: 11.5px;
  }

  .tdv {
    font-size: 11.5px;
  }
}

/* ===== EXTRA RESPONSIVE TUNING ===== */
@media (max-width: 575px) {
  .compare-page {
    padding: 80px 0 60px;
  }

  .cmp-sub {
    max-width: 100%;
  }

  .plan-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  .reveal.in.rd2{
    text-align: center;
  }

  .tab-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
  .th-p{
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .pcard-name{
    display: flex;
    justify-content: space-between;
  }
}
