/* ==========================================================================
   ליאת שילה - הומאופתיה קלאסית | Design System & Styling
   ========================================================================== */

:root {
  /* Color Palette - Soft, Gentle Blush Pink & Rose Gold */
  --bg-main: #FFF8F9;
  --bg-surface: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-pink-soft: #FDF0F3;
  --bg-pink-medium: #F9E2E8;
  --bg-pink-glow: #F6CED8;
  
  --primary: #D47B91;
  --primary-hover: #C2657C;
  --primary-light: #FBE6EA;
  
  --rose-gold: #C88697;
  --rose-accent: #E5A9B8;
  
  --text-primary: #342831;
  --text-secondary: #544450;
  --text-muted: #9E8C9A;
  
  --border-light: rgba(212, 123, 145, 0.18);
  --border-focus: #D47B91;
  
  --shadow-soft: 0 10px 30px rgba(212, 123, 145, 0.08);
  --shadow-hover: 0 20px 40px rgba(212, 123, 145, 0.15);
  --shadow-glass: 0 8px 32px 0 rgba(194, 101, 124, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Assistant', 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-primary);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(246, 206, 216, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(253, 240, 243, 0.7) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(249, 226, 232, 0.4) 0%, transparent 45%);
  background-attachment: fixed;
}

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

section {
  padding: 5rem 0;
  position: relative;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 123, 145, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #C2657C 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 123, 145, 0.4);
  background: linear-gradient(135deg, #C2657C 0%, #B05268 100%);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--primary);
  border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Subtle Gentle Round WhatsApp Icon Button in Top Header Nav */
.nav-whatsapp-round {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E8F8F0;
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.15);
}

.nav-whatsapp-round:hover {
  background: #25D366;
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 5px 18px rgba(37, 211, 102, 0.35);
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-pink-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  border: 1px solid var(--border-light);
}

.logo-text h1 {
  font-size: 1.35rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  transition: var(--transition);
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 4rem 0 6rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.hero-content h1 span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, #B05268 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-highlights {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.highlight-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.highlight-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Image Card (Top Left - Glasses Photo) */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  background: var(--bg-surface);
  border: 4px solid var(--bg-surface);
}

.hero-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: var(--transition);
}

.hero-badge-floating {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 260px;
}

.hero-badge-icon {
  font-size: 1.8rem;
  color: #FFD700;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.95rem;
}

.hero-badge-text span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Bio Section (Flowers Photo) */
.bio {
  background: linear-gradient(180deg, rgba(253, 240, 243, 0.5) 0%, rgba(255, 248, 249, 0.5) 100%);
  border-radius: 40px;
  margin: 2rem 0;
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.bio-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.bio-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.bio-feature-box {
  background: var(--bg-pink-soft);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border-right: 4px solid var(--primary);
}

.bio-feature-box h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.bio-feature-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Spotlight Approach Card (White Shirt Photo) */
.spotlight-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDF0F3 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--border-light);
  overflow: hidden;
  padding: 3rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.spotlight-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.spotlight-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.spotlight-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 4px solid #FFFFFF;
}

.spotlight-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* 3D Realistic Digital Booklet Covers Styling */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.guide-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.guide-booklet-wrapper {
  background: linear-gradient(180deg, #FAF1F4 0%, #F3E4E8 100%);
  padding: 2.2rem 1.5rem 1.8rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1000px;
}

.digital-booklet-cover {
  width: 220px;
  height: 310px;
  border-radius: 6px 14px 14px 6px;
  position: relative;
  box-shadow: 
    -12px 12px 25px rgba(52, 40, 49, 0.18),
    -2px 2px 6px rgba(0,0,0,0.1),
    inset 2px 0 3px rgba(255,255,255,0.7);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform: rotateY(-6deg) rotateX(2deg);
}

.guide-card:hover .digital-booklet-cover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.03);
  box-shadow: -15px 18px 30px rgba(212, 123, 145, 0.25);
}

/* Booklet 3D Spine & Page Effect */
.booklet-spine {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.18) 0%, rgba(255,255,255,0.3) 50%, rgba(0,0,0,0.08) 100%);
  border-radius: 0 14px 14px 0;
}

