*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Hero CSS vars */
  --green:      #2b4a30;
  --green-dark: #1a3a2a;
  --green-mid:  #2d5a3d;
  --green-btn:  #2b4d35;
  --green-light:#4a7c5f;
  --white:      #ffffff;
  --dark:       #0e1410;
  --text:       rgba(255,255,255,0.76);
  /* Full site vars */
  --cream:      #f5f0e8;
  --cream-light:#faf8f4;
  --text-dark:  #1a2e1a;
  --text-grey:  #6b7a6b;
  --border:     #d8d0c0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;
  --font-serif: 'Nuosu SIL', sans-serif;
  --font-sans: 'Poppins', sans-serif; 
}
@font-face {
  font-family: 'Nuosu SIL';
  src: url('../fonts/NuosuSIL-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Nuosu SIL', sans-serif;
  height: 100%;
  font-family: var(--f);
  background-color: #fdfdfd;
  color: var(--text-dark);
  overflow-x: hidden;
  /* font-family: 'Poppins', sans-serif; */
  /* background: red !important */
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
   font-family: 'Poppins', sans-serif;
  font-size: 0.8em;
   text-transform: uppercase;
  font-weight: 600;
  position: fixed;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  max-width: 1280px;
  background: rgba(255,255,255,0.98);
  border-radius: 17px;
   box-shadow: 
  0 -5px 13px rgba(0,0,0,0.08),  /* 🔼 top */
  0 4px 13px rgba(0,0,0,0.1),    /* 🔽 bottom */
  0 10px 30px rgba(0,0,0,0.15);  /* deep */
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1px 0 1px;
  height: 50px;
  z-index: 1000;
  transition: box-shadow 0.3s, top 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 6px 40px rgba(0,0,0,0.18);
  top: 8px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.3in;
  
}
.logo-video{
  width: 80px;
  height: auto;

  display: block;
  object-fit: contain;
}

/* .logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: 2px;
} */

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  display: inline-block; /* important for scale */
  color: #2e3f2f;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.nav-links a:hover {
  color: var(--green-btn);          /* color change */
  transform: scale(1.12);  /* boom effect */
}

.nav-links a.active {
  color: #013813;              /* dark green */
  transform: scale(1.12);      /* same as hover */
}
.mobile-book {
  display: none;
}
.btn-book {
  padding: 7px 15px;
  background: var(--green-btn);
  color: var(--white);
  font-family:'Poppins', sans-serif;
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--green-btn);
  cursor: pointer;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.25s ease;
  margin-right: 0.3in;
}
/* HOVER */
.btn-book:hover {
  background:transparent ; 
  color: #000;
  border-color: var(--green-dark);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-dark);
  transition: all 0.3s;
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 180px;

  display: flex;
  flex-direction: column;
  overflow: hidden;

  border-radius: 12px 0 0 12px;
  z-index: 9999;

  opacity: 1;            
  pointer-events: auto;   
}

/* show after hero */
.floating-contact.show {
  opacity: 1;
  pointer-events: auto;
}

