/* ===========================================
   Cartographie du Coran — Institut Miftah
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Noto+Naskh+Arabic:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --bg: #ffffff;
  --cream: #fdf9ec;
  --card: #ffffff;
  --card-hover: #fdfcfa;
  --border: #d9d3c7;
  --text: #1f3a5f;
  --dim: #6b7f95;
  --gold: #f4a261;
  --gold-dim: #d4883a;
  --navy: #1f3a5f;
  --green: #2d7d6b;
  --blue: #3a8fc2;
  --red: #c25b6e;
  --orange: #d4783b;
  --purple: #7b5ea7;
  --teal: #0eb290;
}

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

/* --- Base --- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* =====================
   SITE HEADER
   ===================== */
.site-header {
  text-align: center;
  padding: 28px 24px 0;
}
.site-header a { text-decoration: none; display: inline-block; }
.site-header img {
  height: 80px;
  margin: 0 auto;
  transition: opacity .2s;
}
.site-header img:hover { opacity: .85; }

/* =====================
   INDEX — HERO
   ===================== */
.hero {
  text-align: center;
  padding: 16px 24px 28px;
}
.hero-bismillah {
  font-family: 'Noto Naskh Arabic', 'Amiri', serif;
  font-size: 1.8rem;
  color: var(--gold);
  direction: rtl;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeDown .8s .1s ease forwards;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  opacity: 0;
  animation: fadeDown .8s .2s ease forwards;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: .92rem;
  color: var(--dim);
  margin-top: 10px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeDown .8s .3s ease forwards;
}

/* Gold line */
.gold-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* =====================
   INDEX — HADITH CARD
   ===================== */
.hadith-card {
  max-width: 680px;
  margin: 0 auto 24px;
  padding: 0 20px;
}
.hadith-card-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
}
.hadith-card .ar-text {
  font-family: 'Noto Naskh Arabic', 'Amiri', serif;
  font-size: 1.05rem;
  direction: rtl;
  color: var(--navy);
  line-height: 2.2;
  margin-bottom: 12px;
}
.hadith-card .fr-text {
  font-size: .82rem;
  color: var(--dim);
  line-height: 1.6;
}
.hadith-card .source {
  font-size: .68rem;
  color: var(--dim);
  margin-top: 6px;
  font-style: italic;
}

/* =====================
   INDEX — SECTION TITLES
   ===================== */
.section-title {
  text-align: center;
  padding: 10px 24px 6px;
}
.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}
.section-title .ar-section {
  font-family: 'Noto Naskh Arabic', 'Amiri', serif;
  font-size: 1.1rem;
  color: var(--gold-dim);
  direction: rtl;
  margin-top: 2px;
}
.section-title p {
  font-size: .78rem;
  color: var(--dim);
  margin-top: 4px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.sub-section {
  text-align: center;
  padding: 8px 24px 10px;
}
.sub-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dim);
}

/* =====================
   INDEX — SURAH CARDS
   ===================== */
.surah-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px 36px;
}

.surah-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  opacity: 0;
  animation: fadeUp .4s ease forwards;
}
.surah-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,58,92,.08);
  border-color: var(--gold);
}
.card-stripe {
  position: absolute;
  top: 0; left: 18px; right: 18px;
  height: 3px;
  border-radius: 0 0 3px 3px;
}
.card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.card-number {
  width: 46px; height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-number .num {
  font-family: 'Amiri', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.card-meta { flex: 1; }
.card-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.card-meta .ar-name {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: .95rem;
  color: var(--gold-dim);
  direction: rtl;
  display: block;
  margin-top: 1px;
}
.card-meta .card-verses {
  font-size: .68rem;
  color: var(--dim);
  margin-top: 2px;
}
.card-desc {
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.6;
}
.ready-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: .56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 3px 9px;
  border-radius: 8px;
  background: rgba(244,162,97,.12);
  color: var(--gold-dim);
}

/* =====================
   INDEX — SEARCH BAR
   ===================== */
.search-bar {
  max-width: 520px;
  margin: 0 auto 8px;
  padding: 0 20px;
  position: relative;
}
.search-bar input {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.search-bar input::placeholder {
  color: var(--dim);
  opacity: .7;
}
.search-bar input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,162,97,.12);
}
.search-count {
  text-align: center;
  font-size: .74rem;
  color: var(--dim);
  margin-top: 6px;
  min-height: 1.2em;
}