.booklet-pages-edge {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -6px;
  width: 6px;
  background: repeating-linear-gradient(180deg, #F8F5F6, #F8F5F6 2px, #E8DFE2 2px, #E8DFE2 3px);
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 0 4px rgba(0,0,0,0.1);
}

/* Booklet Cover Themes */
.theme-virus {
  background: linear-gradient(145deg, #FFF0F4 0%, #F9D5E0 60%, #EEB4C5 100%);
}

.theme-cough {
  background: linear-gradient(145deg, #F4F0FF 0%, #E2D9FC 60%, #C9B8F8 100%);
}

.theme-worms {
  background: linear-gradient(145deg, #F0F9F5 0%, #D2EFE2 60%, #B2E2CE 100%);
}

.theme-emotional {
  background: linear-gradient(145deg, #FFF5EC 0%, #FCE3D2 60%, #F7C8A9 100%);
}

/* Booklet Inside Details */
.booklet-author-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #614457;
  letter-spacing: 0.3px;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: inline-block;
}

.booklet-art-container {
  width: 80px;
  height: 80px;
  margin: 0.3rem auto 0.8rem auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 2px solid rgba(255, 255, 255, 0.95);
}

.booklet-art-container svg {
  width: 48px;
  height: 48px;
}

.booklet-title-area {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 0.75rem 0.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.booklet-sub-label {
  display: block;
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.booklet-main-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #342831;
  line-height: 1.25;
}

.booklet-bottom-badge {
  margin-top: auto;
  font-size: 0.68rem;
  font-weight: 700;
  color: #544450;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-pill);
}

.guide-badge-locked {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(52, 40, 49, 0.88);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.guide-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.guide-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.guide-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.guide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

/* 10 Golden Tips Section (Cool Modern Grid Layout) */
.gold-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.gold-tip-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.gold-tip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-pink-soft) 100%);
}

.gold-tip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.gold-tip-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--rose-accent);
  background: var(--primary-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.gold-tip-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--bg-pink-medium);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.gold-tip-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.gold-tip-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.gold-tip-card.highlight-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-pink-medium) 100%);
  border: 2px solid var(--primary);
}

.gold-tip-card.highlight-card .gold-tip-num {
  background: var(--primary);
  color: #FFFFFF;
}

/* Testimonials Section (Clean Text Quote Cards Design) */
.testimonials {
  background: var(--bg-pink-soft);
  border-radius: 40px;
  margin: 3rem 0;
}

.testimonials-grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial-box {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.testimonial-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
  background: linear-gradient(180deg, #FFFFFF 0%, #FDF0F3 100%);
}

.testimonial-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.quote-icon-bg {
  font-size: 1.8rem;
  color: var(--primary-light);
}

.testimonial-tag-badge {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border-light);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.quote-text {
  font-size: 1.22rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
}

.author-avatar {
  font-size: 2.2rem;
  color: var(--rose-accent);
}

.author-info strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-accordion {
  max-width: 800px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  text-align: right;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  transition: var(--transition);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
  padding: 0 1.8rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.5rem 1.8rem;
}

/* Contact Section */
.contact-wrapper {
  background: var(--bg-surface);
  border-radius: 35px;
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--border-light);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 123, 145, 0.3);
  background: var(--bg-main);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--border-focus);
  background: var(--bg-surface);
  box-shadow: 0 0 0 4px rgba(212, 123, 145, 0.15);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: #2D232A;
  color: #E2D8DF;
  padding: 4rem 0 2rem 0;
  margin-top: 5rem;
}

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

.footer-brand h2 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  color: #B2A4AF;
  max-width: 400px;
  font-size: 0.95rem;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #B2A4AF;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--rose-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  text-align: center;
  color: #8D7F8A;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-grid, .bio-grid, .spotlight-grid, .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-badge-floating {
    right: 10px;
    bottom: -15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 75px;
    right: 0;
    width: 100%;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }

  .contact-wrapper, .spotlight-card {
    padding: 2rem 1.5rem;
  }
  
  .bio-features {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid-6, .gold-tips-grid {
    grid-template-columns: 1fr;
  }
}
