:root {
  --purple-deep: #3b0764;
  --purple-mid: #7c3aed;
  --purple-light: #6D5DF6;
  --purple-gradient: linear-gradient(135deg, #4C00B0 0%, #6D5DF6 50%, #A99CFD 100%);
  --white: #f5f0ff;
  --font-color: #260058;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--font-color);
}

/* ════════════════════
       HERO
    ════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  max-height: 900px;
  overflow: hidden;
  background: var(--font-color);
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0.05) 50%,
      rgba(245, 240, 255, 0.6) 75%,
      rgba(245, 240, 255, 1.0) 100%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  bottom: 80px;
  left: 0;
  padding-left: 60px;
  max-width: 600px;
  border-left: 3px solid var(--purple-light);
  margin-left: 60px;
}

.hero-sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--font-color);
  margin-bottom: 12px;
  opacity: 0.8;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--font-color);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.7;
  color: var(--font-color);
}

/* ════════════════════════════════
       ABOUT SECTION
    ════════════════════════════════ */
.about {
  padding: 80px 60px 100px;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

/* Image */
.about-images {
  width: 100%;
}

.about-images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Text content */
.about-content {
  padding-top: 4px;
}

.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 12px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--font-color);
  line-height: 1.15;
  margin-bottom: 22px;
}

.about-title .accent {
  color: var(--purple-light);
  font-style: italic;
}

.about-lead {
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--font-color);
  margin-bottom: 22px;
}

.about-body {
  padding-left: 18px;
  border-left: 2px solid var(--purple-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  text-align: justify;
}

.about-body p {
  font-size: 13.5px;
  line-height: 1.82;
  color: var(--font-color);
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: var(--purple-gradient);
  color: #f5f0ff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.38);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-left: auto;
  display: flex;
  width: fit-content;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.52);
}

.btn-arrows {
  font-size: 15px;
  letter-spacing: -1px;
}

.arrow--img{
  width: 1rem;
  margin-top: 3px;
}

.about-full-para {
  display: none;
}

/* ════════════════════
       RESPONSIVE
    ════════════════════ */
@media (max-width: 1100px) and (min-width: 851px) {
  .hero-content {
    left: 0;
    margin-left: 40px;
    bottom: 60px;
    padding-left: 40px;
  }

  .about {
    padding: 60px 40px 80px;
  }

  .about-inner {
    gap: 36px;
  }
}

@media (max-width: 850px) and (min-width: 538px) {
  .hero {
    max-height: 70vh;
    min-height: 380px;
  }

  .hero-content {
    left: 0;
    margin-left: 32px;
    bottom: 50px;
    padding-left: 32px;
    max-width: 90%;
  }

  .about {
    padding: 56px 32px 72px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images img {
    max-width: 480px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 537px) {
  .hero {
    height: 60vh;
    min-height: 340px;
    max-height: 560px;
  }

  .hero-content {
    left: 0;
    margin-left: 20px;
    bottom: 40px;
    padding-left: 20px;
    max-width: 95%;
    border-left-width: 2px;
  }

  .about {
    padding: 44px 20px 60px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-body {
    padding-left: 12px;
  }

  .read-more-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .hero-content {
    left: 0;
    margin-left: 16px;
    bottom: 32px;
    padding-left: 16px;
  }

  .about {
    padding: 36px 16px 52px;
  }
}

@media (max-width: 1260px) and (min-width: 931px) {
  .hero-content {
    left: 0;
    margin-left: 40px;
    bottom: 60px;
    padding-left: 40px;
  }

  .about {
    padding: 60px 40px 80px;
  }

  .about-inner {
    display: block;
  }

  .about-images {
    float: left;
    width: 42%;
    margin-right: 36px;
    margin-bottom: 20px;
  }

  .about-images img {
    width: 100%;
    display: block;
  }

  .about-content {
    float: left;
    width: calc(58% - 36px);
  }

  .about-inner::after {
    content: '';
    display: block;
    clear: both;
  }

  .about-full-para {
    display: none;
  }
}


@media (max-width: 930px) and (min-width: 851px) {
  .hero-content {
    left: 0;
    margin-left: 40px;
    bottom: 60px;
    padding-left: 40px;
  }

  .about {
    padding: 60px 40px 80px;
  }

  .about-inner {
    display: block;
  }

  .about-images {
    float: left;
    width: 42%;
    margin-right: 36px;
    margin-bottom: 20px;
  }

  .about-images img {
    width: 100%;
    display: block;
  }

  .about-content {
    overflow: visible;
  }

  .about-full-para {
    display: block;
    clear: both;
    width: 100%;
    padding-top: 16px;
    font-size: 13.5px;
    line-height: 1.82;
    color: var(--font-color);
    padding-left: 18px;
    border-left: 2px solid rgba(124, 58, 237, 0.25);
  }

  .para-drop {
    display: none;
  }

  .read-more-btn {
    clear: both;
    display: flex;
    margin-top: 24px;
  }
}


/* ═══════════════════════════
   EXPERIENCES SECTION
═══════════════════════════ */
.experiences {
  width: 100%;
  background: linear-gradient(180deg, rgba(76, 0, 176, 1) 0%, rgba(109, 93, 246, 1) 50%, rgba(169, 156, 253, 1) 100%);
}

.exp-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 48px 40px 48px 40px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(76, 0, 176, 1) 0%, rgba(109, 93, 246, 1) 50%, rgba(169, 156, 253, 1) 100%);
  position: relative;
}

/* ── Left ── */
.exp-left {
  flex: 0 0 280px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.exp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.exp-title .accent {
  color: #a096fa;
  font-style: italic;
}

.exp-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 32px;
}

.exp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: #4C00B0;
  color: var(--white);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
}

