/* ============================================================
   HEFCORP Informational Pages — Brand Colour Stylesheet
   Primary: #E92500 (Red) | Dark: #B31C00 | Base: #111111 (Black)
   Pink bg: #FFF2F0 | Fonts: Plus Jakarta Sans + Inter
   v3.1 — September 2026
   ============================================================ */

/* ─── Page Base & Custom Properties ─────────────────────── */
.information-page {
  --iRed:    #E92500;
  --iRedDk:  #B31C00;
  --iBlack:  #111111;
  --iPink:   #FFF2F0;
  --iBorder: #e5e7eb;
  --iMuted:  #6b7280;
  --iText:   #1f2937;
  color: var(--iText);
  background: #fff;
}

/* ─── Draft Review Banner ────────────────────────────────── */
.information-review {
  background: #fffbeb;
  color: #92400e;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 2px solid #fcd34d;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ─── Hero Section ───────────────────────────────────────── */
.information-hero {
  background: linear-gradient(120deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
  border-bottom: 4px solid #E92500;
  padding: 38px 0 48px;
  position: relative;
  overflow: hidden;
}

/* Decorative red glow top-right */
.information-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(233, 37, 0, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative subtle glow bottom-left */
.information-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(233, 37, 0, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.information-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 34px;
}

.information-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}

.information-breadcrumb a:hover { color: #fff; }

.information-breadcrumb span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.30);
  margin: 0 2px;
}

.information-breadcrumb > span:not([aria-hidden]) {
  color: rgba(255, 255, 255, 0.48);
}

/* ─── Hero Grid ──────────────────────────────────────────── */
.information-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 268px;
  gap: 64px;
  align-items: center;
}

/* ─── Eyebrow Label ──────────────────────────────────────── */
.information-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E92500;
  background: rgba(233, 37, 0, 0.13);
  border: 1px solid rgba(233, 37, 0, 0.28);
  border-radius: 4px;
  padding: 4px 10px;
  margin: 0 0 20px;
}

/* ─── Hero Heading ───────────────────────────────────────── */
.information-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.11;
  letter-spacing: -0.032em;
  color: #fff;
  max-width: 800px;
  margin: 0 0 20px;
}

.information-lead {
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
}

/* ─── Hero Aside Note ────────────────────────────────────── */
.information-hero-note {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid #E92500;
  border-radius: 0 12px 12px 0;
  padding: 22px 22px 20px;
}

.information-note-mark {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  color: #E92500;
  margin-bottom: 10px;
}

.information-hero-note p {
  font-size: 13px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.68);
}

.information-hero-note a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 12.5px;
  margin-top: 14px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}

.information-hero-note a:hover { color: #FF6B4E; }

/* ─── Last Updated ───────────────────────────────────────── */
.information-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 26px;
  letter-spacing: 0.03em;
}

/* ─── Main Layout (Sidebar + Content) ───────────────────── */
.information-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 60px;
  padding-top: 52px;
  padding-bottom: 84px;
  align-items: start;
}

/* ─── Sidebar ────────────────────────────────────────────── */
.information-sidebar {
  position: sticky;
  top: 122px;
}

.information-small-title {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #E92500;
  margin-bottom: 14px;
  padding-bottom: 9px;
  border-bottom: 2px solid #E92500;
}

.information-sidebar nav > a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid #eeeeee;
  color: #374151;
  transition: color 0.18s;
}

