/* 
 * GoodPsyche Stylesheet
 * Elegant Green & Warm Terracotta Color Palette
 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --g: #3d7a52;       /* Primary Elegant Green */
  --g2: #2b5939;      /* Darker Forest Green */
  --g3: #e5f0e8;      /* Soft Light Sage Green */
  --g4: #c8dece;      /* Medium Sage Green Border */
  --w: #c8784a;       /* Accent Warm Terracotta */
  --w2: #fdf0e8;      /* Very Light Peach/Terracotta */
  --gold: #c9a227;    /* Gold highlight */
  --gold2: #fffbe6;   /* Light gold background */
  --cr: #faf8f4;      /* Cream background */
  --wh: #fff;
  --ink: #181818;     /* Dark Charcoal Text */
  --ink2: #444444;    /* Slate Gray Text */
  --ink3: #777777;    /* Muted Gray Text */
  
  /* Borders and Border Radii */
  --bdr: rgba(0, 0, 0, .08);
  --bdr2: rgba(0, 0, 0, .13);
  --r: 14px;
  --r2: 22px;
  
  /* Transition variables */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cr);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
}

/* --- NAVIGATION --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bdr);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 4rem);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media(max-width: 480px) {
  .nav {
    padding: 0 0.75rem;
    height: auto;
    min-height: 60px;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nph {
  font-size: .83rem;
  font-weight: 600;
  color: var(--ink2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid var(--bdr2);
  border-radius: 50px;
  padding: .45rem .95rem;
  transition: var(--transition-smooth);
}

.nph:hover {
  background: var(--g);
  color: #fff;
  border-color: var(--g);
  transform: translateY(-1px);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
  letter-spacing: .01em;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media(max-width: 480px) {
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    white-space: normal;
  }
  
  .btn-xl {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

.btn:active {
  transform: scale(.97);
}

.btn-g {
  background: var(--g);
  color: #fff;
  box-shadow: 0 4px 18px rgba(61, 122, 82, .2);
}

.btn-g:hover {
  background: var(--g2);
  box-shadow: 0 8px 28px rgba(61, 122, 82, .35);
  transform: translateY(-2px);
}

.btn-w {
  background: var(--w);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200, 120, 74, .2);
}

.btn-w:hover {
  background: #b3643a;
  box-shadow: 0 8px 28px rgba(200, 120, 74, .35);
  transform: translateY(-2px);
}

.btn-out {
  background: transparent;
  color: var(--g);
  border: 2px solid var(--g);
}

.btn-out:hover {
  background: var(--g);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(61, 122, 82, .15);
}

.btn-wh {
  background: #wh;
  background-color: #fff;
  color: var(--g2);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.btn-wh:hover {
  background: var(--cr);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-gh {
  background: transparent;
  color: rgba(255, 255, 255, .9);
  border: 2px solid rgba(255, 255, 255, .4);
}

.btn-gh:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .25);
}

.btn-wa:hover {
  background: #1da855;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .38);
  transform: translateY(-2px);
}

.btn-lg {
  padding: .95rem 2.2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.1rem 2.6rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  border-radius: 50px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media(max-width: 480px) {
  .hero {
    display: flex;
    flex-direction: column;
  }
}

.hero-left {
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  background: var(--cr);
  width: 100%;
  box-sizing: border-box;
}

@media(max-width: 480px) {
  .hero-left {
    padding: 1.5rem 1rem;
  }
}

.hero-right {
  position: relative;
  overflow: hidden;
}

@media(max-width:900px) {
  .hero-right {
    height: 280px;
  }
}

.h-img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 6s ease;
  display: block;
}

.hero:hover .h-img {
  transform: scale(1.03);
}

.h-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cr) 0%, rgba(250, 248, 244, .1) 30%, transparent 100%);
}

@media(max-width:900px) {
  .h-overlay {
    background: linear-gradient(to top, var(--cr) 0%, transparent 60%);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold2);
  color: #7a5500;
  border: 1px solid #f0d06a;
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: .8rem;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.05);
}

.badge .dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .55;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: .75rem;
  font-weight: 600;
}

.hero h1 em {
  font-style: italic;
  color: var(--g);
  font-weight: 600;
}

.hero-sub {
  font-size: .95rem;
  color: var(--ink2);
  max-width: 490px;
  margin-bottom: 1.1rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.1rem;
  max-width: 100%;
}

@media(max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
}

.hero-wa-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  max-width: 100%;
}

@media(max-width: 480px) {
  .hero-wa-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-wa-row .btn {
    width: 100%;
  }
}

.trust-box {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: .8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.avs {
  display: flex;
}

.avs span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  font-size: .6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -9px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.avs span:first-child {
  margin-left: 0;
}

.stars-sm {
  color: #f5b800;
  font-size: .9rem;
}

/* --- URGENCY STRIP --- */
.urg {
  background: linear-gradient(90deg, var(--g2), #1e3e2a, var(--g2));
  padding: .2rem 1rem;
  text-align: center;
  animation: shimmer 4s linear infinite;
  background-size: 200% 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.2;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media(max-width: 480px) {
  .urg {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }
}

@keyframes shimmer {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

.urg-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
}

@media(max-width: 480px) {
  .urg-inner {
    gap: 0.35rem;
    flex-direction: column;
    font-size: 0.7rem;
  }
}

.urg span {
  color: rgba(255, 255, 255, .9);
  font-size: .74rem;
  font-weight: 500;
}

.urg strong {
  color: #fff;
  font-weight: 700;
}

.urg .urg-btn {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  padding: .15rem .6rem;
  border-radius: 50px;
  font-size: .71rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.urg .urg-btn:hover {
  background: rgba(255, 255, 255, .25);
  transform: scale(1.03);
}

/* --- PROOF BAR --- */
.pbar {
  background: var(--g2);
  padding: 1.2rem clamp(1rem, 4vw, 4rem);
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media(max-width: 480px) {
  .pbar {
    padding: 1rem 0.75rem;
  }
}

.pbar-i {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media(max-width: 480px) {
  .pbar-i {
    gap: 0.5rem;
    justify-content: center;
  }
}

.pstat {
  text-align: center;
  color: #fff;
  min-width: 0;
}

@media(max-width: 480px) {
  .pstat {
    min-width: auto;
    flex: 0 1 auto;
  }
}

.pnum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

@media(max-width: 480px) {
  .pnum {
    font-size: 1.5rem;
  }
}

.plbl {
  font-size: .73rem;
  opacity: .68;
  margin-top: .15rem;
  letter-spacing: 0.02em;
}

@media(max-width: 480px) {
  .plbl {
    font-size: 0.6rem;
  }
}

.pdiv {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .18);
}

@media(max-width:600px) {
  .pdiv {
    display: none;
  }
}

/* --- SECTIONS --- */
.sec {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 4rem);
}

@media(max-width: 480px) {
  .sec {
    padding: 2rem 1rem;
  }
}

.si {
  max-width: 1200px;
  margin: 0 auto;
}

.slbl {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: .55rem;
}

.sh {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: .8rem;
  font-weight: 600;
  color: var(--ink);
}

.ssub {
  color: var(--ink2);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.75;
}

.cen {
  text-align: center;
}

.cen .ssub {
  margin: 0 auto;
}

/* --- MID CTA BANNER --- */
.mid-cta {
  background: linear-gradient(135deg, var(--g) 0%, var(--g2) 100%);
  padding: 2.75rem clamp(1.5rem, 4vw, 4rem);
  text-align: center;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.15);
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media(max-width: 480px) {
  .mid-cta {
    padding: 1.75rem 1rem;
  }
}

.mid-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: .6rem;
  font-weight: 600;
}

.mid-cta p {
  color: rgba(255, 255, 255, .75);
  font-size: .97rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.mid-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  flex-wrap: wrap;
  max-width: 100%;
}

@media(max-width: 480px) {
  .mid-cta-btns {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .mid-cta-btns .btn {
    width: 100%;
  }
}

/* --- ABOUT SECTION --- */
.about-sec {
  background: var(--g3);
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media(max-width:960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.sandeep-wrap {
  position: relative;
}

.sandeep-frame {
  border-radius: var(--r2);
  overflow: hidden;
  position: relative;
  height: 560px;
  box-shadow: 0 24px 64px rgba(43, 89, 57, .18);
  border: 1px solid rgba(61, 122, 82, 0.15);
}

@media(max-width:960px) {
  .sandeep-frame {
    height: 380px;
  }
}

.sandeep-img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 4s ease;
  display: block;
}

.sandeep-wrap:hover .sandeep-img {
  transform: scale(1.03);
}

.sandeep-cta-card {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--r);
  padding: 1.1rem 1.5rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
  text-align: center;
  white-space: nowrap;
  border-top: 3px solid var(--g);
  z-index: 10;
}

.scard-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: .5rem;
}

.scard-btns {
  display: flex;
  gap: .6rem;
}

.award-float {
  position: absolute;
  top: 1.5rem;
  right: -18px;
  background: #fff;
  border-radius: var(--r);
  padding: .85rem 1rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
  text-align: center;
  min-width: 130px;
  z-index: 10;
  border: 1px solid var(--bdr);
}

@media(max-width:960px) {
  .award-float {
    right: 1rem;
    top: 1rem;
  }
}

.af-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.af-txt {
  font-size: .72rem;
  font-weight: 700;
  color: #7a5500;
  margin-top: .3rem;
  line-height: 1.3;
}

.about-content .sh {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.creds {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: 1.5rem;
  list-style: none;
}

.cred {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .93rem;
  color: var(--ink2);
}

.ck {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(61, 122, 82, 0.2);
}

.ck svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mpills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.5rem;
  max-width: 100%;
}

@media(max-width: 480px) {
  .mpills {
    gap: 0.4rem;
  }
}

.mpill {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 50px;
  padding: .38rem .95rem;
  font-size: .76rem;
  font-weight: 600;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: .35rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

/* --- ISSUES / TREATMENTS GRID --- */
.ig {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

@media(max-width:850px) {
  .ig {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media(max-width:550px) {
  .ig {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.icard {
  border-radius: var(--r2);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 200px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.icard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 40, 20, 0.15);
}

.icard img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.icard:hover img {
  transform: scale(1.08);
}

.iov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 40, 20, .85) 0%, rgba(15, 40, 20, .15) 55%, transparent 100%);
  transition: var(--transition-smooth);
}

.icard:hover .iov {
  background: linear-gradient(to top, rgba(15, 40, 20, .92) 0%, rgba(15, 40, 20, .3) 65%, transparent 100%);
}

.ilbl {
  position: absolute;
  bottom: 1.1rem;
  left: 1.2rem;
  right: 1.2rem;
}

.ilbl h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.ilbl span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .16);
  padding: .25rem .7rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  margin-top: 0.2rem;
}

/* --- SELF-ASSESSMENT BANNER --- */
.selftest {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r2);
  padding: 2.25rem 2rem;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

@media(max-width:680px) {
  .selftest {
    grid-template-columns: 1fr;
  }
}

.st-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.st-h {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .3rem;
  color: var(--ink);
}

.st-p {
  font-size: .87rem;
  color: var(--ink2);
}

/* --- WHY SECTION --- */
.why-sec {
  background: var(--w2);
}

.wgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

@media(max-width: 480px) {
  .wgrid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.wcard {
  background: #fff;
  border-radius: var(--r2);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--bdr);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.wcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g), var(--w));
  opacity: 0;
  transition: opacity .25s ease;
}

.wcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .07);
}

.wcard:hover::before {
  opacity: 1;
}

.wic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--g3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(61, 122, 82, 0.05);
}

.wcard h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .45rem;
  color: var(--ink);
}

.wcard p {
  font-size: .88rem;
  color: var(--ink2);
  line-height: 1.65;
}

/* --- TESTIMONIALS --- */
.rev-sec {
  background: var(--wh);
}

.rgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

@media(max-width: 480px) {
  .rgrid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.rcard {
  background: var(--cr);
  border-radius: var(--r2);
  padding: 1.75rem;
  border: 1px solid var(--bdr);
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.rcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .06);
  background: #fff;
}

.rq {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--g3);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  user-select: none;
}

.rst {
  color: #f5b800;
  font-size: .95rem;
  letter-spacing: .1em;
  margin-bottom: .8rem;
}

.rtxt {
  font-size: .92rem;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.rper {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.rav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.rname {
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
}

.rtag {
  font-size: .73rem;
  color: var(--ink3);
}

/* --- HOW IT WORKS (STEPS) --- */
.how-sec {
  background: var(--g2);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.how-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.how-sec .slbl {
  color: rgba(255, 255, 255, .55);
}

.how-sec .sh {
  color: #fff;
}

.how-sec .ssub {
  color: rgba(255, 255, 255, .68);
}

.sgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

@media(max-width: 480px) {
  .sgrid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.scard {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r2);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.scard:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.22);
}

.snum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .16);
  line-height: 1;
  margin-bottom: .3rem;
  transition: var(--transition-smooth);
}