/* =====================
   SOURATE — HEADER
   ===================== */
.header {
  text-align: center;
  padding: 20px 20px 10px;
}
.bismillah {
  font-family: 'Noto Naskh Arabic', 'Amiri', serif;
  font-size: 1.5rem;
  color: var(--gold);
  direction: rtl;
  margin-bottom: 8px;
}
.header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
}
.header h1 span { color: var(--gold); }
.header .ar-title {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 1.1rem;
  color: var(--gold-dim);
  direction: rtl;
  margin-top: 4px;
}
.header .sub {
  font-size: .82rem;
  color: var(--dim);
  margin-top: 6px;
  line-height: 1.5;
}

/* =====================
   SOURATE — INTRO
   ===================== */
.intro {
  text-align: center;
  padding: 0 20px 20px;
  max-width: 650px;
  margin: 0 auto;
}
.intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--dim);
  line-height: 1.6;
}
.intro strong { color: var(--text); font-style: normal; }

/* =====================
   SOURATE — CONTENT
   ===================== */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

/* Full surah text */
.full-surah {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 24px;
  text-align: center;
}
.full-surah .ayah-text {
  font-family: 'Noto Naskh Arabic', 'Amiri', serif;
  direction: rtl;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.4;
  color: var(--navy);
  margin-bottom: 16px;
}
.full-surah .ayah-separator {
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0 4px;
}

/* =====================
   SOURATE — SECTIONS
   ===================== */
.section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all .3s;
  opacity: 0;
  animation: fadeUp .4s ease forwards;
}
.section:nth-child(1) { animation-delay: .05s; }
.section:nth-child(2) { animation-delay: .1s; }
.section:nth-child(3) { animation-delay: .15s; }
.section:nth-child(4) { animation-delay: .2s; }
.section:nth-child(5) { animation-delay: .25s; }
.section:nth-child(6) { animation-delay: .3s; }
.section:nth-child(7) { animation-delay: .35s; }
.section:nth-child(8) { animation-delay: .4s; }

.section:hover {
  box-shadow: 0 6px 24px rgba(26,58,92,.06);
  border-color: var(--gold);
}
.section.open .sec-arrow { transform: rotate(180deg); }

.sec-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sec-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Amiri', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.sec-meta { flex: 1; }
.sec-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.sec-meta .sec-verses {
  font-size: .68rem;
  color: var(--dim);
  margin-top: 2px;
}
.sec-summary {
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 5px;
}
.sec-arrow {
  font-size: .72rem;
  color: var(--dim);
  transition: transform .3s;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Detail */
.sec-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}
.section.open .sec-detail { max-height: 2000px; }
.detail-inner { padding-top: 14px; }

.d-section { margin-bottom: 10px; }
.d-section h4 {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 3px;
}
.d-section p {
  font-size: .76rem;
  line-height: 1.6;
  color: var(--dim);
}
.d-section p strong { color: var(--text); }

/* Arabic verse */
.ayah {
  font-family: 'Noto Naskh Arabic', serif;
  direction: rtl;
  text-align: right;
  background: rgba(244,162,97,.08);
  border-right: 3px solid var(--gold-dim);
  padding: 9px 14px;
  border-radius: 4px;
  margin: 7px 0;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--gold-dim);
}

/* Link box */
.link-box {
  background: rgba(31,58,95,.03);
  border-left: 3px solid var(--border);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  margin-top: 10px;
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.6;
}
.link-box strong {
  color: var(--navy);
}
.link-box .ll {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--dim);
  margin-bottom: 3px;
}
.link-box p {
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.6;
}

