/* 
 * Bump & Bloom - Premium Design System Stylesheet
 * Elegant, mobile-responsive, aesthetic CSS for prenatal & postnatal wellness
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  /* Color Palette - Premium Blush & Rosewood */
  --primary-burgundy: #5c1f3c;
  /* Deep premium Plum/Rosewood */
  --primary-burgundy-rgb: 92, 31, 60;
  --rose-accent: #d46c87;
  /* Radiant Rose */
  --rose-light: #f7a8b8;
  /* Gentle Blossom Pink */
  --blush-bg: #fff0f2;
  /* Luxurious Light Blush */
  --warm-sand: #faf5f0;
  /* Soft Sand/Cream Background */
  --olive-gold: #c39b62;
  /* Subtle Gold highlight */
  --text-dark: #2c1a23;
  /* Charcoal with a hint of purple */
  --text-light: #705b65;
  /* Muted rosewood for captions */
  --white: #ffffff;
  --success: #6ba88f;
  /* Healing soft green */

  /* Glassmorphism & Elevation */
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(107, 45, 92, 0.08);
  --card-shadow: 0 12px 40px -15px rgba(92, 31, 60, 0.08);
  --hover-shadow: 0 20px 48px -10px rgba(92, 31, 60, 0.15);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--warm-sand);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--warm-sand);
}

::-webkit-scrollbar-thumb {
  background: var(--rose-light);
  border-radius: 5px;
  border: 2px solid var(--warm-sand);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rose-accent);
}

/* Typography Overrides */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--primary-burgundy);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-light);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(212, 108, 135, 0.1), rgba(247, 168, 184, 0.15));
  color: var(--rose-accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 108, 135, 0.2);
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
}

/* --- Premium Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  gap: 8px;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-accent), var(--primary-burgundy));
  color: var(--white);
  box-shadow: 0 8px 24px -6px rgba(212, 108, 135, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -4px rgba(212, 108, 135, 0.6);
  background: linear-gradient(135deg, var(--primary-burgundy), var(--rose-accent));
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-burgundy);
  border: 1px solid rgba(92, 31, 60, 0.15);
  box-shadow: var(--card-shadow);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--rose-accent);
  color: var(--rose-accent);
  box-shadow: var(--hover-shadow);
}

/* --- Navigation Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 245, 240, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--rose-light), var(--rose-accent));
  border-radius: 50% 50% 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 108, 135, 0.3);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-burgundy);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose-accent);
  font-weight: 700;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-accent);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--rose-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-burgundy);
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-burgundy);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blush-bg) 0%, var(--warm-sand) 100%);
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

/* Decorative SVG blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 168, 184, 0.25) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(195, 155, 98, 0.15) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  font-size: 4.2rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--rose-accent);
  position: relative;
}

.hero-text {
  font-size: 1.15rem;
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-ratings {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(92, 31, 60, 0.1);
  padding-top: 24px;
}

.rating-item {
  display: flex;
  flex-direction: column;
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-burgundy);
}

.rating-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-img-container {
  width: 100%;
  height: 520px;
  border-radius: 60% 40% 50% 50% / 50% 45% 55% 50%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(92, 31, 60, 0.12);
  border: 8px solid var(--white);
  animation: blob-animate 12s ease-in-out infinite alternate;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-badge-1 {
  bottom: 40px;
  left: -20px;
  animation: float-badge 6s ease-in-out infinite;
}

.floating-badge-2 {
  top: 40px;
  right: -10px;
  animation: float-badge 8s ease-in-out infinite 1s;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--rose-accent), var(--rose-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-burgundy);
}

.badge-desc {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* --- About Us Section --- */
.about {
  background: var(--white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-container {
  width: 100%;
  height: 740px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(92, 31, 60, 0.05);
}

.about-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exp-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary-burgundy), var(--rose-accent));
  color: var(--white);
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(92, 31, 60, 0.25);
  text-align: center;
}

