/* ================= ROOT VARIABLES ================= */
:root {
  --bg-primary: #0b1026;
  --bg-secondary: #11183a;

  --gold: #f4c430;
  --gold-soft: rgba(244, 196, 48, 0.15);

  --text-main: #f8fafc;
  --text-muted: #c7cbe3;

  --card-bg: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.15);

  --radius-lg: 18px;
  --radius-md: 12px;

  --font-main: "Poppins", sans-serif;
  --container: 1200px;

  --transition: all 0.35s ease;
}

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

body {
  font-family: var(--font-main);
  background: linear-gradient(120deg, var(--bg-primary), var(--bg-secondary));
  color: var(--text-main);
}

/* ===== FLOATING SPIRITUAL PARTICLES ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(244, 196, 48, 0.12) 1px,
      transparent 1px),
    radial-gradient(rgba(34, 197, 94, 0.08) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px;
  pointer-events: none;
  animation: floatParticles 60s linear infinite;
  z-index: 0;
}

@keyframes floatParticles {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 600px 600px, -600px -600px;
  }
}

/* ================= GLOBAL ================= */
.container {
  max-width: var(--container);
  margin: auto;
  padding: 0 20px;
}

.btn {
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

/* ================= HEADER ================= */
.site-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 20px;
  font-weight: 600;
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffd86b);
  color: #1a1a1a;
}

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

.btn-gold {
  background: var(--gold);
  color: #1a1a1a;
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--gold-soft);
}

/* Premium Astrology Slider */
.astro-slider.premium {
  position: relative;
  background: linear-gradient(120deg, #0b0f2f, #1a0f3d, #0b0f2f);
  overflow: hidden;
  padding: 6px 0;
}

.astro-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%,
      rgba(255, 215, 0, 0.08),
      transparent 60%),
    radial-gradient(circle at 80% 50%,
      rgba(138, 43, 226, 0.08),
      transparent 60%);
  pointer-events: none;
}

.astro-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: astroScroll 35s linear infinite;
}

.astro-item {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
  font-family: "Hind Siliguri", "Noto Sans Bengali", sans-serif;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
}

.astro-item:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
}

.astro-item.highlight {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #1a0f3d;
  font-weight: 600;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.45);
}

/* Smooth infinite scroll */
@keyframes astroScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-55%);
  }
}

/* ================= SLIDER BANNER ================= */
.banner-section {
  width: 100%;
  height: 90vh;
  min-height: 520px;
  overflow: hidden;
  position: relative;
  background: #000;
  /* fallback */
}

/* TRACK */
.banner-track {
  display: flex;
  height: 100%;
  transition: transform 1s ease-in-out;
}

/* SLIDE */
.banner-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE — THIS IS THE MAGIC */
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 👈 FULL IMAGE, NO CROP */
}

/* MOBILE */
@media (max-width: 768px) {
  .banner-section {
    height: 70vh;
  }

  .banner-slide img {
    object-fit: cover;
    /* mobile needs impact */
  }
}

/* ================= HERO ================= */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-layout,
.hero-card,
.hero-visual {
  position: relative;
  z-index: 2;
}

/* Optional dark overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(18, 24, 63, 0.75) 0%,
      rgba(7, 11, 31, 0.75) 45%,
      rgba(2, 4, 13, 0.85) 100%);
  z-index: 1;
}

.hero-section {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background: transparent;
}

.star-layer {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 80% 40%, #fff, transparent),
    radial-gradient(1px 1px at 50% 80%, #fff, transparent);
  opacity: 0.25;
  animation: twinkle 6s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes twinkle {
  from {
    opacity: 0.15;
  }

  to {
    opacity: 0.3;
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ================= HERO CARD ================= */
.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  padding: 55px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.mandala-wrap {
  position: relative;
  z-index: 2;
}

.hero-visual img {
  max-width: 360px;
  opacity: 0.9;
  animation: rotateMandala 40s linear infinite;
}

@keyframes rotateMandala {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.glow-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  filter: blur(80px);
  opacity: 0.55;
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.65;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.4;
  }
}

.hero-card h1 {
  font-size: 40px;
  line-height: 1.3;
  margin: 18px 0;
}

.hero-card h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 18px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.badge {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
}