.scard:hover .snum {
  color: rgba(255,255,255,0.28);
}

.sic {
  font-size: 2rem;
  margin-bottom: .7rem;
}

.scard h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .45rem;
  color: #fff;
}

.scard p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .63);
  line-height: 1.65;
}

/* --- MEDIA / CREDIBILITY SECTION --- */
.med-sec {
  background: var(--cr);
}

.mgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media(max-width:760px) {
  .mgrid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media(max-width:480px) {
  .mgrid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.mcard {
  background: #fff;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--bdr);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.mcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .08);
}

.mcard img {
  width: 100%;
  max-width: 100%;
  height: 195px;
  object-fit: cover;
  object-position: top;
  transition: transform 2s ease;
  display: block;
}

.mcard:hover img {
  transform: scale(1.02);
}

.mbody {
  padding: 1.3rem;
}

.mvenue {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: .35rem;
}

.mtit {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: .45rem;
}

.mdesc {
  font-size: .82rem;
  color: var(--ink3);
  line-height: 1.6;
}

/* --- BOOK FORM SECTION --- */
.book-sec {
  background: linear-gradient(135deg, var(--w2) 0%, var(--g3) 100%);
}

.bgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

@media(max-width:900px) {
  .bgrid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.bperks {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1.75rem;
}

.bperk {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .92rem;
  color: var(--ink2);
}

.bpi {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 11px;
  background: var(--g3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1px solid rgba(61, 122, 82, 0.05);
}

.bpt strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .1rem;
  font-size: .91rem;
}

.bpt span {
  font-size: .82rem;
  color: var(--ink3);
}

.cpills {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.75rem;
  max-width: 100%;
}

@media(max-width: 480px) {
  .cpills {
    gap: 0.5rem;
  }
}

.cpill {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 50px;
  padding: .55rem 1.1rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--ink2);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.cpill:hover {
  background: var(--g);
  color: #fff;
  border-color: var(--g);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61,122,82,0.15);
}

.bform {
  background: #fff;
  border-radius: var(--r2);
  padding: 2.25rem;
  box-shadow: 0 20px 56px rgba(0, 0, 0, .08);
  border: 1px solid var(--bdr);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

@media(max-width: 480px) {
  .bform {
    padding: 1.5rem 1rem;
  }
}

.bform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--g), var(--w));
}