.exp-years {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-content {
  padding-left: 20px;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.about-description {
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feat-check {
  width: 24px;
  height: 24px;
  background: rgba(107, 168, 143, 0.15);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.feat-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dr-signature {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(92, 31, 60, 0.08);
  padding-top: 24px;
}

.dr-details {
  display: flex;
  flex-direction: column;
}

.dr-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-burgundy);
}

.dr-title {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* --- Services Section --- */
.services {
  background: var(--warm-sand);
}

.services-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(92, 31, 60, 0.1);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: var(--rose-accent);
  color: var(--rose-accent);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--rose-accent), var(--primary-burgundy));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 20px -6px rgba(212, 108, 135, 0.35);
}

.services-pane {
  display: none;
}

.services-pane.active {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--rose-light), var(--rose-accent));
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(212, 108, 135, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-accent);
  font-size: 1.8rem;
  margin-bottom: 28px;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--rose-accent), var(--primary-burgundy));
  color: var(--white);
  transform: scale(1.05) rotate(5deg);
}

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

.service-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rose-accent);
}

.service-card-link i {
  transition: var(--transition-smooth);
}

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

/* Tabata Zumba Spotlight Banner inside Postnatal tab */
.spotlight-banner {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, #3e1026 100%);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  color: var(--white);
  box-shadow: 0 15px 40px rgba(92, 31, 60, 0.2);
  position: relative;
  overflow: hidden;
}

.spotlight-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 108, 135, 0.15) 0%, transparent 70%);
}

.spotlight-img-box {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.spotlight-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-info h3 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.spotlight-badge {
  background: rgba(212, 108, 135, 0.25);
  border: 1px solid rgba(212, 108, 135, 0.3);
  color: var(--rose-light);
  margin-bottom: 20px;
}

.spotlight-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 24px;
}

.spotlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.spot-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.spot-feat i {
  color: var(--rose-light);
}

/* --- Interactive Wellness Tracker Section --- */
.tracker {
  background: linear-gradient(135deg, var(--warm-sand) 0%, var(--blush-bg) 100%);
  position: relative;
}

.tracker-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.tracker-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.tracker-content p {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.tracker-benefits {
  list-style: none;
}

.tracker-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.tracker-benefits li i {
  color: var(--rose-accent);
  font-size: 1.1rem;
}

.tracker-card {
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.tracker-tabs {
  display: flex;
  background: var(--warm-sand);
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 32px;
}

.tracker-tab-btn {
  flex: 1;
  padding: 10px 0;
  text-align: center;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.tracker-tab-btn.active {
  background: var(--white);
  color: var(--primary-burgundy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.tracker-pane {
  display: none;
}

.tracker-pane.active {
  display: block;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(92, 31, 60, 0.12);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--warm-sand);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--rose-accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 108, 135, 0.1);
}

.tracker-result-box {
  background: linear-gradient(135deg, rgba(212, 108, 135, 0.05), rgba(92, 31, 60, 0.05));
  border-radius: 16px;
  padding: 24px;
  margin-top: 28px;
  border: 1px dashed rgba(212, 108, 135, 0.2);
  display: none;
}

.result-header {
  font-weight: 700;
  color: var(--primary-burgundy);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.result-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- Packages & Pricing Section --- */
.packages {
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.package-card {
  background: var(--warm-sand);
  border-radius: 28px;
  padding: 48px 36px;
  border: 1px solid rgba(92, 31, 60, 0.05);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition-bounce);
  position: relative;
}

.package-card.popular {
  background: var(--white);
  border: 2px solid var(--rose-accent);
  transform: scale(1.03);
}

.package-card.popular::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rose-accent), var(--primary-burgundy));
  color: var(--white);
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1px;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

.package-card.popular:hover {
  transform: translateY(-8px) scale(1.03);
}

.package-header {
  text-align: center;
  border-bottom: 1px solid rgba(92, 31, 60, 0.08);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin-bottom: 12px;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-burgundy);
  margin-bottom: 4px;
}

.package-price span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
}