.cta-group {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

/* ================= VISUAL ================= */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  max-width: 345px;
  opacity: 0.9;
  z-index: 2;
}

.glow-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--gold), transparent 65%);
  filter: blur(60px);
  z-index: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-card {
    padding: 35px;
  }

  .hero-card h1 {
    font-size: 28px;
  }
}

/* ================= FULL WIDTH BANNER ================= */
.banner-section {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background: #000;
}

/* IMAGE */
.banner-image {
  width: 100%;
  height: auto;
  /* keeps aspect ratio */
  display: block;
}

/* OPTIONAL: limit max height on very large screens */
@media (min-width: 1600px) {
  .banner-image {
    max-height: 90vh;
    object-fit: contain;
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .banner-image {
    width: 100%;
    height: auto;
  }
}

/* ================= IMPACT SECTION ================= */
.impact-section {
  padding: 90px 0;
  background: radial-gradient(circle at top left,
      rgba(244, 196, 48, 0.06),
      transparent 60%);
}

.impact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

/* ================= LEFT CONTENT ================= */
.impact-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 16px;
}

.impact-content h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.impact-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ================= METRICS ================= */
.impact-metrics {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.metric-item {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.metric-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--gold), transparent);
}

.metric-item:hover {
  transform: translateX(6px);
}

.metric-value {
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .impact-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .impact-metrics {
    align-items: stretch;
  }

  .metric-item:hover {
    transform: none;
  }
}

/* ================= OFFER TIMER SECTION ================= */
.offer-timer-section {
  padding: 90px 0;
  background: radial-gradient(circle at center,
      rgba(244, 196, 48, 0.08),
      rgba(0, 0, 0, 0.9));
  text-align: center;
}

.timer-heading {
  font-size: 30px;
  margin-bottom: 35px;
  letter-spacing: 1px;
}

/* ================= TIMER BOX ================= */
.timer-boxes {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
}

.time-box {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.time-box span {
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
}

.time-box small {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ================= STATUS TEXT ================= */
.timer-status {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .time-box {
    width: 100px;
    height: 100px;
  }

  .time-box span {
    font-size: 34px;
  }
}

/* ================= PROBLEM SECTION ================= */
.problem-section {
  padding: 100px 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.85),
      rgba(17, 24, 58, 0.9));
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* ================= VISUAL ================= */
.problem-visual img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* ================= CONTENT ================= */
.truth-badge {
  display: inline-block;
  background: rgba(244, 196, 48, 0.12);
  color: var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
}

.problem-content h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.problem-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 24px;
}

/* ================= LIST ================= */
.problem-list {
  list-style: none;
  margin-bottom: 34px;
}

.problem-list li {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 12px;
  padding-left: 8px;
}

/* ================= CTA ================= */
.problem-cta .btn {
  padding: 14px 34px;
  font-size: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .problem-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .problem-visual img {
    margin: 0 auto;
  }

  .problem-list {
    text-align: left;
    display: inline-block;
  }

  .problem-content h2 {
    font-size: 32px;
  }
}

/* ================= CTA STRIP ================= */
.cta-strip {
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;

  background: linear-gradient(90deg,
      rgba(34, 197, 94, 0.45),
      rgba(16, 185, 129, 0.35),
      rgba(34, 197, 94, 0.45));
}

/* subtle moving shine */
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.12),
      transparent);
  animation: stripShine 6s linear infinite;
}

/* ================= CTA BUTTON ================= */
.cta-strip-btn {
  position: relative;
  z-index: 2;

  background: #22c55e;
  color: #02150a;

  padding: 20px 52px;
  font-size: 20px;
  font-weight: 800;

  border-radius: 18px;
  border: none;
  cursor: pointer;

  text-transform: uppercase;
  letter-spacing: 0.5px;

  animation: megaPulse 1.4s infinite, attentionShake 7s infinite,
    breatheScale 3s infinite;

  box-shadow: 0 0 20px rgba(34, 197, 94, 0.9), 0 0 50px rgba(34, 197, 94, 0.6),
    0 0 90px rgba(34, 197, 94, 0.4);
}

/* ================= BLINKING HALO ================= */
.cta-strip-btn::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 22px;
  border: 3px solid rgba(34, 197, 94, 0.95);

  animation: blinkHalo 1.3s infinite;
}

