/* ================================================
   BAIDHOWI MASSAGE — Main Stylesheet
   Light Warm · Professional · Brand-aligned
   ================================================ */

:root {
  --color-primary: #DC2626;
  --color-primary-dark: #B91C1C;
  --color-primary-light: #EF4444;
  --color-primary-soft: #FEE8E5;
  --color-primary-glow: rgba(220, 38, 38, 0.1);
  --color-accent: #F87171;
  --color-accent-light: #FECACA;
  --color-accent-dark: #991B1B;

  --color-bg: #FFFBF7;
  --color-bg-alt: #F5F0EB;
  --color-bg-muted: #EDE8E2;
  --color-surface: #FFFDF9;
  --color-text: #1F2937;
  --color-text-muted: #57534E;
  --color-text-light: #A8A29E;
  --color-border: #E7E0D8;
  --color-border-light: #F0EBE5;

  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EBE5A;

  --gradient-brand: linear-gradient(135deg, #F87171 0%, #EF4444 50%, #DC2626 100%);
  --gradient-dark: linear-gradient(135deg, #1F2937 0%, #111827 100%);

  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-heading: 'DM Sans', system-ui, sans-serif;
  --font-brand: 'Great Vibes', cursive;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

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

  --shadow-sm: 0 1px 3px rgba(68, 55, 45, 0.06), 0 1px 2px rgba(68, 55, 45, 0.04);
  --shadow-md: 0 4px 16px rgba(68, 55, 45, 0.07);
  --shadow-lg: 0 12px 32px rgba(68, 55, 45, 0.09);
  --shadow-xl: 0 20px 48px rgba(68, 55, 45, 0.12);
  --shadow-red: 0 8px 24px rgba(220, 38, 38, 0.18);

  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1rem; font-size: var(--text-xs); }
.btn-lg { padding: 1rem 2rem; font-size: var(--text-base); }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.32);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 251, 247, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 251, 247, 0.97);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

.logo-footer .logo-img {
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--color-surface);
  z-index: 1002;
  padding: var(--space-3xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: right var(--transition);
  box-shadow: var(--shadow-xl);
}

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

.mobile-nav a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: var(--text-xl);
  color: var(--color-text-muted);
}

.mobile-nav-header,
.mobile-nav-links,
.mobile-nav-footer {
  display: none;
}

.mobile-bottom-bar {
  display: none;
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--space-3xl)) 0 var(--space-3xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(239, 68, 68, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(220, 38, 38, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 90%, rgba(245, 230, 220, 0.35) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(215, 205, 195, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 205, 195, 0.32) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem 1rem;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
}

.hero-brand {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 1.15em;
  color: var(--color-text);
  letter-spacing: 0;
}

.hero-desc {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.stat {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  min-width: 120px;
  box-shadow: var(--shadow-sm);
}

.stat-highlight {
  border-color: rgba(220, 38, 38, 0.25);
  background: var(--color-primary-soft);
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.stat span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.hero-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(220, 38, 38, 0.2);
}

.hero-card-accent {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-red);
}

.hero-card-accent .hero-card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-glow);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.hero-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.hero-card p {
  font-size: var(--text-sm);
  opacity: 0.85;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-light);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---- Sections ---- */
.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-sm);
  padding: 0.35rem 0.85rem;
  background: var(--color-primary-soft);
  border-radius: var(--radius-full);
  border: 1px solid rgba(220, 38, 38, 0.12);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
}

/* ---- Features ---- */
.features {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: var(--color-primary-glow);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: var(--text-lg);
}

.feature-item h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---- Services ---- */
.services {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.services-grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.form-service-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1rem;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, 0.25);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-red);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-meta li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.service-meta i {
  color: var(--color-primary);
  width: 16px;
}