/* buttons */
.floating-contact a {
  width: 60px;
  height: 60px;
  background: #0f3b22;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

/* make both icons same size */
.floating-contact a i {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* reduce whatsapp size */
.fa-whatsapp {
  transform: scale(1.2);
}

/* divider */
.floating-contact a + a {
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* membership HERO */

.member-hero {
  text-align: center;
  padding: 150px 20px 40px;

}

.section-label {
  font-family: 'Poppins', sans-serif;
  /* font-family: 'Nuosu SIL', sans-serif; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #102E16;
  margin-bottom: 20px;
}

.section-label .line {
  width: 8px;
  height: 22px;
  background: #6e7f72;
  display: inline-block;
}

.member-hero h1 {
     font-family: 'Nuosu SIL', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.3;
  text-align: center;
}

.member-hero p {
 font-family: 'Nuosu SIL', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.75;
  color: #6b7a6b;
}

/* member  HERO */
.member-hero {
  text-align: center;
  padding: 150px 20px 40px;
}

/* =============================
   PREMIUM PLAN CARD UPGRADE
============================= */

.plans-section {
  padding: 36px 32px 34px;
  /* background: #fbfaf7; */
  font-family: 'Poppins', sans-serif;
}

.plans-head {
  text-align: center;
  margin-bottom: 34px;
}

.plans-head h2 {
  font-family: 'Nuosu SIL', sans-serif;
  font-size: 50px;
  line-height: 1;
  margin: 0 0 10px;
  color: #123923;
  font-weight: 700;
}

.plans-head p {
  font-size: 18px;
  margin: 0;
  color: #52615a;
}

.plans-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  min-height: 650px;
  height:100%;
  /* border-radius: 18px; */
   padding: 24px 26px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #123923;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.plan-card.light {
  /* background: #fffdfa; */
  border: 2px solid rgba(24, 55, 38, 0.45);
}

.plan-card.gold {
  background: radial-gradient(circle at top, #0f4a2b 0%, #07371d 42%, #062716 100%);
  color: #fff;
  border: 2px solid rgba(24, 55, 38, 0.45);
  min-height: 670px;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.popular-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #f0c565;;
  /* border: 2px solid rgba(24, 55, 38, 0.45); */
  color: #123923;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .6px;
  padding: 8px 34px;
  text-align: center;
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
}

.plan-top {
  text-align: center;
  min-height: 145px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18,57,35,0.22);
   display: flex;
  flex-direction: column;
  align-items: center;   /* 🔥 center */
  justify-content: center;
  text-align: center;

}

.gold .plan-top {
  border-color: rgba(255,255,255,0.25);
}

.plan-icon {
   width: 46px;
  height: 46px;
  margin-bottom: 8px;
  object-fit: contain;
  opacity: .9;
}
.plan-card.light .plan-icon {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(20%) sepia(30%) saturate(500%) hue-rotate(90deg);
}
.gold .plan-icon {
  filter: brightness(0) saturate(100%) invert(74%) sepia(70%) saturate(357%) hue-rotate(359deg);
}

.plan-top h3 {
  font-family: 'Nuosu SIL', sans-serif;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 8px;
  font-weight: 800;
}

.gold .plan-top h3 {
  color: #f0c565;
  font-size: 40px;
}

.plan-top p {
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
}

/* GOLD CARD TOP DESIGN FIX */
.plan-card.gold .popular-tag {
  top: -12px;
  font-size: 12px;
  line-height: 1;
  padding: 7px 42px;
  letter-spacing: .4px;
}

.plan-card.gold .plan-top {
   display: flex;
  flex-direction: column;
  align-items: center;  
  justify-content: center;
  text-align: center;
}

.plan-card.gold .plan-icon {
  width: 52px;
  height: 52px;
 display: block;
  margin: 0 auto 10px;
}

.plan-card.gold .plan-top h3 {
  font-size: 31px;
  margin-bottom: 8px;
  line-height: 1;
}

.plan-card.gold .plan-top p {
  font-size: 15px;
  line-height: 1.2;
}

.plan-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
   border-bottom: 1px solid rgba(18,57,35,0.16);
  
  font-weight: 600;
  min-height: 58px;
  padding: 14px 20px;
  font-size: 15px;
}

.gold .plan-meta {
  border-color: rgba(255,255,255,0.22);
}

.badge {
  background: #073718;
  color: #fff;
  min-width: 82px;
  height: 38px;
  font-size: 14px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.15);
}

.gold-badge {
  background: #ffffff;
  color: #123923;
}

.price {
  font-family: 'Nuosu SIL', sans-serif;
  font-size: 40px;
  text-align: center;
  line-height: 1;
  margin: 22px 0 18px;
  font-weight: 800;
  min-height: 60px;
}

.gold .price {
  font-size: 40px;
}

.saving-box {
  text-align: center;
  background: #f0efeb;
  border-radius: 9px;
    line-height: 1.35;
   min-height: 60px;
  padding: 11px 12px;
  font-size: 15px;
  margin-bottom: 22px;
}

.gold-save {
  background: rgba(255,255,255,0.12);
  color: #ffffff;;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  min-height: 180px;
}

.plan-card li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #123923;
  font-weight: 800;
}

.gold li::before {
  color: #ffffff;
}

.plan-note {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  min-height: 62px;
}

.plan-note span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0eadf;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gold-note span {
  background: transparent;
  border: 2px solid #f0c565;
  color: #f0c565;
}

.plan-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;
}

.plan-btn {
  height: 48px;
  margin-top: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #0b4b2c, #063519);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 7px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


/* HOVER EFFECT */
.plan-btn:hover {
  background: #ffffff;
  color: #073718;
  border: 1px solid #073718;
  transform: translateY(-2px);  /* 🔥 lift */
  box-shadow: 0 8px 18px rgba(0,0,0,0.15); /* 🔥 shadow */
}

.gold-btn {
  background: linear-gradient(180deg, #ffd978, #e9b650);
  color: #123923;
 transition: all 0.3s ease;
}

.gold-btn:hover {
  background: #fff;
  color: #073718;
  border: 1px solid #f0c565;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.plans-benefits {
  max-width: 1400px;
  margin: 30px auto 0;
  background: #ffffff !important;
  /* border: 1px solid rgba(18,57,35,0.10); */
  border-radius: 17px;
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* box-shadow: 0 7px 20px rgba(0,0,0,0.05); */
}

.plans-benefits div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-content: center;
  column-gap: 12px;
  padding: 18px 26px;
  position: relative;
}

.plans-benefits div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  /* background: rgba(18,57,35,0.14); */
}