.exp-btn:hover {
  background: #6f00ff;
  transform: translateY(-2px);
}

.btn-arrows {
  font-size: 15px;
  letter-spacing: -1px;
}

/* ── Right: Slider ── */
.exp-right {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.cards-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.cards-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.exp-card {
  flex: 0 0 calc((100% - 28px) / 3);
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.exp-card:hover img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 14px 14px;
  background: linear-gradient(to top, rgba(30, 0, 60, 0.65) 0%, transparent 100%);
}

.card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

/* Slide button */
.slide-btn {
  /* width: 44px;
  height: 44px; */
  border-radius: 0 2rem 2rem 3rem;
  background: #4C00B0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  margin-right: 4px;
  padding: 0.5rem 1.5rem 0.5rem 1.8rem;
}

.slide-btn:hover {
  background: #6f00ff;
  transform: scale(1.08);
}

.slide-btn.at-start span {
  display: inline-block;
  transform: rotate(180deg);
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */

/* Medium */
@media (max-width: 1024px) and (min-width: 800px) {
  .experiences {
    padding: 40px 36px;
  }

  .exp-left {
    flex: 0 0 220px;
  }

  .exp-card {
    flex: 0 0 calc((100% - 14px) / 3);
  }
}

@media (max-width: 801px) and (min-width: 641px) {
  .experiences {
    padding: 40px 36px;
  }

  .exp-left {
    flex: 0 0 220px;
  }

  .exp-card {
    flex: 0 0 calc((100% - 14px) / 2);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .experiences {
    padding: 36px 24px 32px;
    border-radius: 20px;
  }

  .exp-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .exp-left {
    flex: none;
    width: 100%;
  }

  .exp-right {
    width: 100%;
    align-items: flex-end;
  }

  .exp-card {
    flex: 0 0 calc((100% - 14px) / 2);
  }
}

@media (max-width: 400px) {
  .exp-card {
    flex: 0 0 75%;
  }
}


/* ═══════════════════════════
   SERVICES SECTION
═══════════════════════════ */
.services {
  width: 100%;
  max-width: 1160px;
  padding: 0 32px;
  margin: 5rem auto;
}

.services-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Top Row ── */
.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.top-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Bottom Row ── */
.bottom-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Service Card ── */
.srv-card {
  background: linear-gradient(180deg, rgba(76, 0, 176, 1) 0%, rgba(109, 93, 246, 1) 50%, rgba(169, 156, 253, 1) 100%);
  border-radius: 20px;
  padding: 30px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.35);
}

.srv-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
}

.srv-icon svg {
  width: 100%;
  height: 100%;
}

.srv-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  margin-bottom: 14px;
}

.srv-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.srv-desc {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--white);
}

/* ── Top Right Text ── */
.top-text {
  padding: 10px 0 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.srv-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 12px;
}

