/* ============================================
   PARTY BY BILYANA — Main Stylesheet
   Fresh build — March 2026
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --pink:        #FF6B9D;
  --pink-light:  #FFB3D0;
  --pink-dark:   #E84080;
  --purple:      #9B59B6;
  --purple-light:#C39BD3;
  --purple-dark: #7D3C98;
  --yellow:      #FFD93D;
  --orange:      #FF8C42;
  --teal:        #2EC4B6;
  --teal-light:  #A8E6CF;
  --blue:        #4A90E2;
  --white:       #FFFFFF;
  --off-white:   #FFF9FC;
  --light-gray:  #F5F0F7;
  --mid-gray:    #9E8FA5;
  --dark:        #2D1B36;
  --dark-soft:   #4A3557;

  --grad-hero:   linear-gradient(135deg, #FF6B9D 0%, #9B59B6 50%, #4A90E2 100%);
  --grad-card:   linear-gradient(135deg, #FFB3D0 0%, #C39BD3 100%);
  --grad-cta:    linear-gradient(135deg, #FF6B9D 0%, #E84080 100%);
  --grad-teal:   linear-gradient(135deg, #2EC4B6 0%, #4A90E2 100%);

  --font-head:   'Fredoka One', cursive;
  --font-body:   'Nunito', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(155,89,182,0.12);
  --shadow-md:   0 8px 24px rgba(155,89,182,0.18);
  --shadow-lg:   0 20px 60px rgba(155,89,182,0.22);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-primary {
  background: var(--grad-cta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,107,157,0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--pink-dark);
  border: 2px solid var(--pink);
}
.btn-teal {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(46,196,182,0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* --- Section wrapper --- */
.section { padding: 80px 0; }
.section-alt { background: var(--light-gray); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--grad-card);
  color: var(--purple-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.section-header h2 { color: var(--dark); margin-bottom: 12px; }
.section-header p  { color: var(--mid-gray); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,157,0.12);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--pink-dark);
}
.nav-logo-sub  { font-size: 1.1rem; color: var(--mid-gray); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark-soft);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 16px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M40 0l4.9 15.1L60 10l-10 13.1L65 30l-15.1 4.9L55 50 40 40 25 50l5.1-15.1L15 30l15.1-5.1L20 10l15.1 5.1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-content {
  padding: 60px 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero-tagline {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 480px;
  text-align: center;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 60px;
  z-index: 1;
  flex: 1;
  margin-top: 0;
}
.hero-img-wrap {
  position: relative;
  width: 340px;
  height: 440px;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,0.3);
}
.hero-floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--dark);
}
.hero-floating-badge .icon { font-size: 1.4rem; }
.badge-top-right { top: 24px; right: -20px; }
.badge-bottom-left { bottom: -20px; left: 50%; transform: translateX(-50%); white-space: nowrap; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(155,89,182,0.08);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-cta);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 { color: var(--dark); margin-bottom: 12px; }
.service-card p  { color: var(--mid-gray); font-size: .95rem; }

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-preview-grid a {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-preview-grid a:hover img { transform: scale(1.06); }

/* ============================================
   ABOUT STRIP (homepage)
   ============================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-strip img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 520px;
}
.about-strip-text h2 { color: var(--dark); margin-bottom: 20px; }
.about-strip-text p  { color: var(--mid-gray); margin-bottom: 16px; line-height: 1.8; }
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.badge-chip {
  background: var(--light-gray);
  color: var(--purple-dark);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--purple-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(155,89,182,0.08);
}
.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p  { color: var(--dark-soft); font-size: .95rem; line-height: 1.7; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-card);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--purple-dark);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--dark); font-size: .9rem; }
.reviewer-meta { font-size: .78rem; color: var(--mid-gray); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--pink);
  margin-bottom: 8px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: .9rem; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--pink-light);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: .9rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--pink-light); }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--pink); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.4);
  font-size: .85rem;
}
.footer-bottom a { color: var(--pink-light); }

/* ============================================
   GALLERY PAGE
   ============================================ */
.page-hero {
  background: var(--grad-hero);
  padding: 160px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M40 0l4.9 15.1L60 10l-10 13.1L65 30l-15.1 4.9L55 50 40 40 25 50l5.1-15.1L15 30l15.1-5.1L20 10l15.1 5.1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 36px 24px 0;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid rgba(155,89,182,0.2);
  background: var(--white);
  color: var(--dark-soft);
  transition: .2s;
}
.filter-btn:hover  { border-color: var(--pink); color: var(--pink-dark); }
.filter-btn.active {
  background: var(--grad-cta);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255,107,157,0.35);
}