/* =====================
   SOURATE — MNEMONIC
   ===================== */
.mnemonic {
  text-align: center;
  padding: 10px 20px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.mnemonic h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: var(--gold-dim);
  margin-bottom: 14px;
}
.m-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  align-items: center;
}
.m-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
}
.m-item .mn {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
}
.m-item .md {
  font-size: .55rem;
  color: var(--dim);
}
.ma {
  color: var(--gold-dim);
  font-size: .65rem;
}

/* =====================
   JUZ — NAV BLOCKS
   ===================== */
.nav-blocks {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  padding: 0 16px 20px;
}
.nav-b {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: .68rem;
  color: var(--dim);
  text-decoration: none;
  transition: all .3s;
  text-align: center;
}
.nav-b:hover {
  border-color: var(--gold);
  color: var(--text);
}
.nav-b.active {
  border-color: var(--gold);
  color: var(--green);
  background: rgba(45,125,107,.06);
  font-weight: 600;
}

/* =====================
   JUZ — SURAHS
   ===================== */
.surahs {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px 30px;
}

.surah {
  margin-bottom: 12px;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp .4s ease forwards;
}
.s-header {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all .3s;
}
.surah:hover .s-header {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(26,58,92,.05);
}
.surah.open .s-header {
  border-radius: 12px 12px 0 0;
}
.s-num {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Amiri', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.s-meta { flex: 1; min-width: 0; }
.s-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.s-meta .s-ar {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: .85rem;
  color: var(--green);
  direction: rtl;
  display: inline;
  margin-right: 6px;
}
.s-meta .s-info {
  font-size: .66rem;
  color: var(--dim);
  margin-top: 2px;
}
.s-summary {
  font-size: .74rem;
  color: var(--dim);
  line-height: 1.5;
  margin-top: 4px;
}
.s-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 4px;
}
.stag {
  font-size: .56rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 8px;
  background: rgba(45,125,107,.08);
  color: var(--green);
}
.stag-navy {
  background: rgba(26,58,92,.06);
  color: var(--navy);
}
.s-arrow {
  font-size: .7rem;
  color: var(--dim);
  transition: transform .3s;
  margin-top: 4px;
  flex-shrink: 0;
}
.surah.open .s-arrow { transform: rotate(180deg); }

.s-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}
.surah.open .s-detail { max-height: 2000px; }
.surah > .detail-inner,
.s-detail > .detail-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 4px 16px 16px;
}

/* =====================
   AL-KAHF SPECIAL
   ===================== */
:root {
  --kahf: #3b8dd8;
  --jardin: #45a868;
  --khadir: #d4783b;
  --qarnayn: #7b5ea7;
  --fitna-din: #3b8dd8;
  --fitna-mal: #45a868;
  --fitna-ilm: #d4783b;
  --fitna-mulk: #7b5ea7;
}

.thesis {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 20px 16px;
}
.thesis-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--dim);
  line-height: 1.6;
}

.fitna-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 16px 24px;
  max-width: 700px;
  margin: 0 auto;
}
.fitna-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
}
.fitna-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fitna-label { font-size: .72rem; font-weight: 700; }
.fitna-desc { font-size: .6rem; color: var(--dim); }

.quadrant-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 30px;
}

.story-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all .3s;
  opacity: 0;
  animation: fadeUp .4s ease forwards;
}
.story-card:nth-child(1) { animation-delay: .05s; }
.story-card:nth-child(2) { animation-delay: .1s; }
.story-card:nth-child(3) { animation-delay: .15s; }
.story-card:nth-child(4) { animation-delay: .2s; }
.story-card:hover {
  box-shadow: 0 6px 24px rgba(26,58,92,.06);
  border-color: var(--gold);
}
.story-card.open .story-arrow { transform: rotate(180deg); }