.srv-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--font-color);
  line-height: 1.15;
  margin-bottom: 22px;
}

.srv-heading .accent {
  color: var(--purple-light);
  font-style: italic;
}

.srv-lead {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--font-color);
  margin-bottom: 32px;
}

.srv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--purple-gradient);
  color: var(--white);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}

.srv-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.52);
}

.btn-arrows {
  font-size: 15px;
  letter-spacing: -1px;
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */

/* Tablet landscape */
@media (max-width: 1024px) and (min-width: 769px) {
  .services {
    padding: 0 32px;
    margin: 4rem auto;
  }

  .services-inner {
    gap: 16px;
  }

  .services-top {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
  }

  .top-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .top-text {
    padding-left: 12px;
  }

  .bottom-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .srv-card {
    padding: 22px 16px 20px;
    border-radius: 16px;
  }

  .srv-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }

  .srv-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .srv-desc {
    font-size: 11.5px;
    line-height: 1.7;
  }

  .srv-heading {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 14px;
  }

  .srv-lead {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .srv-btn {
    padding: 11px 26px;
    font-size: 11px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) and (min-width: 541px) {
  .services {
    padding: 0 24px;
    margin: 3.5rem auto;
  }

  .services-inner {
    gap: 16px;
  }

  .services-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .top-cards {
    gap: 16px;
  }

  .top-text {
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    order: -1;
  }

  .bottom-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .srv-card {
    padding: 24px 18px 22px;
  }

  .srv-heading {
    margin-bottom: 14px;
  }

  .srv-lead {
    margin-bottom: 24px;
  }
}

/* Mobile */
@media (max-width: 540px) {
  .services {
    padding: 0 16px;
    margin: 2.5rem auto;
  }

  .services-inner {
    gap: 14px;
  }

  .services-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .top-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .top-text {
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    order: -1;
  }

  .bottom-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .srv-card {
    padding: 22px 18px 20px;
  }

  /* .srv-btn {
    width: 100%;
    justify-content: center;
  } */

  .srv-heading {
    margin-bottom: 12px;
  }

  .srv-lead {
    margin-bottom: 20px;
    font-size: 13px;
  }
}

/* Very small mobile */
@media (max-width: 450px) {
  .services {
    padding: 0 12px;
    margin: 2rem auto;
  }

  .srv-card {
    padding: 18px 14px 16px;
    border-radius: 16px;
  }

  .srv-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }

  .srv-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .srv-desc {
    font-size: 12px;
  }

  .top-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bottom-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}




/* ═══════════════════════════
       packages SECTION
═══════════════════════════ */
.packages {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 150vh;
  padding: 10px 40px 100px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Background ── */
.pkg-bg-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  top: 0;
}

.pkg-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  /* top: 10rem; */
  opacity: 0;
  transition: opacity 0.6s ease;
  background-position: center 70%;
  background-attachment: fixed;
}

.pkg-bg-slide.active {
  opacity: 1;
}

/* Overlay: Full section coverage with top heavy fade */
.pkg-bg-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(245, 240, 255, 1) 0%,
      rgba(245, 240, 255, 1) 25%,
      rgba(245, 240, 255, 0.7) 40%,
      rgba(245, 240, 255, 0.3) 55%,
      rgba(245, 240, 255, 0) 70%);
}

/* ── Header ── */
.pkg-header {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  margin-bottom: 56px;
  background: var(--white);
  padding: 20px 40px;
  border-radius: 20px;
}

.pkg-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 12px;
}

.pkg-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--font-color);
  line-height: 1.15;
  margin-bottom: 22px;
}

.pkg-title .accent {
  color: var(--purple-light);
  font-style: italic;
}

.pkg-desc {
  font-size: 14px;
  line-height: 1.78;
  color: var(--font-color);
}

/* ═══════════════════════════
       CARDS WRAPPER — 3D scene
═══════════════════════════ */
.pkg-cards-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  perspective: 1500px;
  overflow: visible;
  padding: 60px 0;
}

.pkg-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 500px;
}

/* ── Single Card ── */
.pkg-card {
  position: absolute;
  width: 320px;
  background: transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 7px solid #DDD8FF;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  box-shadow: 0 8px 30px rgba(59, 7, 100, 0.1);
}