.fh h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .25rem;
}

.fh p {
  font-size: .83rem;
  color: var(--ink3);
  margin-bottom: 1.25rem;
}

.fg {
  margin-bottom: .95rem;
}

.fg label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: .38rem;
}

.fg input,
.fg select {
  width: 100%;
  max-width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--bdr2);
  border-radius: var(--r);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  color: var(--ink);
  background: var(--cr);
  outline: none;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

@media(max-width: 480px) {
  .fg input,
  .fg select {
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
  }
}

.fg input:focus,
.fg select:focus {
  border-color: var(--g);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61, 122, 82, 0.12);
}

.fgg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

@media(max-width:500px) {
  .fgg {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

.fnote {
  text-align: center;
  font-size: .74rem;
  color: var(--ink3);
  margin-top: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}

/* Success form state */
.fsuc {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.fsuc .schk {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.fsuc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  color: var(--g2);
  margin-bottom: .45rem;
  font-weight: 600;
}

.fsuc p {
  color: var(--ink2);
  font-size: .92rem;
  line-height: 1.65;
}

/* --- FAQ SECTION --- */
.faq-sec {
  background: #fff;
}

.flist {
  max-width: 760px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.fi {
  background: var(--cr);
  border-radius: var(--r);
  border: 1px solid var(--bdr);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.fi:hover {
  border-color: var(--g4);
}

.fb {
  width: 100%;
  background: none;
  border: none;
  padding: 1.15rem 1.4rem;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .2s;
  outline: none;
}

.fb:hover {
  color: var(--g);
}

.fic {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--g3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .3s;
}

.fi.open .fic {
  background: var(--g);
  transform: rotate(45deg);
}

.fic svg {
  width: 12px;
  height: 12px;
  stroke: var(--g);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke .2s;
}

.fi.open .fic svg {
  stroke: #fff;
}

.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1), padding .35s;
  font-size: .91rem;
  color: var(--ink2);
  padding: 0 1.4rem;
  line-height: 1.78;
}

.fi.open .fa {
  max-height: 250px;
  padding: 0 1.4rem 1.2rem;
}

/* --- BOTTOM CTA STRIP --- */
.bcstrip {
  background: var(--w);
  padding: 2rem clamp(1rem, 4vw, 4rem);
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media(max-width: 480px) {
  .bcstrip {
    padding: 1.5rem 1rem;
  }
}

.bcstrip-i {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}

@media(max-width: 480px) {
  .bcstrip-i {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.bcstrip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
}

.bcstrip p {
  color: rgba(255, 255, 255, .85);
  font-size: .88rem;
}

.bcstrip-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  max-width: 100%;
}

@media(max-width: 480px) {
  .bcstrip-btns {
    width: 100%;
    flex-direction: column;
  }
  
  .bcstrip-btns .btn {
    width: 100%;
  }
}

/* --- FINAL CTA SECTION --- */
.fcta {
  background: var(--g2);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

@media(max-width: 480px) {
  .fcta {
    padding: 2.5rem 1rem;
  }
}

.fcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .04) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .04) 0%, transparent 40%);
  pointer-events: none;
}

.fcta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: .75rem;
  font-weight: 600;
  position: relative;
}

