/* ==========================================================================
   Sangameshwar Hospital - High-End Editorial Blog & Article Stylesheet
   ========================================================================== */

:root {
  --editorial-primary: #549140;
  --editorial-primary-dark: #253c0d;
  --editorial-primary-light: #e9f5ed;
  --editorial-accent: #0284c7;
  --editorial-accent-light: #e0f2fe;
  --editorial-text-main: #1e293b;
  --editorial-text-muted: #64748b;
  --editorial-border: #e2e8f0;
  --editorial-card-bg: #ffffff;
  --editorial-bg-soft: #f8fafc;
  --editorial-badge-shadow: 0 2px 8px rgba(84, 145, 64, 0.15);
  --editorial-card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --editorial-card-hover: 0 20px 40px -15px rgba(37, 60, 13, 0.15);
}

/* -------------------------------------------------------------
   1. Reading Progress Bar (Single Article)
   ------------------------------------------------------------- */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}
.reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #549140 0%, #10b981 50%, #0284c7 100%);
  transition: width 0.1s ease-out;
}

/* -------------------------------------------------------------
   2. Main Blog Hub (blog.html) - Editorial Hero & Controls
   ------------------------------------------------------------- */
.editorial-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(84, 145, 64, 0.12);
  color: #253c0d;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.editorial-hero-badge i {
  color: #549140;
}

.blog-hub-header {
  padding: 40px 0 25px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--editorial-border);
}

.editorial-search-filter-wrap {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.editorial-search-box {
  position: relative;
  max-width: 550px;
  width: 100%;
}
.editorial-search-box input {
  width: 100%;
  height: 52px;
  padding: 12px 50px 12px 20px;
  background: #ffffff;
  border: 1.5px solid var(--editorial-border);
  border-radius: 12px;
  font-size: 15px;
  color: var(--editorial-text-main);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.editorial-search-box input:focus {
  border-color: #549140;
  box-shadow: 0 4px 20px rgba(84, 145, 64, 0.12);
}
.editorial-search-box .search-icon-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 18px;
  pointer-events: none;
}

.category-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.filter-pill-btn {
  background: #ffffff;
  color: #475569;
  border: 1px solid var(--editorial-border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.filter-pill-btn:hover {
  border-color: #549140;
  color: #253c0d;
  background: var(--editorial-primary-light);
  transform: translateY(-1px);
}
.filter-pill-btn.active {
  background: #253c0d;
  color: #ffffff;
  border-color: #253c0d;
  box-shadow: 0 4px 12px rgba(37, 60, 13, 0.25);
}

/* -------------------------------------------------------------
   3. Featured Spotlight Card (Hero Blog)
   ------------------------------------------------------------- */
.featured-blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(84, 145, 64, 0.15);
  box-shadow: 0 15px 35px -10px rgba(37, 60, 13, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  margin-bottom: 45px;
}
.featured-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--editorial-card-hover);
}
.featured-blog-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  height: 100%;
}
.featured-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.featured-blog-card:hover .featured-blog-img img {
  transform: scale(1.05);
}
.featured-blog-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #253c0d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  width: fit-content;
}
.featured-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  color: #0f172a;
}
.featured-title a {
  color: #0f172a;
  transition: color 0.25s ease;
}
.featured-title a:hover {
  color: #549140;
}
.featured-excerpt {
  color: #475569;
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* -------------------------------------------------------------
   4. Editorial Standard Blog Cards Grid
   ------------------------------------------------------------- */
.editorial-grid-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--editorial-border);
  box-shadow: var(--editorial-card-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.editorial-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--editorial-card-hover);
  border-color: rgba(84, 145, 64, 0.3);
}
.editorial-card-img-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 58%;
  background: #e2e8f0;
}
.editorial-card-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.editorial-grid-card:hover .editorial-card-img-wrap img {
  transform: scale(1.06);
}
.editorial-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.editorial-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.editorial-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--editorial-text-muted);
  margin-bottom: 12px;
}
.editorial-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.editorial-card-meta i {
  color: #549140;
  font-size: 12px;
}

