/* ==========================================================================
   AMANDA BERGAMASCO - MASSOTERAPIA & BEM-ESTAR (JUNDIAÍ/SP)
   Design System & Zen-Luxury Aesthetic Stylesheet (Fully Responsive)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Core Colors */
  --primary-rgb: 45, 90, 76;
  --primary: rgb(var(--primary-rgb));       /* Sage / Deep Emerald */
  --primary-dark: #1E3D33;
  --primary-light: #4A7A6C;
  --primary-subtle: #EBF2EF;

  --accent-rgb: 212, 175, 55;
  --accent: rgb(var(--accent-rgb));         /* Champagne Gold */
  --accent-light: #F4E8C1;
  --accent-dark: #A88622;

  --bg-main: #FDFBF7;                      /* Mineral Cream */
  --bg-card: #FFFFFF;
  --bg-alt: #F4F0E8;                       /* Sand Light */
  --bg-glass: rgba(255, 255, 255, 0.92);

  --text-main: #2C3531;                    /* Deep Charcoal */
  --text-muted: #64746B;
  --text-light: #8E9E95;
  --text-white: #FFFFFF;

  --border-light: rgba(45, 90, 76, 0.12);
  --border-gold: rgba(212, 175, 55, 0.3);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(45, 90, 76, 0.05);
  --shadow-md: 0 8px 24px rgba(45, 90, 76, 0.08);
  --shadow-lg: 0 16px 40px rgba(45, 90, 76, 0.12);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);

  /* Spacing & Layout */
  --container-max: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Zen Dark Mode Theme */
[data-theme="zen-dark"] {
  --primary-rgb: 74, 138, 118;
  --primary: #529B85;
  --primary-dark: #376C5C;
  --primary-light: #72B5A0;
  --primary-subtle: #1C2D27;

  --bg-main: #121A17;
  --bg-card: #1B2622;
  --bg-alt: #16201C;
  --bg-glass: rgba(27, 38, 34, 0.92);

  --text-main: #EAEFEA;
  --text-muted: #A3B5AA;
  --text-light: #7B8F83;

  --border-light: rgba(114, 181, 160, 0.15);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-main);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-subtle);
  color: var(--primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-tag svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: clamp(2.0rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

/* --------------------------------------------------------------------------
   3. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
  height: 70px;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0; /* Prevents overflow */
}

.brand-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name .title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-main);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-name .subtitle {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Theme Toggle */
.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: var(--primary);
  color: #FFF;
  transform: rotate(15deg);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFF;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #FFF;
}

.btn-accent:hover {
  box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #FFF;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Hamburger active transform animation */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  background: radial-gradient(circle at 10% 20%, rgba(45, 90, 76, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  max-width: 100%;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-title span {
  color: var(--primary);
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

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

.trust-item .icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item .text {
  display: flex;
  flex-direction: column;
}

.trust-item .text strong {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1;
}

.trust-item .text span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Hero Media Showcase */
.hero-media {
  position: relative;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-card);
}

.hero-image-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* Floating Glass Cards on Hero */
.hero-float-card {
  position: absolute;
  padding: 12px 18px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.float-card-1 {
  bottom: -16px;
  left: 10px;
}

.float-card-2 {
  top: 20px;
  right: 10px;
}

.float-card-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.float-card-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   5. PAIN FINDER INTERACTIVE QUIZ ("ONDE DÓI?")
   -------------------------------------------------------------------------- */
.pain-quiz-section {
  background: var(--bg-alt);
}

.quiz-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-top: 32px;
}

.quiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.pain-option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  background: var(--bg-main);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.pain-option-btn .pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all var(--transition-fast);
}

.pain-option-btn h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.pain-option-btn:hover, .pain-option-btn.selected {
  border-color: var(--primary);
  background: var(--primary-subtle);
}

.pain-option-btn:hover .pain-icon, .pain-option-btn.selected .pain-icon {
  background: var(--primary);
  color: #FFF;
}

/* Quiz Result Box */
.quiz-result-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #FFF;
  border-radius: var(--radius-md);
  padding: 28px;
  display: none;
  animation: fadeIn 0.4s ease;
}

.quiz-result-box.active {
  display: block;
}