.story-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.story-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.story-meta { flex: 1; }
.story-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.story-ar {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: .85rem;
  direction: rtl;
}
.story-verses {
  font-size: .68rem;
  color: var(--dim);
  margin-top: 2px;
}
.fitna-tag {
  display: inline-block;
  font-size: .58rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 8px;
  margin-top: 4px;
}
.story-arrow {
  font-size: .72rem;
  color: var(--dim);
  transition: transform .3s;
  margin-top: 4px;
  flex-shrink: 0;
}
.story-summary {
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 6px;
}
.story-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}
.story-card.open .story-detail { max-height: 2500px; }

.lesson-box {
  background: rgba(244,162,97,.06);
  border: 1px solid rgba(244,162,97,.15);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px;
}
.lesson-label {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--gold-dim);
  margin-bottom: 3px;
}
.lesson-box p {
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.6;
}

.flow-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
.flow-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
}
.flow-num { font-size: .55rem; color: var(--dim); }
.flow-name { font-size: .78rem; font-weight: 600; color: var(--navy); }
.flow-desc { font-size: .55rem; color: var(--dim); }
.flow-arrow { color: var(--gold-dim); font-size: .65rem; }

.mnemonic-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  align-items: center;
}
.m-num { font-size: .55rem; color: var(--dim); }
.m-name { font-size: .78rem; font-weight: 600; }
.m-fitna { font-size: .55rem; color: var(--dim); }
.m-arrow { color: var(--gold-dim); font-size: .65rem; }

/* =====================
   FOOTER
   ===================== */
.footer {
  text-align: center;
  padding: 20px 24px 36px;
  border-top: 1px solid var(--border);
  max-width: 500px;
  margin: 20px auto 0;
}
.footer .footer-ar {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: .92rem;
  color: var(--gold-dim);
  direction: rtl;
  margin-bottom: 6px;
}
.footer p {
  font-size: .72rem;
  color: var(--dim);
  line-height: 1.7;
}
.footer a { color: var(--gold-dim); text-decoration: none; }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-bismillah { font-size: 1.3rem; }
  .surah-grid { grid-template-columns: 1fr; padding: 8px 16px 28px; }
  .site-header img { height: 60px; }
  .header h1 { font-size: 1.4rem; }
  .bismillah { font-size: 1.2rem; }
  .full-surah .ayah-text { font-size: 1.15rem; }
  .full-surah { padding: 20px 16px; }
  .section { padding: 16px; }
  .sec-icon { width: 36px; height: 36px; font-size: .9rem; }
  .content { padding: 0 14px 30px; }
  .ayah { font-size: .95rem; }
  .nav-blocks { gap: 4px; }
  .nav-b { padding: 4px 10px; font-size: .62rem; }
  .surahs { padding: 0 12px 24px; }
  .s-header { padding: 12px 14px; }
  .s-num { width: 36px; height: 36px; font-size: .9rem; }
  .story-card { padding: 16px; }
  .fitna-bar { gap: 6px; }
  .fitna-badge { padding: 6px 10px; }
}

/* Touch devices */
@media (hover: none) {
  .surah-card:hover { transform: none; box-shadow: none; }
  .surah-card:active { transform: scale(.98); }
}

/* =====================
   SOURATE — SECTIONS (container)
   ===================== */
.sections {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

/* =====================
   BLOCK PATTERN (b- prefix)
   Used by: Nisa, Saffat, Alimran, etc.
   ===================== */
.block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all .3s;
  opacity: 0;
  animation: fadeUp .4s ease forwards;
}
.block:nth-child(1) { animation-delay: .05s; }
.block:nth-child(2) { animation-delay: .1s; }
.block:nth-child(3) { animation-delay: .15s; }
.block:nth-child(4) { animation-delay: .2s; }
.block:nth-child(5) { animation-delay: .25s; }
.block:nth-child(6) { animation-delay: .3s; }
.block:nth-child(7) { animation-delay: .35s; }
.block:nth-child(8) { animation-delay: .4s; }
.block:nth-child(9) { animation-delay: .45s; }
.block:nth-child(10) { animation-delay: .5s; }

