/* =============================================
   VitaPlush – Custom Stylesheet
   ============================================= */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  --brand-primary: #2d6a4f;
  --brand-primary-light: #52b788;
  --brand-primary-dark: #1b4332;
  --brand-accent: #f4a261;
  --brand-accent-dark: #e76f51;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #A898A6;
  --bg-white: #ffffff;
  --bg-light: #f8f9fb;
  --bg-dark: #0f0f1a;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-collapsed-width: 340px;
  --pink: #e879b0;
  --pink-dark: #c026a3;
  --pink-light: #f0abdc;
}

/* ---------- Base Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}


/* =============================================
   NAVBAR
   ============================================= */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 18px 20px;
  pointer-events: none;
}

#main-nav {
  pointer-events: all;
  width: auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 70px;
  position: relative;
}

#nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px 15px;
  gap: 5px;
}

#nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 8px;
}

#nav-logo strong {
  color: #d946ef;
  letter-spacing: 1px;
}

.logo-icon {
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Navbar logo image (replaces SVG + text) */
.nav-logo-img {
  width: 60px;
  height: 71px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transform: translateY(8px) scale(2);
  transform-origin: center center;
}

#nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-width 0.4s ease;
  white-space: nowrap;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.nav-link-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav-link-item:hover {
  color: var(--pink-dark);
  background: rgba(232, 121, 176, 0.08);
}

#nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

#nav-cta:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

#nav-cta:hover {
  background: linear-gradient(135deg, var(--pink-dark), #a01480);
  box-shadow: 0 4px 24px rgba(232, 121, 176, 0.6);
  transform: translateY(-1px);
  color: #fff;
}

#main-nav:hover,
#main-nav.nav-expanded {
  width: 100%;
  max-width: 1000px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

#main-nav:hover #nav-links,
#main-nav.nav-expanded #nav-links {
  opacity: 1;
  max-width: 600px;
  pointer-events: all;
}

#main-nav:hover #nav-logo,
#main-nav.nav-expanded #nav-logo {
  color: var(--text-dark);
}

#mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  z-index: 10;
}

#mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hamburger → X animation when open */
#mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#site-header.scrolled #main-nav {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
}

#site-header.scrolled #nav-logo {
  color: var(--text-dark);
}

/* Mobile: scrolled state → dark glass, never white */
@media (max-width: 767px) {
  #site-header.scrolled #main-nav {
    background: rgba(20, 20, 40, 0.55) !important;
    backdrop-filter: blur(20px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22) !important;
  }

  /* Keep hamburger and logo white — bg is always dark enough */
  #site-header.scrolled #main-nav #mobile-toggle span {
    background: #ffffff !important;
  }

  #site-header.scrolled #main-nav #nav-logo {
    color: #ffffff !important;
  }
}


/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  /* Tiny blurred placeholder shown instantly; replaced by real image below */
  background-image: url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABQODxIPDRQSEBIXFRQYHjIhHhwcHj0sLiQySUBMS0dARkVQWnNiUFVtVkVGZIhlbXd7gYKBTmCNl4x9lnN+gXz/2wBDARUXFx4aHjshITt8U0ZTfHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHz/wAARCAANABQDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDm45sDDdQeKc07kg5IpqRAozHsaQxcZ3HtU3sNMNu7B3n86KUQZ6Nj8KKLMk//2Q==');
  background-image: image-set(
    url('../images/keralahouseboat.webp') type('image/webp'),
    url('../images/keralahouseboat.jpeg') type('image/jpeg')
  );
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* border-radius: 20px; */
  padding: 12px 20px;
  margin-bottom: 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 20px;
  margin-top: -20px;
  animation: fadeInUp 0.9s ease both;
}

.hero-badge-wrap {
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #9F9F9FCC;
  border: 1px solid #BB21A82E;
  color: #FEE7F9;
  font-size: 0.775rem;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--pink);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 300;
  /* Now using the elegant 400 weight */
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -2px;
  /* Tighter letter spacing for high-end look */
}

.hero-title-line1 {
  color: #ffffff;
}

.hero-title-line2 {
  font-style: italic;
  color: #d946ef;
  /* Solid vibrant pink/magenta */
}

.hero-subheading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.hero-quote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 44px;
  font-style: italic;
  letter-spacing: 0.3px;
}

.hero-quote strong {
  color: #ffffff;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-btn-primary {
  background: #d946ef;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(217, 70, 239, 0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(217, 70, 239, 0.6);
  color: #fff;
}

.hero-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-3px);
  color: #fff;
}

.hero-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 400;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.hero-tag i {
  font-size: 14px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-scroll-pill {
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.hero-scroll-pill::after {
  content: '';
  width: 1px;
  height: 8px;
  background: #ffffff;
  position: absolute;
  top: 8px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

.hero-scroll-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
}


/* =============================================
   BUTTONS
   ============================================= */

.btn-primary-custom {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45, 106, 79, 0.55);
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary-dark), var(--brand-primary));
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
  color: #fff;
}


/* =============================================
   SECTION COMMONS
   ============================================= */

.section-pad {
  padding: 100px 0;
}

.bg-light-custom {
  background: var(--bg-light);
}

.section-header {
  max-width: 620px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--brand-primary);
}

.section-tag.light {
  color: rgba(255, 255, 255, 0.75);
}

.section-tag.light::before {
  background: rgba(255, 255, 255, 0.75);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.8;
}


/* =============================================
   SERVICES CARDS
   ============================================= */

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  background: linear-gradient(145deg, var(--brand-primary-dark), var(--brand-primary));
  color: #fff;
  border-color: transparent;
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--brand-accent), #fff);
}

.service-card.featured .service-text,
.service-card.featured .service-link {
  color: rgba(255, 255, 255, 0.85);
}

.service-card.featured .service-link:hover {
  color: #fff;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(45, 106, 79, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--brand-primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card.featured .service-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link i {
  transition: transform 0.2s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}


/* =============================================
   CAROUSEL SECTION
   ============================================= */

.carousel-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d2b20 100%);
}

.carousel-img {
  height: 520px;
  object-fit: cover;
  filter: brightness(0.72);
}

.carousel-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  bottom: 40px;
  left: 8%;
  right: 8%;
  text-align: left;
}

.carousel-caption h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.carousel-caption p {
  font-size: 1rem;
  opacity: 0.85;
}

.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  transition: var(--transition);
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
}


/* =============================================
   ABOUT SECTION
   ============================================= */

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brand-primary);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}

.about-stat-card .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.about-stat-card .stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 4px;
}