.result-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.result-text h3 {
  color: var(--accent-light);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.result-text p {
  font-size: 1rem;
  opacity: 0.92;
  max-width: 650px;
}

/* --------------------------------------------------------------------------
   6. ABOUT AMANDA & METHOD SÁLIK SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.about-image-stack {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--primary);
  color: #FFF;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.about-content .bio-paragraph {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.method-highlight-box {
  background: var(--primary-subtle);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 20px;
  margin-bottom: 28px;
}

.method-highlight-box h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-item svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. SERVICES CATALOG & CARDS
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-card-image {
  position: relative;
  height: 210px;
  overflow: hidden;
}

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

.service-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  background: rgba(45, 90, 76, 0.9);
  backdrop-filter: blur(8px);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

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

.service-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-detail-btn {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   8. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  background: var(--bg-alt);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--primary-subtle);
  width: 40px;
  height: 40px;
}

.stars {
  color: #F59E0B;
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
}

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

/* --------------------------------------------------------------------------
   9. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 820px;
  margin: 40px auto 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
  gap: 12px;
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. LOCATION, HOURS & CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item .icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .details h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item .details p, .contact-item .details a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-card);
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: #182420;
  color: #B5C6BD;
  padding-top: 70px;
  padding-bottom: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-brand .brand-logo .title {
  color: #FFF;
}

.footer-brand p {
  font-size: 0.92rem;
  margin-top: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #92A69A;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #FFF;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  color: #92A69A;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #FFF;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

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

/* --------------------------------------------------------------------------
   12. FLOATING WHATSAPP BUTTON & MODAL
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-tooltip {
  background: var(--bg-card);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

/* Service Detail Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-card);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   13. ANIMATIONS & RESPONSIVE BREAKPOINTS (CRITICAL MOBILE AUDIT)
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- TABLET & SMALL LAPTOP BREAKPOINT (<= 1024px) --- */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-image-wrapper img {
    height: 380px;
  }
}

/* --- TABLET PORTRAIT / MOBILE LANDSCAPE (<= 768px) --- */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* Header Mobile Adjustments */
  .brand-name .title {
    font-size: 1.15rem;
  }

  .brand-name .subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.5px;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions .btn-primary {
    display: none; /* Hidden in navbar bar, accessible inside mobile drawer & hero */
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 40px 24px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-normal);
    z-index: 999;
  }

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

  .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  /* Hero Section Mobile fixes */
  .hero-section {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1.0rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .btn-primary {
    width: 100%;
    padding: 14px 20px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }

  .trust-item {
    width: 100%;
  }

  /* Hero Float Cards Safety on Mobile */
  .hero-float-card {
    display: none; /* Hide floating absolute cards on small screens to prevent overflow */
  }

  /* Quiz Section Mobile */
  .quiz-card {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

  .quiz-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pain-option-btn {
    padding: 14px 8px;
  }

  .pain-option-btn .pain-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
  }

  .pain-option-btn h4 {
    font-size: 0.85rem;
  }

  .quiz-result-box {
    padding: 20px 16px;
  }

  .result-text h3 {
    font-size: 1.3rem;
  }

  .result-text p {
    font-size: 0.92rem;
  }

  .result-content .btn-primary {
    width: 100%;
  }

  /* About Section Mobile */
  .about-main-img {
    height: 320px;
  }

  .about-experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: -30px;
    margin-left: auto;
    margin-right: 12px;
    width: fit-content;
    padding: 12px 18px;
    z-index: 5;
  }

  .about-experience-badge .number {
    font-size: 2.0rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Services Grid Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-image {
    height: 190px;
  }

  /* Testimonials Mobile */
  .testimonials-slider {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  /* Contact & Map Mobile */
  .contact-info-card {
    padding: 24px 16px;
  }

  .map-wrapper {
    height: 320px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating WhatsApp Mobile */
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-tooltip {
    display: none; /* Hidden on mobile to avoid screen clutter */
  }
}

/* --- SMALL MOBILE SCREENS (<= 400px) --- */
@media (max-width: 400px) {
  .brand-name .title {
    font-size: 1.05rem;
  }

  .brand-name .subtitle {
    display: none; /* Keep header clean on ultra-small screens */
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .quiz-grid {
    grid-template-columns: 1fr; /* Stack quiz buttons single column on very small phones */
  }
}
