/* =============================================================
   VRP MEDGANDS — STYLE ADDITIONS
   Append this entire file to: assets/css/style.css
   ============================================================= */

/* ── CTA Buttons ────────────────────────────────────────────── */
.vrp-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}

.vrp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.vrp-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}
.vrp-btn-primary {
  background: #007B8A;
  color: #ffffff !important;
  border-color: #007B8A;
}
.vrp-btn-primary:hover {
  background: #005f6b;
  border-color: #005f6b;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,123,138,0.3);
}
.vrp-btn-secondary {
  background: transparent;
  color: #007B8A !important;
  border-color: #007B8A;
}
.vrp-btn-secondary:hover {
  background: #007B8A;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.vrp-btn-ghost {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.7);
}
.vrp-btn-ghost:hover {
  background: #ffffff;
  color: #007B8A !important;
  border-color: #ffffff;
}
.vrp-btn-sm {
  font-size: 13px;
  padding: 9px 18px;
}
.vrp-btn-lg {
  font-size: 16px;
  padding: 15px 32px;
}

/* ── Product CTA Links ──────────────────────────────────────── */
.vrp-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #007B8A !important;
  text-decoration: none !important;
  padding: 9px 18px;
  border: 1.5px solid #007B8A;
  border-radius: 6px;
  transition: all 0.2s;
  line-height: 1.2;
}
.vrp-product-cta:hover {
  background: #007B8A;
  color: #ffffff !important;
}
/* FIX: constrain arrow SVG inside product CTA buttons */
.vrp-product-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.vrp-cta-banner {
  background: linear-gradient(135deg, #0a3d44 0%, #007B8A 100%);
  padding: 48px 24px;
  text-align: center;
  margin: 48px 0;
  border-radius: 16px;
}
.vrp-cta-banner h3 {
  color: #ffffff;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}
.vrp-cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin: 0 auto 24px;
  max-width: 560px;
  line-height: 1.65;
}
.vrp-cta-banner .vrp-cta-wrap {
  justify-content: center;
}

/* ── Section Tag (teal label above headings) ────────────────── */
.vrp-section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #007B8A;
  margin-bottom: 10px;
}
.vrp-section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #007B8A;
  vertical-align: middle;
  margin-right: 8px;
}

/* ── Testimonials ───────────────────────────────────────────── */
.vrp-testimonials {
  padding: 56px 0;
  background: #f9fafb;
}
.vrp-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.vrp-testi-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vrp-testi-card:hover {
  box-shadow: 0 6px 24px rgba(0,123,138,0.10);
  transform: translateY(-2px);
}
.vrp-testi-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 60px;
  line-height: 1;
  color: rgba(0,123,138,0.10);
  font-family: Georgia, serif;
}
.vrp-testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.vrp-testi-stars svg {
  width: 15px;
  height: 15px;
  fill: #F59E0B;
  flex-shrink: 0;
}
.vrp-testi-quote {
  font-size: 14px;
  color: #374151;
  line-height: 1.75;
  margin: 0 0 18px;
  font-style: italic;
}
.vrp-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f3f4f6;
  padding-top: 14px;
}
.vrp-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007B8A 0%, #005f6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.vrp-testi-name {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
.vrp-testi-hospital {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
  margin-top: 1px;
}
.vrp-testi-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #007B8A;
  background: rgba(0,123,138,0.08);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