.about-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-features li i {
  color: var(--brand-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}


/* =============================================
   STATS SECTION
   ============================================= */

.stats-section {
  background: linear-gradient(135deg, var(--brand-primary-dark), var(--brand-primary));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-big-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  text-align: center;
}


/* =============================================
   CONTACT FORM
   ============================================= */

.contact-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.custom-input {
  border: 1.5px solid #e0e0ef;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fafafe;
  transition: var(--transition);
  outline: none;
}

.custom-input:focus {
  border-color: var(--brand-primary-light);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.12);
}

.custom-input::placeholder {
  color: #bbbbd6;
}

#form-feedback.success {
  color: var(--brand-primary);
  font-weight: 600;
}

#form-feedback.error {
  color: #e63946;
  font-weight: 600;
}


/* =============================================
   FOOTER
   ============================================= */

/* Old minimal footer overridden — styles now live in .site-footer below */
#site-footer {
  background: transparent;
  /* padding: 0; */
  padding-top: 70px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: #fff;
}

/* .footer-copy overridden in .site-footer block below */
.footer-copy {
  font-size: 0.82rem;
  color: #b0a8bc;
  margin: 0;
}





/* =============================================
   ANIMATIONS & KEYFRAMES
   ============================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}


/* =============================================
   RESPONSIVE – MOBILE (≤ 767px)
   ============================================= */

@media (max-width: 767px) {

  /* ── Navbar: hamburger mode on mobile ── */
  #site-header {
    padding: 8px 12px;
    /* overflow visible so dropdown escapes the header */
    overflow: visible;
  }

  /* Nav pill: transparent glass look on mobile */
  #main-nav {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    overflow: visible !important;          /* CRITICAL — allow dropdown to show */
    border-radius: 14px !important;
    background: rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(18px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18) !important;
    position: relative !important;
  }

  /* When menu is open, go slightly more frosted */
  #main-nav.nav-open {
    background: rgba(15, 15, 26, 0.72) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.28) !important;
  }

  /* Suppress desktop hover-expand on mobile */
  #main-nav:hover,
  #main-nav.nav-expanded {
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(0, 0, 0, 0.18) !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18) !important;
  }

  /* Kill the desktop link-reveal on hover */
  #main-nav:hover #nav-links,
  #main-nav.nav-expanded #nav-links {
    opacity: 1 !important;
    max-width: 100% !important;
    pointer-events: all !important;
  }

  /* ── Single-row top bar: fixed height so logo can't push it taller ── */
  #nav-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;    /* center the logo */
    padding: 0 10px !important;
    gap: 0 !important;
    height: 48px !important;               /* fixed — logo bleeds but bar won't grow */
    overflow: visible !important;          /* allow logo to overflow above/below */
    position: relative !important;         /* for absolute hamburger */
  }

  /* Logo anchor: centered in the bar */
  #nav-logo {
    color: #ffffff !important;
    flex: 0 0 auto !important;
    min-width: 0;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;               /* fills the fixed 48px bar */
    overflow: visible !important;
  }

  /* Logo image: large height — overflows the fixed 48px bar above & below */
  #nav-logo .nav-logo-img {
    width: auto !important;
    height: 120px !important;
    transform: none !important;
    object-fit: contain !important;
    display: block !important;
    margin-top: 18px !important;
  }

  /* Hamburger: absolute right so logo stays centered */
  #mobile-toggle {
    display: flex !important;
    flex-shrink: 0;
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px !important;
    height: 32px !important;
  }

  /* Hamburger lines: white over dark/image backgrounds */
  #mobile-toggle span {
    background: #ffffff !important;
  }

  /* Hide desktop CTA pill */
  #nav-cta {
    display: none !important;
  }

  /* ── Dropdown: absolutely positioned BELOW the nav bar ── */
  #nav-links {
    position: absolute !important;
    top: calc(100% + 8px) !important;     /* 8px gap below the pill */
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    /* Styling */
    background: #ffffff !important;
    border-radius: 16px !important;
    /* Collapsed: border + shadow invisible so no ghost line shows */
    border: 1px solid transparent !important;
    box-shadow: none !important;
    /* Collapsed state */
    display: block !important;
    flex-direction: column !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0 8px;
    margin: 0 !important;
    /* Animation — include border-color & box-shadow so they fade in smoothly */
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity    0.28s ease,
                padding    0.28s ease,
                border-color 0.28s ease,
                box-shadow   0.28s ease;
    /* Reset desktop styles */
    max-width: none !important;
  }

  /* Expanded / open state */
  #nav-links.mobile-open {
    opacity: 1 !important;
    max-height: 500px !important;
    pointer-events: all !important;
    padding: 10px 8px 12px !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14) !important;
  }

  #nav-links li {
    list-style: none;
    width: 100%;
  }

  /* Individual link rows */
  .nav-link-item {
    display: flex !important;
    align-items: center;
    width: 100%;
    padding: 13px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: 10px;
    transition: background 0.18s ease, color 0.18s ease;
    margin: 0;
  }

  .nav-link-item:hover,
  .nav-link-item:active {
    background: rgba(232, 121, 176, 0.09);
    color: var(--pink-dark);
  }

  /* Last item = mobile CTA button */
  #nav-links li.nav-mobile-cta-item {
    margin-top: 8px;
    padding: 0;
  }

  /* Hero section adjustments */
  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
    letter-spacing: -1px;
  }

  .hero-badge {
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    padding: 5px 12px;
  }

  .hero-tags {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .hero-tag {
    font-size: 0.72rem;
    padding: 5px 12px;
    white-space: normal;
    text-align: center;
  }

  .hero-subheading {
    font-size: 1.3rem;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    padding: 11px 22px;
    font-size: 0.9rem;
  }

  /* Rest */
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stat-card {
    right: 0;
    bottom: -16px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .carousel-img {
    height: 240px;
  }

  .carousel-caption {
    bottom: 20px;
    left: 4%;
    right: 4%;
    padding: 16px 18px;
  }

  .carousel-caption h3 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.85rem;
  }

  .section-pad {
    padding: 70px 0;
  }
}

/* Tablet tweak */
@media (min-width: 768px) and (max-width: 991px) {
  .about-img {
    height: 360px;
  }
}

/* Hide mobile-only CTA in nav on desktop */
.nav-mobile-cta-item {
  display: none;
}