.block:hover {
  box-shadow: 0 6px 24px rgba(26,58,92,.06);
  border-color: var(--gold);
}
.block.open .b-arrow { transform: rotate(180deg); }
.block.open .block-arrow { transform: rotate(180deg); }

.b-header,
.block-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.block-header {
  padding: 0;
  border-radius: 10px;
}

.b-icon,
.block-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Amiri', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.b-meta,
.block-meta { flex: 1; }
.b-meta h3,
.block-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.bv {
  font-size: .68rem;
  color: var(--dim);
  margin-top: 2px;
}

.b-summary,
.block-summary {
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 5px;
}

.b-tags,
.block-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 6px;
}
.btag {
  font-size: .56rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 8px;
}
.btag-theme {
  background: rgba(45,125,107,.08);
  color: var(--green);
}
.btag-key {
  background: rgba(26,58,92,.06);
  color: var(--navy);
}

.b-arrow,
.block-arrow {
  font-size: .72rem;
  color: var(--dim);
  transition: transform .3s;
  margin-top: 4px;
  flex-shrink: 0;
}

.b-detail,
.block-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}
.block.open .b-detail,
.block.open .block-detail { max-height: 2000px; }

/* =====================
   MEGA BAR (structure overview)
   Used by: Baqara, Alimran
   ===================== */
.mega-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
.mega-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
}
.mi-v {
  font-size: .55rem;
  color: var(--dim);
}
.mi-l {
  font-size: .78rem;
  font-weight: 600;
}
.mega-arr {
  color: var(--gold-dim);
  font-size: .65rem;
}

/* =====================
   BAQARA — SECTION COLORS
   ===================== */
:root {
  --s1: #3a8fc2;
  --s2: #2d7d6b;
  --s3: #7b5ea7;
  --s4: #c25b6e;
  --s5: #d4783b;
  --s6: #3b8dd8;
  --s7: #45a868;
  --s8: #e8a034;
  --s9: #6b7f95;
  --s10: #c25b6e;
}

/* =====================
   YUSUF — TIMELINE + ACT COLORS
   ===================== */
:root {
  --a1: #3a8fc2;
  --a2: #c25b6e;
  --a3: #d4783b;
  --a4: #7b5ea7;
  --a5: #2d7d6b;
  --a6: #3b8dd8;
  --a7: #45a868;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.act {
  position: relative;
  margin-bottom: 16px;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp .4s ease forwards;
}
.act:nth-child(1) { animation-delay: .05s; }
.act:nth-child(2) { animation-delay: .1s; }
.act:nth-child(3) { animation-delay: .15s; }
.act:nth-child(4) { animation-delay: .2s; }
.act:nth-child(5) { animation-delay: .25s; }
.act:nth-child(6) { animation-delay: .3s; }
.act:nth-child(7) { animation-delay: .35s; }
.act:nth-child(8) { animation-delay: .4s; }
.act:nth-child(9) { animation-delay: .45s; }

.act-node {
  width: 16px; height: 16px;
  border-radius: 50%;
  position: absolute;
  left: 32px;
  top: 22px;
  z-index: 1;
  border: 2px solid #fff;
}

.act-header {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  margin-left: 56px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: all .3s;
}
.act:hover .act-header {
  box-shadow: 0 6px 24px rgba(26,58,92,.06);
  border-color: var(--gold);
}

.act-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 24px;
  text-align: center;
}

.act-info { flex: 1; }
.act-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.act-verses {
  font-size: .68rem;
  color: var(--dim);
  margin-top: 2px;
}
.act-summary {
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 5px;
}

