/* ==========================================================================
   Van Gogh Fonoaudiología - Design System & Styles (v4 SVG Edition)
   Palette: Medical Trust Blue (#0F4C81), Health Teal (#00A884), CTA Coral/Orange (#FF6B35)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  /* Brand Colors */
  --primary-blue: #0F4C81;
  --primary-blue-dark: #0A355C;
  --primary-blue-light: #EBF3FA;
  --accent-teal: #00A884;
  --accent-teal-dark: #008769;
  --accent-teal-light: #E6F6F3;
  --cta-orange: #FF6B35;
  --cta-orange-hover: #E8551F;
  --cta-orange-glow: rgba(255, 107, 53, 0.35);

  /* Neutral Colors */
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --border-light: #E2E8F0;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 76, 129, 0.04);
  --shadow-md: 0 6px 18px rgba(15, 76, 129, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 76, 129, 0.12);
  --shadow-glow: 0 8px 24px var(--cta-orange-glow);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SVG Helpers */
svg.lucide, .icon-sm, .icon-btn, .icon-btn-wa, .icon-symptom, .icon-badge, .icon-brand, .icon-warning, .icon-star-fill {
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2px;
}

.icon-btn-wa {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.inline-flex {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-btn {
  width: 20px;
  height: 20px;
}

.icon-badge {
  width: 18px;
  height: 18px;
  color: var(--accent-teal);
}

.icon-brand {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
}

.icon-list {
  width: 18px;
  height: 18px;
  color: var(--accent-teal);
  flex-shrink: 0;
}

.icon-symptom {
  width: 28px;
  height: 28px;
  color: var(--primary-blue);
}

.icon-warning {
  width: 32px;
  height: 32px;
  color: var(--cta-orange);
}

.icon-avatar {
  width: 32px;
  height: 32px;
  color: white;
}

.icon-bio-avatar {
  width: 56px;
  height: 56px;
  color: white;
}

.icon-cred {
  width: 22px;
  height: 22px;
  color: white;
}

.icon-detail {
  width: 22px;
  height: 22px;
  color: var(--primary-blue);
}

.icon-user {
  width: 22px;
  height: 22px;
  color: var(--primary-blue);
}

.icon-star-fill {
  width: 18px;
  height: 18px;
  color: #F59E0B;
  fill: #F59E0B;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--primary-blue-dark);
}

.text-highlight {
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
}

.text-teal {
  color: var(--accent-teal);
}

.text-orange {
  color: var(--cta-orange);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--cta-orange);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--cta-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.45);
}

.btn-whatsapp {
  background-color: var(--accent-teal);
  color: var(--bg-white);
  box-shadow: 0 8px 24px rgba(0, 168, 132, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--accent-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 168, 132, 0.45);
}

.btn-outline {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-blue-light);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */

.top-bar {
  background: linear-gradient(90deg, var(--primary-blue-dark), var(--primary-blue));
  color: var(--bg-white);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  text-align: center;
  font-weight: 500;
}

.top-bar p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  background-color: var(--primary-blue-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-blue-dark);
}

.brand-logo-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.nav-badges {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .nav-badges {
    display: flex;
  }
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding: 3rem 0 4rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(235, 243, 250, 0.7) 0%, rgba(255, 255, 255, 1) 70%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
  color: var(--primary-blue-dark);
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.trust-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: var(--accent-teal-light);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero Card Offer */
.hero-offer-card {
  background: var(--bg-white);
  border: 2px solid var(--primary-blue-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.offer-badge-ribbon {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--cta-orange);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px var(--cta-orange-glow);
}

.card-doctor-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.doctor-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.2);
}

.doctor-details h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
}

.doctor-details p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.price-container {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.price-strike {
  font-size: 1.125rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  line-height: 1;
}

.includes-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  margin-bottom: 0.625rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ==========================================================================
   Symptoms Section
   ========================================================================== */

.symptoms-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.symptom-card {
  background-color: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue-light);
}

.symptom-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.symptom-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--primary-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.symptom-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
  line-height: 1.25;
}

.symptom-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.warning-banner {
  background-color: #FFF7ED;
  border: 1px solid #FFEDD5;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.65rem;
}

.warning-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.warning-header h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #9A3412;
}

.warning-banner p {
  font-size: 0.9375rem;
  color: #C2410C;
  line-height: 1.6;
}

/* ==========================================================================
   Before / After Otoscopy Section
   ========================================================================== */

.otoscopy-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.otoscopy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .otoscopy-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.comparison-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.comparison-card-header {
  padding: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.comparison-card.antes .comparison-card-header {
  background-color: #FEE2E2;
  color: #991B1B;
}

.comparison-card.despues .comparison-card-header {
  background-color: var(--accent-teal-light);
  color: var(--accent-teal-dark);
}

.comparison-img-wrapper {
  padding: 0.75rem;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.img-placeholder-box {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E2E8F0 0%, #F1F5F9 50%, #E2E8F0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 2px dashed #94A3B8;
  position: relative;
  overflow: hidden;
}

.placeholder-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 3px;
  transform: rotate(-30deg);
  user-select: none;
}

.comparison-card p {
  padding: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.otoscopy-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.feature-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-info p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Bio & Doctor Credentials
   ========================================================================== */

.bio-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
  color: var(--bg-white);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .bio-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.bio-card-visual {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.bio-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-teal), #34D399);
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.bio-card-visual h3 {
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.bio-card-visual p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.bio-credentials-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.06);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.credential-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--accent-teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-text h4 {
  color: var(--bg-white);
  font-size: 1rem;
  font-weight: 700;
}

.credential-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.pricing-card.popular {
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.pricing-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card-header p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.pricing-amount {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
}

.pricing-amount .price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  line-height: 1;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  margin-bottom: 0.85rem;
  color: var(--text-dark);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--primary-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info h4 {
  font-size: 0.9375rem;
  font-weight: 700;
}

.user-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
  text-align: left;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition-normal);
  color: var(--primary-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* ==========================================================================
   Location & Map Section
   ========================================================================== */

.location-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--primary-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.detail-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.map-placeholder {
  width: 100%;
  height: 380px;
  background-color: #E2E8F0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: var(--primary-blue-dark);
  color: var(--bg-white);
  padding: 3rem 0 1.5rem 0;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Mobile Sticky CTA Bar
   ========================================================================== */

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .mobile-sticky-cta {
    display: none;
  }
}

.mobile-sticky-info {
  flex-grow: 1;
}

.mobile-sticky-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.mobile-sticky-info strong {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--primary-blue-dark);
}

.mobile-sticky-cta .btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
}

/* ==========================================================================
   Mobile Button & Card Layout Optimization
   ========================================================================== */
@media (max-width: 576px) {
  .hero-offer-card {
    padding: 1.5rem 1.125rem;
  }

  .bio-card-visual {
    padding: 1.75rem 1.125rem;
  }

  .pricing-card {
    padding: 1.75rem 1.25rem;
  }

  .btn {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    white-space: nowrap;
    gap: 0.5rem;
  }

  .btn span {
    white-space: nowrap;
  }

  .icon-btn-wa, .icon-btn {
    width: 18px;
    height: 18px;
  }

  .warning-banner {
    padding: 1.25rem 1.125rem;
  }
}