/* Mobile nav CTA button */
@media (max-width: 767px) {
  .nav-mobile-cta-item {
    display: block !important;
    padding: 4px 4px 8px;
    margin-top: 4px;
  }

  .nav-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--pink-dark), #a01480);
    color: #fff !important;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(192, 38, 163, 0.35);
  }

  .nav-mobile-cta:hover,
  .nav-mobile-cta:active {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff !important;
  }
}

/* =============================================
   INFO BAR
   ============================================= */

#info-bar {
  background: #fff;
  border-top: 1px solid #f0f0f5;
  border-bottom: 1px solid #f0f0f5;
  padding: 0;
  position: relative;
  z-index: 10;
}

.info-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow-x: auto;
  scrollbar-width: none;
}

.info-bar-inner::-webkit-scrollbar {
  display: none;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  flex: 1;
  min-width: 150px;
  border-right: 1px solid #f0f0f5;
  transition: background 0.25s;
}

.info-bar-item:last-child {
  border-right: none;
}

.info-bar-item:hover {
  background: #fdf0f8;
}

.info-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232, 121, 176, 0.1);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.info-bar-icon i {
  font-size: 1rem;
}

.info-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-bar-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
}

.info-bar-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.2;
}


/* =============================================
   WHO WE HELP SECTION
   ============================================= */

.whowehelp-section {
  background: #f7f4f9;
  padding: 80px 0 90px;
}

/* Header */
.whowehelp-header {
  margin-bottom: 44px;
}

.whowehelp-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.whowehelp-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.whowehelp-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--pink);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.whowehelp-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.whowehelp-accent {
  font-style: italic;
  color: var(--pink);
}

/* Cards */
.whowehelp-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  padding: 40px 36px 36px;
  height: 100%;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.whowehelp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.11);
}

/* Faint background number */
.whowehelp-card-number {
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(232, 121, 176, 0.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -2px;
}

.whowehelp-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 64px;
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.whowehelp-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.whowehelp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink);
  text-decoration: none;
  transition: gap 0.22s ease, color 0.22s ease;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.whowehelp-card-cta:hover {
  color: var(--pink-dark);
  gap: 10px;
}

/* Responsive */
@media (max-width: 767px) {
  .whowehelp-section {
    padding: 60px 0 70px;
  }

  .whowehelp-heading {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .whowehelp-card {
    padding: 32px 28px 28px;
  }

  .whowehelp-card-number {
    font-size: 4.5rem;
    top: 16px;
    left: 22px;
  }

  .whowehelp-card-title {
    margin-top: 52px;
    font-size: 1.12rem;
  }
}


/* =============================================
   TOP SPECIALTIES SECTION
   ============================================= */

.specialties-section {
  background: #fff;
  padding: 80px 0 90px;
}

/* Header */
.specialties-header {
  margin-bottom: 48px;
}

.specialties-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.specialties-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.specialties-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--pink);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.specialties-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.specialties-accent {
  font-style: italic;
  color: var(--pink);
}

.specialties-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
}

/* Cards */
.specialty-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialty-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}

/* Image area — replace background-image URL below to swap images */
.specialty-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

.specialty-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Fade the image into the white body below */
  background: linear-gradient(to bottom, transparent 50%, #ffffff);
}

/* ── Swap these URLs to local images when ready:
   .card1 { background-image: url('../images/cards/placeholder1.jpg'); }
   .card2 { background-image: url('../images/cards/placeholder2.jpg'); }
   .card3 { background-image: url('../images/cards/placeholder3.jpg'); }
   ── */
.card1 {
  background-image: url('../images/cards/ivf.jpeg');
}

.card2 {
  background-image: url('../images/cards/cardiacSurgery.jpeg');
}

.card3 {
  background-image: url('../images/cards/Orthopaedics.jpeg');
}

/* Card body */
.specialty-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #ffffff;
  position: relative;
  z-index: 2;
  margin-top: -24px;
  border-radius: 20px 20px 0 0;
}

.specialty-icon {
  font-size: 1.5rem;
  color: var(--pink);
  margin-bottom: 14px;
  line-height: 1;
}

.specialty-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.specialty-desc-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}

.specialty-badge {
  display: inline-block;
  background: rgba(232, 121, 176, 0.1);
  color: var(--pink-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  align-self: flex-start;
  border: 1px solid rgba(232, 121, 176, 0.2);
}

/* Responsive */
@media (max-width: 767px) {
  .specialties-section {
    padding: 60px 0 70px;
  }

  .specialties-heading {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .specialty-card-img {
    height: 200px;
  }

  .specialty-card-body {
    padding: 20px;
  }

  .specialty-title {
    font-size: 1.15rem;
  }

  .specialty-desc-text {
    font-size: 0.85rem;
  }

  /* Ensure cards in the row have equal height */
  .specialties-section .row {
    row-gap: 20px;
  }
}


/* =============================================
   ALL TREATMENTS SECTION
   ============================================= */

.treatments-section {
  background: #f7f4f9;
  padding: 80px 0 90px;
}

/* Header */
.treatments-header {
  margin-bottom: 48px;
}

.treatments-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.treatments-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.treatments-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--pink);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.treatments-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.treatments-accent {
  font-style: italic;
  color: var(--pink);
}

.treatments-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
}

/* Treatment Cards */
.treatment-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 28px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.30s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.30s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.11);
}

/* Top row: icon + optional badge */
.tc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Icon box — swap <i> for <img src="icons/..."> to use custom icons */
.tc-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f8e8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--pink);
  flex-shrink: 0;
}

/* Badges */
.tc-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pink-dark);
  background: rgba(232, 121, 176, 0.12);
  border: 1px solid rgba(232, 121, 176, 0.22);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.tc-badge-usp {
  color: var(--pink-dark);
  background: rgba(192, 38, 163, 0.09);
  border-color: rgba(192, 38, 163, 0.2);
}

/* Card text */
.tc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tc-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

/* Responsive */
@media (max-width: 767px) {
  .treatments-section {
    padding: 60px 0 70px;
  }

  .treatments-heading {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .treatment-card {
    padding: 24px 22px;
  }
}


/* =============================================
   CONSULTATION BOOKING SECTION – Overlapping Premium Layout
   ============================================= */

.consult-section {
  /* background: #f9f5fb; */
  padding: 80px 0 120px;
  margin-top: 50px;
  /* extra bottom padding makes room for the card's downward extend */
}

/* Outer wrapper — sets the positioning context for the floating card */
.consult-overlap-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 40px; */
  display: flex;
  align-items: center;
}

/* ---- WIDE BACKGROUND PANEL ---- */
.consult-bg-panel {
  position: relative;
  width: 100%;
  min-height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: url('../images/doctor-background.jpeg') no-repeat top center;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Soft white overlay so text is fully legible */
.consult-bg-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  border-radius: inherit;
}

