/*
Theme Name: Imagerie Beauvallet
Theme URI: https://selarlsib.fr
Author: SELARL Service d'Imagerie de Beauvallet
Author URI: https://selarlsib.fr
Description: Thème officiel du cabinet d'imagerie médicale SELARL Beauvallet — Toury & Voves
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: imagerie-beauvallet
*/

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===========================
   LAYOUT WRAPPER
   =========================== */
.sib-layout {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .sib-layout {
    flex-direction: row;
  }
}

/* ===========================
   SIDEBAR
   =========================== */
.sib-sidebar {
  width: 256px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #f1f5f9;
  display: none; /* hidden on mobile */
  flex-direction: column;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  transition: transform 0.3s ease;
}

@media (min-width: 1024px) {
  .sib-sidebar {
    display: flex;
  }
}

.sib-sidebar-brand {
  padding: 20px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sib-logo {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.sib-sidebar-brand:hover .sib-logo {
  transform: scale(1.05);
}

.sib-brand-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1;
  transition: color 0.2s;
}

.sib-sidebar-brand:hover .sib-brand-title {
  color: #2563eb;
}

.sib-brand-sub {
  font-size: 9px;
  font-weight: 700;
  color: #64748b;
  font-family: monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.sib-nav {
  flex: 1;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.sib-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
  overflow: hidden;
}

.sib-nav-item:hover {
  background: #f8fafc;
  color: #0f172a;
}

.sib-nav-item.active {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

.sib-nav-item.highlight {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #dcfce7;
}

.sib-nav-item.highlight:hover {
  background: #dcfce7;
}

.sib-nav-item.active .sib-nav-icon { color: #fff; }
.sib-nav-item.highlight .sib-nav-icon { color: #16a34a; }
.sib-nav-icon { width: 20px; height: 20px; flex-shrink: 0; color: #94a3b8; }

.sib-sidebar-footer {
  padding: 16px;
  border-top: 1px solid #f1f5f9;
  background: rgba(248,250,252,0.5);
  text-align: center;
}

.sib-sidebar-footer-label {
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: monospace;
}

.sib-sidebar-footer-copy {
  font-size: 8px;
  color: #94a3b8;
  margin-top: 2px;
}

/* ===========================
   MOBILE HEADER BAR
   =========================== */
.sib-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 10px 14px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

@media (min-width: 1024px) {
  .sib-mobile-bar { display: none; }
}

.sib-mobile-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sib-mobile-logo-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.sib-mobile-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sib-mobile-call-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.sib-mobile-rdv-btn {
  padding: 4px 12px;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.sib-mobile-rdv-btn:hover { background: #1d4ed8; }

.sib-hamburger {
  padding: 6px;
  border-radius: 8px;
  color: #334155;
  transition: background 0.15s;
}

.sib-hamburger:hover { background: #f1f5f9; }

/* ===========================
   MOBILE DRAWER OVERLAY
   =========================== */
.sib-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.4);
  backdrop-filter: blur(2px);
  z-index: 45;
}

.sib-drawer-backdrop.open { display: block; }

.sib-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  max-width: 85vw;
  z-index: 50;
  background: #fff;
  box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

.sib-drawer.open { transform: translateX(0); }

.sib-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px;
  border-radius: 8px;
  color: #64748b;
  transition: background 0.15s;
}

.sib-drawer-close:hover { background: #f1f5f9; }

/* ===========================
   MAIN CONTENT
   =========================== */
.sib-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 56px; /* mobile bar height */
}

@media (min-width: 1024px) {
  .sib-main {
    padding-top: 0;
    margin-left: 256px;
  }
}

/* ===========================
   TOP DESKTOP INFO BAR
   =========================== */
.sib-topbar {
  display: none;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 14px 24px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .sib-topbar { display: flex; }
}

.sib-status-row { display: flex; align-items: center; gap: 20px; }

.sib-status-open {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #059669;
}

.sib-status-closed {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #dc2626;
}

.sib-status-dot-open {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse-green 1.5s infinite;
}

.sib-status-dot-closed {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ef4444;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.sib-topbar-divider { color: #e2e8f0; }

.sib-topbar-hours {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: #64748b;
}

.sib-topbar-phones { display: flex; align-items: center; gap: 20px; }

.sib-topbar-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #475569;
  text-decoration: none; transition: color 0.15s;
}

.sib-topbar-phone:hover { color: #2563eb; }
.sib-topbar-phone strong { color: #0f172a; font-family: monospace; }

/* ===========================
   CONTENT AREA
   =========================== */
.sib-content { flex: 1; }

/* ===========================
   FOOTER
   =========================== */
.sib-footer {
  background: #020617;
  border-top: 1px solid #1e293b;
  padding: 64px 32px 48px;
  color: #64748b;
  font-size: 12px;
}

.sib-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e293b;
}

@media (min-width: 768px) {
  .sib-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .sib-footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.sib-footer-col { display: flex; flex-direction: column; gap: 16px; }

.sib-footer-brand-row {
  display: flex; align-items: center; gap: 8px;
}

.sib-footer-brand-dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: #3b82f6;
}

.sib-footer-brand-name {
  font-size: 14px; font-weight: 800; color: #fff;
  letter-spacing: -0.02em;
}

.sib-footer-desc {
  font-size: 11px; color: #94a3b8; line-height: 1.7;
}

.sib-footer-meta { border-top: 1px solid #0f172a; padding-top: 8px; }

.sib-footer-site {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; color: #60a5fa;
  margin-bottom: 4px;
}

.sib-footer-hosting {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: #94a3b8;
}

.sib-footer-legal-note {
  font-size: 10px; color: #64748b;
  line-height: 1.6; margin-top: 8px;
}

.sib-footer-col-title {
  font-size: 10px; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.sib-footer-nav { display: flex; flex-direction: column; gap: 8px; }

.sib-footer-nav a {
  font-size: 11px; font-weight: 600; color: #94a3b8;
  text-decoration: none; transition: color 0.15s;
  display: flex; align-items: center; gap: 6px;
}

.sib-footer-nav a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%; background: #475569;
  flex-shrink: 0; transition: background 0.15s;
}

.sib-footer-nav a:hover { color: #60a5fa; }
.sib-footer-nav a:hover::before { background: #3b82f6; }
.sib-footer-nav a.rdv { color: #34d399; font-weight: 700; }
.sib-footer-nav a.rdv::before { background: #065f46; }
.sib-footer-nav a.rdv:hover { color: #10b981; }

.sib-footer-social-desc { font-size: 11px; color: #94a3b8; line-height: 1.6; }

.sib-footer-social-row { display: flex; gap: 12px; align-items: center; padding-top: 8px; }

.sib-footer-social-link {
  padding: 10px;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 12px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.15s;
  display: flex;
}

.sib-footer-social-link:hover { background: #1d4ed8; color: #fff; border-color: #1d4ed8; }
.sib-footer-social-note { font-size: 9px; color: #94a3b8; line-height: 1.5; }

.sib-footer-partner {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px; border-radius: 12px;
  background: rgba(15,23,42,0.6); border: 1px solid #1e293b;
  text-decoration: none; transition: all 0.15s;
}

.sib-footer-partner:hover { background: #020617; }

.sib-footer-partner-name { font-size: 11px; font-weight: 700; color: #e2e8f0; display: block; }
.sib-footer-partner-sub { font-size: 9px; color: #94a3b8; display: block; line-height: 1.3; margin-top: 1px; }

.sib-footer-partner-inactive {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px; border-radius: 12px;
  background: rgba(15,23,42,0.3); border: 1px solid #0f172a;
}

.sib-footer-ameli {
  font-size: 10px; color: #60a5fa; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: color 0.15s;
}

.sib-footer-ameli:hover { color: #93c5fd; }

.sib-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #0f172a;
}

@media (min-width: 640px) {
  .sib-footer-bottom { flex-direction: row; justify-content: space-between; }
}

.sib-footer-copy { font-size: 10px; color: #64748b; }
.sib-footer-copy-sub { font-size: 9px; color: #475569; margin-top: 2px; }

.sib-footer-legal-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.sib-footer-legal-links a {
  font-size: 10px; color: #64748b; text-decoration: none;
  transition: color 0.15s;
}

.sib-footer-legal-links a:hover { color: #fff; text-decoration: underline; }

.sib-footer-disclaimer {
  max-width: 1280px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 9px; color: #475569;
  padding-top: 16px;
  border-top: 1px solid #1e293b;
}

/* ===========================
   PAGE CONTENT HELPERS
   =========================== */
.sib-page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 16px 64px;
}

@media (min-width: 640px) { .sib-page-content { padding: 40px 24px 64px; } }
@media (min-width: 1024px) { .sib-page-content { padding: 40px 32px 64px; } }

/* ===========================
   HERO BANNER (nom cabinet)
   =========================== */
.sib-hero-banner {
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
  padding: 20px 24px;
}

.sib-hero-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sib-hero-banner-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
}

.sib-hero-banner-name {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.sib-hero-banner-sub {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===========================
   HERO SECTION
   =========================== */
.sib-hero {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
}

.sib-hero-blob-1 {
  position: absolute; top: 0; right: 0;
  width: 33%; height: 100%;
  background: rgba(239,246,255,0.7);
  border-radius: 100% 0 0 100%;
  filter: blur(48px);
  pointer-events: none;
  transform: translateX(96px) translateY(-48px);
}

.sib-hero-blob-2 {
  position: absolute; bottom: 0; left: 0;
  width: 25%; height: 50%;
  background: rgba(238,242,255,0.5);
  border-radius: 0 100% 100% 0;
  filter: blur(32px);
  pointer-events: none;
}

.sib-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 16px 96px;
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 640px) { .sib-hero-inner { padding: 40px 24px 96px; } }
@media (min-width: 1024px) {
  .sib-hero-inner {
    grid-template-columns: 7fr 5fr;
    padding: 40px 32px 96px;
  }
}

.sib-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: #eff6ff; color: #1d4ed8;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 6px;
  text-decoration: underline;
  text-decoration-color: rgba(147,197,253,0.5);
  text-decoration-thickness: 2px;
}

.sib-hero-h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
  margin-top: 24px;
}

.sib-hero-desc {
  font-size: 17px; color: #475569;
  line-height: 1.65; margin-top: 16px;
}

.sib-hero-demo-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  max-width: 580px;
}

.sib-hero-demo-label {
  font-size: 11px; font-weight: 700; color: #1d4ed8;
  text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: underline;
  text-decoration-color: rgba(147,197,253,0.5);
  text-decoration-thickness: 2px;
  margin-bottom: 8px; display: block;
}

.sib-hero-demo-text { font-size: 12px; color: #475569; line-height: 1.6; }

.sib-hero-demo-codes {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px;
}

.sib-hero-code-badge {
  padding: 4px 10px;
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 8px; font-size: 10px;
  font-family: monospace; color: #334155;
}

.sib-hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 32px;
}

.sib-btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 24px;
  background: #0f172a; color: #fff;
  font-size: 14px; font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s;
}

.sib-btn-dark:hover { background: #1e293b; transform: translateY(-2px); }

.sib-btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 24px;
  background: #2563eb; color: #fff;
  font-size: 14px; font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
  transition: all 0.2s;
}

.sib-btn-blue:hover { background: #1d4ed8; transform: translateY(-2px); }

.sib-hero-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid #e2e8f0;
}

.sib-metric { display: flex; align-items: flex-start; gap: 10px; }
.sib-metric-text h4 { font-size: 13px; font-weight: 700; color: #0f172a; line-height: 1.2; }
.sib-metric-text p { font-size: 11px; color: #64748b; margin-top: 2px; }

/* ===========================
   HERO CARDS GRID
   =========================== */
.sib-hero-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; position: relative; z-index: 10;
}

.sib-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.sib-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.sib-card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  margin-bottom: 16px;
}

.sib-card-icon.blue { background: #eff6ff; color: #2563eb; }
.sib-card-icon.indigo { background: #eef2ff; color: #4f46e5; }

.sib-card h3 { font-size: 14px; font-weight: 700; color: #0f172a; }
.sib-card .sib-card-addr { font-size: 11px; color: #64748b; margin-top: 4px; }
.sib-card .sib-card-phone { font-size: 11px; font-weight: 600; margin-top: 12px; font-family: monospace; }
.sib-card .sib-card-phone.blue { color: #2563eb; }
.sib-card .sib-card-phone.indigo { color: #4f46e5; }

.sib-card.dark {
  background: #0f172a; border-color: #0f172a;
  color: #fff;
}

.sib-card.dark .sib-card-tag { font-size: 9px; font-weight: 700; color: #60a5fa; text-transform: uppercase; letter-spacing: 0.1em; }
.sib-card.dark h3 { color: #fff; font-size: 18px; margin-top: 4px; }
.sib-card.dark .sib-card-sub { color: #94a3b8; font-size: 11px; margin-top: 8px; line-height: 1.4; }

.sib-card.green {
  background: #f0fdf4; border-color: #dcfce7;
}

.sib-card.green .sib-card-3d {
  width: 32px; height: 32px; border-radius: 50%;
  background: #15803d; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; margin-bottom: 12px;
}

.sib-card.green h3 { font-size: 14px; font-weight: 700; color: #052e16; }
.sib-card.green p { font-size: 11px; color: #166534; margin-top: 4px; line-height: 1.4; }
.sib-card.green .sib-card-discover { font-size: 10px; font-weight: 700; color: #15803d; margin-top: 12px; display: flex; align-items: center; gap: 4px; }

.sib-card-offset { margin-top: 16px; }

.sib-hero-partner-box {
  margin-top: 24px;
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 16px; padding: 16px;
}

.sib-partner-row { display: flex; gap: 10px; align-items: flex-start; }

.sib-partner-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #f59e0b; flex-shrink: 0; margin-top: 4px;
  animation: pulse-amber 1.5s infinite;
}

@keyframes pulse-amber {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.sib-partner-title { font-size: 11px; font-weight: 800; color: #451a03; text-transform: uppercase; letter-spacing: 0.05em; }
.sib-partner-desc { font-size: 11px; color: #78350f; margin-top: 4px; line-height: 1.5; }
.sib-partner-phone { font-size: 11px; font-weight: 700; font-family: monospace; color: #1c0a00; background: rgba(251,191,36,0.2); padding: 2px 8px; border-radius: 6px; margin-top: 6px; display: inline-block; }

/* ===========================
   EQUIPMENT SECTION
   =========================== */
.sib-section-title-wrap {
  text-align: center; max-width: 720px; margin: 0 auto 40px;
}

.sib-section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px;
  background: #eff6ff; color: #1d4ed8;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 6px;
  text-decoration: underline;
  text-decoration-color: rgba(147,197,253,0.5);
  text-decoration-thickness: 2px;
  margin-bottom: 16px;
}

.sib-section-h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; letter-spacing: -0.03em; color: #0f172a;
}

.sib-section-desc { font-size: 13px; color: #64748b; margin-top: 12px; line-height: 1.7; }

.sib-equip-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .sib-equip-grid { grid-template-columns: repeat(3, 1fr); }
}

.sib-equip-card {
  background: #fff; border: 1px solid rgba(226,232,240,0.8);
  border-radius: 16px; padding: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
  display: flex; flex-direction: column; justify-content: space-between;
}

.sib-equip-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

.sib-equip-tag {
  font-family: monospace; font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 10px;
}

.sib-equip-tag.blue { color: #2563eb; }
.sib-equip-tag.indigo { color: #4f46e5; }
.sib-equip-tag.amber { color: #b45309; }

.sib-equip-visual {
  height: 260px; background: #020617;
  border-radius: 12px; border: 1px solid #1e293b;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; margin-bottom: 16px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.sib-equip-photo { cursor: zoom-in; }

.sib-equip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.sib-equip-photo:hover .sib-equip-img { transform: scale(1.04); }

.sib-equip-zoom-hint {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(15,23,42,0.75);
  color: #e2e8f0;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.sib-equip-photo:hover .sib-equip-zoom-hint { opacity: 1; }

.sib-equip-visual-badge {
  position: absolute; bottom: 8px; right: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px; font-family: monospace; font-weight: 500;
}

.sib-equip-visual-badge.blue { background: rgba(23,37,84,0.9); border: 1px solid rgba(59,130,246,0.3); color: #60a5fa; }
.sib-equip-visual-badge.indigo { background: rgba(30,27,75,0.9); border: 1px solid rgba(99,102,241,0.3); color: #818cf8; }
.sib-equip-visual-badge.amber { background: rgba(69,26,3,0.9); border: 1px solid rgba(245,158,11,0.3); color: #fbbf24; }

.sib-equip-h4 { font-size: 15px; font-weight: 800; color: #0f172a; line-height: 1.3; }
.sib-equip-p { font-size: 12px; color: #64748b; margin-top: 8px; line-height: 1.6; text-align: justify; }

.sib-equip-footer {
  font-size: 11px; font-weight: 600; margin-top: 16px; display: block;
}

.sib-equip-footer.blue { color: #2563eb; }
.sib-equip-footer.amber { color: #b45309; }

/* ===========================
   VALUES DARK BAND
   =========================== */
.sib-values-band {
  background: #0f172a; border-radius: 24px;
  padding: 48px 32px;
  border: 1px solid #1e293b;
  max-width: 1280px; margin: 48px auto 0;
}

.sib-values-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) { .sib-values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .sib-values-grid { grid-template-columns: repeat(4, 1fr); } }

.sib-value-item { display: flex; gap: 12px; }
.sib-value-item h5 { font-size: 13px; font-weight: 700; color: #fff; }
.sib-value-item p { font-size: 11px; color: #64748b; margin-top: 4px; line-height: 1.5; }

/* ===========================
   PAGE SECTIONS (generic)
   =========================== */
.sib-page-hero {
  text-align: center; max-width: 720px; margin: 0 auto 48px;
}

.sib-page-hero .sib-page-badge {
  font-size: 10px; font-weight: 700; color: #2563eb;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: block; margin-bottom: 8px;
}

.sib-page-hero h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800; letter-spacing: -0.03em; color: #0f172a;
}

.sib-page-hero p { font-size: 16px; color: #64748b; margin-top: 16px; line-height: 1.65; }

/* ===========================
   SPECIALTIES TABS
   =========================== */
.sib-spec-tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-bottom: 40px;
  padding-bottom: 24px; border-bottom: 1px solid #f1f5f9;
}

.sib-spec-tab {
  padding: 10px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.15s;
  background: #f8fafc; color: #475569;
  border: 1px solid #e2e8f0;
}

.sib-spec-tab:hover { background: #f1f5f9; color: #0f172a; }
.sib-spec-tab.active { background: #2563eb; color: #fff; box-shadow: 0 4px 12px rgba(37,99,235,0.2); transform: scale(1.02); border-color: #2563eb; }

.sib-spec-panel { display: none; }
.sib-spec-panel.active { display: grid; }

.sib-spec-panel {
  grid-template-columns: 1fr;
  gap: 32px;
  background: #f8fafc; padding: 40px 24px;
  border-radius: 24px; border: 1px solid #e2e8f0;
}

@media (min-width: 1024px) { .sib-spec-panel { grid-template-columns: 7fr 5fr; } }

.sib-spec-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; background: #eff6ff; color: #1d4ed8;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; border-radius: 6px;
  text-decoration: underline; text-decoration-color: rgba(147,197,253,0.5);
  text-decoration-thickness: 2px; margin-bottom: 12px;
}

.sib-spec-h3 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: #0f172a; letter-spacing: -0.02em; }
.sib-spec-subtitle { font-size: 16px; color: #2563eb; font-weight: 500; margin-top: 4px; }
.sib-spec-desc { font-size: 14px; color: #475569; line-height: 1.7; margin-top: 20px; }

.sib-spec-indication-label {
  font-size: 11px; font-weight: 700; color: #0f172a;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  padding-top: 24px; border-top: 1px solid #e2e8f0; margin-top: 24px;
}

.sib-spec-indication-box {
  font-size: 13px; color: #475569; background: #fff;
  padding: 16px; border-radius: 12px; border: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03); line-height: 1.6;
}

.sib-spec-equip-box {
  background: #fff; padding: 16px; border-radius: 12px;
  border: 1px solid #f1f5f9; margin-top: 20px;
}

.sib-spec-equip-label { font-size: 10px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.08em; display: block; }
.sib-spec-equip-text { font-size: 12px; color: #334155; margin-top: 4px; font-family: monospace; font-weight: 600; }

.sib-spec-right {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 16px; padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; justify-content: space-between;
}

.sib-spec-prep-label {
  font-size: 11px; font-weight: 700; color: #0f172a;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}

.sib-spec-prep-list { display: flex; flex-direction: column; gap: 16px; }

.sib-spec-prep-item { display: flex; gap: 12px; }

.sib-spec-prep-num {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; background: #f0fdf4; color: #15803d;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

.sib-spec-prep-text { font-size: 12px; color: #334155; line-height: 1.6; }

.sib-spec-partner-box {
  margin-top: 24px; padding: 16px; border-radius: 12px;
  background: #fffbeb; border: 1px solid #fde68a;
}

.sib-spec-partner-title {
  font-size: 11px; font-weight: 800; color: #1c0a00;
  text-transform: uppercase; letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
}

.sib-spec-partner-addr { font-size: 11px; color: #78350f; font-weight: 600; }
.sib-spec-partner-phone { font-size: 11px; color: #92400e; margin-top: 4px; }
.sib-spec-partner-phone strong { color: #1c0a00; font-family: monospace; font-size: 13px; }

.sib-spec-warning {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px; background: rgba(254,242,242,0.5);
  border: 1px solid #fecaca; border-radius: 12px;
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.sib-spec-warning-text h4 { font-size: 11px; font-weight: 700; color: #450a0a; }
.sib-spec-warning-text p { font-size: 10px; color: #7f1d1d; margin-top: 2px; line-height: 1.5; }

.sib-spec-cta { margin-top: 20px; }

.sib-btn-full-blue {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 12px;
  background: #2563eb; color: #fff;
  font-size: 13px; font-weight: 700;
  border-radius: 50px; text-decoration: none;
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(37,99,235,0.2);
}

.sib-btn-full-blue:hover { background: #1d4ed8; }

.sib-rights-band {
  margin-top: 48px;
  background: #0f172a; border-radius: 16px;
  padding: 24px 32px;
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start; justify-content: space-between;
}

@media (min-width: 768px) { .sib-rights-band { flex-direction: row; align-items: center; } }

.sib-rights-row { display: flex; gap: 16px; align-items: flex-start; }

.sib-rights-icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: #1e293b; border: 1px solid #334155;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.sib-rights-title { font-size: 14px; font-weight: 700; color: #fff; }
.sib-rights-desc { font-size: 11px; color: #64748b; margin-top: 4px; line-height: 1.5; max-width: 600px; }

.sib-btn-slate {
  padding: 12px 24px;
  background: #1e293b; border: 1px solid #334155;
  color: #e2e8f0; font-size: 12px; font-weight: 700;
  border-radius: 50px; text-decoration: none;
  transition: background 0.15s; white-space: nowrap;
  display: inline-block;
}

.sib-btn-slate:hover { background: #334155; }

/* ===========================
   RADIOLOGISTS
   =========================== */
.sib-radio-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}

@media (min-width: 768px) { .sib-radio-grid { grid-template-columns: 1fr 1fr; } }

.sib-radio-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 24px; padding: 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
  display: flex; flex-direction: column; justify-content: space-between;
}

.sib-radio-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.sib-radio-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }

.sib-radio-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: #0f172a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; flex-shrink: 0;
}

.sib-radio-name { font-size: clamp(18px, 2.5vw, 22px); font-weight: 800; color: #0f172a; }
.sib-radio-title { font-size: 11px; color: #2563eb; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.sib-radio-quals { border-top: 1px solid #f1f5f9; padding-top: 20px; margin-top: 16px; }

.sib-radio-quals-label {
  font-size: 10px; font-weight: 700; color: #94a3b8;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
}

.sib-radio-quals-list { display: flex; flex-direction: column; gap: 10px; }

.sib-radio-qual-item { display: flex; gap: 8px; }
.sib-radio-qual-item span { font-size: 12px; color: #334155; line-height: 1.5; }

.sib-radio-specs-label {
  font-size: 10px; font-weight: 700; color: #94a3b8;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px; margin-top: 24px;
}

.sib-radio-spec-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.sib-radio-spec-tag {
  padding: 4px 10px; font-size: 11px; border-radius: 6px;
  background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe;
  font-weight: 500;
}

.sib-radio-footer {
  border-top: 1px solid #f1f5f9; padding-top: 20px; margin-top: 32px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start; justify-content: space-between;
}

@media (min-width: 640px) { .sib-radio-footer { flex-direction: row; align-items: center; } }

.sib-radio-quote { font-size: 12px; color: #64748b; font-style: italic; line-height: 1.5; max-width: 300px; }

.sib-btn-dark-sm {
  padding: 10px 20px; background: #0f172a; color: #fff;
  font-size: 12px; font-weight: 600; border-radius: 8px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s; display: inline-block;
}

.sib-btn-dark-sm:hover { background: #1e293b; }

.sib-referral-box {
  margin-top: 48px; max-width: 900px; margin-left: auto; margin-right: auto;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 24px 32px;
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start; justify-content: space-between;
}

@media (min-width: 640px) { .sib-referral-box { flex-direction: row; align-items: center; } }

.sib-referral-row { display: flex; gap: 16px; align-items: flex-start; }

.sib-referral-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: #fff7ed; color: #ea580c;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.sib-referral-title { font-size: 13px; font-weight: 700; color: #0f172a; }
.sib-referral-desc { font-size: 11px; color: #64748b; margin-top: 4px; line-height: 1.5; max-width: 500px; }

.sib-btn-outline {
  padding: 10px 20px; border: 1px solid #e2e8f0;
  color: #334155; font-size: 12px; font-weight: 700;
  border-radius: 8px; text-decoration: none;
  transition: background 0.15s; white-space: nowrap;
  display: inline-block;
}

.sib-btn-outline:hover { background: #f8fafc; }

/* ===========================
   CONTACT PAGE
   =========================== */
.sib-contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px;
}

@media (min-width: 768px) { .sib-contact-grid { grid-template-columns: 1fr 1fr; } }

.sib-contact-card {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 24px; padding: 40px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s;
  display: flex; flex-direction: column; justify-content: space-between;
}

.sib-contact-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

.sib-contact-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }

.sib-contact-h3 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 800; color: #0f172a; line-height: 1.2; }

.sib-contact-location { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.sib-contact-location.blue { color: #2563eb; }
.sib-contact-location.indigo { color: #4f46e5; }

.sib-status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 600;
}

.sib-status-badge.open { background: #dcfce7; color: #14532d; border: 1px solid #86efac; }
.sib-status-badge.closed { background: #fee2e2; color: #7f1d1d; border: 1px solid #fca5a5; }

.sib-status-badge .dot { width: 10px; height: 10px; border-radius: 50%; }
.sib-status-badge.open .dot { background: #22c55e; animation: pulse-green 1.5s infinite; }
.sib-status-badge.closed .dot { background: #ef4444; }

.sib-contact-info { display: flex; flex-direction: column; gap: 16px; }

.sib-contact-info-row { display: flex; gap: 12px; }
.sib-contact-info-row .label { font-size: 14px; font-weight: 700; color: #1e293b; display: block; }
.sib-contact-info-row .value { font-size: 13px; color: #475569; }
.sib-contact-info-row a.phone { font-size: 18px; font-weight: 700; font-family: monospace; text-decoration: none; }
.sib-contact-info-row a.phone.blue { color: #2563eb; }
.sib-contact-info-row a.phone.indigo { color: #4f46e5; }
.sib-contact-info-row a.phone:hover { text-decoration: underline; }
.sib-contact-info-row a.email { color: #2563eb; text-decoration: none; }
.sib-contact-info-row a.email:hover { text-decoration: underline; }
.sib-contact-info-row .hours { font-size: 13px; color: #475569; line-height: 1.6; margin-top: 2px; }
.sib-contact-info-row .hours strong.closed { color: #dc2626; }
.sib-contact-info-row .hours-note { font-size: 10px; color: #94a3b8; font-style: italic; display: block; margin-top: 4px; }

.sib-map-mock {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(226,232,240,0.6);
}

.sib-map-box {
  height: 160px; background: rgba(15,23,42,0.05);
  border-radius: 16px; border: 1px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; overflow: hidden; position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
}

.sib-map-compass {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.8); padding: 6px;
  border-radius: 8px; border: 1px solid #e2e8f0;
}

.sib-map-content { text-align: center; }
.sib-map-content p { font-size: 13px; font-weight: 700; color: #0f172a; }
.sib-map-content .note { font-size: 10px; color: #64748b; margin-top: 4px; max-width: 240px; line-height: 1.4; }

.sib-btn-maps {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 12px; padding: 8px 16px;
  background: #0f172a; color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 50px; text-decoration: none;
  transition: background 0.15s;
}

.sib-btn-maps:hover { background: #1e293b; }

.sib-contact-actions {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(226,232,240,0.6);
  display: flex; flex-direction: column; gap: 12px;
}

.sib-btn-rdv-online {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 10px;
  background: #2563eb; color: #fff;
  font-size: 12px; font-weight: 700; border-radius: 50px;
  text-decoration: none; transition: background 0.15s;
  box-shadow: 0 2px 6px rgba(37,99,235,0.2);
}

.sib-btn-rdv-online:hover { background: #1d4ed8; }

.sib-btn-prep {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 8px;
  background: #f1f5f9; color: #334155;
  font-size: 12px; font-weight: 700; border-radius: 50px;
  text-decoration: none; transition: background 0.15s;
  border: 1px solid #e2e8f0;
}

.sib-btn-prep:hover { background: #e2e8f0; }

.sib-partner-box-amber {
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 24px; padding: 32px;
  max-width: 900px; margin: 0 auto 40px;
  display: grid; grid-template-columns: 1fr;
  gap: 32px; align-items: center;
}

@media (min-width: 768px) { .sib-partner-box-amber { grid-template-columns: 8fr 4fr; } }

.sib-partner-badge {
  display: inline-flex; align-items: center;
  padding: 2px 10px; border-radius: 50px;
  background: #fef3c7; color: #451a03;
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; border: 1px solid #fde68a; margin-bottom: 12px;
}

.sib-partner-h4 { font-size: 20px; font-weight: 700; color: #1c0a00; line-height: 1.3; }
.sib-partner-desc { font-size: 13px; color: #334155; margin-top: 12px; line-height: 1.6; }
.sib-partner-note { font-size: 11px; color: #78350f; font-weight: 600; margin-top: 12px; }

.sib-partner-contact-box {
  background: #fff; padding: 16px; border-radius: 16px;
  border: 1px solid rgba(253,230,138,0.5);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  display: flex; flex-direction: column; gap: 14px;
}

.sib-partner-phone-label { font-size: 9px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.08em; }
.sib-partner-phone-number { font-family: monospace; font-size: 22px; font-weight: 800; color: #1c0a00; text-decoration: none; display: block; margin-top: 2px; }
.sib-partner-phone-number:hover { text-decoration: underline; }

.sib-docs-band {
  background: #0f172a; border: 1px solid #1e293b;
  border-radius: 24px; padding: 40px;
  max-width: 900px; margin: 0 auto;
  color: #94a3b8;
}

.sib-docs-title {
  font-size: 12px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
}

.sib-docs-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) { .sib-docs-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .sib-docs-grid { grid-template-columns: repeat(3, 1fr); } }

.sib-doc-item { display: flex; gap: 8px; }
.sib-doc-check {
  width: 20px; height: 20px; border-radius: 6px;
  background: #1e293b; border: 1px solid #334155;
  display: flex; align-items: center; justify-content: center;
  color: #4ade80; font-weight: 700; font-size: 11px;
  flex-shrink: 0; margin-top: 2px;
}

.sib-doc-text { font-size: 12px; line-height: 1.6; }
.sib-doc-text strong { color: #e2e8f0; }

/* ===========================
   BOOKING PAGE
   =========================== */
.sib-booking-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; margin-top: 24px;
}

@media (min-width: 768px) { .sib-booking-grid { grid-template-columns: 1fr 1fr; } }

.sib-booking-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 24px; padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.2s;
  position: relative; overflow: hidden;
}

.sib-booking-card:hover { transform: translateY(-2px); }

.sib-booking-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
}

.sib-booking-bar.blue { background: #3b82f6; }
.sib-booking-bar.amber { background: #f59e0b; }

.sib-booking-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }

.sib-booking-icon {
  padding: 12px; border-radius: 16px;
}

.sib-booking-icon.blue { background: #eff6ff; color: #2563eb; }
.sib-booking-icon.amber { background: #fffbeb; color: #b45309; }

.sib-booking-title { font-size: 17px; font-weight: 700; color: #0f172a; line-height: 1.3; }
.sib-booking-subtitle { font-size: 11px; font-weight: 700; }
.sib-booking-subtitle.blue { color: #2563eb; }
.sib-booking-subtitle.amber { color: #b45309; }

.sib-booking-desc { font-size: 13px; color: #475569; line-height: 1.6; margin-bottom: 20px; }

.sib-booking-info-box {
  background: #f8fafc; border-radius: 16px;
  padding: 18px; display: flex; flex-direction: column; gap: 12px;
  border: 1px solid #f1f5f9;
}

.sib-booking-info-label { font-size: 9px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.08em; }

.sib-booking-info-item { display: flex; gap: 10px; align-items: flex-start; }
.sib-booking-info-item + .sib-booking-info-item { padding-top: 10px; border-top: 1px solid rgba(226,232,240,0.5); }

.sib-booking-addr-name { font-size: 12px; font-weight: 700; color: #1e293b; display: block; }
.sib-booking-addr-addr { font-size: 11px; color: #64748b; display: block; }
.sib-booking-addr-phone { font-size: 11px; font-weight: 700; font-family: monospace; text-decoration: none; display: inline-block; margin-top: 2px; }
.sib-booking-addr-phone.blue { color: #2563eb; }
.sib-booking-addr-phone:hover { text-decoration: underline; }

.sib-booking-footer { border-top: 1px solid #f1f5f9; padding-top: 24px; margin-top: 32px; }

.sib-btn-booking {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: #2563eb; color: #fff;
  font-size: 13px; font-weight: 700; border-radius: 12px;
  text-decoration: none; transition: background 0.15s;
  box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

.sib-btn-booking:hover { background: #1d4ed8; }

.sib-booking-footer-note { font-size: 9px; color: #94a3b8; text-align: center; margin-top: 10px; }

.sib-booking-help-band {
  background: #0f172a; color: #fff;
  border: 1px solid #1e293b; border-radius: 16px;
  padding: 20px 24px; margin-top: 48px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start; justify-content: space-between;
}

@media (min-width: 640px) { .sib-booking-help-band { flex-direction: row; align-items: center; } }

.sib-booking-help-title { font-size: 13px; font-weight: 700; }
.sib-booking-help-desc { font-size: 11px; color: #64748b; margin-top: 4px; }

.sib-btn-help {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: #1e293b; border: 1px solid #334155;
  color: #e2e8f0; font-size: 11px; font-weight: 700;
  border-radius: 8px; text-decoration: none;
  transition: background 0.15s; white-space: nowrap;
}

.sib-btn-help:hover { background: #334155; }

.sib-info-grid {
  background: rgba(239,246,255,0.6);
  border: 1px solid #bfdbfe;
  border-radius: 16px; padding: 20px;
  margin-top: 16px;
  display: grid; grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) { .sib-info-grid { grid-template-columns: repeat(3, 1fr); } }

.sib-info-item-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; color: #1e3a8a;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}

.sib-info-item-text { font-size: 12px; color: #475569; line-height: 1.6; }

/* ===========================
   WORDPRESS OVERRIDES
   =========================== */
.wp-site-blocks, #page, #content { max-width: none !important; }
.entry-content, .page-content { max-width: none !important; padding: 0 !important; margin: 0 !important; }
h1.entry-title, .page-title { display: none !important; }
.wp-block-post-content { max-width: none !important; }