/* Left Card (Previous) - Increased gap from -280px to -290px */
.pkg-card.prev {
  transform: translateX(-290px) rotateY(25deg) scale(0.85);
  z-index: 1;
  opacity: 0.7;
}

/* Center Card (Active) */
.pkg-card.active {
  transform: translateX(0) rotateY(0deg) scale(1.1);
  background: linear-gradient(180deg, #4C00B0 0%, #6D5DF6 31%, #A99CFD 55%, #f5f0ff 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: #A99CFD;
  box-shadow:
    0 24px 60px rgba(109, 40, 217, 0.45),
    0 0 0 1px rgba(168, 85, 247, 0.25);
  z-index: 10;
}

/* Right Card (Next) - Increased gap from 280px to 290px */
.pkg-card.next {
  transform: translateX(290px) rotateY(-25deg) scale(0.85);
  z-index: 1;
  opacity: 0.7;
}

/* Hidden Cards */
.pkg-card.hidden {
  transform: translateX(0) rotateY(0deg) scale(0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Card Top ── */
.card-top {
  padding: 28px 26px 20px;
}

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--font-color);
  margin-bottom: 4px;
  transition: color 0.3s;
}

.pkg-card.active .card-name {
  color: var(--white);
}

.card-sub {
  font-size: 13px;
  color: var(--font-color);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.pkg-card.active .card-sub {
  color: rgba(255, 255, 255, 0.82);
}

.card-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--font-color);
  margin-bottom: 20px;
  transition: color 0.3s;
}

.pkg-card.active .card-price {
  color: var(--white);
}

/* Button — inactive */
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border: 2px solid var(--white);
  color: #4C00B0;
  background: #BBB1FF;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.card-btn:hover {
  background: #6d28d9;
  color: var(--white);
  transform: translateX(4px);
}

/* Button — active: solid dark purple */
.pkg-card.active .card-btn {
  border: var(--white) 3px solid;
  color: var(--white);
  background: #3b0764;
}

.pkg-card.active .card-btn:hover {
  background: #2a0050;
  border: var(--white) 3px solid;
}

/* ── Card Features ── */
.card-features {
  background: transparent;
  border-radius: 0;
  margin: 0;
  padding: 16px 26px 24px;
  border-top: 1px solid rgba(109, 40, 217, 0.2);
}

.pkg-card.active .card-features {
  background: var(--white);
  border-radius: 14px;
  margin: 0 12px 12px;
  padding: 18px 18px;
  border-top: none;
}

.card-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-features li {
  font-size: 13px;
  color: var(--font-color);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s;
}

.card-features li.faded {
  opacity: 0.32;
  font-size: 11px;
}

/* Outlined circle with checkmark — inactive */
/* .chk {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #6d28d9;
  background: transparent;
  color: #6d28d9;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
} */

/* Filled purple circle — active card features */
/* .pkg-card.active .card-features .chk {
  background: var(--purple-gradient);
  border-color: transparent;
  color: #F4F0FB;
} */

/* Dots Indicator */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #6d28d9;
  transform: scale(1.3);
}

/* ═══════════════════════════
       RESPONSIVE
═══════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .pkg-card.prev {
    transform: translateX(-250px) rotateY(25deg) scale(0.85);
  }

  .pkg-card.next {
    transform: translateX(250px) rotateY(-25deg) scale(0.85);
  }
}

@media (max-width: 900px) and (min-width: 541px) {
  .packages {
    padding: 60px 24px 80px;
  }

  .pkg-card {
    width: 300px;
  }

  .pkg-card.prev {
    transform: translateX(-210px) rotateY(20deg) scale(0.8);
  }

  .pkg-card.next {
    transform: translateX(210px) rotateY(-20deg) scale(0.8);
  }

  .pkg-card.active {
    transform: translateX(0) rotateY(0deg) scale(1.05);
  }
}

/* Mobile — horizontal swipe */
@media (max-width: 540px) {
  .packages {
    padding: 50px 0 70px;
  }

  .pkg-header {
    padding: 0 24px;
    margin-bottom: 36px;
    background: rgba(248, 247, 255, 0.95);
  }

  .pkg-cards-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 24px 32px;
    perspective: none;
  }

  .pkg-cards-wrap::-webkit-scrollbar {
    display: none;
  }

  .pkg-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content;
    height: auto;
    position: static;
  }

  .pkg-card {
    position: relative;
    flex: 0 0 85vw;
    max-width: 320px;
    scroll-snap-align: center;
    transform: none !important;
    opacity: 1;
  }

  .pkg-card.active {
    transform: scale(1.02) !important;
  }
}