/* Text content inside the bg panel */
.consult-left-inner {
  position: relative;
  z-index: 2;
  padding: 64px 56px;
  max-width: 52%;
  /* text lives in the left portion, card takes the right */
}

/* ---- Label ---- */
.consult-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.consult-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.consult-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--pink);
  text-transform: uppercase;
}

/* ---- Heading ---- */
.consult-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.consult-heading-pink {
  font-style: italic;
  color: var(--pink);
  font-family: 'Playfair Display', serif;
}

/* ---- Support text ---- */
.consult-support {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 380px;
}

/* ---- Bullets ---- */
.consult-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consult-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.consult-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232, 121, 176, 0.15);
  color: var(--pink);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- FLOATING FORM CARD ---- */
.consult-float-card {
  position: absolute;
  right: 40px;
  /* aligns to the wrapper's right padding edge */
  top: 45%;
  transform: translateY(-50%);
  width: 600px;
  z-index: 10;
  height: 670px;
}

.consult-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 6px 20px rgba(232, 121, 176, 0.08);
  padding: 20px 32px;
  width: 100%;
  border: 1px solid rgba(232, 121, 176, 0.08);
}

.consult-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

.consult-card-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ---- Form fields ---- */
.consult-label-field {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.consult-optional {
  font-weight: 400;
  opacity: 0.7;
}

.consult-input {
  width: 100%;
  height: 40px;
  border: 1.5px solid #e8e8f0;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #fafafe;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  font-family: 'Inter', sans-serif;
  -webkit-appearance: none;
  appearance: none;
}

.consult-input:focus {
  border-color: var(--pink-light);
  box-shadow: 0 0 0 3px rgba(232, 121, 176, 0.12);
  background: #fff;
}

.consult-input::placeholder {
  color: #c0c0d8;
}

/* Select wrapper */
.consult-select-wrap {
  position: relative;
}

.consult-select {
  cursor: pointer;
  padding-right: 40px;
}

.consult-select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Hide native icon when Choices.js is active */
.choices+.consult-select-icon {
  display: none;
}

/* Custom Choices.js Styling */
.choices {
  margin-bottom: 0;
}

.choices__inner {
  border: 1.5px solid #e8e8f0;
  border-radius: 10px;
  padding: 0 16px;
  height: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #fafafe;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.choices.is-focused .choices__inner {
  border-color: var(--pink-light);
  box-shadow: 0 0 0 3px rgba(232, 121, 176, 0.12);
  background: #fff;
}

.choices__list--dropdown {
  border: 1px solid #e8e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 4px;
  z-index: 10;
}

.choices__item--choice {
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: rgba(232, 121, 176, 0.1);
}

/* Textarea */
.consult-textarea {
  resize: vertical;
  min-height: 90px;
}

/* ---- Buttons ---- */
.consult-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 15px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232, 121, 176, 0.4);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  height: 40px;
}

.consult-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 121, 176, 0.55);
  color: #fff;
}

.consult-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid #e0e0ee;
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  height: 40px;
  white-space: nowrap;
}

.consult-btn-wa:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37, 211, 102, 0.05);
}

.consult-btn-wa i {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Sub-360px: scale down button text so icon stays inline */
@media (max-width: 359px) {
  .consult-btn-wa {
    font-size: 0.8rem;
    padding: 13px 18px;
    gap: 5px;
  }

  .consult-btn-wa i {
    font-size: 0.9rem;
  }
}


/* =============================================
   RESPONSIVE – CONSULTATION
   ============================================= */

/* Tablet Landscape (992–1199px): reduce card width, slight overlap maintained */
@media (min-width: 992px) and (max-width: 1199px) {
  .consult-bg-panel {
    width: 80%;
  }

  .consult-left-inner {
    padding: 48px 40px;
    max-width: 55%;
  }

  .consult-float-card {
    width: 380px;
    right: 32px;
  }
}

/* Tablet Portrait & Mobile (≤ 991px): stack vertically, card below content */
@media (max-width: 991px) {
  .consult-section {
    padding: 60px 0 80px;
  }

  .consult-overlap-wrapper {
    flex-direction: column;
    padding: 0 32px;
    align-items: stretch;
  }

  .consult-bg-panel {
    width: 100%;
    min-height: auto;
    border-radius: var(--radius-lg);
  }

  .consult-left-inner {
    padding: 56px 40px;
    max-width: 100%;
  }

  .consult-float-card {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    margin-top: 32px;
  }

  .consult-card {
    padding: 32px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  }

  .consult-card-title {
    font-size: 1.4rem;
  }
}

/* Mobile Small (≤ 767px): additional compacting */
@media (max-width: 767px) {
  .consult-section {
    padding: 48px 0 56px;
  }

  .consult-overlap-wrapper {
    padding: 0 20px;
  }

  .consult-left-inner {
    padding: 40px 28px;
  }

  .consult-float-card {
    margin-top: 24px;
  }

  .consult-card {
    padding: 28px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  }

  .consult-card-title {
    font-size: 1.25rem;
  }

  .info-bar-item {
    padding: 14px 16px;
    min-width: 130px;
  }

  .info-bar-title {
    font-size: 0.78rem;
  }

  .info-bar-sub {
    font-size: 0.68rem;
  }
}


/* =============================================
   WHO WE ARE SECTION
   ============================================= */

.whoweare-section {
  background: #fff;
  padding: 80px 0 72px;
  margin-top: 50px;
}

/* --- Header --- */
.whoweare-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 60px;
}

.whoweare-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.whoweare-label-line {
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--pink);
}

.whoweare-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--pink);
  text-transform: uppercase;
}

.whoweare-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.whoweare-accent {
  font-style: italic;
  color: var(--pink);
}

.whoweare-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

/* --- Two-column grid --- */
.whoweare-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid #ebebf0;
}

/* Vertical divider */
.whoweare-divider {
  width: 1px;
  background: #e4e4ec;
  align-self: stretch;
}

/* Shared column styles */
.whoweare-col {
  padding: 32px 0;
}

.whoweare-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.whoweare-col-text {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
}