.fcta p {
  color: rgba(255, 255, 255, .72);
  font-size: 1.05rem;
  max-width: 530px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  position: relative;
}

.fcta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  flex-wrap: wrap;
  position: relative;
  max-width: 100%;
}

@media(max-width: 480px) {
  .fcta-btns {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .fcta-btns .btn {
    width: 90%;
    max-width: 100%;
  }
}

.fcta-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  position: relative;
}

@media(max-width: 480px) {
  .fcta-tags {
    gap: 0.75rem;
    margin-top: 1.25rem;
  }
}

.ftag {
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* --- FOOTER --- */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .42);
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media(max-width: 480px) {
  footer {
    padding: 1.25rem 0.75rem;
    font-size: 0.7rem;
    flex-direction: column;
    text-align: center;
  }
}

footer a {
  color: rgba(255, 255, 255, .42);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.wafloat {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 26px rgba(37, 211, 102, .45);
  z-index: 400;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

@media(max-width: 480px) {
  .wafloat {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }
}

.wafloat:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 38px rgba(37, 211, 102, .55);
}

.wafloat svg {
  width: 30px;
  height: 30px;
}

.wabadge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4444;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: .58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* --- REVEAL ANIMATIONS (INTERSECTION OBSERVER) --- */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s cubic-bezier(0.4, 0, 0.2, 1), transform .65s cubic-bezier(0.4, 0, 0.2, 1);
}

.rvl {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .65s cubic-bezier(0.4, 0, 0.2, 1), transform .65s cubic-bezier(0.4, 0, 0.2, 1);
}

.rvr {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .65s cubic-bezier(0.4, 0, 0.2, 1), transform .65s cubic-bezier(0.4, 0, 0.2, 1);
}

.rv.on,
.rvl.on,
.rvr.on {
  opacity: 1;
  transform: translate(0);
}

.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .29s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .51s; }
.d6 { transition-delay: .62s; }

/* --- DIRECT BOOKING BOX & TIMELINE --- */
.direct-booking-box {
  margin-bottom: 1.75rem;
}
.next-steps-timeline {
  background: var(--cr);
  border-radius: var(--r);
  padding: 1.25rem;
  border: 1px solid var(--bdr);
}
.timeline-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.tl-bullet {
  background: var(--g3);
  color: var(--g);
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.tl-content strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 700;
}
.tl-content span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink3);
  line-height: 1.4;
}
