/* ============================================
   SPAH - Spa Parties at Home
   Custom Styles & Animations
   ============================================ */

/* --- Design Tokens --- */
:root {
  --rose-50: #FDF2F3;
  --rose-100: #F9E4E8;
  --rose-200: #E8B4B8;
  --rose-300: #D4919A;
  --rose-400: #C06B77;
  --teal-50: #F0FDFD;
  --teal-100: #C1F9FA;
  --teal-200: #83F4F7;
  --teal-300: #4DD9DD;
  --teal-400: #30B8BD;
  --teal-500: #1F9499;
  --navy: #1E1E3A;
  --navy-light: #2D2D4F;
  --navy-muted: #4A4A6A;
  --cream: #FFFAF8;
  --white: #FFFFFF;
  --text: #2D2D4F;
  --text-light: #6B6B8A;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-sm {
  padding: 2.5rem 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo span {
  color: var(--teal-300);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-300);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

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

.nav-links li:last-child {
  margin-left: auto;
}

.nav-links a.nav-cta {
  background: var(--teal-300);
  color: var(--white) !important;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--teal-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(77, 217, 221, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open {
    right: 0;
  }

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

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--rose-100);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    display: block;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary {
  background: var(--teal-300);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(77, 217, 221, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-300);
  border: 2px solid var(--teal-300);
}

.btn-secondary:hover {
  background: var(--teal-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(77, 217, 221, 0.15);
}

.btn-rose {
  background: var(--rose-200);
  color: var(--white);
}

.btn-rose:hover {
  background: var(--rose-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 180, 184, 0.4);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon svg {
  transform: translateX(3px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-50) 50%, var(--teal-50) 100%);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
    align-items: flex-start;
  }

}

@media (max-width: 480px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to bottom, transparent 0%, var(--white) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(232, 180, 184, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(77, 217, 221, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--rose-100);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-muted);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '✦';
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-300);
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Floating decorative elements */
.float-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.float-1 {
  width: 300px;
  height: 300px;
  background: var(--rose-100);
  top: 10%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
}

.float-2 {
  width: 200px;
  height: 200px;
  background: var(--teal-100);
  bottom: 15%;
  right: 15%;
  animation: float 6s ease-in-out infinite reverse;
}

.float-3 {
  width: 150px;
  height: 150px;
  background: var(--rose-50);
  top: 40%;
  right: 30%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(2deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-50) 50%, var(--teal-50) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(232, 180, 184, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(77, 217, 221, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to bottom, transparent 0%, var(--white) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Us hero grid */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-mobile-title {
  display: none;
}

.about-photo-mobile {
  display: none;
}

.about-hero-photo {
  position: relative;
  z-index: 1;
  max-width: 380px;
  justify-self: center;
}

.about-hero-photo img {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  object-fit: cover;
  aspect-ratio: 3/4;
  object-position: center 20%;
}

@media (max-width: 768px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .about-mobile-title {
    display: block;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
  }

  .about-photo-mobile {
    display: block;
    max-width: 260px;
    margin: 1.5rem auto;
  }

  .about-photo-desktop {
    display: none;
  }

  .about-hero-grid .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(to right, var(--rose-200), var(--teal-200));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal-300);
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Package Cards --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  border: 1px solid var(--rose-100);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.package-card.featured {
  border-color: var(--teal-200);
  box-shadow: 0 10px 40px rgba(77, 217, 221, 0.12);
}

.package-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-300);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
}

.package-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.package-card .package-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.package-price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid var(--rose-50);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li::before {
  content: '✓';
  color: var(--teal-300);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.package-card .btn {
  width: 100%;
}

@media (max-width: 968px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .package-card.featured {
    order: -1;
  }
}

/* --- Treatment / Service Cards --- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.treatment-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem 1.5rem;
  border: 1px solid var(--rose-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--teal-100);
}

.treatment-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--rose-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.treatment-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.treatment-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .treatments-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .treatments-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Alternating Feature Sections --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
}

.feature-row:nth-child(even) .feature-image {
  order: -1;
}

.feature-image {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--rose-50);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.feature-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .feature-row .feature-image {
    order: -1 !important;
  }
}

/* --- Tabbed Content --- */
.tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 2rem;
  min-width: 190px;
  border: 2px solid var(--rose-100);
  border-radius: 50px;
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.tab-btn:hover {
  border-color: var(--teal-200);
  color: var(--teal-300);
}

.tab-btn.active {
  background: var(--teal-300);
  border-color: var(--teal-300);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeUp 0.5s ease;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--rose-100);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.3s ease;
}

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

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--teal-300);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--rose-100);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--teal-100);
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--teal-300);
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--teal-300);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--teal-400);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  background: var(--rose-50);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Includes Box --- */
.includes-box {
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--rose-50) 100%);
  border-radius: 1.25rem;
  padding: 3rem;
  margin-bottom: 3rem;
}

.includes-box h3 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.includes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.includes-list li::before {
  content: '✦';
  color: var(--teal-300);
  font-size: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .includes-list {
    grid-template-columns: 1fr 1fr;
  }

  .includes-box {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .includes-list {
    grid-template-columns: 1fr;
  }
}

/* --- Add-On Section --- */
.addon-card {
  background: var(--white);
  border: 2px solid var(--gold-light);
  border-radius: 1.25rem;
  padding: 3rem;
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
}

.addon-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.addon-price {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.addon-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.addon-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rose-50);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.addon-features li::before {
  content: '★';
  color: var(--gold);
  flex-shrink: 0;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(77, 217, 221, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-primary {
  background: var(--teal-200);
}

.cta-banner .btn-primary:hover {
  background: var(--teal-100);
  color: var(--navy);
}

.cta-banner .btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-banner .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* --- Booking Details --- */
.booking-details {
  background: var(--rose-50);
  border-radius: 1.25rem;
  padding: 2.5rem;
  margin-top: 3rem;
}

.booking-details h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.booking-details ul {
  list-style: none;
}

.booking-details li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.booking-details li::before {
  content: '→';
  color: var(--teal-300);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.trust-bar.stagger-children > .trust-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-bar.stagger-children.visible > .trust-item {
  opacity: 1;
  transform: translateY(0);
}

.trust-bar.stagger-children.visible > .trust-item:nth-child(1) { transition-delay: 0.05s; }
.trust-bar.stagger-children.visible > .trust-item:nth-child(2) { transition-delay: 0.12s; }
.trust-bar.stagger-children.visible > .trust-item:nth-child(3) { transition-delay: 0.19s; }
.trust-bar.stagger-children.visible > .trust-item:nth-child(4) { transition-delay: 0.26s; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-muted);
}

.trust-item svg,
.trust-item span.trust-icon {
  color: var(--teal-300);
  font-size: 1.25rem;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--teal-200);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Background Sections --- */
.bg-cream {
  background: var(--cream);
}

.bg-rose {
  background: var(--rose-50);
}

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

.bg-gradient {
  background: linear-gradient(135deg, var(--rose-50) 0%, var(--cream) 50%, var(--teal-50) 100%);
}

/* --- Misc --- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--rose-200), var(--teal-200));
  border-radius: 3px;
  margin: 1.5rem auto;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-teal {
  background: var(--teal-50);
  color: var(--teal-400);
}

.badge-rose {
  background: var(--rose-50);
  color: var(--rose-400);
}

.badge-gold {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--rose-100);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Responsive Spacing --- */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-sm {
    padding: 2rem 0;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .nav-logo img {
    height: 36px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal, .reveal-left, .reveal-right,
  .stagger-children > * {
    opacity: 1;
    transform: none;
  }
}
