/* ==========================================================================
   UROFLEX INDONESIA - CLINICAL UROLOGY & PHYSIOTHERAPY STYLESHEET
   Author: dr. Aditya Pratama, Sp.KFR
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-deep: #075985;
  --primary-light: #e0f2fe;
  --primary-subtle: #f0f9ff;
  
  --navy: #0a2540;
  --navy-surface: #132f4c;
  
  --accent: #10b981;
  --accent-dark: #059669;
  --accent-light: #d1fae5;
  
  --coral: #f43f5e;
  --coral-light: #ffe4e6;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --border-color: #e2e8f0;
  --border-focus: #0284c7;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
  
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-width: 1140px;
  --article-width: 820px;
  --transition: all 0.2s ease-in-out;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

button {
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.article-container {
  width: 100%;
  max-width: var(--article-width);
  margin-left: auto;
  margin-right: auto;
}

/* Top Medical Verification Bar */
.medical-topbar {
  background-color: var(--navy);
  color: #94a3b8;
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.medical-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.clinical-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #38bdf8;
  font-weight: 600;
}

.topbar-links {
  display: flex;
  gap: 1.25rem;
}

.topbar-links a {
  color: #cbd5e1;
  font-size: 0.8125rem;
}

.topbar-links a:hover {
  color: #ffffff;
}

/* Main Navigation */
.site-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.clinic-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.clinic-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.clinic-logo span {
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.15rem;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.main-nav li {
  margin: 0;
  white-space: nowrap;
}

.main-nav a {
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
}

.btn-consult-nav {
  background-color: var(--primary);
  color: #ffffff !important;
  padding: 0.5rem 1.15rem !important;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem !important;
  box-shadow: 0 2px 4px rgba(2, 132, 199, 0.25);
  margin-left: 0.25rem;
}

.btn-consult-nav:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
}

.burger-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Breadcrumbs */
.breadcrumb-wrap {
  padding: 0.85rem 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.breadcrumb-list a {
  color: var(--text-muted);
}

.breadcrumb-list a:hover {
  color: var(--primary);
}

.breadcrumb-list .active {
  color: var(--navy);
  font-weight: 600;
}

/* Article Hero */
.hero-article-section {
  padding: 2.5rem 0 1.5rem;
  background: #ffffff;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--primary-light);
  color: var(--primary-deep);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.headline-main {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 1rem;
}

.lead-subtext {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.physician-meta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--primary-subtle);
  border-radius: var(--radius-md);
  border: 1px solid #bae6fd;
  margin-bottom: 2rem;
}

.physician-profile-mini {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.doctor-avatar-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--primary);
  background-color: #ffffff;
}

.doctor-info-mini h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.doctor-info-mini p {
  font-size: 0.8125rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin: 0;
}

.article-review-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.meta-icon-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.peer-reviewed-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Hero Feature Image */
.hero-media-box {
  margin: 1.5rem 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: var(--navy);
}

.hero-media-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.media-caption-bar {
  padding: 0.85rem 1.25rem;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}

/* Article Body Content */
.clinical-article-body {
  background-color: #ffffff;
  padding: 2.75rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 3rem;
}

.clinical-article-body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
  position: relative;
  padding-left: 1rem;
}

.clinical-article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 4px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.clinical-article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.75rem 0 0.75rem;
}

.clinical-article-body p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 1.4rem;
  line-height: 1.8;
}

.clinical-article-body strong {
  color: var(--navy);
  font-weight: 700;
}

/* Clinical Callout Quotes & Alerts */
.physician-quote {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid var(--primary);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2rem 0;
}

.physician-quote p {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--primary-deep);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.physician-quote .quote-signature {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  font-style: normal;
}

.stagnation-alert-box {
  background-color: var(--coral-light);
  border: 1px solid #fecdd3;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.stagnation-alert-box svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--coral);
  margin-top: 0.2rem;
}

.alert-text-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #9f1239;
  margin-bottom: 0.35rem;
}

.alert-text-body p {
  font-size: 0.9375rem;
  color: #881337;
  margin: 0;
  line-height: 1.6;
}

/* Protocol Cards */
.protocol-step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.protocol-step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.protocol-header {
  background-color: var(--bg-subtle);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.protocol-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

.protocol-name {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
}

.protocol-target-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background: #e0f2fe;
  color: var(--primary-deep);
}

.protocol-body {
  padding: 1.5rem;
}

.protocol-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.protocol-check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
  color: #334155;
}

