/* =========================
   style-sections.css
   Process, FAQ, Contact, Fit, Clinic, Nav Buttons, Accessibility, Footer
========================= */

/* =========================
   11) PROCESS
========================= */
.process-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.process-card{
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px 20px;
  text-align: center;
}

.process-card h3{ margin-bottom: 10px; font-weight: 900; }
.process-card p{ font-weight: 400; }

.center-cta{
  margin-top: 22px;
  text-align: center;
}

/* =========================
   12) FAQ
========================= */
.faq{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item{
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-q{
  width: 100%;
  border: 0;
  cursor: pointer;
  background: transparent;

  padding: 20px 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  font-weight: 900;
  text-align: right;
}

.faq-icon{
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-a{
  padding: 0 22px 18px;
  font-weight: 400;
  opacity: 0.95;
}
.faq-a{ display: block; }
.faq-a[hidden]{ display: none !important; }

/* =========================
   13) CONTACT
========================= */
.contact-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.contact-info,
.contact-action{
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-action{
  text-align: center;
}
.contact-action .whatsapp-btn-large{
  margin-top: 16px;
}

/* ── Contact Form ── */
.contact-form{
  text-align: right;
  margin-top: 16px;
}
.contact-form .form-group{
  margin-bottom: 14px;
}
.contact-form label{
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.9);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(157,200,176,0.25);
}
.contact-form textarea{
  resize: vertical;
  min-height: 70px;
}
.contact-submit-btn{
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}
.contact-submit-btn:hover{
  background: #7fb89e;
  transform: translateY(-1px);
}
.contact-submit-btn:disabled{
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-message{
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
}
.form-message.success{
  background: rgba(157,200,176,0.2);
  color: #2a7a4b;
  border: 1px solid rgba(157,200,176,0.4);
}
.form-message.error{
  background: rgba(220,53,69,0.1);
  color: #dc3545;
  border: 1px solid rgba(220,53,69,0.2);
}
.contact-divider{
  display: flex;
  align-items: center;
  margin: 16px 0;
  color: #999;
  font-size: 0.85rem;
}
.contact-divider::before,
.contact-divider::after{
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.contact-divider span{
  padding: 0 12px;
}

/* =========================
   FIT SECTION
========================= */
.fit-single{
  text-align: center;
}

.fit-cta{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.fit-cta .btn{
  text-align: center;
  margin-inline: auto;
}

/* FIT intro */
.fit-intro{
  font-weight: 900;
  font-size: 1.15em;
}

/* =========================
   CLINIC IMAGE
========================= */
.clinic-image{
  width: 100%;
  max-width: 520px;
  margin: 24px auto 0;
  display: block;

  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

/* =========================
   NAV BUTTONS SPACING (Google Maps / Waze)
========================= */
.nav-buttons{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* =========================
   15) ACCESSIBILITY
========================= */
@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* =========================
   16) FOOTER
========================= */
.site-footer{
  margin-top: 80px;
  padding: 28px 16px 34px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.22);
  text-align: center;
  color: rgba(255,255,255,0.85);
}

.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.footer-name{
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links{
  font-size: 14px;
  opacity: 0.9;
}

.footer-links a{
  color: rgba(255,255,255,0.9);
  margin: 0 6px;
  text-decoration: none;
}

.footer-links a:hover{
  text-decoration: underline;
}