.whoweare-col-intro {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Values two-column list */
.whoweare-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.whoweare-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.whoweare-values-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.whoweare-values-list li::before {
  content: '·';
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.5;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .whoweare-section {
    padding: 60px 0 52px;
  }

  .whoweare-header {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .whoweare-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid #ebebf0;
  }

  .whoweare-divider {
    display: none;
  }

  .whoweare-col {
    padding: 28px 0;
    border-bottom: 1px solid #f0f0f5;
  }

  .whoweare-col:last-child {
    border-bottom: none;
  }

  .whoweare-values-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}


/* =============================================
   PATIENT JOURNEY TIMELINE SECTION
   ============================================= */

.journey-section {
  background: #fff;
  padding: 88px 0 96px;
}

/* --- Header --- */
.journey-header {
  margin-bottom: 64px;
  max-width: 640px;
}

.journey-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.journey-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.journey-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--pink);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.journey-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.journey-accent {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

.journey-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* --- Timeline (desktop: horizontal flex) --- */
.journey-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 0;
}

/* Connector line — drawn through center of all nodes */
.journey-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  /* half of node height (48px / 2) */
  left: calc(20% / 2);
  /* start at center of first step */
  right: calc(20% / 2);
  /* end at center of last step */
  height: 1px;
  background: #e6b0dc;
  z-index: 0;
}

/* --- Individual Step --- */
.journey-step {
  position: relative;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Node wrapper — centers the circle */
.journey-node-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* Circular node */
.journey-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pink);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: background 0.25s ease, color 0.25s ease,
    box-shadow 0.25s ease;
}

.journey-step:hover .journey-node {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 121, 176, 0.38);
}

/* Content area */
.journey-content {
  padding-right: 20px;
}

.journey-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.1px;
}

.journey-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}


/* --- Tablet (768px – 991px): compress spacing --- */
@media (min-width: 768px) and (max-width: 991px) {
  .journey-section {
    padding: 72px 0 80px;
  }

  .journey-heading {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .journey-step-title {
    font-size: 1rem;
  }

  .journey-step-desc {
    font-size: 0.8rem;
  }

  .journey-content {
    padding-right: 12px;
  }
}


/* --- Mobile (≤ 767px): vertical stacked timeline --- */
@media (max-width: 767px) {
  .journey-section {
    padding: 60px 0 68px;
  }

  .journey-header {
    margin-bottom: 48px;
  }

  .journey-heading {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  /* Switch to vertical layout */
  .journey-timeline {
    flex-direction: column;
    gap: 0;
  }

  /* Replace horizontal line with a vertical one on the left */
  .journey-timeline::before {
    top: 24px;
    left: 23px;
    /* center of 48px node */
    right: auto;
    width: 1px;
    height: calc(100% - 48px);
    background: #e6b0dc;
  }

  .journey-step {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }

  .journey-step:last-child {
    margin-bottom: 0;
  }

  .journey-node-wrap {
    width: auto;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .journey-content {
    padding-right: 0;
    padding-top: 10px;
  }

  .journey-step-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
}



/* =============================================
   COST & COMPARISON SECTION
   ============================================= */

.costcmp-section {
  background: #fff;
  padding: 88px 0 96px;
}

/* --- Header --- */
.costcmp-header {
  margin-bottom: 48px;
  max-width: 760px;
}

.costcmp-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.costcmp-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.costcmp-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--pink);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.costcmp-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.costcmp-accent {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

.costcmp-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.78;
  margin: 0;
  max-width: 660px;
}

/* --- Table Wrapper --- */
.costcmp-table-wrap {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #ede8f4;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.055);
}

/* Override Bootstrap table-responsive margin */
.costcmp-table-wrap .table-responsive {
  margin: 0;
  border-radius: 0;
}

/* --- Table Base --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  min-width: 640px;
  /* ensures horizontal scroll kicks in on mobile */
}

/* --- Header Row --- */
.comparison-table thead tr {
  border-bottom: 1px solid #ede8f4;
}

.comparison-table thead th {
  padding: 18px 22px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: 0.1px;
  background: #fff;
}

/* Kerala header cell — highlighted column */
.comparison-table thead th.ct-col-kerala {
  background: #fdf0fa;
  color: var(--pink-dark);
  font-weight: 700;
}

/* Procedure column width */
.ct-col-proc {
  width: 24%;
}

/* Kerala column width */
.ct-col-kerala {
  width: 22%;
}

/* Other country columns */
.ct-col-other {
  width: 18%;
}

/* Flag emoji */
.ct-flag {
  font-style: normal;
  margin-right: 4px;
  font-size: 0.9rem;
}

/* --- Body Rows --- */
.comparison-table tbody tr {
  border-bottom: 1px solid #f3edf8;
  transition: background 0.2s ease;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: #fdf9ff;
}

/* Procedure label cell */
.ct-procedure {
  padding: 20px 22px;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 400;
  vertical-align: middle;
}

/* Kerala price cell — highlighted */
.ct-kerala-price {
  padding: 20px 22px;
  background: #fdf0fa;
  vertical-align: middle;
}

.ct-price {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 6px;
  white-space: nowrap;
}

/* Savings badge */
.save-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f8dff3;
  color: #d946c5;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1px;
}

/* Other country price cells */
.ct-other-price {
  padding: 20px 22px;
  font-size: 0.87rem;
  color: var(--text-light);
  vertical-align: middle;
  white-space: nowrap;
}

/* --- Footnote --- */
.costcmp-footnote {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.77rem;
  color: #b0a8bc;
  padding: 14px 20px 18px;
  margin: 0;
  border-top: 1px solid #f3edf8;
}

/* --- Tablet --- */
@media (min-width: 768px) and (max-width: 991px) {
  .costcmp-section {
    padding: 72px 0 80px;
  }

  .costcmp-heading {
    font-size: clamp(2.1rem, 4.5vw, 3rem);
  }

  .comparison-table thead th,
  .ct-procedure,
  .ct-kerala-price,
  .ct-other-price {
    padding: 16px 16px;
  }
}

/* --- Mobile --- */
@media (max-width: 767px) {
  .costcmp-section {
    padding: 60px 0 68px;
  }

  .costcmp-header {
    margin-bottom: 36px;
  }

  .costcmp-heading {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .costcmp-table-wrap {
    border-radius: 16px;
  }

  /* Compact cells on mobile scroll */
  .comparison-table thead th,
  .ct-procedure,
  .ct-kerala-price,
  .ct-other-price {
    padding: 14px 14px;
    font-size: 0.82rem;
  }

  .ct-price {
    font-size: 0.85rem;
  }

  .save-badge {
    font-size: 0.67rem;
    padding: 3px 8px;
  }
}





/* =============================================
   WHY KERALA SHOWCASE – Unified Section
   (Benefits cards + Destination carousel)
   ============================================= */

/* ---- Outer wrapper: shared soft background ---- */
.why-kerala-showcase {
  background: #faf8fc;
  position: relative;
  overflow: hidden;
}

/* ---- TOP: header + cards area ---- */
.wks-top {
  padding: 88px 0 64px;
}

/* ---- BOTTOM: carousel area (no extra top padding — flows from cards) ---- */
.wks-carousel-area {
  position: relative;
  padding-top: 0;
  padding-bottom: 80px;
}

/* ---- Carousel outer: clips the overflow, sets visible area ---- */
.dest-carousel-outer {
  position: relative;
  /* Show ~10% of side slides on each edge */
  padding: 0 9%;
  overflow: hidden;
}

/* ---- The scrolling track ---- */
.dest-carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  /* gap handled by slide margin */
}