/* ── Hospital Logo Strip ────────────────────────────────────── */
.vrp-logos-section {
  padding: 36px 0 52px;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
}
.vrp-logos-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 24px;
}
.vrp-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
}
.vrp-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vrp-logo-pill:hover {
  border-color: #007B8A;
  box-shadow: 0 2px 8px rgba(0,123,138,0.10);
}
.vrp-logo-pill span {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.vrp-faq-section {
  padding: 56px 0;
  background: #ffffff;
}
.vrp-faq-intro {
  font-size: 15px;
  color: #4b5563;
  margin: 0 0 32px;
  line-height: 1.65;
}
.vrp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vrp-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.vrp-faq-item.is-open {
  border-color: #007B8A;
}
.vrp-faq-btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.vrp-faq-btn:hover {
  background: #f9fafb;
}
.vrp-faq-item.is-open .vrp-faq-btn {
  background: rgba(0,123,138,0.04);
}
.vrp-faq-q {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.45;
  flex: 1;
}
.vrp-faq-item.is-open .vrp-faq-q {
  color: #007B8A;
}
.vrp-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.2s, transform 0.25s ease;
}
.vrp-faq-icon svg {
  width: 13px;
  height: 13px;
  stroke: #374151;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke 0.2s;
}
.vrp-faq-item.is-open .vrp-faq-icon {
  background: #007B8A;
  transform: rotate(180deg);
}
.vrp-faq-item.is-open .vrp-faq-icon svg {
  stroke: #ffffff;
}
.vrp-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.vrp-faq-body-inner {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #374151;
  line-height: 1.75;
  border-top: 1px solid #f3f4f6;
}
.vrp-faq-body-inner p { margin: 12px 0 0; }
.vrp-faq-body-inner p:first-child { margin-top: 14px; }
.vrp-faq-body-inner ul { margin: 10px 0 0; padding-left: 18px; }
.vrp-faq-body-inner li { margin-bottom: 6px; }
.vrp-faq-body-inner strong { color: #111827; font-weight: 600; }
.vrp-faq-note {
  font-size: 12.5px;
  color: #007B8A;
  background: rgba(0,123,138,0.06);
  border-left: 3px solid #007B8A;
  padding: 8px 12px;
  margin-top: 10px;
  border-radius: 0 6px 6px 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .vrp-cta-wrap { flex-direction: column; align-items: stretch; }
  .vrp-btn, .vrp-product-cta { justify-content: center; width: 100%; }
  .vrp-testi-grid { grid-template-columns: 1fr; }
  .vrp-cta-banner { padding: 36px 16px; border-radius: 10px; }
  .vrp-faq-btn { padding: 14px 16px; }
  .vrp-faq-body-inner { padding: 0 16px 16px; }
  .vrp-faq-q { font-size: 14px; }
}

/* ── Testimonials ──────────────────────────────────────────── */
.vrp-testimonials {
  padding: 64px 24px;
  background: #f9fafb;
}
.vrp-testimonials-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.vrp-section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #007B8A;
  margin-bottom: 10px;
}
.vrp-section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #007B8A;
  vertical-align: middle;
  margin-right: 8px;
}
.vrp-testimonials h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: #0d1117;
  margin: 0 0 10px;
  line-height: 1.25;
}
.vrp-testimonials-intro {
  font-size: 15px;
  color: #4b5563;
  margin: 0 0 40px;
  line-height: 1.65;
  max-width: 680px;
}
.vrp-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.vrp-testi-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vrp-testi-card:hover {
  box-shadow: 0 6px 24px rgba(0,123,138,0.1);
  transform: translateY(-2px);
}
.vrp-testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 64px;
  line-height: 1;
  color: rgba(0,123,138,0.12);
  font-family: Georgia, serif;
}
.vrp-testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.vrp-testi-stars svg {
  width: 16px;
  height: 16px;
  fill: #F59E0B;
}
.vrp-testi-quote {
  font-size: 14px;
  color: #374151;
  line-height: 1.75;
  margin: 0 0 20px;
  font-style: italic;
}
.vrp-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
}
.vrp-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007B8A 0%, #005f6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.vrp-testi-name {
  font-size: 13px;
  font-weight: 700;
  color: #0d1117;
  line-height: 1.3;
}
.vrp-testi-hospital {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.3;
  margin-top: 2px;
}
.vrp-testi-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #007B8A;
  background: rgba(0,123,138,0.08);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .vrp-testimonials { padding: 48px 16px; }
  .vrp-testi-grid { grid-template-columns: 1fr; }
}

/* ── Logo Strip ────────────────────────────────────────────── */
.vrp-logos-section {
  padding: 40px 24px 56px;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
}
.vrp-logos-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.vrp-logos-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 28px;
}
.vrp-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
}
.vrp-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vrp-logo-pill:hover {
  border-color: #007B8A;
  box-shadow: 0 2px 8px rgba(0,123,138,0.1);
}
.vrp-logo-pill span {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .vrp-logos-grid { gap: 12px 16px; }
  .vrp-logo-pill { padding: 10px 16px; }
  .vrp-logo-pill span { font-size: 12px; }
}