/* ================= RADAR WAVES ================= */
.cta-strip-btn::after {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 30px;
  border: 2px solid rgba(34, 197, 94, 0.6);

  animation: radarWave 2.2s infinite;
}

/* ================= HOVER (EVEN STRONGER) ================= */
.cta-strip-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(34, 197, 94, 1), 0 0 70px rgba(34, 197, 94, 0.8),
    0 0 120px rgba(34, 197, 94, 0.6);
}

/* ================= ANIMATIONS ================= */

@keyframes megaPulse {
  0% {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.9), 0 0 40px rgba(34, 197, 94, 0.6),
      0 0 80px rgba(34, 197, 94, 0.4);
  }

  70% {
    box-shadow: 0 0 0 rgba(34, 197, 94, 0), 0 0 0 rgba(34, 197, 94, 0),
      0 0 0 rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.9), 0 0 40px rgba(34, 197, 94, 0.6),
      0 0 80px rgba(34, 197, 94, 0.4);
  }
}

/* blinking outer ring */
@keyframes blinkHalo {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }

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

/* expanding radar waves */
@keyframes radarWave {
  0% {
    opacity: 0.7;
    transform: scale(0.8);
  }

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

/* slow breathing */
@keyframes breatheScale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

/* rare shake */
@keyframes attentionShake {

  0%,
  88%,
  100% {
    transform: translateX(0);
  }

  90% {
    transform: translateX(-3px);
  }

  92% {
    transform: translateX(3px);
  }

  94% {
    transform: translateX(-2px);
  }
}

/* strip shine */
@keyframes stripShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .cta-strip-btn {
    font-size: 17px;
    padding: 18px 36px;
  }
}

/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
  padding: clamp(60px, 8vw, 120px) 0;
  background: radial-gradient(circle at top,
      rgba(244, 196, 48, 0.06),
      rgba(0, 0, 0, 0.9));
  overflow: hidden;
}

/* ================= HEADING ================= */
.testimonial-heading {
  text-align: center;
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: clamp(36px, 6vw, 60px);
  color: #fff;
}

/* ================= SLIDER WRAPPER ================= */
.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* ================= CARD ================= */
.testimonial-card {
  flex-shrink: 0;
  min-width: clamp(280px, 28vw, 360px);
  position: relative;

  background: rgba(17, 24, 58, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  backdrop-filter: blur(14px);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(244, 196, 48, 0.25);
}

/* Quote icon */
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: clamp(40px, 6vw, 60px);
  color: rgba(244, 196, 48, 0.15);
  font-family: serif;
}

/* ================= CONTENT ================= */
.testimonial-stars {
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 10px;
}

.testimonial-issue {
  font-size: clamp(14px, 1.6vw, 15px);
  color: #f4c430;
  margin-bottom: 10px;
  font-weight: 600;
}

.testimonial-text {
  font-size: clamp(14px, 1.6vw, 15px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-name {
  font-size: clamp(13px, 1.4vw, 14px);
  font-weight: 600;
  color: #fff;
}

/* ================= ARROWS ================= */
.ts-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(36px, 4vw, 44px);
  height: clamp(36px, 4vw, 44px);
  border-radius: 50%;
  font-size: clamp(20px, 3vw, 26px);
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.ts-btn.prev {
  left: 8px;
}

.ts-btn.next {
  right: 8px;
}

/* ================= CTA ================= */
.testimonial-cta {
  margin-top: clamp(40px, 6vw, 60px);
  text-align: center;
}

.testimonial-book-btn {
  padding: clamp(14px, 2.5vw, 16px) clamp(28px, 5vw, 40px);
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(244, 196, 48, 0.25);
}

/* ================= TOUCH DEVICES ================= */
@media (max-width: 768px) {
  .ts-btn {
    display: none;
  }

  .testimonial-card {
    min-width: 90%;
  }
}

/* ================= VERY SMALL PHONES ================= */
@media (max-width: 420px) {
  .testimonial-card {
    min-width: 96%;
  }
}

/* ================= TESTIMONIAL SLIDER – PRO ================= */

.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* CARD */
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(17, 24, 58, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  min-height: 260px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(244, 196, 48, 0.25);
}

/* TEXT CONTROL */
.testimonial-text {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

/* ================= MOBILE TESTIMONIAL FIX ================= */

@media (max-width: 768px) {

  .testimonial-slider-wrapper {
    overflow: hidden;
  }

  .testimonial-track {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    /* 🔥 ENABLE SWIPE */
    scroll-snap-type: x mandatory;
    /* 🔥 SNAP */

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
    /* Chrome / Safari */
  }

  .testimonial-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }
}



/* ================= PREVENT HORIZONTAL SCROLL ================= */
body {
  overflow-x: hidden;
}

/* ================= WHY CHOOSE SECTION ================= */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.9),
      rgba(17, 24, 58, 0.85));
}