.information-sidebar nav > a:hover { color: #E92500; }

.information-sidebar nav > a > span {
  font-variant-numeric: tabular-nums;
  font-size: 10px;
  font-weight: 700;
  color: #d1d5db;
  flex: 0 0 22px;
  padding-top: 1px;
  transition: color 0.18s;
}

.information-sidebar nav > a:hover > span { color: #E92500; }

/* ─── Sidebar Help Box ───────────────────────────────────── */
.information-sidebar-help {
  margin-top: 26px;
  padding: 18px;
  background: #FFF2F0;
  border-radius: 10px;
  border-left: 3px solid #E92500;
}

.information-sidebar-help p {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.information-sidebar-help a {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  margin: 6px 0;
  color: #E92500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s;
}

.information-sidebar-help a:hover { color: #B31C00; }

/* ─── Content Area ───────────────────────────────────────── */
.information-content {
  min-width: 0;
  max-width: 880px;
}

/* ─── Individual Sections ────────────────────────────────── */
.information-section {
  scroll-margin-top: 138px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid #f0f0f0;
}

/* ─── Section Heading Row ────────────────────────────────── */
.information-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

/* Red numbered badge */
.information-section-heading > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: #E92500;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0;
}

.information-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.022em;
  color: #111111;
  margin: 0;
}

.information-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 22px 0 10px;
  color: #111111;
}

.information-section p,
.information-section li {
  font-size: 14.5px;
  line-height: 1.9;
  color: #374151;
}

.information-section p { margin: 0 0 14px; }

.information-section ul,
.information-section ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.information-section li {
  padding-left: 4px;
  margin: 5px 0;
}

/* Body links in content */
.information-section a:not(.information-button) {
  color: #E92500;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}

.information-section a:not(.information-button):hover { color: #B31C00; }

/* ─── Callout / Alert Box ────────────────────────────────── */
.information-callout {
  background: #FFF2F0;
  border-left: 4px solid #E92500;
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  margin: 22px 0;
}

.information-callout h3 {
  margin-top: 0;
  color: #B31C00;
}

.information-callout p { color: #374151; }

.information-callout a {
  color: #E92500;
  text-decoration: underline;
}

/* ─── Data Tables ────────────────────────────────────────── */
.information-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.information-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.information-section thead tr {
  background: #111111;
}

.information-section th {
  text-align: left;
  color: #fff;
  padding: 14px 18px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.information-section th:first-child { border-radius: 12px 0 0 0; }
.information-section th:last-child  { border-radius: 0 12px 0 0; }

.information-section td {
  vertical-align: top;
  padding: 14px 18px;
  line-height: 1.82;
  color: #374151;
  border-top: 1px solid #f0f0f0;
}

.information-section td:first-child {
  font-weight: 600;
  min-width: 148px;
  color: #111111;
}

.information-section tbody tr:hover { background: #fffbfb; }

/* ─── FAQ Accordion ──────────────────────────────────────── */
.information-faqs { margin-top: 4px; }

.information-faqs details {
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.information-faqs details[open] {
  border-color: #E92500;
  box-shadow: 0 2px 14px rgba(233, 37, 0, 0.09);
}

.information-faqs summary {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 17px 20px;
  line-height: 1.55;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  list-style: none;
  transition: background 0.18s;
}

.information-faqs summary::-webkit-details-marker { display: none; }

/* +/× toggle */
.information-faqs summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: #E92500;
  flex-shrink: 0;
  transition: transform 0.22s ease;
  line-height: 1;
}

.information-faqs details[open] summary::after { transform: rotate(45deg); }

.information-faqs summary:hover { background: #FFF2F0; }

.information-faqs details[open] summary { border-bottom: 1px solid #fee2e2; }

.information-faqs details > div {
  font-size: 14px;
  line-height: 1.88;
  color: #374151;
  padding: 16px 20px 20px;
}

.information-faqs details > div p { margin-bottom: 10px; }
.information-faqs details > div a { color: #E92500; text-decoration: underline; }

/* ─── Centre Info Card ───────────────────────────────────── */
.information-centre {
  border: 1px solid #e5e7eb;
  border-top: 4px solid #E92500;
  border-radius: 0 0 16px 16px;
  padding: 28px 30px;
  background: #fafafa;
  margin: 6px 0;
}

.information-centre .information-eyebrow {
  color: #E92500;
  background: rgba(233, 37, 0, 0.08);
  border-color: rgba(233, 37, 0, 0.22);
}

.information-centre h3 { margin-top: 10px; }

.information-centre address {
  font-style: normal;
  line-height: 1.82;
  color: #374151;
  font-size: 14px;
  max-width: 560px;
  padding: 12px 0;
  border-top: 1px solid #e5e7eb;
}

.information-centre dl { margin: 8px 0 20px; }

.information-centre dl > div {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 14px;
  border-top: 1px solid #f0f0f0;
  padding: 12px 0;
  font-size: 13.5px;
  line-height: 1.72;
}

.information-centre dt {
  font-weight: 600;
  color: #111111;
}

.information-centre dd { margin: 0; color: #374151; }

.information-centre dd a { color: #E92500; text-decoration: underline; }

.information-centre .information-caption {
  font-size: 11px;
  line-height: 1.72;
  margin: 16px 0 0;
  color: #9ca3af;
}

/* ─── CTA Button ─────────────────────────────────────────── */
.information-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E92500;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 13px 26px;
  font: 600 13px 'Inter', sans-serif;
  text-decoration: none !important;
  cursor: pointer;
  min-height: 46px;
  box-shadow: 0 2px 14px rgba(233, 37, 0, 0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 10px;
}

.information-button:hover {
  background: #B31C00;
  box-shadow: 0 4px 20px rgba(233, 37, 0, 0.38);
  transform: translateY(-1px);
}

.information-button:active { transform: translateY(0); }

.information-button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* ─── Enquiry Form Section ───────────────────────────────── */
.information-enquiry {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: 4px solid #111111;
  border-radius: 0 0 16px 16px;
  padding: 32px 34px;
  margin-top: 4px;
}

.information-enquiry .information-eyebrow {
  color: #111111;
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

.information-enquiry h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 6px;
}

.information-enquiry > p {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 26px;
  line-height: 1.7;
}

.information-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.information-enquiry label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin: 18px 0 7px;
}

.information-enquiry input,
.information-enquiry select,
.information-enquiry textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font: 14px 'Inter', sans-serif;
  min-height: 46px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.information-enquiry input:focus,
.information-enquiry select:focus,
.information-enquiry textarea:focus {
  outline: none;
  border-color: #E92500;
  box-shadow: 0 0 0 3px rgba(233, 37, 0, 0.10);
}

.information-enquiry small {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 5px;
}

.information-enquiry textarea { resize: vertical; }

/* ─── Consent Checkbox ───────────────────────────────────── */
.information-consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.68;
  margin: 20px 0 !important;
  color: #6b7280;
}

.information-consent input[type=checkbox] {
  width: 17px !important;
  height: 17px !important;
  min-height: 17px;
  flex: 0 0 17px;
  margin-top: 3px;
  accent-color: #E92500;
}

.information-consent a {
  color: #E92500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Form Status ────────────────────────────────────────── */
.information-page .booking-status { margin-top: 14px; }

/* ─── Related Links Section ──────────────────────────────── */
.information-related {
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}

.information-related > .information-small-title {
  display: block;
  margin-bottom: 14px;
}

.information-related > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.information-related a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  transition: all 0.2s;
}

.information-related a > span {
  color: #E92500;
  font-size: 16px;
  flex-shrink: 0;
}

.information-related a:hover {
  background: #FFF2F0;
  border-color: #E92500;
  color: #E92500;
  transform: translateX(2px);
}

/* ─── Footer Patient Info Links ──────────────────────────── */
.information-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.information-footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.18s;
}

.information-footer-links a:hover { color: #fff; }

/* ─── Focus Ring ─────────────────────────────────────────── */
.information-page :focus-visible {
  outline: 3px solid #E92500;
  outline-offset: 4px;
  border-radius: 3px;
}

/* ─── Skip Link ──────────────────────────────────────────── */
.information-skip {
  position: absolute;
  left: -9999px;
  top: 8px;
}

.information-skip:focus {
  left: 16px;
  z-index: 10000;
  background: #fff;
  padding: 14px 20px;
  color: #E92500;
  border: 2px solid #E92500;
  border-radius: 6px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1000px TABLET
═══════════════════════════════════════════════════════════ */

@media (max-width: 1000px) {
  .information-layout {
    grid-template-columns: 192px minmax(0, 1fr);
    gap: 32px;
  }

  .information-hero-grid {
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) 216px;
  }

  .information-section h2 { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 700px MOBILE
═══════════════════════════════════════════════════════════ */

@media (max-width: 700px) {
  .information-hero { padding: 28px 0 36px; }
  .information-hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .information-hero h1 { font-size: clamp(24px, 7vw, 32px); }
  .information-lead { font-size: 14.5px; }
  .information-breadcrumb { margin-bottom: 22px; font-size: 11.5px; }
  .information-date { margin-top: 18px; }

  .information-hero-note {
    border-left: 3px solid #E92500;
    padding: 14px 16px;
  }

  .information-note-mark { display: none; }

  .information-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .information-sidebar { position: static; }

  .information-sidebar nav {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .information-sidebar nav::-webkit-scrollbar { display: none; }

  .information-sidebar nav > .information-small-title,
  .information-sidebar-help { display: none; }

  .information-sidebar nav > a {
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 11.5px;
    flex-shrink: 0;
    background: #fff;
  }

  .information-sidebar nav > a > span { display: none; }

  .information-section {
    scroll-margin-top: 115px;
    margin-bottom: 24px;
    padding-bottom: 22px;
  }

  .information-section-heading { gap: 10px; }
  .information-section h2 { font-size: 19px; }
  .information-section h3 { font-size: 16px; }
  .information-section p,
  .information-section li { font-size: 14px; }

  .information-centre,
  .information-enquiry { padding: 20px 18px; }

  .information-centre dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .information-form-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .information-related > div { grid-template-columns: 1fr; }

  .information-section td,
  .information-section th { padding: 12px 14px; }

  .information-section th { min-width: 110px; }

  .information-review { font-size: 11px; line-height: 1.6; padding: 8px 0; }
}

/* ═══════════════════════════════════════════════════════════
   PRINT STYLES
═══════════════════════════════════════════════════════════ */

@media print {
  #header,
  #top-bar,
  #mega-footer,
  #mobile-nav,
  .floating-book,
  .information-sidebar,
  .information-hero-note,
  .information-related,
  .information-enquiry { display: none !important; }

  .information-layout {
    display: block;
    padding: 20px 0;
  }

  .information-content { max-width: none; }

  .information-hero {
    background: #111111 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    border-bottom: 4px solid #E92500 !important;
  }

  .information-section { break-inside: avoid; }
  .information-page { color: #000; }
  .information-section h2, .information-section h3 { color: #111111; }

  .information-section thead tr {
    background: #111111 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