/* Gallery grid */
.gallery-section { padding: 36px 0 80px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,27,54,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}

/* Load more */
.load-more-wrap { text-align: center; padding: 40px 0 0; }
.gallery-count  { text-align: center; color: var(--mid-gray); font-size: .9rem; margin-top: 20px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: -44px; right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}
.lightbox-caption {
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin-top: 12px;
  font-weight: 600;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
}
.about-hero-img {
  position: relative;
}
.about-hero-img img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 560px;
}
.about-hero-img .badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: .85rem;
}
.badge-float-br { bottom: -16px; right: -16px; color: var(--purple-dark); }

.experience-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.exp-badge {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(155,89,182,0.12);
}
.exp-badge-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--pink-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.exp-badge-label { font-size: .8rem; color: var(--mid-gray); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

/* Two-world section */
.two-worlds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-worlds img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 480px;
}
.two-worlds-text h2 { color: var(--dark); margin-bottom: 20px; }
.two-worlds-text p  { color: var(--mid-gray); line-height: 1.8; margin-bottom: 16px; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 48px;
}
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-img { overflow: hidden; }
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
  transition: transform .4s ease;
}
.service-detail-img:hover img { transform: scale(1.04); }
.service-detail-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail-body .service-icon { font-size: 2.5rem; margin-bottom: 12px; }
.service-detail-body h3 { color: var(--dark); margin-bottom: 12px; }
.service-detail-body p  { color: var(--mid-gray); line-height: 1.8; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--dark-soft);
}
.service-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Pricing */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(155,89,182,0.1);
  transition: .25s;
  text-align: center;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pink-light); }
.pricing-card.featured {
  background: var(--grad-hero);
  border-color: transparent;
  color: var(--white);
}
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li { color: var(--white); }
.pricing-card.featured li::before { background: rgba(255,255,255,0.2); color: var(--yellow); }
.pricing-card.featured .price-note { color: rgba(255,255,255,0.75); }
.pricing-type { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 8px; }
.pricing-card.featured .pricing-type { color: rgba(255,255,255,0.75); }
.pricing-card h3 { color: var(--dark); margin-bottom: 16px; }
.price { font-family: var(--font-head); font-size: 2.6rem; color: var(--pink-dark); line-height: 1; margin-bottom: 4px; }
.price-note { font-size: .85rem; color: var(--mid-gray); margin-bottom: 24px; }
.pricing-features { margin: 0; text-align: left; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  margin-bottom: 10px;
  color: var(--dark-soft);
}
.pricing-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.booking-form-card h2 { color: var(--dark); margin-bottom: 8px; }
.booking-form-card .subtitle { color: var(--mid-gray); margin-bottom: 36px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark-soft);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(155,89,182,0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--off-white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.booking-info-card {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  color: var(--white);
  position: sticky;
  top: 90px;
}
.booking-info-card h3 { color: var(--white); margin-bottom: 24px; font-size: 1.4rem; }
.info-items { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item-text strong { display: block; font-size: .95rem; color: var(--white); margin-bottom: 2px; }
.info-item-text span  { font-size: .85rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.info-divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 24px 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-content { padding: 100px 40px 40px; }
  .hero-image { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .about-strip { grid-template-columns: 1fr; }
  .two-worlds { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
  .booking-layout { grid-template-columns: 1fr; }
  .about-hero-section { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; gap: 16px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-banner { padding: 48px 24px; margin: 0 16px; }
  .booking-form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .lightbox-prev { left: -44px; }
  .lightbox-next { right: -44px; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .experience-badges { grid-template-columns: 1fr 1fr; }
}