.act-arrow {
  font-size: .72rem;
  color: var(--dim);
  transition: transform .3s;
  margin-top: 4px;
  flex-shrink: 0;
}
.act.open .act-arrow { transform: rotate(180deg); }

.act-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
  margin-left: 56px;
}
.act.open .act-detail { max-height: 2000px; }

.act-detail-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 4px 18px 18px;
}
.act.open .act-header {
  border-radius: 14px 14px 0 0;
}

/* =====================
   YUSUF — MNEMONIC FLOW
   ===================== */
.m-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  align-items: center;
}
.m-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
}
.ms-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
}
.ms-key {
  font-size: .55rem;
  color: var(--dim);
}
.m-a {
  color: var(--gold-dim);
  font-size: .65rem;
}

/* =====================
   HOUD — STRUCTURE BAR
   ===================== */
.structure-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
.struct-step {
  font-size: .72rem;
  font-weight: 600;
  color: var(--dim);
  padding: 6px 10px;
  background: var(--card);
  border: 1px solid var(--border);
}
.struct-step:first-child {
  border-radius: 8px 0 0 8px;
}
.struct-step:last-child {
  border-radius: 0 8px 8px 0;
}

/* =====================
   HOUD — PROPHET COLORS
   ===================== */
:root {
  --nuh: #3a8fc2;
  --hud: #c25b6e;
  --salih: #7b5ea7;
  --ibrahim: #e8a034;
  --lut: #d4783b;
  --shuayb: #2d7d6b;
  --musa: #3b8dd8;
}

/* =====================
   HOUD — PROPHETS PATTERN
   ===================== */
.prophets {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.prophet {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all .3s;
  opacity: 0;
  animation: fadeUp .4s ease forwards;
}
.prophet:nth-child(1) { animation-delay: .05s; }
.prophet:nth-child(2) { animation-delay: .1s; }
.prophet:nth-child(3) { animation-delay: .15s; }
.prophet:nth-child(4) { animation-delay: .2s; }
.prophet:nth-child(5) { animation-delay: .25s; }
.prophet:nth-child(6) { animation-delay: .3s; }
.prophet:nth-child(7) { animation-delay: .35s; }
.prophet:nth-child(8) { animation-delay: .4s; }
.prophet:nth-child(9) { animation-delay: .45s; }

.prophet:hover {
  box-shadow: 0 6px 24px rgba(26,58,92,.06);
  border-color: var(--gold);
}
.prophet.open .p-arrow { transform: rotate(180deg); }

.p-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 10px;
}

.p-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.p-meta { flex: 1; }
.p-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.p-ar {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: .85rem;
  direction: rtl;
  color: var(--gold-dim);
  margin-right: 6px;
}

.p-info {
  font-size: .68rem;
  color: var(--dim);
  margin-top: 2px;
}

.p-summary {
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.55;
  margin-top: 5px;
}

.p-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 6px;
}
.ptag {
  font-size: .56rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 8px;
}
.ptag-key {
  background: rgba(26,58,92,.06);
  color: var(--navy);
}
.ptag-sin {
  background: rgba(194,91,110,.08);
  color: var(--red);
}
.ptag-sign {
  background: rgba(45,125,107,.08);
  color: var(--green);
}
.ptag-end {
  background: rgba(123,94,167,.08);
  color: var(--purple);
}

.p-arrow {
  font-size: .72rem;
  color: var(--dim);
  transition: transform .3s;
  margin-top: 4px;
  flex-shrink: 0;
}

.p-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}
.prophet.open .p-detail { max-height: 2000px; }

/* =====================
   AL-MULK — VIRTUES
   ===================== */
.virtues {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
.virtue {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .76rem;
  color: var(--dim);
  line-height: 1.5;
  flex: 1;
  min-width: 180px;
  text-align: center;
}
.virtue strong {
  display: block;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-dim);
  margin-bottom: 4px;
}

/* =====================
   RESPONSIVE (additions)
   ===================== */
/* =====================
   MNEMONIC GRIDS
   ===================== */

