@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --background: hsl(12, 15%, 8%);
  --card: hsl(12, 20%, 12%);
  --foreground: hsl(40, 95%, 95%);
  --border: hsl(0, 0%, 20%);
  --primary: hsl(348, 83%, 47%);
  --primary-light: hsl(348, 83%, 57%);
  --secondary: hsl(43, 85%, 58%);
  --muted-foreground: hsl(40, 30%, 65%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

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

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(21, 18, 16, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 6px;
}

nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  font-size: 15px;
  color: var(--foreground);
  opacity: 0.85;
  transition: color 0.2s;
}

nav a:hover, nav a.active {
  color: var(--secondary);
  opacity: 1;
}

/* Hero */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom right, var(--background), hsla(348, 83%, 47%, 0.12), var(--background));
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 19px;
  color: hsla(40, 95%, 95%, 0.8);
  max-width: 720px;
  margin: 0 auto;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

.home-hero .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.home-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--background), hsla(12,15%,8%,0.95), hsla(348,83%,47%,0.2));
}

.home-hero .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.home-hero h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 16px;
}

.home-hero .tagline {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.home-hero .desc {
  font-size: 17px;
  color: hsla(40,95%,95%,0.75);
  max-width: 620px;
  margin: 0 auto 32px;
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: scale(1.04); }

.btn-primary {
  background: var(--primary);
  color: var(--foreground);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--background);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp:hover { background: #20BA5A; }

/* Sections */
section {
  padding: 90px 0;
}

.section-alt { background: var(--card); }

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: hsla(40,95%,95%,0.7);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* Cards / grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

@media (max-width: 800px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .home-hero h1 { font-size: 40px; }
  .page-hero h1 { font-size: 34px; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: hsla(348,83%,47%,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.feature-title {
  color: var(--secondary);
  font-size: 22px;
  margin-bottom: 12px;
}

img.rounded {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: block;
}

/* Services detail */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.service-block.reverse .service-image { order: 2; }
.service-block.reverse .service-text { order: 1; }

@media (max-width: 800px) {
  .service-block, .service-block.reverse { grid-template-columns: 1fr; }
  .service-block.reverse .service-image,
  .service-block.reverse .service-text { order: initial; }
}

.service-text h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.underline-bar {
  width: 70px;
  height: 3px;
  background: var(--secondary);
  margin-bottom: 20px;
}

.benefits-title {
  color: var(--secondary);
  font-size: 20px;
  margin: 24px 0 12px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  color: hsla(40,95%,95%,0.85);
}

.benefits-list li::before {
  content: '✓';
  color: var(--primary);
  flex-shrink: 0;
}

.ideal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  margin-top: 20px;
  font-style: italic;
  color: hsla(40,95%,95%,0.75);
}

.ideal-box strong { color: var(--secondary); font-style: normal; }

/* Pricing */
.pricing-row {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.3s;
}

.pricing-row:hover { border-color: var(--primary); }

.pricing-row h3 { font-size: 24px; margin-bottom: 6px; }
.pricing-row p { color: hsla(40,95%,95%,0.7); margin: 0; }

.pricing-durations { display: flex; gap: 16px; flex-wrap: wrap; }

.price-chip {
  background: hsla(40,30%,65%,0.08);
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
  min-width: 120px;
}

.price-chip .time { font-size: 13px; color: hsla(40,95%,95%,0.7); margin-bottom: 4px; }
.price-chip .amount { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--secondary); }

.package-card {
  background: var(--background);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  text-align: left;
}

.package-card.popular { border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.popular-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--primary);
  color: var(--foreground);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
}

.package-card h3 { font-size: 24px; margin-bottom: 8px; }
.package-sessions { color: var(--secondary); font-weight: 600; margin-bottom: 12px; }
.package-price { font-size: 34px; font-weight: 700; margin-bottom: 12px; }
.package-desc { color: hsla(40,95%,95%,0.7); margin-bottom: 20px; }

/* Booking form */
.booking-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}

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

label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  font-size: 15px;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--primary);
}

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

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-note {
  text-align: center;
  font-size: 14px;
  color: hsla(40,95%,95%,0.6);
  margin-top: 16px;
}

/* Contact */
.contact-icon { font-size: 30px; color: var(--primary); margin-bottom: 16px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 16px;
}

.faq-item h3 { color: var(--secondary); font-size: 19px; margin-bottom: 10px; }
.faq-item p { margin: 0; color: hsla(40,95%,95%,0.75); }

.social-row { display: flex; gap: 20px; justify-content: center; margin-top: 24px; }

.social-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
}

/* Footer */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  text-align: center;
}

footer .logo { justify-content: center; margin-bottom: 16px; }
footer p { color: hsla(40,95%,95%,0.6); font-size: 14px; margin: 6px 0; }

footer nav { justify-content: center; margin: 20px 0; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  z-index: 200;
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }

.cta-section {
  text-align: center;
  background: linear-gradient(to bottom right, hsla(348,83%,47%,0.15), var(--background), hsla(43,85%,58%,0.08));
}

.cta-section h2 { margin-bottom: 16px; font-size: 38px; }
.cta-section p { color: hsla(40,95%,95%,0.8); max-width: 600px; margin: 0 auto 32px; }

.gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
}

.gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background) 5%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.gallery-overlay h3 { color: var(--secondary); font-size: 26px; margin-bottom: 8px; }
.gallery-overlay p { color: hsla(40,95%,95%,0.85); margin-bottom: 10px; font-size: 15px; }