.protocol-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.clinical-dosage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background-color: var(--bg-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.dosage-item strong {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.dosage-item span {
  font-weight: 700;
  color: var(--navy);
}

/* Interactive Pelvic Stagnation Risk Calculator */
.risk-calculator-panel {
  background-color: #ffffff;
  border: 2px solid #bae6fd;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
}

.calc-title-box {
  text-align: center;
  margin-bottom: 1.75rem;
}

.calc-title-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.calc-title-box p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

.calc-field-group {
  margin-bottom: 1.25rem;
}

.calc-field-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.calc-dropdown,
.contact-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: #ffffff;
  color: var(--text-main);
  transition: var(--transition);
}

.calc-dropdown:focus,
.contact-input:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.btn-calc-submit {
  width: 100%;
  background-color: var(--navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: 0.5rem;
}

.btn-calc-submit:hover {
  background-color: #1e3a8a;
  transform: translateY(-1px);
}

.risk-outcome-card {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background-color: var(--primary-subtle);
  border: 1px solid #7dd3fc;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.risk-outcome-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.risk-outcome-card p {
  font-size: 0.9375rem;
  color: #0369a1;
  margin-bottom: 0.75rem;
}

/* Desk Micro-Break Timer Widget */
.desk-timer-box {
  background: linear-gradient(145deg, var(--navy), #132f4c);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
}

.desk-timer-box h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.desk-timer-box p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.timer-circle-widget {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(10, 37, 64, 0.8);
  border: 4px solid var(--primary);
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.3);
}

.timer-digits {
  font-size: 3rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.timer-status-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #38bdf8;
  margin-top: 0.4rem;
}

.timer-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-timer-ctrl {
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-ctrl-start {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-ctrl-start:hover {
  background-color: #0284c7;
}

.btn-ctrl-reset {
  background-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.btn-ctrl-reset:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* FAQ Accordion */
.faq-wrap {
  margin: 3rem 0;
}

.faq-row {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-row.active {
  border-color: var(--primary);
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-row.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-collapse-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
}

.faq-row.active .faq-collapse-body {
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out;
  padding-bottom: 1.25rem;
}

.faq-collapse-body p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Physician Full Bio Card */
.physician-full-card {
  background: linear-gradient(to right, #f8fafc, #f1f5f9);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 3rem 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.physician-full-photo {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-md);
}

.physician-full-details h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.physician-full-role {
  font-size: 0.875rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.physician-full-details p {
  font-size: 0.925rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.credentials-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cred-pill {
  font-size: 0.75rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  color: #334155;
}

/* Consultation Lead Box */
.consultation-cta-panel {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.consultation-cta-panel h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.consultation-cta-panel p {
  color: #cbd5e1;
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 1.5rem;
}

.consult-inline-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.5rem;
}

.consult-inline-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  border: none;
  font-size: 0.95rem;
}

.consult-inline-form input:focus {
  outline: 2px solid var(--primary);
}

.consult-inline-form button {
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: var(--transition);
}

.consult-inline-form button:hover {
  background-color: var(--primary-dark);
}

/* Medical Disclaimer Highlight Box */
.clinical-disclaimer-callout {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0;
  font-size: 0.8125rem;
  color: #991b1b;
  line-height: 1.6;
}

.clinical-disclaimer-callout strong {
  color: #7f1d1d;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

/* Footer (Complete Google Ads Compliance & Trust) */
.clinical-footer {
  background-color: var(--navy);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: #38bdf8;
}

.footer-sub-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #64748b;
  text-align: center;
}

.footer-legal-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.footer-legal-bar a {
  color: #94a3b8;
  font-size: 0.8125rem;
}

.footer-legal-bar a:hover {
  color: #ffffff;
}

/* Cookie Banner */
.privacy-cookie-drawer {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background-color: var(--navy);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 9999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.privacy-cookie-drawer p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.privacy-cookie-drawer a {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-btn-row {
  display: flex;
  gap: 0.75rem;
}

.btn-accept-cookie {
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-accept-cookie:hover {
  background-color: var(--primary-dark);
}

.btn-reject-cookie {
  background-color: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-reject-cookie:hover {
  background-color: #334155;
  color: #ffffff;
}

/* Static Pages Layout */
.static-page-head {
  background: linear-gradient(135deg, var(--navy) 0%, #132f4c 100%);
  color: #ffffff;
  padding: 4rem 0 3rem;
  text-align: center;
}

.static-page-head h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.static-page-head p {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.static-page-body {
  padding: 3.5rem 0;
}

.legal-document-card {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  max-width: 880px;
  margin: 0 auto;
}

.legal-document-card h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.85rem;
}

.legal-document-card p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Responsive Media Queries */
@media (max-width: 1080px) {
  .main-nav {
    gap: 0.85rem;
  }
  .main-nav a {
    font-size: 0.8125rem;
  }
}

@media (max-width: 991px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-color);
    display: none;
    z-index: 999;
  }
  
  .main-nav.open {
    display: flex;
  }
  
  .burger-btn {
    display: flex;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .headline-main {
    font-size: 1.95rem;
  }
}

@media (max-width: 768px) {
  .clinical-article-body {
    padding: 1.5rem;
  }
  
  .headline-main {
    font-size: 1.65rem;
  }

  .physician-meta-card {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .physician-full-card {
    flex-direction: column;
    text-align: center;
  }
  
  .consult-inline-form {
    flex-direction: column;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
  
  .privacy-cookie-drawer {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