/* ─── Destination Section ─────────────────────────── */
.destinations-section {
  padding: 3rem 0;
  /* max-width: 1200px;
    margin: 0 auto; */
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 28px 68px;
}

/* ── HEADER ── */
.hdr {
  text-align: center;
  margin-bottom: 30px;
}

.eyebrow {
  /* font-family: 'Montserrat', sans-serif; */
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 12px;
}

.h-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--font-color);
  line-height: 1.15;
  margin-bottom: 22px;
}

.h-title .accent {
  color: var(--purple-light);
  font-style: italic;
}

.h-body {
  max-width: 565px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.78;
  color: var(--font-color);
}

/* ══════════════════════════════════════
   GRID  —  exact from image:

   4 columns, 2 rows
   Col ratio: 1 : 1.22 : 1 : 0.94
   Row1 = 258px  |  Row2 = 200px
   Gap = 8px

   c1  → r1 c1          (dark mountain castle, ~258px)
   c2  → r1 c2          (red temple, NOT spanning — just row1=258px tall)
   c3  → r1 c3          (stone ruins)
   c4  → r1 c4          (arch bridge)
   c5  → r2 c1          (misty valley, full 200px)
   c6  → r2 c2          (Kandy stupa, SHORTER ~148px, bottom-aligned)
   c7  → r2 c3          (KL tower, full 200px)
   c8  → r2 c4          (rock mountain, full 200px)
══════════════════════════════════════ */

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr 0.94fr;
  grid-template-rows: 258px 200px;
  gap: 8px;
  /* align row2 items to bottom so c6 (short) sticks to bottom */
  align-items: end;
}

/* override — row1 cards should align top */
.card.r1 {
  align-self: stretch;
}

.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
  filter: saturate(1.12) brightness(0.93);
}

.card:hover img {
  transform: scale(1.07);
}

/* purple-blue tint overlay — matches image exactly */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(80, 55, 170, 0.06) 0%,
      rgba(22, 8, 72, 0.50) 100%);
  pointer-events: none;
}

.lbl {
  position: absolute;
  bottom: 13px;
  left: 13px;
  z-index: 2;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.card::after {
  transition: opacity 0.32s ease;
}

.card:hover::after,
.card.active::after {
  opacity: 0;
}

.card:hover .lbl,
.card.active .lbl {
  opacity: 0;
  transform: translateY(5px);
}

.card-hover {
  position: absolute;
  inset: 10px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #6c5df696;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  border-radius: 0px;
}

.card:hover .card-hover,
.card.active .card-hover {
  opacity: 1;
}

.ch-line {
  width: 34px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.35s ease 0.08s;
}

.card:hover .ch-line,
.card.active .ch-line {
  transform: scaleX(1);
}

.ch-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.6;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.card:hover .ch-name,
.card.active .ch-name {
  transform: translateY(0);
}

/* ── individual card heights ── */
/* row1 — all stretch to 258px naturally */
.c1 {
  grid-area: 1/1/2/2;
  height: 258px;
}

.c2 {
  grid-area: 1/2/2/3;
  height: 310px;
}

.c3 {
  grid-area: 1/3/2/4;
  height: 220px;
}

.c4 {
  grid-area: 1/4/2/5;
  height: 298px;
}

/* row2 */
.c5 {
  grid-area: 2/1/3/2;
  height: 200px;
}

.c6 {
  grid-area: 2/2/3/3;
  height: 148px;
}

/* shorter — bottom aligned via align-items:end */
.c7 {
  grid-area: 2/3/3/4;
  height: 238px;
}

.c8 {
  grid-area: 2/4/3/5;
  height: 160px;
}

/* ── RESPONSIVE ── */
@media (max-width: 740px) {
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 190px);
    align-items: stretch;
    gap: 7px;
  }

  .c1 {
    grid-area: 1/1/2/2;
    height: 190px;
  }

  .c2 {
    grid-area: 1/2/3/3;
    height: auto;
    align-self: stretch;
  }

  /* tall - spans rows 1+2 */
  /* row2 */
  .c3 {
    grid-area: 2/1/3/2;
    height: 190px;
  }

  /* row3 */
  .c4 {
    grid-area: 3/1/4/2;
    height: 190px;
  }

  .c5 {
    grid-area: 3/2/4/3;
    height: 190px;
  }

  /* row4+5 — c6 double height left, c8 right spans rows 4+5 */
  .c6 {
    grid-area: 4/1/6/2;
    height: auto;
    align-self: stretch;
  }

  /* double height */
  .c7 {
    grid-area: 4/2/5/3;
    height: 190px;
  }

  .c8 {
    grid-area: 5/2/6/3;
    height: 190px;
  }
}

