/* ============================================
   RADIOLOGY PAGE STYLES
   Co-operative Hospital Kurunegala
   ============================================ */

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary-dark) 100%);
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s infinite ease-in-out alternate;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s infinite ease-in-out alternate-reverse;
}

.page-banner h1 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.page-banner p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 620px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.breadcrumb-custom li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-custom li a:hover { color: var(--accent-light); }

.breadcrumb-custom li.active {
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-custom li.active::before {
  content: '›';
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
}

/* Hero Icon */
.svc-hero-icon-wrap { margin-bottom: 16px; }

.svc-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-light);
  animation: fadeInUp 0.8s ease both;
}

/* Hero Pills */
.svc-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.svc-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ===== QUALITY STRIP ===== */
.quality-strip-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding-bottom: 30px;
}

.quality-strip {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-glow);
}

.q-badge {
  text-align: center;
  padding: 10px;
}

.q-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin: 0 auto 10px;
}

.q-badge h6 {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin: 0;
}

.q-badge p {
  font-size: 12px;
  color: #64748b;
  margin: 2px 0 0;
  font-weight: 500;
}

/* ===== MAIN IMAGE ===== */
.svc-main-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-glow);
}

.svc-main-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* ===== CONTENT BLOCKS ===== */
.svc-block {
  margin-top: 40px;
  margin-bottom: 16px;
}

.svc-heading {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-heading i {
  color: var(--primary);
  font-size: 1.1rem;
}

.svc-block p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}

/* ===== MODALITY CARDS ===== */
.modality-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.modality-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(13, 148, 136, 0.2);
}

.mod-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.mod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modality-card:hover .mod-img img {
  transform: scale(1.08);
}

.mod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mod-badge-pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.mod-badge-new {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

.mod-body {
  padding: 22px;
}

.mod-icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  margin-bottom: 14px;
}

.mod-icon-pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.mod-body h4 {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.mod-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 14px;
}

.mod-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.mod-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  background: rgba(13, 148, 136, 0.06);
  padding: 4px 10px;
  border-radius: 50px;
}

.mod-specs span i {
  color: var(--primary);
  font-size: 9px;
}

.mod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mod-price {
  font-size: 13px;
  color: #94a3b8;
}

.mod-price strong {
  color: var(--navy-dark);
  font-weight: 700;
}