.editorial-card-title {
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.4;
  color: #1e293b;
  margin-bottom: 12px;
  flex-grow: 1;
}
.editorial-card-title a {
  color: #1e293b;
  transition: color 0.2s ease;
}
.editorial-card-title a:hover {
  color: #549140;
}

.editorial-card-desc {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.editorial-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: auto;
}
.editorial-doctor-credit {
  display: flex;
  align-items: center;
  gap: 8px;
}
.editorial-doc-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--editorial-primary-light);
  color: #253c0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.editorial-doc-info {
  font-size: 12.5px;
  color: #334155;
  font-weight: 600;
  line-height: 1.2;
}
.editorial-doc-info small {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
}

.editorial-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: #549140;
  transition: all 0.2s ease;
}
.editorial-read-btn:hover {
  color: #253c0d;
  transform: translateX(3px);
}

/* -------------------------------------------------------------
   5. Single Article Page Header & Layout
   ------------------------------------------------------------- */
.article-header-section {
  padding: 50px 0 35px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--editorial-border);
}
.article-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--editorial-primary-light);
  color: #253c0d;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.article-main-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.28;
  color: #0f172a;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .article-main-title {
    font-size: 26px;
  }
}

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid var(--editorial-border);
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.article-meta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.article-doctor-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-doctor-badge img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #549140;
}
.article-doc-text h6 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.article-doc-text p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}
.article-meta-pill {
  font-size: 13px;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* -------------------------------------------------------------
   6. Article Editorial Content Elements
   ------------------------------------------------------------- */
.editorial-article-body {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
}
.editorial-article-body p {
  margin-bottom: 22px;
}
.editorial-lead-para {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  color: #1e293b;
  border-left: 4px solid #549140;
  padding-left: 18px;
  margin: 25px 0 30px;
  background: var(--editorial-primary-light);
  padding: 18px 20px;
  border-radius: 0 12px 12px 0;
}
.editorial-lead-para::first-letter {
  font-size: 130%;
  font-weight: 800;
  color: #253c0d;
}

.editorial-article-body h2,
.editorial-article-body h3,
.editorial-article-body h4 {
  color: #0f172a;
  font-weight: 700;
  margin-top: 38px;
  margin-bottom: 18px;
  line-height: 1.35;
  scroll-margin-top: 100px;
}
.editorial-article-body h2 {
  font-size: 26px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}
.editorial-article-body h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #549140;
}
.editorial-article-body h3 {
  font-size: 21px;
}

/* Callout Boxes */
.editorial-callout {
  border-radius: 14px;
  padding: 24px;
  margin: 30px 0;
  position: relative;
}
.callout-insight {
  background: #f0fdf4;
  border-left: 5px solid #16a34a;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.08);
}
.callout-warning {
  background: #fffbeb;
  border-left: 5px solid #f59e0b;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.08);
}
.callout-urgent {
  background: #fef2f2;
  border-left: 5px solid #ef4444;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.08);
}
.callout-hospital {
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
  border: 1.5px solid rgba(84, 145, 64, 0.25);
  box-shadow: 0 6px 20px rgba(84, 145, 64, 0.1);
}

.callout-title {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #0f172a;
}
.callout-insight .callout-title {
  color: #15803d;
}
.callout-warning .callout-title {
  color: #b45309;
}
.callout-urgent .callout-title {
  color: #b91c1c;
}

/* Feature Checklists */
.editorial-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px;
}
.editorial-checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
}
.editorial-checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  background: #e9f5ed;
  color: #549140;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.checklist-warning li::before {
  content: "\f071";
  background: #fef2f2;
  color: #ef4444;
}