.package-discount {
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.package-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.package-features li i {
  color: var(--success);
  font-size: 1rem;
}

.package-features li.disabled {
  color: rgba(112, 91, 101, 0.4);
  text-decoration: line-through;
}

.package-features li.disabled i {
  color: rgba(112, 91, 101, 0.3);
}

.package-btn {
  width: 100%;
}

/* --- Contact & Booking Section --- */
.contact {
  background: var(--blush-bg);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, #3a1024 100%);
  border-radius: 28px;
  padding: 50px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(92, 31, 60, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 108, 135, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info-title {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.contact-info-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact-details {
  list-style: none;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-info h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-detail-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-bounce);
}

.social-link:hover {
  background: var(--rose-accent);
  transform: scale(1.1);
  border-color: transparent;
}

.contact-form-card {
  background: var(--white);
  border-radius: 28px;
  padding: 50px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-form-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-form-subtitle {
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- Footer Section --- */
.footer {
  background: #1b0e15;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 5px solid var(--rose-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-title {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--rose-accent);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--rose-light);
  padding-left: 5px;
}

.footer-schedule {
  list-style: none;
}

.footer-schedule li {
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.footer-schedule span {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.footer-subscribe p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.subscribe-group {
  display: flex;
  gap: 8px;
}

.subscribe-group input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.subscribe-group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.subscribe-group button {
  padding: 0 20px;
  background: var(--rose-accent);
  border: none;
  color: var(--white);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.subscribe-group button:hover {
  background: var(--rose-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* --- Floating Actions --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  z-index: 999;
  animation: pulse-whatsapp 2s infinite alternate;
  cursor: pointer;
}

/* --- Modal Window --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 26, 35, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 500px;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: var(--transition-bounce);
}

.modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--warm-sand);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  border: none;
}

.modal-close:hover {
  background: var(--rose-light);
  color: var(--white);
}

/* --- Reveal on Scroll Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Animations Defined --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

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

@keyframes blob-animate {
  0% {
    border-radius: 60% 40% 50% 50% / 50% 45% 55% 50%;
  }

  50% {
    border-radius: 50% 55% 45% 55% / 55% 50% 50% 45%;
  }

  100% {
    border-radius: 60% 40% 50% 50% / 50% 45% 55% 50%;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

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

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1.08);
  }
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-banner {
    grid-column: span 2;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }

  .package-card.popular {
    transform: scale(1);
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .package-card.popular:hover {
    transform: translateY(-8px) scale(1);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  @media (max-width: 768px) {

    /* Show hamburger toggle */
    .mobile-toggle {
      display: flex;
    }

    /* Mobile navigation menu */
    .nav-menu {
      position: fixed;
      top: 85px;
      right: -100%;
      width: 70%;
      height: calc(100vh - 85px);
      background: var(--glass-bg);
      flex-direction: column;
      align-items: flex-start;
      padding: 24px;
      gap: 20px;
      transition: var(--transition-smooth);
      z-index: 999;
      overflow-y: auto;
    }

    .nav-menu.active {
      right: 0;
    }

    .nav-menu li {
      width: 100%;
    }

    .nav-menu a {
      width: 100%;
      padding: 12px 0;
      text-align: left;
    }

    .mobile-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Adjust hero layout for mobile */
    .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .hero-content {
      order: 2;
    }

    .hero-image-wrapper {
      order: 1;
      margin-bottom: 40px;
    }

    .hero-img-container {
      height: 320px;
    }
  }

  /* Grids to single column */
  .hero-grid,
  .about-grid,
  .services-grid,
  .tracker-grid,
  .packages-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-img-container {
    height: 400px;
  }

  .about-img-container {
    height: 420px;
  }

  .spotlight-banner {
    grid-column: span 1;
    padding: 32px 24px;
  }

  .tracker-card,
  .contact-form-card,
  .contact-info-card {
    padding: 32px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .package-card.popular {
    grid-column: span 1;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}