/* Pattern 1: mn-grid (Nisa, Anam, Araf, etc.) */
.mn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.mn-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  transition: all .3s;
}
.mn-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(26,58,92,.06);
}
.mn-num {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.mn-title {
  font-size: .72rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.mn-ref {
  font-size: .58rem;
  color: var(--dim);
  margin-top: 2px;
}

/* Pattern 2: m-grid (Ahzab, Ankabut, etc.) */
.m-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.m-grid .m-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.m-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.m-verses {
  font-size: .55rem;
  color: var(--dim);
  margin-top: 2px;
}
.m-grid .m-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Mnemonic card wrapper */
.mnemonic-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.mnemonic-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: var(--gold-dim);
  margin-bottom: 4px;
}

/* No basmala notice */
.no-basmala {
  text-align: center;
  font-size: .72rem;
  font-style: italic;
  color: var(--dim);
  padding: 4px 0 12px;
}

/* =====================
   ADDITIONAL TAG VARIANTS
   ===================== */
.btag-law { background: rgba(196,135,42,.1); color: var(--gold-dim); }
.btag-story { background: rgba(58,143,194,.1); color: var(--blue); }
.ptag-pont { background: rgba(244,162,97,.1); color: var(--gold-dim); }
.stag-gold { background: rgba(244,162,97,.1); color: var(--gold-dim); }

/* Fussilat s1-s7 block modifier (no visible effect, just class hooks) */
.block.s1, .block.s2, .block.s3, .block.s4, .block.s5, .block.s6, .block.s7 {}

/* =====================
   JUZ — SURAH SEPARATOR
   ===================== */
.surah-sep {
  text-align: center;
  padding: 24px 20px 14px;
  margin-top: 10px;
}
.surah-sep h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.sep-ar {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: .95rem;
  color: var(--gold-dim);
  direction: rtl;
  margin-top: 2px;
}
.sep-info {
  font-size: .68rem;
  color: var(--dim);
  margin-top: 4px;
}

/* =====================
   AL-KAHF — STRUCTURE FLOW
   ===================== */
.structure-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: var(--gold-dim);
  text-align: center;
  margin-bottom: 14px;
}
.structure-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
.structure-section {
  text-align: center;
  padding: 0 20px 10px;
}
.flow-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
}
.flow-block .flow-verses { font-size: .55rem; color: var(--dim); }
.flow-block .flow-label { font-size: .72rem; font-weight: 600; }
.flow-block .flow-desc { font-size: .55rem; color: var(--dim); }

/* =====================
   RESPONSIVE — EXTENDED
   ===================== */
@media (max-width: 600px) {
  .sections { padding: 0 14px 30px; }
  .block { padding: 16px; }
  .b-icon, .block-icon { width: 36px; height: 36px; font-size: .9rem; }
  .prophet { padding: 16px; }
  .p-icon { width: 36px; height: 36px; font-size: .9rem; }
  .timeline::before { left: 25px; }
  .act-node { left: 18px; }
  .act-header { margin-left: 42px; padding: 14px; }
  .act-detail { margin-left: 42px; }
  .mega-bar { gap: 4px; }
  .mega-item { padding: 4px 8px; }
  .mi-l { font-size: .68rem; }
  .virtues { gap: 6px; }
  .virtue { min-width: 140px; padding: 8px 10px; font-size: .7rem; }
  .structure-bar { gap: 0; }
  .struct-step { font-size: .62rem; padding: 5px 8px; }
  .mn-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 6px; }
  .mn-card { padding: 10px 8px; }
  .mn-title { font-size: .65rem; }
  .m-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 6px; }
  .m-label { font-size: .62rem; }
  .mnemonic-card { padding: 14px; }
}

/* --- Breadcrumb --- */
.breadcrumb {
  text-align: center;
  padding: 10px 20px 0;
  font-size: .72rem;
  color: var(--dim);
}
.breadcrumb a { color: var(--gold-dim); }
.breadcrumb span { margin: 0 4px; }