.mod-book {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.mod-book:hover {
  gap: 8px;
  color: var(--primary-dark);
}

/* ===== SPOTLIGHT CARDS ===== */
.spotlight-card {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  margin-bottom: 20px;
  color: #fff;
}

.spot-img {
  height: 100%;
  min-height: 320px;
}

.spot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-body {
  padding: 32px;
}

.spot-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.spot-body h3 {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.spot-model {
  display: block;
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 14px;
}

.spot-body > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.spot-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spot-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.spot-fi {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 14px;
  flex-shrink: 0;
}

.spot-feature h6 {
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 2px;
  color: #fff;
}

.spot-feature small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== COMPARISON TABLE ===== */
.table-wrapper {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.compare-table thead {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.compare-table th {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 16px;
  text-align: center;
  white-space: nowrap;
}

.compare-table th:first-child {
  text-align: left;
}

.compare-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: #334155;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-weight: 500;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--navy-dark);
}

.compare-table tbody tr:hover {
  background: rgba(13, 148, 136, 0.03);
}

.t-yes { color: #10b981; font-weight: 600; }
.t-no { color: #cbd5e1; }
.t-best { color: #f59e0b; font-weight: 700; }
.t-safe { color: #10b981; font-weight: 600; }
.t-price { color: var(--primary-dark); font-weight: 700; }

.t-yes i, .t-safe i { font-size: 12px; margin-right: 3px; }
.t-no i { font-size: 6px; }
.t-best i { font-size: 11px; margin-right: 3px; }

/* ===== BODY PARTS GRID ===== */
.body-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.body-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy-dark);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.body-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  color: var(--primary);
  border-color: rgba(13, 148, 136, 0.2);
}

.body-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.body-item:hover .body-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.body-item span {
  font-size: 11px;
  font-weight: 600;
}

/* ===== TAT CARDS ===== */
.tat-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.tat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.tat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 12px;
}

.tat-red .tat-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.tat-yellow .tat-icon { background: rgba(234, 179, 8, 0.1); color: #eab308; }
.tat-teal .tat-icon { background: rgba(13, 148, 136, 0.1); color: var(--primary); }
.tat-purple .tat-icon { background: rgba(99, 102, 241, 0.1); color: #6366f1; }

.tat-card h6 {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.tat-time {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.tat-card p {
  font-size: 11px;
  color: #94a3b8;
  margin: 0;
}

/* ===== REPORT FLOW ===== */
.report-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.rf-step {
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.rf-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.rf-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin: 0 auto 10px;
}

.rf-step h6 {
  font-weight: 700;
  font-size: 12px;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.rf-step p {
  font-size: 11px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

/* ===== PREP CARDS ===== */
.prep-card {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  height: 100%;
}

.prep-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.prep-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  margin: 0 auto 14px;
}

.prep-card h6 {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.prep-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ===== SAFETY BOX ===== */
.safety-box {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
}

.safety-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.safety-header i {
  color: #ef4444;
  font-size: 20px;
}

.safety-header h5 {
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
  font-size: 16px;
}

.safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.safety-list li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.safety-list li:last-child { border: none; }

.safety-list li i {
  color: #f59e0b;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 140px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.gallery-thumb:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== DOCTOR CARDS ===== */
.doc-card {
  display: flex;
  gap: 16px;
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.doc-avatar {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.doc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-info h6 {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.doc-spec {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.doc-sched {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.doc-sched i {
  color: var(--primary);
  font-size: 11px;
}

/* ===== RELATED SERVICES ===== */
.related-link {
  display: flex;
  gap: 14px;
  background: var(--glass-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.related-link:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(13, 148, 136, 0.2);
  color: inherit;
}

.rel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.related-link h6 {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.related-link p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar-sticky {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sb-widget {
  background: var(--glass-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.sb-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sb-title i {
  color: var(--primary);
  font-size: 14px;
}

/* Sidebar Links */
.sb-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sb-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  transition: all 0.3s ease;
}

.sb-link:hover {
  background: rgba(13, 148, 136, 0.06);
  color: var(--primary);
  padding-left: 18px;
}

.sb-link.active {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--primary);
  font-weight: 600;
  border-left: 3px solid var(--primary);
}

.sb-link i {
  width: 18px;
  text-align: center;
  color: var(--primary);
  font-size: 13px;
}

.sb-link i.fa-file-pdf {
  color: #ef4444;
}

/* Sidebar Table */
.sb-table {
  width: 100%;
  border-collapse: collapse;
}

.sb-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.sb-table tr:last-child { border: none; }

.sb-table td {
  padding: 10px 4px;
  font-size: 13px;
  color: #64748b;
}

.sb-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #334155;
}

.sb-price-table td:last-child {
  font-weight: 700;
  color: var(--navy-dark);
}

.open-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.sb-note {
  font-size: 11px;
  color: #94a3b8;
  margin: 12px 0 0;
}

.sb-note i {
  color: var(--primary);
  margin-right: 3px;
}

/* Sidebar CTA */
.sb-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: #fff;
}

.sb-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-light);
  margin: 0 auto 14px;
}

.sb-cta h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.sb-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.sb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sb-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
  color: #fff;
}

/* Sidebar Contact */
.sb-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 13px;
  color: #334155;
  font-weight: 500;
}

.sb-contact:last-child { border: none; }

.sb-contact i {
  width: 18px;
  text-align: center;
  font-size: 14px;
}

.sb-contact i.fa-phone-alt,
.sb-contact i.fa-envelope { color: var(--primary); }
.sb-contact i.fa-whatsapp { color: #25d366; }
.sb-contact i.fa-certificate { color: #eab308; }

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: rgba(13, 148, 136, 0.03);
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: 0.3s;
  text-align: left;
}

.faq-q:hover {
  background: rgba(13, 148, 136, 0.06);
  color: var(--primary);
}

.faq-q i {
  font-size: 10px;
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-q i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-item.active .faq-a {
  max-height: 200px;
  padding: 0 16px 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .body-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .report-flow {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .page-banner {
    padding: 120px 0 60px;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }

  .quality-strip-section {
    margin-top: -40px;
  }

  .sidebar-sticky {
    position: static;
    margin-top: 40px;
  }

  .spot-img {
    min-height: 220px;
  }

  .spot-body {
    padding: 24px;
  }

  .body-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .report-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .page-banner h1 {
    font-size: 1.8rem;
  }

  .svc-hero-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    border-radius: 14px;
  }

  .svc-pill {
    padding: 5px 10px;
    font-size: 11px;
  }

  .quality-strip {
    padding: 20px 16px;
  }

  .q-badge-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
    border-radius: 12px;
  }

  .q-badge h6 {
    font-size: 1.1rem;
  }

  .svc-main-image img {
    height: 220px;
  }

  .svc-heading {
    font-size: 1.2rem;
  }

  .mod-img {
    height: 150px;
  }

  .mod-body {
    padding: 18px;
  }

  .mod-body h4 {
    font-size: 14px;
  }

  .spot-body {
    padding: 20px;
  }

  .spot-body h3 {
    font-size: 1.1rem;
  }

  .body-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .body-item {
    padding: 14px 8px;
  }

  .body-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .body-item span {
    font-size: 10px;
  }

  .report-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .rf-step {
    padding: 16px 10px;
  }

  .tat-card {
    padding: 16px;
  }

  .tat-time {
    font-size: 15px;
  }

  .svc-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-thumb {
    height: 110px;
  }

  .doc-card {
    flex-direction: column;
    text-align: center;
  }

  .doc-avatar {
    margin: 0 auto;
  }

  .safety-box {
    padding: 20px;
  }

  .sb-widget {
    padding: 20px;
  }
}