/* ===== Pricing Hero (50vh) ===== */
.pricing-hero-section{
  position: relative;
  height: 50vh;
  min-height: 320px;
  width: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  background-image: url('images/hero-section3.jpg'); /* apni pricing hero image yahan set karein */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.pricing-hero-section-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.65));
}

.pricing-hero-section-content{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
  max-width: 1000px;
  animation: pricing-hero-section-fade .8s ease-out both;
}

.pricing-hero-section-eyebrow{
  margin: 0 0 .4rem;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.pricing-hero-section-title{
  margin: 0 0 .55rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.pricing-hero-section-subtitle{
  margin: 0 auto 1.15rem;
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  max-width: 70ch;
  opacity: .95;
}

/* Actions */
.pricing-hero-section-actions{
  display: inline-flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pricing-hero-section-cta,
.pricing-hero-section-ghost{
  display: inline-block;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  backdrop-filter: blur(2px);
}

/* Primary CTA: white on dark */
.pricing-hero-section-cta{
  background: #ffffff;
  color: #0b0b0b;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}
.pricing-hero-section-cta:hover{ transform: translateY(-2px); }

/* Ghost CTA */
.pricing-hero-section-ghost{
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.pricing-hero-section-ghost:hover{
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* entrance animation */
@keyframes pricing-hero-section-fade{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* small screens */
@media (max-width: 480px){
  .pricing-hero-section{ min-height: 360px; }
  .pricing-hero-section-actions{ gap: .5rem; }
  .pricing-hero-section-cta, .pricing-hero-section-ghost{ padding: .75rem 1.05rem; }
}


/* /////////////////////////////////////////////////////////////////////////////////////////////// */
/* /////////////////// section 2 //////////////////////////////// */
/* ===== Pricing Section 2: Book Now fixed at bottom ===== */
.pricing-section2{
  background: #ffffff;
  color: #0b0b0b;
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  border-top: 1px solid #f2f2f2;
}
.pricing-section2-container{ max-width: 1200px; margin: 0 auto; }

/* Head */
.pricing-section2-head{ text-align: center; margin-bottom: clamp(1.25rem, 3vw, 2rem); }
.pricing-section2-title{
  margin: 0 0 .35rem; font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800;
}
.pricing-section2-sub{ margin: 0; color: #666; }

/* Grid */
.pricing-section2-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}
@media (max-width: 1100px){ .pricing-section2-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .pricing-section2-grid{ grid-template-columns: 1fr; } }

/* Card base */
.pricing-section2-card{
  display: flex;                 /* sticky footer with flex */
  flex-direction: column;
  min-height: 520px;             /* taller cards for balance */
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pricing-section2-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
  border-color: #e5e5e5;
}
.pricing-section2-card--highlight{
  border-color: #e0e0e0; box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

/* Body area (content scrolls if needed) */
.pricing-section2-card-body{
  padding: 1.15rem 1.15rem .75rem;
  display: grid;
  align-content: start;
  gap: .85rem;
}

/* Header row inside card */
.pricing-section2-card-head{
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.pricing-section2-name{ margin: 0; font-size: 1.15rem; font-weight: 800; }
.pricing-section2-badge{
  font-size: .8rem; padding: .35rem .55rem; border-radius: 999px;
  background: #0b0b0b; color: #fff; border: 1px solid #111;
}

/* Price */
.pricing-section2-price{ display: flex; align-items: baseline; gap: .25rem; }
.pricing-section2-currency{ font-weight: 800; font-size: 1.1rem; }
.pricing-section2-amount{ font-weight: 900; font-size: 2rem; line-height: 1; }
.pricing-section2-tail{ color: #6b6b6b; font-size: .95rem; }

/* Features */
.pricing-section2-features{
  list-style: none; padding: 0; margin: .2rem 0 0;
  display: grid; gap: .55rem;
}
.pricing-section2-features li{
  display: grid; grid-template-columns: 18px 1fr; gap: .5rem; color: #3e3e3e;
}
.pricing-section2-check{
  width: 14px; height: 14px; margin-top: .25rem; border-radius: 4px; background: #0b0b0b;
  position: relative; box-shadow: 0 6px 14px rgba(0,0,0,.15);
}
.pricing-section2-check::after{
  content: "✓"; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: .8rem; font-weight: 800;
}

/* Fixed-bottom footer INSIDE the card */
.pricing-section2-card-foot{
  margin-top: auto;              /* pushes footer to card bottom */
  padding: .85rem 1.15rem;
  background: #fafafa;
  border-top: 1px solid #efefef;
  display: grid; gap: .45rem;
}

/* CTA (full width on mobile, inline on desktop) */
.pricing-section2-cta{
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: #0b0b0b;
  color: #fff; text-decoration: none;
  font-weight: 800; letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 24px rgba(0,0,0,.15);
}
.pricing-section2-cta:hover{ transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,0,0,.2); }

.pricing-section2-note{ margin: 0; font-size: .86rem; color: #7a7a7a; }

/* Section foot */
.pricing-section2-foot{ margin-top: clamp(1.2rem, 2.2vw, 1.8rem); text-align: center; }
.pricing-section2-terms{ margin: 0; color: #777; font-size: .92rem; }

/* Responsiveness */
@media (max-width: 1100px){ .pricing-section2-card{ min-height: 560px; } }
@media (max-width: 600px){ .pricing-section2-card{ min-height: 520px; } }


/* ///////////////////////////////////// section 3 ////////////////////////////////////// */
/* ===== Pricing Info Section (pricing-sectio3) ===== */
.pricing-sectio3{
  background: #ffffff;
  color: #0b0b0b;
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  border-top: 1px solid #f2f2f2;
}
.pricing-sectio3-container{ max-width: 1200px; margin: 0 auto; }

/* Head */
.pricing-sectio3-head{ text-align: center; margin-bottom: clamp(1.25rem,3vw,2rem); }
.pricing-sectio3-title{
  margin: 0 0 .35rem; font-size: clamp(1.6rem,3.2vw,2.2rem); font-weight: 800;
}
.pricing-sectio3-sub{ margin: 0; color: #666; }

/* Grid */
.pricing-sectio3-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(1rem,2.2vw,1.5rem);
}
@media (max-width: 1100px){ .pricing-sectio3-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .pricing-sectio3-grid{ grid-template-columns: 1fr; } }

/* Card */
.pricing-sectio3-card{
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pricing-sectio3-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
  border-color: #e5e5e5;
}
.pricing-sectio3-h3{
  margin: 0 0 .6rem; font-size: 1.1rem; font-weight: 800;
}

/* Lists */
.pricing-sectio3-list{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .55rem;
}
.pricing-sectio3-list li{ color: #3b3b3b; }
.pricing-sectio3-dot,
.pricing-sectio3-check,
.pricing-sectio3-plus{
  display: inline-grid; place-items: center;
  width: 16px; height: 16px; margin-right: .5rem;
  border-radius: 4px; background: #0b0b0b; color: #fff; font-size: .8rem; font-weight: 800;
}
.pricing-sectio3-dot::before{ content: "•"; line-height: 1; }
.pricing-sectio3-check::before{ content: "✓"; line-height: 1; }
.pricing-sectio3-plus::before{ content: "+"; line-height: 1; }

/* FAQ */
.pricing-sectio3-faq{
  border: 1px solid #efefef; border-radius: 12px;
  padding: .75rem .9rem; background: #fafafa; color: #2f2f2f;
  margin-bottom: .55rem;
}
.pricing-sectio3-faq summary{
  cursor: pointer; font-weight: 800; outline: none;
}
.pricing-sectio3-faq p{ margin: .45rem 0 0; color: #4a4a4a; }

/* CTA row */
.pricing-sectio3-ctaRow{
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .4rem;
}
.pricing-sectio3-cta{
  display: inline-block; padding: .8rem 1.1rem; border-radius: 12px;
  text-decoration: none; font-weight: 800; letter-spacing: .01em;
  background: #0b0b0b; color: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 24px rgba(0,0,0,.15);
}
.pricing-sectio3-cta:hover{ transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,0,0,.2); }
.pricing-sectio3-cta--wa{
  background: #25D366; color: #0a0a0a; box-shadow: 0 12px 26px rgba(37,211,102,.35);
}

/* Notes & strip */
.pricing-sectio3-note{ margin: .6rem 0 0; font-size: .88rem; color: #777; }

.pricing-sectio3-strip{
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin-top: clamp(1.2rem,2.2vw,1.6rem);
}
.pricing-sectio3-pill{
  padding: .55rem .85rem; border-radius: 999px;
  background: #0b0b0b; color: #fff; font-weight: 700; border: 1px solid #111;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