.why-heading {
  text-align: center;
  font-size: 38px;
  margin-bottom: 32px;
}

.why-subheading {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 60px;
}

/* ================= GRID ================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ================= CARD ================= */
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(14px);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card.highlight {
  border-color: var(--gold);
  background: linear-gradient(145deg,
      rgba(244, 196, 48, 0.15),
      rgba(255, 255, 255, 0.04));
}

/* ================= CONTENT ================= */
.why-card-title {
  font-size: 22px;
  margin-bottom: 22px;
  color: var(--gold);
}

.why-list {
  list-style: none;
}

.why-list li {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-heading {
    font-size: 32px;
  }
}

/* ================= NO FALSE PROMISES SECTION ================= */
.no-promises-section {
  padding: 100px 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.95),
      rgba(17, 24, 58, 0.9));
}

.no-promises-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* ================= LEFT CONTENT ================= */
.no-promises-heading {
  font-size: 38px;
  margin-bottom: 18px;
}

.no-promises-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}

/* ================= POINTS ================= */
.promise-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.promise-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.promise-icon {
  font-size: 20px;
  margin-top: 2px;
}

.promise-item.negative {
  border-left: 4px solid #ff4d4d;
}

.promise-item.positive {
  border-left: 4px solid #22c55e;
}

.promise-item.focus {
  border-left: 4px solid var(--gold);
}

.promise-item p {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
}

/* ================= RIGHT CARD ================= */
.no-promises-card {
  background: linear-gradient(145deg,
      rgba(244, 196, 48, 0.18),
      rgba(255, 255, 255, 0.04));
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
}

.no-promises-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--gold);
}

.no-promises-card ul {
  list-style: none;
}

.no-promises-card li {
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .no-promises-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promise-item {
    text-align: left;
  }
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.95),
      rgba(17, 24, 58, 0.9));
}

.faq-heading {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
}

/* ================= FAQ LIST ================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

/* ================= FAQ ITEM ================= */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}

/* ================= QUESTION ================= */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: var(--gold);
}

/* ================= ANSWER ================= */
.faq-answer {
  display: none;
  padding-top: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================= ACTIVE STATE ================= */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: "−";
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .faq-heading {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
  }
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
  padding: 100px 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.95),
      rgba(17, 24, 58, 0.9));
}

.gallery-heading {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
  color: var(--gold);
}

/* ================= SLIDER WRAPPER ================= */
.gallery-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* ================= SLIDER ================= */
.gallery-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* ================= ITEM ================= */
.gallery-item {
  min-width: 260px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= BUTTONS ================= */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--gold);
  border: 1px solid var(--border-light);
  font-size: 26px;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
}

.gallery-btn:hover {
  background: rgba(244, 196, 48, 0.2);
}

.gallery-btn.prev {
  left: -10px;
}

.gallery-btn.next {
  right: -10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .gallery-item {
    min-width: 220px;
    height: 280px;
  }

  .gallery-heading {
    font-size: 32px;
  }
}

/* ================= FLOATING WHATSAPP ================= */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;

  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ================= ICON ================= */
.wp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG icon control */
.wp-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* ================= TEXT ================= */
.wp-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.35s ease;
}

/* Hover Expand */
.floating-whatsapp:hover .wp-text {
  max-width: 180px;
}

/* Hover lift */
.floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {
  .floating-whatsapp {
    padding: 14px;
  }

  .wp-text {
    display: none;
  }
}