/* ---- Pricing ---- */
.pricing {
  background: var(--color-bg-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.price-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card-featured {
  border-color: rgba(220, 38, 38, 0.55);
  box-shadow: var(--shadow-red);
  transform: scale(1.03);
  background: linear-gradient(180deg, var(--color-surface) 0%, #FFF0ED 100%);
}

.price-card-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-header h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.price-header p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--space-xl);
}

.price-amount .currency {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
}

.price-amount .amount {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-amount .unit {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
}

.price-features {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.price-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

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

.price-features i {
  color: var(--color-primary);
  font-size: var(--text-xs);
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-2xl);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-note i {
  color: var(--color-primary);
  margin-right: var(--space-xs);
}

/* ---- How To ---- */
.how-to {
  background: var(--color-bg);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: rgba(220, 38, 38, 0.12);
  margin-bottom: var(--space-sm);
}

.step-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: var(--text-lg);
  box-shadow: var(--shadow-sm);
}

.step h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: var(--color-border);
  margin-top: 80px;
}

/* ---- Testimonials ---- */
.testimonials {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #FBBF24;
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  display: flex;
  gap: 2px;
}

.testimonial p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 700;
}

.testimonial footer strong {
  display: block;
  font-size: var(--text-sm);
}

.testimonial footer span {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* ---- Area ---- */
.area {
  background: var(--color-bg-alt);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.area-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.area-content > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-xl);
}

.area-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.area-list i {
  color: var(--color-primary);
  font-size: var(--text-xs);
}

.map-placeholder {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-red);
}

.map-placeholder > i {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.map-placeholder h4 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
}

.map-placeholder > p {
  opacity: 0.8;
  margin-bottom: var(--space-xl);
}

.map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.map-tags span {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
}

/* ---- FAQ ---- */
.faq {
  background: var(--color-bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open] {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: var(--space-lg) var(--space-xl);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: var(--text-xl);
  color: var(--color-primary);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- SEO Content ---- */
.seo-content {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
}

.seo-content-box {
  max-width: 800px;
  margin: 0 auto;
}

.seo-content-box h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.seo-content-box h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

.seo-content-box p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.seo-content-box ul {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.seo-content-box li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.seo-content-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.seo-content-box a {
  color: var(--color-primary);
  font-weight: 600;
}

.seo-content-box a:hover {
  text-decoration: underline;
}

/* ---- CTA ---- */
.cta {
  padding: var(--space-3xl) 0;
}

.cta-box {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  position: relative;
}

.cta-box p {
  opacity: 0.92;
  margin-bottom: var(--space-xl);
  font-size: var(--text-lg);
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* ---- Contact ---- */
.contact {
  background: var(--color-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-glow);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

.contact-list a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-list a:hover { text-decoration: underline; }

.contact-list span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---- Social Section ---- */
.social-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
}

.social-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.social-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.social-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.social-card-ig {
  background: linear-gradient(145deg, var(--color-surface) 0%, #FFF5F0 100%);
  border-color: rgba(220, 38, 38, 0.15);
}

.social-card-head {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.social-avatar {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.social-card-ig .social-avatar-img {
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(220, 38, 38, 0.12);
  background: var(--color-surface);
}

.social-card-ig .social-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-ig-latest {
  position: relative;
  display: block;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.social-ig-latest:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateY(-2px);
}

.social-ig-latest img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.social-ig-latest:hover img {
  transform: scale(1.02);
}

.social-ig-latest-label {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 253, 249, 0.95);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

.social-ig-latest-label i {
  color: #e1306c;
}

.social-ig-caption {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 var(--space-sm);
  font-weight: 500;
}

.social-card-head strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.social-card-head span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.social-follow {
  margin-left: auto;
  padding: 0.4rem 1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  flex-shrink: 0;
}

.social-follow:hover {
  background: var(--color-primary);
  color: #fff;
}

.social-bio-preview {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.social-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.social-tags span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.social-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-glow);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.social-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.social-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  flex: 1;
}

.social-card .btn {
  margin-top: auto;
}

/* ---- Footer Social ---- */
.footer-social {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
}

.footer-social-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-social-ig:hover {
  background: linear-gradient(135deg, #f09433, #dc2743);
  border-color: transparent;
}

.contact-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

/* ---- Footer ---- */
.footer {
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.72);
  padding-top: var(--space-3xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.footer-brand p {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: #FCA5A5; }

.footer-contact i {
  margin-right: var(--space-xs);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: var(--text-sm);
}

/* ---- Floating WhatsApp ---- */
.fab-whatsapp {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 50%;
  font-size: var(--text-2xl);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  background: var(--color-whatsapp-dark);
}

.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-whatsapp);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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