/* ---- Shimmer keyframe for skeleton loading state ---- */
@keyframes dest-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ---- Individual slide ---- */
.dest-slide {
  flex: 0 0 82%;
  /* center slide width */
  max-width: 82%;
  margin: 0 1%;
  /* creates gap between slides */
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease;
  /* Side-slide dim effect */
  opacity: 0.55;
  transform: scale(0.91);
}

/* Shimmer overlay shown before image loads */
.dest-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(
    90deg,
    #e8dff0 0%,
    #f5eeff 40%,
    #ecdff8 60%,
    #e8dff0 100%
  );
  background-size: 200% 100%;
  animation: dest-shimmer 1.6s ease-in-out infinite;
  z-index: 1;
  transition: opacity 0.4s ease;
}

/* Hide shimmer once image is loaded */
.dest-slide.img-loaded::before {
  opacity: 0;
  pointer-events: none;
}

.dest-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* ---- Slide image ---- */
.dest-slide-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 32px;
  /* Neutral fallback so layout holds without real images */
  background: linear-gradient(135deg, #d4e8e4 0%, #e8d4f0 100%);
  position: relative;
  z-index: 2;
  /* Start invisible, fade in once loaded */
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Image fully visible after load */
.dest-slide.img-loaded .dest-slide-img {
  opacity: 1;
}

/* ---- Floating location label ---- */
.dest-img-label {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 10px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
}

/* ---- Stats panel: overlaps the bottom of the carousel ---- */
.dest-stats-panel {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  margin: -15px auto 0;
  /* pulls panel up to overlap image */
  position: relative;
  z-index: 10;
  max-width: 900px;
  width: calc(82% + 2%);
  /* matches center slide width */
}

.dest-stats-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 36px 0;
}

/* Individual stat */
.dest-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px;
  text-align: center;
  gap: 10px;
}

/* Thin vertical divider */
.dest-stat-divider {
  width: 1px;
  background: #ede8f4;
  flex-shrink: 0;
  align-self: stretch;
  margin: 8px 0;
}

/* Big stat number */
.dest-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.5px;
}

/* Superscript-style suffix (L, d, %+) */
.dest-stat-sup {
  font-family: 'Playfair Display', serif;
  font-size: 0.55em;
  font-weight: 700;
  color: var(--pink);
  vertical-align: super;
  letter-spacing: 0;
}

/* Stat description */
.dest-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.55;
  max-width: 130px;
}

/* Navigation buttons are now positioned absolutely relative to the stats panel */

/* Arrow buttons */
.dest-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid var(--pink-light);
  color: var(--pink);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease,
    color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 30;
}

.dest-nav-prev {
  left: -24px;
}

.dest-nav-next {
  right: -24px;
}

.dest-nav-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 121, 176, 0.38);
}

.dest-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---- Tablet (768–991px) ---- */
@media (min-width: 768px) and (max-width: 991px) {
  .wks-top {
    padding: 72px 0 52px;
  }

  .dest-carousel-outer {
    padding: 0 6%;
  }

  .dest-slide {
    flex: 0 0 88%;
    max-width: 88%;
  }

  .dest-slide-img {
    height: 420px;
  }

  .dest-stats-panel {
    width: calc(88% + 2%);
    max-width: 96%;
  }

  .dest-stat-number {
    font-size: 2rem;
  }

  .dest-stat-item {
    padding: 0 16px;
  }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767px) {
  .wks-top {
    padding: 56px 0 40px;
  }

  /* Full-width slide on mobile, hide side peeks */
  .dest-carousel-outer {
    padding: 0 16px;
  }

  .dest-slide {
    flex: 0 0 88%;
    max-width: 88%;
    margin: 0 8px;       /* visible gap between slides */
    opacity: 1;
    transform: scale(1);
    border-radius: 20px;
    overflow: hidden;
  }

  /* Match shimmer radius on mobile */
  .dest-slide::before {
    border-radius: 20px;
  }

  .dest-slide.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .dest-slide-img {
    height: 280px;
    border-radius: 20px;
  }

  .dest-img-label {
    font-size: 0.88rem;
    padding: 8px 20px;
    bottom: 18px;
  }

  /* Stats panel: 2×2 grid on mobile */
  .dest-stats-panel {
    width: calc(100% - 32px);
    max-width: 100%;
    margin: -32px auto 0;
    border-radius: 20px;
  }

  .dest-stats-inner {
    flex-wrap: wrap;
    padding: 24px 0 20px;
  }

  .dest-stat-item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 14px 16px;
    gap: 6px;
  }

  .dest-stat-divider {
    display: none;
  }

  /* Add bottom border between top and bottom rows */
  .dest-stat-item:nth-child(1),
  .dest-stat-item:nth-child(3) {
    border-bottom: 1px solid #ede8f4;
  }

  /* Vertical divider between left and right columns via box-shadow trick */
  .dest-stat-item:nth-child(1),
  .dest-stat-item:nth-child(5) {
    border-right: 1px solid #ede8f4;
  }

  .dest-stat-number {
    font-size: 1.7rem;
  }

  .dest-stat-label {
    font-size: 0.73rem;
    max-width: none;
  }

  .dest-nav-wrap {
    padding: 20px 0 52px;
  }
}


/* =============================================
   WHY INDIA · WHY KERALA – Card styles
   (Section layout now handled by .why-kerala-showcase + .wks-top)
   ============================================= */


/* --- Header --- */
.whykerala-header {
  margin-bottom: 52px;
  max-width: 680px;
}

.whykerala-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.whykerala-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.whykerala-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--pink);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.whykerala-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.whykerala-accent {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

/* --- Feature Cards --- */
.why-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #f1dceb;
  padding: 36px 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.10);
}