.plans-benefits span {
  grid-row: span 2;
  font-size: 28px;
}

.plans-benefits b {
  font-size: 16px;
  color: #123923;
}

.plans-benefits small {
  font-size: 12px;
  color: #333;
}

.plan-card,
.plan-card *,
.benefit-strip,
.benefit-item{
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.plan-card{
  transform: translateZ(0);
  will-change: transform;
}

/* hover shake reduce */
.plan-card:hover{
  transform: translateY(-6px);
}

/* button hover la layout change panna koodathu */
.plan-card .plan-btn:hover,
.plan-card button:hover{
  transform: none;
}

/* ===== CENTER CARDS HIGHLIGHT (ADD THIS) ===== */

.plan-card.featured {
  background: #082f18;
  color: #fff;
  border-color: #082f18;

  transform: scale(1.05);      /* 🔥 konjam perusa */
  margin-top: -15px;           /* 🔥 mela lift */
  z-index: 2;                  /* overlap fix */
  box-shadow: 0 12px 30px rgba(0,0,0,0.25); /* premium shadow */
}

/* grid alignment correct */
.plans-grid {
  align-items: center;
}

.plans-benefits {
  max-width: 1400px;
  margin: 30px auto 0;

  background: rgba(255, 255, 255, 0.6);   /* 🔥 very light */
  border-radius: 18px;

  border: 1px solid rgba(0, 0, 0, 0.04);  /* 🔥 super soft border */
  box-shadow: 0 4px 12px rgba(0,0,0,0.04); /* 🔥 very light shadow */

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  backdrop-filter: blur(4px); /* 🔥 glass feel (optional) */
}

.plans-benefits div {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  padding: 16px 24px;
  position: relative;
}

.plans-benefits div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24%;
  height: 52%;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.plans-benefits i {
  grid-row: 1 / 3;
  grid-column: 1;
  font-size: 22px;
  color: #123923;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans-benefits b {
  grid-column: 2;
  grid-row: 1;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: #123923;
}

.plans-benefits small {
  grid-column: 2;
  grid-row: 2;
  display: block;
  font-size: 12px;
  line-height: 1.1;
  color: #333;
  margin: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

/* BOX — no hover effect */
.benefit-card {
  background: #fdfdfd;
  border: 1.5px solid rgba(24, 55, 38, 0.7);
  min-height: 305px;
  padding: 28px 18px 24px;
  text-align: center;
}

/* ICON CIRCLE */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #033b16;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: 'Nuosu SIL', sans-serif; 
}

/* ICON IMAGE */
.icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.benefit-text{
  font-family: 'Poppins', sans-serif;
  margin-top: 10px;
  font-size: 12px;
  text-align: justify;
  letter-spacing: 0.1px;
}

/* 🔥 MAIN EFFECT — BOX hover → ICON only change */
.benefit-card:hover .icon-box {
  transform: scale(1.2);
  background: #0a5c2a;
}

/* optional extra zoom */
.benefit-card:hover .icon {
  transform: scale(1.1);
}



/* SECTION */
.membership-steps {
  width: 100%;
  background: #ffffff;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.step-box {
  background: #102E16;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #f4f1ea;
  text-align: center;
  position: relative;
  padding: 2px;
}

.step-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
}

.step-box h2 {
  
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 22px;
}

.step-box p {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  max-width: 320px;
}


.newsletter-section {
  width: 100%;
  padding: 80px 44px 150px;
  /* background: #f3f3f3; */
  border-bottom: 2px solid #0b3d1d;
  
}

.newsletter-row {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
}

.newsletter-title {
  font-family:'Nuosu SIL', sans-serif; 
  font-size: 26px;
  font-weight: 500;
  color: #173923;
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  flex: 1;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 2px solid #8ea08e;
  border-radius: 12px;
  outline: none;
  background: transparent;
  padding: 0 18px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #18361f;
}

.newsletter-form input::placeholder {
  color: #a7afa7;
}

.newsletter-form button {
  min-width: 120px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #063d17;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  padding: 0 22px;
}


.top-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 105px;
}

.top-btn {
  min-width: 200px;
  height: 42px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* font-family: Arial, sans-serif; */
  transition: 0.3s ease;
}

.top-btn.filled {
  background: #102E16;
  color: #ffffff;
  border: 1px solid #8c998c;
  box-shadow: 0 2px 6px rgba(120, 116, 116, 0.15);
}