/* --- Sourate Navigation --- */
.nav-sourate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 20px auto;
  padding: 16px 20px;
  gap: 10px;
}
.nav-sourate a {
  font-size: .75rem;
  color: var(--dim);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all .3s;
}
.nav-sourate a:hover {
  border-color: var(--gold);
  color: var(--text);
}

/* Print button */
.print-btn-wrap {
  text-align: center;
  padding: 0 20px 16px;
}
.print-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--dim);
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 20px;
  cursor: pointer;
  transition: all .3s;
}
.print-btn:hover {
  border-color: var(--gold);
  color: var(--text);
}
.print-note {
  font-size: .6rem;
  color: var(--dim);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .print-btn-wrap { display: none; }
}

/* Print */
@media print {
  body { background: #fff !important; font-size: 11pt; color: #000; }

  /* Hide UI elements */
  .site-header, .nav-blocks, .footer, .nav-sourate, .breadcrumb,
  .print-btn-wrap, .search-bar, .progress-bar, .scroll-top,
  .fitna-bar, .virtues, .gold-line { display: none !important; }

  /* Force all sections open */
  .sec-detail, .b-detail, .block-detail, .story-detail,
  .s-detail, .act-detail, .p-detail {
    max-height: none !important;
    overflow: visible !important;
  }

  /* Hide arrows */
  .sec-arrow, .b-arrow, .block-arrow, .story-arrow,
  .s-arrow, .act-arrow, .p-arrow { display: none !important; }

  /* Clean card styling for print */
  .section, .block, .story-card, .surah, .act, .prophet {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 12pt;
    opacity: 1 !important;
    animation: none !important;
  }

  /* Header */
  .header { padding: 10pt 0; }
  .header h1 { font-size: 18pt; color: #000; }
  .header h1 span { color: #333; }
  .bismillah { font-size: 16pt; color: #333; }
  .header .ar-title { color: #555; }

  /* Intro */
  .intro p { color: #333; font-size: 10pt; }

  /* Section icons */
  .sec-icon, .b-icon, .block-icon, .p-icon {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Ayah verses */
  .ayah {
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    border-right-color: #999 !important;
    color: #333 !important;
    background: #f5f5f5 !important;
  }

  /* Full surah text */
  .full-surah {
    break-inside: avoid;
    border: 1px solid #ccc !important;
    background: #fafafa !important;
  }

  /* Tags */
  .b-tags, .block-tags, .btag, .stag, .ptag, .fitna-tag {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Link boxes */
  .link-box, .lesson-box {
    break-inside: avoid;
    border-color: #ccc !important;
    background: #f9f9f9 !important;
  }

  /* Mnemonic */
  .mnemonic, .mn-grid, .m-grid, .m-row, .mega-bar {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Content width */
  .content, .sections, .surahs, .quadrant-container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* Detail content */
  .detail-inner, .act-detail-inner {
    padding-top: 8pt !important;
  }
  .d-section p { color: #333; font-size: 10pt; }
  .d-section h4 { color: #000 !important; font-size: 9pt; }
}

/* =====================
   PROGRESS BAR
   ===================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 1000;
  transition: width .1s linear;
  width: 0;
}

/* =====================
   SCROLL TO TOP
   ===================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--dim);
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  z-index: 999;
}
.scroll-top:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.scroll-top.visible {
  display: flex;
}

/* --- Stats bar --- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeDown .8s .4s ease forwards;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: .68rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .stats-bar { gap: 20px; }
  .stat-num { font-size: 1.3rem; }
}

/* --- Section anchor highlight --- */
:target { animation: highlight 2s ease; }
@keyframes highlight { 0%, 30% { box-shadow: 0 0 0 3px rgba(244,162,97,.3); } 100% { box-shadow: none; } }

@media print {
  .progress-bar, .scroll-top { display: none !important; }
}