/* ================= STICKY BOOKING BAR ================= */
.sticky-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 22px;

  background: linear-gradient(90deg, #3b0764, #4c1d95);

  color: #ffffff;

  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.45);
  transform: translateY(100%);
  animation: slideUpBar 0.6s ease forwards;
}

/* ================= LEFT ================= */
.booking-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.old-price {
  text-decoration: line-through;
  color: #fca5a5;
  opacity: 0.8;
}

.new-price {
  font-size: 18px;
  font-weight: 700;
  color: #22c55e;
}

.offer-text {
  font-size: 13px;
  color: #fde68a;
}

/* ================= RIGHT ================= */
.booking-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.urgency-text {
  font-size: 13px;
  color: #e5e7eb;
}

/* ================= BUTTON ================= */
.booking-btn {
  background: #22c55e;
  color: #04120a;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.45);
}

/* ================= ANIMATION ================= */
@keyframes slideUpBar {
  to {
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .sticky-booking-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .booking-bar-left,
  .booking-bar-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .urgency-text {
    display: none;
  }
}

/* ================= REQUIREMENTS SECTION ================= */
.requirements-section {
  padding: 90px 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.9),
      rgba(17, 24, 58, 0.85));
}

.requirements-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.requirements-subheading {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 60px;
}

/* ================= GRID ================= */
.requirements-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ================= ITEM ================= */
.requirement-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;

  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
}

.req-icon {
  font-size: 26px;
}

.requirement-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--gold);
}

.requirement-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .requirements-heading {
    font-size: 30px;
  }
}

/* ================= REQUIREMENT FORM ================= */
.requirement-form {
  max-width: 420px;
  margin: 20px auto 0;
  padding: 26px 24px;

  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);

  display: none;
  animation: slideDown 0.35s ease forwards;
}

.requirement-form h4 {
  text-align: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 18px;
}

/* ================= FORM GROUP ================= */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-size: 14px;
}

/* ================= BUTTON ================= */
.requirement-form .btn-secondary {
  width: 100%;
  margin-top: 10px;
}

/* ================= NOTE ================= */
.form-note {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: var(--text-muted);
}

/* ================= ANIMATION ================= */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MODAL OVERLAY ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 999;

  display: none;
  align-items: center;
  justify-content: center;
}

/* ================= MODAL BOX ================= */
.modal-box {
  width: 100%;
  max-width: 420px;
  background: #0b1026;
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;

  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: modalPop 0.35s ease;
}

/* ================= CLOSE ================= */
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* ================= CONTENT ================= */
.modal-box h3 {
  text-align: center;
  margin-bottom: 18px;
  color: #22c55e;
}

/* ================= FORM ================= */
.modal-box .form-group {
  margin-bottom: 14px;
}

.modal-box input,
.modal-box select {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
}

.modal-submit {
  width: 100%;
  margin-top: 10px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 10px;
}

/* ================= ANIMATION ================= */
@keyframes modalPop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

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

/* ================= MOBILE ================= */
@media (max-width: 480px) {
  .modal-box {
    margin: 0 16px;
  }
}

/* ===== UNIFORM INPUT & TEXTAREA DESIGN ===== */
.form-control,
textarea.form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;

  color: #111827;
  background-color: #ffffff;

  border: 1px solid #d1d5db;
  border-radius: 10px;

  outline: none;
  box-shadow: none;

  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Focus state */
.form-control:focus,
textarea.form-control:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

/* Textarea specific */
textarea.form-control {
  resize: none;
  /* prevents ugly resize handle */
  line-height: 1.5;
}