/* Icon box */
.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8e5f4;
  color: #c62eb3;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-bottom: 24px;
  /* Allow easy icon image swap:
     replace <i> with <img src="icons/award.svg"> */
}

/* Card text */
.why-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  letter-spacing: -0.15px;
  margin-bottom: 14px;
}

.why-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.78;
  margin: 0;
  flex: 1;
}

/* --- Tablet (768px – 991px) --- */
@media (min-width: 768px) and (max-width: 991px) {
  /* .wks-top handles section padding at this breakpoint */

  .whykerala-heading {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .why-card {
    padding: 30px 28px 28px;
  }
}

/* --- Mobile (≤ 767px) --- */
@media (max-width: 767px) {
  /* .wks-top handles section padding at this breakpoint */

  .whykerala-header {
    margin-bottom: 40px;
  }

  .whykerala-heading {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  .why-card {
    padding: 28px 24px 26px;
    border-radius: 20px;
  }

  .why-icon-box {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    border-radius: 12px;
    margin-bottom: 18px;
  }

  .why-card-title {
    font-size: 1.05rem;
  }
}



/* =============================================
   HEAL & HOLIDAY SECTION (11th screen)
   ============================================= */

.healholiday-section {
  background: #f7f4fb;
  padding: 88px 0 96px;
  overflow: hidden;
}

/* ---------- Two-column inner container ---------- */
.healholiday-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- LEFT: Content ---------- */
.healholiday-left {
  flex: 0 0 320px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
}

/* Eyebrow label */
.healholiday-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.healholiday-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.healholiday-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--pink);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* Main heading */
.healholiday-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

/* Italic pink accent */
.healholiday-accent {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

/* Supporting paragraph */
.healholiday-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 290px;
}

/* Nav arrow buttons */
.healholiday-nav {
  display: flex;
  gap: 12px;
}

.healholiday-btn {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #e8c0de;
  color: var(--pink);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease,
    color 0.25s ease, box-shadow 0.25s ease,
    transform 0.2s ease;
  box-shadow: 0 2px 10px rgba(232, 121, 176, 0.1);
}

.healholiday-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 6px 22px rgba(232, 121, 176, 0.35);
  transform: translateY(-1px);
}

.healholiday-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ---------- RIGHT: Sliding Cards ---------- */
.healholiday-right {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* Clip overflow — padding-right shows peek of next card */
.hh-track-wrap {
  overflow: hidden;
  padding-right: 56px;
}

/* Sliding flex row */
.hh-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---------- Individual Card ---------- */
.hh-card {
  flex: 0 0 400px;
  max-width: 400px;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #f0eaf6;
  box-shadow: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
  transform: scale(0.97);
}

.hh-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: none;
}

/* Image wrapper — relative for overlay + badge */
.hh-card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 32px 32px 0 0; /* match card top corners */
  width: 100%;
  line-height: 0; /* remove inline-block gap below image */
}

/* Card image */
.hh-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0; /* wrapper handles clipping */
  /* Neutral gradient fallback until real photos are dropped in */
  background: linear-gradient(135deg, #d4e8e4 0%, #e8d4f0 100%);
  transition: transform 0.5s ease;
}

.hh-card:hover .hh-card-img {
  transform: scale(1.03);
}

/* Gradient fade overlay at image bottom */
.hh-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 55%,
      rgba(255, 255, 255, 0.92) 100%);
  pointer-events: none;
}

/* Floating category badge */
.hh-badge {
  position: absolute;
  bottom: 18px;
  left: 20px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pink);
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Card body */
.hh-card-body {
  padding: 24px 26px 28px;
}

.hh-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.hh-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.72;
  margin: 0;
}

/* ---------- Tablet (768px – 1199px) ---------- */
@media (min-width: 768px) and (max-width: 1199px) {
  .healholiday-section {
    padding: 72px 0 80px;
  }

  .healholiday-inner {
    gap: 40px;
    padding: 0 24px;
  }

  .healholiday-left {
    flex: 0 0 260px;
    max-width: 260px;
  }

  .healholiday-heading {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }

  .hh-card {
    flex: 0 0 340px;
    max-width: 340px;
  }

  .hh-card-img {
    height: 270px;
  }

  .hh-track-wrap {
    padding-right: 36px;
  }
}

/* ---------- Mobile (≤ 767px): Stack vertically ---------- */
@media (max-width: 767px) {
  .healholiday-section {
    padding: 60px 0 68px;
  }

  .healholiday-inner {
    flex-direction: column;
    gap: 36px;
    padding: 0 20px;
    align-items: flex-start;
  }

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

  .healholiday-heading {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  .healholiday-desc {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .healholiday-right {
    width: 100%;
  }

  .hh-track-wrap {
    padding-right: 44px;
  }

  .hh-card {
    flex: 0 0 calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    border-radius: 24px;
  }

  .hh-card-img {
    height: 220px;
  }

  .hh-card-img-wrap {
    border-radius: 24px 24px 0 0;
  }

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

  .hh-card-title {
    font-size: 1.05rem;
  }

  .hh-track-wrap {
    padding-right: 32px;
  }
}



/* =============================================
   GLOBAL SPOTLIGHT / NEWS SECTION (12th screen)
   ============================================= */

.spotlight-section {
  background: #ffffff;
  padding: 88px 0 80px;
}

/* ---------- Header ---------- */
.spotlight-header {
  margin-bottom: 48px;
}

.spotlight-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.spotlight-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.spotlight-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--pink);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.spotlight-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.spotlight-accent {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

.spotlight-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
  max-width: 680px;
}

/* ---------- Slider wrapper ---------- */
.news-slider-wrap {
  overflow: hidden;
  margin-bottom: 40px;
}

/* Sliding track — flex row, JS drives transform */
.news-track {
  display: flex;
  gap: 24px;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---------- News Card ---------- */
.news-card {
  /* Desktop: two visible at a time inside container */
  flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #f1dceb;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ---------- Card image area ---------- */
.news-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.news-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  /* Gradient fallback before real images are added */
  background: linear-gradient(135deg, #d4e8e4 0%, #e8d4f0 100%);
  transition: transform 0.45s ease;
}

.news-card:hover .news-card-img {
  transform: scale(1.04);
}

/* White fade overlay at bottom of image */
.news-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 55%,
      rgba(255, 255, 255, 0.92) 100%);
  pointer-events: none;
}

/* Source badge floating over image top-left */
.news-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 5px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--pink);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

/* ---------- Card body ---------- */
.news-card-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.38;
  letter-spacing: -0.2px;
  margin: 0;
}

.news-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