@media (max-width: 460px) {
  .wrap {
    padding: 36px 14px 48px;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 170px 170px 170px 170px 170px;
    gap: 7px;
    align-items: stretch;
  }

  .c1 {
    grid-area: 1/1/2/2;
    height: 170px;
  }

  .c2 {
    grid-area: 1/2/3/3;
    height: auto;
    align-self: stretch;
  }

  .c3 {
    grid-area: 2/1/3/2;
    height: 170px;
  }

  .c4 {
    grid-area: 3/1/4/2;
    height: 170px;
  }

  .c5 {
    grid-area: 3/2/4/3;
    height: 170px;
  }

  .c6 {
    grid-area: 4/1/6/2;
    height: auto;
    align-self: stretch;
  }

  .c7 {
    grid-area: 4/2/5/3;
    height: 170px;
  }

  .c8 {
    grid-area: 5/2/6/3;
    height: 170px;
  }
}

@media (max-width: 350px) {
  .wrap {
    padding: 36px 14px 48px;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 7px;
    align-items: stretch;
  }

  .c1,
  .c2,
  .c3,
  .c4,
  .c5,
  .c6,
  .c7,
  .c8 {
    grid-area: auto !important;
    height: 175px !important;
    align-self: auto !important;
  }
}



.testimonials {
  padding: 60px 0px;
  margin-bottom: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(76, 0, 176, 1) 0%, rgba(109, 93, 246, 1) 50%, rgba(169, 156, 253, 1) 100%);
}

.testimonials-wrapper {
  width: 100%;
  max-width: 1160px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 30px 80px rgba(109, 40, 217, 0.5); */
}

.testimonials-wrapper::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  /* background: rgba(255, 255, 255, 0.06); */
  border-radius: 50%;
}

.testimonials-wrapper::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 20%;
  width: 300px;
  height: 300px;
  /* background: rgba(255, 255, 255, 0.04); */
  border-radius: 50%;
}

.inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* LEFT CARD */
.left-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.profile-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.profile-img-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.profile-info h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.profile-info span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.testimonial-text {
  color: var(--white);
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  gap: 4px;
  float: right;
}

.star {
  font-size: 20px;
  color: #fbbf24;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.5));
}

/* RIGHT SECTION */
.right-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.section-title .accent {
  color: #a096fa;
  font-style: italic;
}

.right-text {
  color: var(--white);
  font-size: 13.5px;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-self: flex-end;
}

.nav-btn {
  /* width: 44px;
  height: 44px; */
  background: #4C00B0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  margin-right: 4px;
  padding: 0.5rem 1.5rem 0.8rem 1.8rem;
}

#prevBtn {
  border-radius: 2rem 0 3rem 2rem;
}

#nextBtn {
  border-radius: 0 2rem 2rem 3rem;
}

#prevBtn img {
rotate: calc(180deg);
}

.nav-btn:hover,
.nav-btn.active-btn {
  background: #6f00ff;
  transform: scale(1.08);
}

/* Slide animation */
.slide-enter-left {
  animation: slideInLeft 0.5s ease forwards;
}

.slide-enter-right {
  animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

/* Progress dots */
.progress-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  justify-content: end;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.dot.active {
  width: 20px;
  border-radius: 3px;
  background: #a096fa;
}

/* Responsive */
@media (max-width: 640px) {
  .testimonials-wrapper {
    padding: 24px 20px;
  }

  .inner-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .right-section {
    flex-direction: column;
  }

  .nav-buttons {
    align-self: flex-end;
  }
}