/* Table of comparison */
.editorial-table-wrap {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: 12px;
  border: 1px solid var(--editorial-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.editorial-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 0;
}
.editorial-table th {
  background: #253c0d;
  color: #ffffff;
  padding: 14px 18px;
  font-weight: 700;
  text-align: left;
}
.editorial-table td {
  padding: 13px 18px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}
.editorial-table tr:nth-child(even) td {
  background: #f8fafc;
}

/* -------------------------------------------------------------
   7. Premium FAQ Accordion
   ------------------------------------------------------------- */
.editorial-faq-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--editorial-border);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.editorial-faq-card:hover {
  border-color: #549140;
  box-shadow: 0 4px 15px rgba(84, 145, 64, 0.08);
}
.editorial-faq-btn {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 16.5px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
.editorial-faq-btn i {
  font-size: 16px;
  color: #549140;
  transition: transform 0.3s ease;
}
.editorial-faq-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: #253c0d;
}
.editorial-faq-body {
  padding: 0 22px 20px;
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
}

/* -------------------------------------------------------------
   8. Sidebar Widgets (Doctor Card, TOC, Booking CTA)
   ------------------------------------------------------------- */
.editorial-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-doctor-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--editorial-border);
  box-shadow: var(--editorial-card-shadow);
  margin-bottom: 25px;
  text-align: center;
}
.sidebar-doctor-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 14px;
  object-fit: cover;
  border: 3px solid #549140;
  box-shadow: 0 6px 18px rgba(84, 145, 64, 0.2);
}
.sidebar-doctor-name {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.sidebar-doctor-role {
  font-size: 13px;
  color: #549140;
  font-weight: 600;
  margin-bottom: 12px;
}
.sidebar-doctor-dept {
  font-size: 12.5px;
  color: #64748b;
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 16px;
}

.sidebar-toc-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--editorial-border);
  box-shadow: var(--editorial-card-shadow);
  margin-bottom: 25px;
}
.sidebar-toc-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-toc-title i {
  color: #549140;
}
.sidebar-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-toc-list li {
  margin-bottom: 10px;
}
.sidebar-toc-list a {
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  line-height: 1.4;
}
.sidebar-toc-list a:hover {
  color: #549140;
  padding-left: 4px;
}

.sidebar-booking-box {
  background: linear-gradient(145deg, #253c0d 0%, #172a08 100%);
  color: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 15px 35px -10px rgba(37, 60, 13, 0.35);
  margin-bottom: 25px;
  text-align: center;
}
.sidebar-booking-box h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sidebar-booking-box p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.btn-emergency-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #253c0d;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}
.btn-emergency-call:hover {
  background: #f0fdf4;
  color: #15803d;
  transform: translateY(-2px);
}
.btn-whatsapp-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  transition: all 0.25s ease;
}
.btn-whatsapp-chat:hover {
  background: #20ba5a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   9. Bottom Consultation Banner & Related Blogs
   ------------------------------------------------------------- */
.consultation-cta-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
  border: 1px solid rgba(84, 145, 64, 0.2);
  border-radius: 20px;
  padding: 35px 40px;
  margin: 45px 0 30px;
  box-shadow: 0 10px 30px -10px rgba(84, 145, 64, 0.12);
}
@media (max-width: 768px) {
  .consultation-cta-banner {
    padding: 25px 20px;
  }
}

.related-blogs-section {
  padding: 60px 0 80px;
  background: #f8fafc;
  border-top: 1px solid var(--editorial-border);
}

/* -------------------------------------------------------------
   10. Home Page Blog Section & High-End Slider Styles
   ------------------------------------------------------------- */
.home-blog-section {
  position: relative;
  background: radial-gradient(1200px circle at 15% 15%, rgba(84, 145, 64, 0.06) 0%, transparent 60%),
              radial-gradient(1000px circle at 85% 85%, rgba(2, 132, 199, 0.05) 0%, transparent 60%),
              #f8fafc;
  padding: 85px 0 80px;
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.home-blog-header {
  margin-bottom: 40px;
}

.home-blog-header .editorial-hero-badge {
  background: rgba(84, 145, 64, 0.12);
  color: #253c0d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.home-blog-header .editorial-hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: #549140;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(84, 145, 64, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(84, 145, 64, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(84, 145, 64, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(84, 145, 64, 0); }
}

.home-blog-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .home-blog-title {
    font-size: 28px;
  }
}

.home-blog-title .highlight {
  color: #549140;
  position: relative;
}

.home-blog-subtitle {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 0;
}