.top-btn.outline {
  background: transparent;
  color: #102E16;;
  border: 1px solid #8c998c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.top-btn.filled:hover {
  
   background: var(--white);
  color: #102E16;
  border:1px solid  #102E16;
}

/* outline button hover (white style) */
.top-btn.outline:hover {
  background: #102E16;
  color: #fff;
  border-color: #fff;
}

/* .cardin{
  margin-bottom:100px;
} */


/* ===== FOOTER ===== */
.site-footer {
  background: #102E16;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* Grid */
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr 0.95fr 1.15fr;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand,
.footer-col {
  min-height: 380px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  /*box-sizing: border-box;*/
}

.footer-col:last-child {
  border-right: none;
}

/* Brand */
/*.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
*/

.footer-brand-top {
  padding: 28px;
}


.footer-logo {
  font-size: 60px;
  font-family: 'Nuosu SIL', sans-serif;
  /* margin: 0; */
  
  text-align: center;
  /* align-items: center; */
}


.footer-logo-sub {
  font-size: 20px;
  letter-spacing: 10px;
  margin-left: 15px;
  text-align: center;
  font-family: 'Nuosu SIL', sans-serif;
  /* align-items: center; */
  /* margin-top: 50px; */
}

/*.footer-col h3 {
  font-size: 18px;
  margin: 0 0 18px;
  color: #ffffff;
  font-weight: 400;
  font-family: 'Nuosu SIL', sans-serif;
  letter-spacing: 0.5px;
}*/

.footer-desc {
font-size: 17px;
  color:#ffff;
  /* max-width: 265px; */
  text-align: justify;
  margin-top: 20px;
  align-items: center;
}

/* Social area */
.footer-social-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px;
}

.footer-social-title {
  margin-bottom: 16px;
  color: #ffffff;
  font-family: 'Nuosu SIL', sans-serif;
  text-align:center;
  margin-bottom: 35px;
}

.footer-socials {
 display: flex;
  gap: 30px;
  margin-left: 40px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* 🔥 important */
  font-size: 18px;
}

.footer-socials a:hover {
  background: #ffffff;
  color: #173923;
}

/* Columns */
.footer-col {
    padding: 28px;
  align-items: center;
}

.footer-col h3 {
  font-family: 'Nuosu SIL', sans-serif;
  margin-bottom: 18px;
   margin-left: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
   margin-bottom: 10px;
   font-family: 'Poppins', sans-serif;
   margin-left: 20px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Contact */
.footer-contact ul {
  margin-top: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Poppins', sans-serif;
  
}

.footer-contact i {
  color: #ffffff;
  font-size: 13px;
  margin-top: 4px;
  min-width: 14px;
}

/* Bottom */
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  transition: color 0.25s ease;
}
.smdate{
  font-size: 15px;
}

.footer-bottom a:hover {
  color: #ffffff;
}


/* SINGLE PAGE MEMBERSHIP FIT */
.member-hero{
  padding: 90px 20px 18px;
}

.member-hero h1{
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.member-hero p{
  font-size: 14px;
  margin-bottom: 18px;
}

.plans-section{
  padding: 18px 28px 22px;
}

.plans-grid{
  max-width: 1380px;
  gap: 14px;
}

.plan-card{
  min-height: 520px;
  padding: 16px 18px 14px;
}

.plan-card.gold{
  min-height: 540px;
  transform: translateY(-4px);
}

.plan-top{
  min-height: 100px;
  padding-bottom: 10px;
}

.plan-top h3,
.plan-card.gold .plan-top h3{
  font-size: 26px;
}

.plan-top p{
  font-size: 13px;
}

.plan-icon,
.plan-card.gold .plan-icon{
  width: 38px;
  height: 38px;
}

.plan-meta{
  min-height: 44px;
  padding: 9px 14px;
  font-size: 13px;
}

.badge{
  height: 30px;
  font-size: 12px;
}

.price,
.gold .price{
  font-size: 34px;
  min-height: 44px;
  margin: 14px 0 12px;
}

.saving-box{
  min-height: 48px;
  padding: 8px 10px;
  font-size: 13px;
  margin-bottom: 14px;
}

.plan-card ul{
  min-height: 145px;
  margin-bottom: 12px;
}

.plan-card li{
  font-size: 12.5px;
  line-height: 1.25;
  margin-bottom: 8px;
  padding-left: 24px;
}

.plan-note{
  min-height: 46px;
  padding-bottom: 10px;
}

.plan-note span{
  width: 34px;
  height: 34px;
}

.plan-note p{
  font-size: 11px;
}

.plan-btn{
  height: 42px;
  font-size: 13px;
}

.plans-benefits{
  margin-top: 16px;
  min-height: 62px;
}

.newsletter-section{
  padding: 45px 34px 70px;
}