/* ===== MODAL GLASS EFFECT ===== */
.modal-box {
  background: linear-gradient(160deg,
      rgba(11, 16, 38, 0.95),
      rgba(17, 24, 58, 0.95));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* ===== VALIDATION STATES ===== */
.form-control:invalid {
  border-color: #f87171;
}

.form-control:valid {
  border-color: #22c55e;
}

/* ===== GALLERY DEPTH ===== */
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item img {
  transition: transform 0.6s ease;
}

/* ===== SCROLL HINT ===== */
.hero-section::after {
  content: "▼";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: rgba(244, 196, 48, 0.6);
  animation: scrollHint 1.6s infinite;
}

@keyframes scrollHint {
  0% {
    opacity: 0;
    transform: translate(-50%, -6px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 6px);
  }
}

.no-promises-card.icon-style {
  background: radial-gradient(circle at top, #0f1a2b, #070c15);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 18px;
  padding: 40px 30px;
  color: #fff;
}

.icon-card-heading {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #ffd166;
  letter-spacing: 0.5px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

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

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1b2a44, #0b1323);
  border: 1px solid rgba(255, 215, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.icon-item p {
  font-size: 15px;
  line-height: 1.5;
  color: #eaeaea;
}

/* Mobile */
/* @media (max-width: 768px) {
  .icon-grid {
    grid-template-columns: 1fr;
  }
} */

/* ================= THANK YOU ================= */
.thank-you-message {
  text-align: center;
  padding: 20px;
}

.thank-you-message h3 {
  color: #f4c430;
  margin-bottom: 10px;
}

.thank-you-message p {
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.6;
}

.thank-you-message .small-note {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.8;
}

.swal2-container {
  z-index: 9999;
}

/* ================= STICKY TIMER ================= */

.sticky-timer {
  display: flex;
  align-items: center;
  gap: 2px;

  margin-left: 10px;
  padding: 4px 8px;

  font-size: 13px;
  font-weight: 700;

  color: #fde68a;
  background: rgba(0, 0, 0, 0.35);

  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);

  letter-spacing: 1px;
}

/* Digits glow */
.sticky-timer span {
  color: #facc15;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .sticky-timer {
    font-size: 12px;
    padding: 3px 6px;
  }
}

/* ================= FIX BACKGROUND IMAGE DUPLICATION ================= */

section[style*="background-image"] {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}



/* ================= HERO LEFT CARD RESPONSIVE FIX ================= */

/* Medium screens (tablets / small laptops) */
@media (max-width: 1100px) {

  .hero-layout {
    grid-template-columns: 1fr;
    /* 🔥 stack vertically */
    gap: 40px;
    text-align: center;
  }

  .hero-card {
    max-width: 720px;
    margin: 0 auto;
  }

  .cta-group {
    justify-content: center;
  }
}

/* Mobile devices */
@media (max-width: 768px) {

  .hero-section {
    padding: 70px 0 90px;
  }

  .hero-card {
    padding: 26px 22px;
    /* 🔥 reduced padding */
    border-radius: 16px;
  }

  .hero-card h1 {
    font-size: 26px;
    /* 🔥 readable */
    line-height: 1.35;
  }

  .hero-card p {
    font-size: 15px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .cta-group .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Very small phones */
@media (max-width: 420px) {

  .hero-card {
    padding: 22px 18px;
  }

  .hero-card h1 {
    font-size: 23px;
  }
}

/* ================= HERO CARD MOBILE PERFECT FIX ================= */

@media (max-width: 768px) {

  /* Center everything properly */
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 12px;
    /* 🔥 edge spacing */
    text-align: center;
  }

  /* Card sizing */
  .hero-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    padding: 26px 20px;
    /* 🔥 balanced padding */
    border-radius: 18px;
  }

  /* Badge */
  .hero-card .badge {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Heading */
  .hero-card h1 {
    font-size: 24px;
    line-height: 1.35;
    margin: 14px 0 12px;
  }

  .hero-card h1::after {
    margin: 14px auto 0;
    width: 60px;
  }

  /* Description text */
  .hero-card p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  /* CTA */
  .cta-group {
    margin-top: 20px;
    justify-content: center;
  }

  .cta-group .btn {
    width: 100%;
    max-width: 260px;
    padding: 14px 0;
    font-size: 15px;
    justify-content: center;
  }

}

@media (max-width: 390px) {
  .hero-card {
    margin: 0 -4px
  }
}

/* Extra small phones */
@media (max-width: 420px) {

  .hero-card {
    padding: 22px 18px;
  }

  .hero-card h1 {
    font-size: 22px;
  }

  .cta-group .btn {
    max-width: 100%;
  }
}





@media(max-width :777px){
    .gallery-section{
        margin-bottom: 100px;
        
    }
}



#blink_thi {
    animation: blinkGlow 1.5s infinite;
}

@keyframes blinkGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
        transform: scale(1);
    }
}