.home-blog-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-explore-journal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #253c0d;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(84, 145, 64, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.btn-explore-journal:hover {
  background: #253c0d;
  color: #ffffff;
  border-color: #253c0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 60, 13, 0.2);
}

.home-slider-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}
.home-slider-nav-btn:hover {
  background: #549140;
  border-color: #549140;
  color: #ffffff;
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(84, 145, 64, 0.25);
}

/* Home Blog Card Luxury Aesthetic */
.home-article-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.07);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.home-article-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(84, 145, 64, 0.4) 0%, rgba(2, 132, 199, 0) 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.home-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px -12px rgba(37, 60, 13, 0.16);
  border-color: rgba(84, 145, 64, 0.4);
}
.home-article-card:hover::before {
  opacity: 1;
}

.home-card-media {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #0f172a;
}
.home-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-article-card:hover .home-card-media img {
  transform: scale(1.08);
}
.home-card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}

.home-card-dept-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}
.home-card-read-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #0f172a;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2;
}
.home-card-read-badge i {
  color: #549140;
  font-size: 11px;
}

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

.home-doc-verifier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #253c0d;
  background: rgba(84, 145, 64, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}
.home-doc-verifier i {
  color: #549140;
}

.home-card-headline {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
}
.home-card-headline a {
  color: #0f172a;
  transition: color 0.25s ease;
  text-decoration: none;
}
.home-card-headline a:hover {
  color: #549140;
}

.home-card-snippet {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.home-card-action {
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-read-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #549140;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.home-read-link i {
  transition: transform 0.25s ease;
}
.home-article-card:hover .home-read-link {
  color: #253c0d;
}
.home-article-card:hover .home-read-link i {
  transform: translateX(4px);
}

/* Home Section Bottom Consultation Strip */
.home-blog-quick-cta {
  margin-top: 50px;
  background: linear-gradient(135deg, #182d07 0%, #253c0d 50%, #0f2b48 100%);
  border-radius: 20px;
  padding: 32px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px -10px rgba(24, 45, 7, 0.4);
}
@media (max-width: 768px) {
  .home-blog-quick-cta {
    padding: 26px 20px;
  }
}
.home-blog-quick-cta::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.quick-cta-content h4 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}
.quick-cta-content p {
  color: #cbd5e1;
  font-size: 14.5px;
  margin-bottom: 0;
}
.quick-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-cta-phone {
  background: #ffffff;
  color: #253c0d;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-cta-phone:hover {
  background: #f0fdf4;
  color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.btn-cta-wa {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-cta-wa:hover {
  background: #20ba5a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* -------------------------------------------------------------
   11. High-End Testimonials & Patient Recovery Stories
   ------------------------------------------------------------- */
.home-testi-section {
  position: relative;
  background: #ffffff;
  padding: 85px 0 80px;
  overflow: hidden;
}

.testi-header-wrap {
  margin-bottom: 40px;
}

.testi-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 179, 8, 0.12);
  color: #854d0e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.testi-trust-pill i {
  color: #eab308;
}

.testi-trust-badges-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.testi-trust-stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 999px;
}
.testi-trust-stat i {
  color: #549140;
}

/* Modern Luxury Testimonial Card */
.modern-testi-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(37, 60, 13, 0.15);
  border-color: rgba(84, 145, 64, 0.35);
}

.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testi-dept-tag {
  background: rgba(84, 145, 64, 0.1);
  color: #253c0d;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
}

.testi-star-rating {
  color: #f59e0b;
  font-size: 13px;
  display: flex;
  gap: 3px;
}

.testi-quote-headline {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 12px;
}

.testi-story-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
  font-style: italic;
  position: relative;
}

.testi-patient-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.testi-patient-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #253c0d 0%, #549140 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(84, 145, 64, 0.25);
  flex-shrink: 0;
}

.testi-patient-details h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
  line-height: 1.2;
}

.testi-patient-details span {
  font-size: 12px;
  color: #64748b;
  display: block;
}

.testi-doc-tag {
  font-size: 11.5px;
  color: #0369a1;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
}