/* Card footer: truncated URL + CTA link */
.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid #f5eef8;
  margin-top: 4px;
}

.news-url {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: var(--pink);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70%;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.news-url:hover {
  opacity: 1;
  text-decoration: underline;
}

.news-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.1px;
  transition: color 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.news-cta:hover {
  opacity: 0.75;
}

/* ---------- Controls: prev | dots | next ---------- */
.news-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

/* Arrow buttons */
.news-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #e8c0de;
  color: var(--pink);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease,
    color 0.25s ease, box-shadow 0.25s ease,
    transform 0.2s ease;
  box-shadow: 0 2px 10px rgba(232, 121, 176, 0.1);
  flex-shrink: 0;
}

.news-nav-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 6px 22px rgba(232, 121, 176, 0.35);
  transform: translateY(-1px);
}

.news-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Pagination dots */
.news-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd0e8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.news-dot.is-active {
  background: var(--pink);
  width: 24px;
  border-radius: 5px;
}

/* ---------- Tablet (768px – 1199px) ---------- */
@media (min-width: 768px) and (max-width: 1199px) {
  .spotlight-section {
    padding: 72px 0 64px;
  }

  .spotlight-heading {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
  }

  .news-card-img {
    height: 240px;
  }

  .news-card-body {
    padding: 22px 22px 24px;
  }

  .news-card-title {
    font-size: 1.08rem;
  }
}

/* ---------- Mobile (≤ 767px): single card ---------- */
@media (max-width: 767px) {
  .spotlight-section {
    padding: 60px 0 56px;
  }

  .spotlight-header {
    margin-bottom: 36px;
  }

  .spotlight-heading {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .spotlight-desc {
    font-size: 0.9rem;
  }

  /* Full-width single card on mobile */
  .news-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .news-card-img {
    height: 220px;
  }

  .news-card-body {
    padding: 20px 20px 22px;
    gap: 10px;
  }

  .news-card-title {
    font-size: 1.05rem;
  }

  .news-card-desc {
    font-size: 0.84rem;
  }

  .news-controls {
    padding: 0;
  }

  .news-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .news-slider-wrap {
    margin-bottom: 28px;
  }
}



/* =============================================
   FAQ SECTION (13th screen)
   ============================================= */

.faq-section {
  background: #f7f4fb;
  padding: 88px 0 96px;
}

/* ---------- Two-column inner layout ---------- */
.faq-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* ---------- LEFT column ---------- */
.faq-left {
  flex: 0 0 280px;
  max-width: 280px;
  position: sticky;
  top: 100px;
  /* stays visible while scrolling through accordion */
}

.faq-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.faq-label-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.faq-label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--pink);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.faq-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.faq-accent {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

.faq-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

/* ---------- RIGHT column: accordion ---------- */
.faq-right {
  flex: 1;
  min-width: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- FAQ item card ---------- */
.faq-item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f0e8f5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.045);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.is-open {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.45;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--pink);
}

/* +/× icon — rotates 45° when open */
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0e8f5;
  color: var(--pink);
  font-size: 1.1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.28s ease,
              color     0.28s ease,
              transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  user-select: none;
}

.faq-item.is-open .faq-icon {
  background: var(--pink);
  color: #fff;
  transform: rotate(45deg);
}

/* Answer panel — CSS-only smooth animation via grid rows trick */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.36s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.28s ease;
  opacity: 0;
  /* no overflow:hidden here — inner div handles clipping */
}

/* Inner wrapper is the real clip boundary */
.faq-answer-inner {
  overflow: hidden;
  padding: 0 24px;
  transition: padding 0.3s ease;
}

/* When open: expand to full content height */
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-answer-inner {
  padding: 4px 24px 22px;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* ---------- Tablet (768px – 1199px) ---------- */
@media (min-width: 768px) and (max-width: 1199px) {
  .faq-section {
    padding: 72px 0 80px;
  }

  .faq-inner {
    gap: 48px;
  }

  .faq-left {
    flex: 0 0 220px;
    max-width: 220px;
  }

  .faq-heading {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }
}

/* ---------- Mobile (≤ 767px): stack vertically ---------- */
@media (max-width: 767px) {
  .faq-section {
    padding: 60px 0 68px;
  }

  .faq-inner {
    flex-direction: column;
    gap: 36px;
  }

  .faq-left {
    flex: none;
    max-width: 100%;
    width: 100%;
    position: static;
    /* no sticky on mobile */
  }

  .faq-heading {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.is-open .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}


/* =============================================
   PREMIUM FOOTER
   ============================================= */

.site-footer {
  background: #faf8fc;
  padding: 72px 0 0;
  border-top: 1px solid #ede8f4;
}

/* ---------- 4-column grid ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* ---------- Brand column ---------- */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 100px;
  height: 135px;
  margin-left: -5px;
  object-fit: contain;
  transform: scale(1.8);
  transform-origin: center center;
}

/* Text fallback logo */
.footer-logo-text {
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.footer-logo-vita {
  color: var(--text-dark);
}

.footer-logo-plush {
  color: var(--pink);
}

.footer-brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 24px;
  max-width: 280px;
  margin-top: -55px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid #e8c0de;
  background: transparent;
  color: var(--pink);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease,
    box-shadow 0.25s ease, transform 0.2s ease;
}

.footer-social-btn:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: 0 4px 16px rgba(232, 121, 176, 0.35);
  transform: translateY(-2px);
}

/* ---------- Column heading ---------- */
.footer-col-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ---------- Contact list ---------- */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
}

.footer-contact-list li i {
  color: var(--pink);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--pink);
}

/* ---------- Nav links ---------- */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-nav-list a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--pink);
  padding-left: 4px;
}

/* ---------- Accreditation badge ---------- */
.footer-accred-badge {
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--pink);
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-accred-badge i {
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Bottom bar ---------- */
.footer-bottom {
  border-top: 1px solid #ede8f4;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #b0a8bc;
  margin: 0;
}

.footer-bottom-accred {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #b0a8bc;
  margin: 0;
  text-align: right;
}

/* ---------- Tablet (768px – 1199px) ---------- */
@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer {
    padding: 60px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-bottom: 44px;
  }

  .footer-brand-desc {
    max-width: 100%;
  }
}

/* ---------- Mobile (≤ 767px) ---------- */
@media (max-width: 767px) {
  .site-footer {
    padding: 52px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 0;
  }

  .footer-bottom-accred {
    text-align: left;
  }

  /* Override old footer-logo style that may conflict */
  .footer-logo {
    font-size: 1.4rem;
  }
}