/* ============================================================
   BAITULSANA FOUNDATION — Full Islamic Luxury Redesign
   Colors derived from official logo
   ============================================================ */

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

/* ── Design Tokens ── */
:root {
  /* Logo-derived palette */
  --red:          #C8102E;
  --red-dark:     #8C0B20;
  --red-glow:     rgba(200, 16, 46, 0.25);
  --gold:         #C9A227;
  --gold-light:   #E8C96A;
  --gold-pale:    rgba(201, 162, 39, 0.12);
  --gold-dark:    #8A6D0E;
  --green:        #1A6B3C;
  --green-light:  #238C50;

  /* Dark base */
  --bg-deep:      #0D0704;
  --bg-dark:      #130A05;
  --bg-mid:       #1C1008;
  --bg-panel:     #221408;
  --bg-card:      #2A1A0C;
  --bg-card-hover:#321F10;

  /* Text */
  --text-white:   #F5EDD8;
  --text-muted:   rgba(245, 237, 216, 0.55);
  --text-faint:   rgba(245, 237, 216, 0.25);

  /* Borders */
  --border:       rgba(201, 162, 39, 0.18);
  --border-mid:   rgba(201, 162, 39, 0.30);
  --border-strong:rgba(201, 162, 39, 0.55);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── Utility ── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 2.5rem; }
.font-serif  { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-arabic { font-family: 'Amiri', 'Noto Nastaliq Urdu', serif; direction: rtl; }
.font-urdu   { font-family: 'Noto Nastaliq Urdu', serif; direction: rtl; }


/* ============================================================
   ISLAMIC GEOMETRIC PATTERN (CSS only — reusable)
   ============================================================ */
.geo-pattern {
  background-image:
    repeating-linear-gradient(60deg,  transparent, transparent 10px, rgba(201,162,39,0.04) 10px, rgba(201,162,39,0.04) 11px),
    repeating-linear-gradient(-60deg, transparent, transparent 10px, rgba(201,162,39,0.04) 10px, rgba(201,162,39,0.04) 11px),
    repeating-linear-gradient(0deg,   transparent, transparent 10px, rgba(201,162,39,0.03) 10px, rgba(201,162,39,0.03) 11px);
}
.geo-pattern-strong {
  background-image:
    repeating-linear-gradient(60deg,  transparent, transparent 18px, rgba(201,162,39,0.07) 18px, rgba(201,162,39,0.07) 19px),
    repeating-linear-gradient(-60deg, transparent, transparent 18px, rgba(201,162,39,0.07) 18px, rgba(201,162,39,0.07) 19px);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--text-white);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 4rem;
}
.sd-line  { flex: 1; max-width: 80px; height: 1px; background: var(--border-mid); }
.sd-star  {
  width: 10px; height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.sd-dot   { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0.5; }

/* Gold ornament used across sections */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.orn-line { width: 48px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.orn-line.right { background: linear-gradient(90deg, var(--gold), transparent); }
.orn-dia  { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.5s, box-shadow 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--gold), var(--red));
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
  z-index: 1;
}
@keyframes shimmer { to { background-position: 200% center; } }

.navbar.scrolled {
  background: rgba(13, 7, 4, 0.97);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.navbar-logo-wrap { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.navbar-logo-img  { width: 54px; height: 54px; object-fit: contain; transition: transform 0.3s; filter: drop-shadow(0 0 8px rgba(201,162,39,0.3)); }
.navbar-logo-wrap:hover .navbar-logo-img { transform: scale(1.06); }
.navbar-logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.navbar-logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--text-white);
  letter-spacing: 0.03em;
}
.navbar-logo-ur {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 0.8rem;
  color: var(--gold);
  direction: rtl;
}

/* Nav links */
.navbar-links { display: flex; gap: 2rem; list-style: none; flex: 1; justify-content: center; }
.navbar-links a {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
  position: relative; padding-bottom: 3px;
  transition: color 0.3s;
}
.navbar-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 1.5px; background: var(--gold);
  transition: right 0.3s ease;
}
.navbar-links a:hover { color: var(--gold); }
.navbar-links a:hover::after { right: 0; }

/* Right side */
.navbar-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.navbar-donate-btn {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  background: var(--red); color: #fff;
  border: 1.5px solid var(--red);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px var(--red-glow);
}
.navbar-donate-btn:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  box-shadow: 0 4px 20px var(--red-glow);
}

/* Lang toggle */
.lang-toggle {
  display: flex; align-items: center;
  border: 1px solid var(--border-mid);
  border-radius: 3px; overflow: hidden; flex-shrink: 0;
}
.lang-btn {
  padding: 0.3rem 0.75rem;
  font-size: 0.68rem; letter-spacing: 0.08em;
  cursor: pointer; background: transparent;
  color: var(--text-muted); border: none;
  font-family: 'Inter', sans-serif; font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active { background: var(--red); color: #fff; }
.lang-btn:hover:not(.active) { background: rgba(201,162,39,0.1); color: var(--gold); }
.lang-divider { width: 1px; height: 1rem; background: var(--border-mid); }
.lang-btn.urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: 0.88rem; padding: 0.15rem 0.75rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-white); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav — full screen dark overlay */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,7,4,0.98);
  backdrop-filter: blur(24px);
  z-index: 98; padding-top: 90px;
  flex-direction: column; align-items: center; justify-content: center;
}
.mobile-nav.open { display: flex; }
.mobile-nav-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
  width: 100%; padding: 0 2rem;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted); transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-donate-btn {
  margin-top: 0.75rem;
  padding: 0.75rem 2.5rem !important;
  background: var(--red) !important; color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.7rem !important; letter-spacing: 0.18em !important;
  border: 1.5px solid var(--red) !important;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.06);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.12); } }

/* Multi-layer dark & color overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,7,4,0.45) 0%, rgba(13,7,4,0.1) 40%, rgba(13,7,4,0.85) 100%),
    radial-gradient(ellipse at 60% 40%, rgba(200,16,46,0.12) 0%, transparent 65%),
    radial-gradient(ellipse at 30% 70%, rgba(26,107,60,0.08) 0%, transparent 60%);
  mix-blend-mode: multiply;
}
.hero-overlay-2 {
  position: absolute; inset: 0;
  background: rgba(13, 7, 4, 0.38);
}

/* Gold corner frames */
.hero-frame { position: absolute; inset: 2rem; pointer-events: none; z-index: 2; }
.hero-frame > div {
  position: absolute; width: 56px; height: 56px;
  border-color: rgba(201,162,39,0.5); border-style: solid;
}
.hf-tl { top: 0; left: 0;   border-width: 1.5px 0 0 1.5px; }
.hf-tr { top: 0; right: 0;  border-width: 1.5px 1.5px 0 0; }
.hf-bl { bottom: 0; left: 0;  border-width: 0 0 1.5px 1.5px; }
.hf-br { bottom: 0; right: 0; border-width: 0 1.5px 1.5px 0; }

/* Hero content */
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 5rem 2rem 9rem;
  max-width: 920px;
  animation: fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(36px); } to { opacity:1; transform:translateY(0); } }

.hero-arabic {
  font-family: 'Amiri', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  color: var(--gold-light);
  direction: rtl; margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  letter-spacing: 0.04em;
  animation: fadeUp 1.2s 0.15s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-tagline {
  font-size: 0.67rem; letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(201,162,39,0.75); margin-bottom: 1.25rem;
  animation: fadeUp 1.2s 0.25s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 9.5vw, 8.5rem);
  font-weight: 300; line-height: 1.0;
  color: var(--text-white);
  text-shadow: 0 4px 32px rgba(0,0,0,0.45);
  letter-spacing: -0.01em; margin-bottom: 1.2rem;
  animation: fadeUp 1.2s 0.35s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 0.72rem; color: var(--text-muted);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 2.75rem;
  animation: fadeUp 1.2s 0.45s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-btns {
  display: flex; gap: 1rem;
  justify-content: center; align-items: center; flex-wrap: wrap;
  animation: fadeUp 1.2s 0.55s cubic-bezier(0.16,1,0.3,1) both;
}
.btn-hero-outline {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); font-weight: 500;
  border: 1.5px solid rgba(201,162,39,0.5); padding: 0.85rem 2.2rem;
  transition: all 0.3s; backdrop-filter: blur(6px);
}
.btn-hero-outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,162,39,0.08);
}
.btn-hero-red {
  background: var(--red); color: #fff;
  padding: 0.85rem 2.4rem; font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1.5px solid var(--red); font-weight: 600;
  box-shadow: 0 4px 24px rgba(200,16,46,0.4);
  transition: all 0.3s;
}
.btn-hero-red:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  box-shadow: 0 6px 32px rgba(200,16,46,0.55);
  transform: translateY(-1px);
}

/* Stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,7,4,0.75); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 1.1rem 2rem;
}
.hero-stat {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.3rem; padding: 0 2.5rem; cursor: default;
  transition: transform 0.25s;
}
.hero-stat:hover { transform: translateY(-2px); }
.hero-stat-icon  { font-size: 1.3rem; line-height: 1; }
.hero-stat-label {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500; transition: color 0.25s;
}
.hero-stat:hover .hero-stat-label { color: var(--gold); }
.hero-stat-divider { width: 1px; height: 2rem; background: var(--border); }

.scroll-indicator {
  position: absolute; bottom: 5.5rem; left: 50%;
  transform: translateX(-50%); z-index: 4;
  color: rgba(201,162,39,0.5); font-size: 1.4rem;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); opacity:.4; }
  50%      { transform:translateX(-50%) translateY(9px); opacity:1; }
}


/* ============================================================
   PILLARS SECTION
   ============================================================ */
.pillars-section {
  padding: 7rem 0 6rem;
  background: var(--bg-dark);
  position: relative;
}
.pillars-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(60deg,  transparent, transparent 18px, rgba(201,162,39,0.03) 18px, rgba(201,162,39,0.03) 19px),
    repeating-linear-gradient(-60deg, transparent, transparent 18px, rgba(201,162,39,0.03) 18px, rgba(201,162,39,0.03) 19px);
  pointer-events: none;
}
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px; }
.pillar-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: right 0.5s ease; z-index: 1;
}
.pillar-card:hover::before { right: 0; }
.pillar-card:hover {
  border-color: var(--border-mid);
  box-shadow: 0 0 40px rgba(201,162,39,0.08), inset 0 0 30px rgba(201,162,39,0.03);
}
.pillar-card-img-wrap { overflow: hidden; }
.pillar-card-img {
  width: 100%; height: 240px; object-fit: cover; object-position: center top;
  transition: transform 0.65s ease; filter: brightness(0.88) saturate(0.9);
}
.pillar-card:hover .pillar-card-img { transform: scale(1.06); filter: brightness(0.95) saturate(1); }
.pillar-card-body {
  padding: 1.5rem; flex: 1; display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.pillar-card-num {
  font-size: 0.6rem; letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase; font-weight: 600; margin-bottom: 0.5rem;
}
.pillar-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--text-white); margin-bottom: 0.65rem; line-height: 1.3;
}
.pillar-card-desc {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.8; flex: 1; margin-bottom: 1.25rem;
}
.pillar-card-link {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.25s, color 0.25s;
}
.pillar-card-link::after { content: '→'; }
.pillar-card-link:hover { gap: 0.6rem; color: var(--gold-light); }


/* ============================================================
   QURAN VERSE SECTION
   ============================================================ */
.verse-section {
  position: relative; padding: 9rem 1.5rem;
  text-align: center; overflow: hidden;
  background: var(--bg-mid);
}
.verse-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.verse-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; opacity: 0.06;
  filter: grayscale(1);
}
.verse-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.verse-arabic {
  font-family: 'Amiri', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 2.2; color: var(--gold-light);
  direction: rtl; margin-bottom: 2rem;
  text-shadow: 0 2px 16px rgba(201,162,39,0.2);
}
.verse-divider { width: 48px; height: 1.5px; background: var(--gold); margin: 0 auto 1.75rem; }
.verse-english {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-style: italic; font-weight: 400;
  color: var(--text-white); line-height: 1.6; margin-bottom: 1.5rem;
}
.verse-ref {
  font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(201,162,39,0.6);
}


/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
  padding: 7rem 0 6rem;
  background: var(--bg-deep);
  position: relative;
}
.blog-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(60deg,  transparent, transparent 24px, rgba(201,162,39,0.025) 24px, rgba(201,162,39,0.025) 25px),
    repeating-linear-gradient(-60deg, transparent, transparent 24px, rgba(201,162,39,0.025) 24px, rgba(201,162,39,0.025) 25px);
  pointer-events: none;
}
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 24px rgba(201,162,39,0.06);
}
.blog-card-img-wrap { overflow: hidden; position: relative; }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.65s ease; filter: brightness(0.85) saturate(0.85);
}
.blog-card:hover .blog-card-img { transform: scale(1.06); filter: brightness(0.95) saturate(1); }
.blog-card-cat {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--red); color: #fff;
  padding: 0.25rem 0.7rem; font-weight: 600;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date {
  font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.65rem;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--text-white); line-height: 1.35;
  margin-bottom: 0.75rem; flex: 1;
  transition: color 0.25s;
}
.blog-card:hover .blog-card-title { color: var(--gold-light); }
.blog-card-excerpt {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 1.25rem;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.blog-card-author { font-size: 0.72rem; color: var(--text-muted); }
.blog-card-link {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.25s, color 0.25s;
}
.blog-card-link::after { content: '→'; }
.blog-card-link:hover { gap: 0.55rem; color: var(--gold-light); }

.blog-view-all {
  text-align: center; margin-top: 3.5rem;
}


/* ============================================================
   DONATION SECTION
   ============================================================ */
.donation-section {
  padding: 7rem 0 6rem;
  background: var(--bg-panel);
  position: relative;
}
.donation-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,16,46,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.donation-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 4rem; }

.donation-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 2rem 1.5rem; text-align: center;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative; overflow: hidden;
}
.donation-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s ease;
}
.donation-card:hover::after { transform: scaleX(1); }
.donation-card:hover {
  border-color: var(--border-mid); transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.donation-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.donation-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500;
  color: var(--gold-light); margin-bottom: 0.75rem;
}
.donation-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.78; }

/* Bank box */
.bank-box {
  background: var(--bg-card); border: 1px solid var(--border);
  max-width: 640px; margin: 0 auto; padding: 2.5rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.bank-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--gold), var(--red));
}
.bank-box-label {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 2rem;
}
.bank-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.bank-item-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(201,162,39,0.55); margin-bottom: 0.35rem;
}
.bank-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--text-white); font-weight: 500;
}
.bank-acct {
  font-size: 1.4rem !important; letter-spacing: 0.1em;
  color: var(--gold-light) !important; font-weight: 600 !important;
}
.bank-note {
  font-size: 0.77rem; color: var(--text-faint);
  line-height: 1.7; border-top: 1px solid var(--border); padding-top: 1.25rem;
}

/* Shared button styles (used in donation + blog) */
.btn-outline-gold {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  border: 1.5px solid var(--border-mid); padding: 0.8rem 2.2rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
}
.btn-outline-gold:hover {
  border-color: var(--gold); color: var(--bg-deep);
  background: var(--gold); box-shadow: 0 4px 20px rgba(201,162,39,0.3);
}
.btn-red {
  display: inline-block;
  background: var(--red); color: #fff;
  padding: 0.8rem 2.2rem; font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1.5px solid var(--red); font-weight: 600;
  box-shadow: 0 4px 20px rgba(200,16,46,0.35);
  transition: all 0.3s;
}
.btn-red:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  box-shadow: 0 6px 28px rgba(200,16,46,0.5);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--gold), var(--red));
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer-logo-wrap { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.footer-logo-img  { width: 56px; height: 56px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(201,162,39,0.25)); }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--text-white);
}
.footer-brand-name-ur {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 0.85rem; color: var(--gold); direction: rtl;
}
.footer-desc {
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.85; max-width: 320px; margin-bottom: 1.5rem;
}
.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1.4rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.8rem; color: var(--text-muted);
  transition: color 0.25s; display: flex; align-items: center; gap: 0.4rem;
}
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem;
}
.footer-contact-icon { font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.footer-contact-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.footer-contact-text a { transition: color 0.25s; }
.footer-contact-text a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.7rem; color: var(--text-faint); }
.footer-urdu-tag {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 0.9rem; color: rgba(201,162,39,0.4); direction: rtl;
}


/* ============================================================
   URDU / RTL MODE
   ============================================================ */
body.lang-ur {
  font-family: 'Noto Nastaliq Urdu', serif;
}
body.lang-ur p,
body.lang-ur h1, body.lang-ur h2, body.lang-ur h3,
body.lang-ur a, body.lang-ur li,
body.lang-ur .section-eyebrow,
body.lang-ur .hero-tagline, body.lang-ur .hero-sub,
body.lang-ur .verse-ref, body.lang-ur .bank-box-label,
body.lang-ur .bank-item-label, body.lang-ur .bank-note,
body.lang-ur .footer-copy, body.lang-ur .footer-col-title,
body.lang-ur .blog-card-date, body.lang-ur .blog-card-author,
body.lang-ur .donation-desc, body.lang-ur .pillar-card-desc,
body.lang-ur .footer-desc, body.lang-ur .footer-contact-text {
  font-family: 'Noto Nastaliq Urdu', serif;
  line-height: 2.4; font-size: 1.04em;
}
body.lang-ur .hero-title, body.lang-ur .section-title,
body.lang-ur .pillar-card-title, body.lang-ur .donation-title,
body.lang-ur .footer-brand-name, body.lang-ur .blog-card-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  line-height: 2.1;
}
[dir="rtl"] .pillar-card-link::after,
[dir="rtl"] .blog-card-link::after  { content: '←'; }
[dir="rtl"] .navbar-inner           { flex-direction: row-reverse; }
[dir="rtl"] .navbar-links           { flex-direction: row-reverse; }
[dir="rtl"] .footer-grid            { direction: rtl; }
[dir="rtl"] .footer-links           { direction: rtl; }
[dir="rtl"] .footer-links a::before { content: '‹'; }
[dir="rtl"] .footer-bottom          { flex-direction: row-reverse; }
[dir="rtl"] .bank-grid              { direction: rtl; text-align: right; }
[dir="rtl"] .hero-content           { direction: rtl; }
[dir="rtl"] .donation-card          { direction: rtl; }
[dir="rtl"] .pillar-card-body       { direction: rtl; text-align: right; }
[dir="rtl"] .blog-card-body         { direction: rtl; text-align: right; }
[dir="rtl"] .mobile-nav-inner       { align-items: center; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars-grid          { grid-template-columns: repeat(2,1fr); }
  .donation-grid         { grid-template-columns: repeat(2,1fr); }
  .blog-grid             { grid-template-columns: repeat(2,1fr); }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .navbar-links          { display: none; }
  .navbar-donate-btn     { display: none; }
  .hamburger             { display: flex; }
  .hero-stat             { padding: 0 1.5rem; }
}
@media (max-width: 768px) {
  .footer-grid           { grid-template-columns: 1fr; gap: 2.5rem; }
  .blog-grid             { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pillars-grid          { grid-template-columns: 1fr; }
  .donation-grid         { grid-template-columns: 1fr; }
  .bank-grid             { grid-template-columns: 1fr; }
  .footer-bottom         { flex-direction: column; text-align: center; }
  .navbar-inner          { padding: 0 1.25rem; height: 68px; }
  .navbar-logo-img       { width: 44px; height: 44px; }
  .container, .container-wide { padding: 0 1.25rem; }
  .hero-frame > div      { width: 30px; height: 30px; }
  .hero-frame            { inset: 1rem; }
  .hero-btns             { flex-direction: column; align-items: center; }
  .btn-hero-outline,
  .btn-hero-red          { width: 220px; text-align: center; }
  .hero-stats            { flex-wrap: wrap; gap: 0.5rem; }
  .hero-stat             { padding: 0.25rem 1rem; }
  .lang-toggle           { display: none; }
  .bank-box              { padding: 2rem 1.5rem; }
}


/* ============================================================
   BOOKS SECTION
============================================================ */
.books-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem;
}

.book-card {
  display: block;
  text-decoration: none;
  color: var(--text-white);
  transition: transform 0.3s;
}
.book-card:hover { transform: translateY(-6px); }

.book-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 0.9rem;
}

.book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.book-card:hover .book-cover-img { transform: scale(1.04); }

.book-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.15;
}

.book-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,7,4,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.book-card:hover .book-cover-overlay { opacity: 1; }

.book-read-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1rem;
}

.book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 600px) {
  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}


/* ============================================================
   SOCIAL MEDIA SECTION
============================================================ */
.social-section {
  padding: 6rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-header {
  text-align: center;
  margin-bottom: 3rem;
}

.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 2.25rem 2rem;
  background: #2A1A0C;
  border: 1px solid rgba(201,162,39,0.25);
  text-decoration: none;
  color: #F5EDD8;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.social-card--facebook::before { background: rgba(24,119,242,0.06); }
.social-card--youtube::before  { background: rgba(255,0,0,0.06); }
.social-card:hover::before     { opacity: 1; }
.social-card:hover             { transform: translateY(-4px); }
.social-card--facebook:hover   { border-color: #1877F2; }
.social-card--youtube:hover    { border-color: #FF0000; }

.social-card-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.social-card--facebook .social-card-icon {
  background: rgba(24,119,242,0.15);
  color: #1877F2;
}
.social-card--youtube .social-card-icon {
  background: rgba(255,0,0,0.15);
  color: #FF0000;
}

.social-card-body { flex: 1; }

.social-card-platform {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.35);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.35rem;
}
.social-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #F5EDD8;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.social-card-cta {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A227;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 680px) {
  .social-cards { grid-template-columns: 1fr; }
}


/* ============================================================
   ELEMENTOR UTILITY CLASSES
   Apply these via Elementor → Advanced → CSS Classes
   ============================================================ */

/* ── Section backgrounds ── */
.el-bg-deep    { background-color: var(--bg-deep)  !important; }
.el-bg-dark    { background-color: var(--bg-dark)  !important; }
.el-bg-card    { background-color: var(--bg-card)  !important; }
.el-bg-green   { background-color: #0A1A10         !important; }

/* ── Section padding ── */
.el-section    { padding: 6rem 0 !important; }
.el-section-sm { padding: 3rem 0 !important; }

/* ── Gold label (small uppercase subtitle) ── */
.el-label {
  display: block;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 1rem !important;
}

/* ── Section heading ── */
.el-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: var(--text-white) !important;
}

/* ── Arabic / Urdu text ── */
.el-arabic {
  font-family: 'Amiri', serif !important;
  direction: rtl !important;
  color: var(--gold) !important;
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  line-height: 2 !important;
}

/* ── Body / paragraph text ── */
.el-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
  line-height: 1.85 !important;
}

/* ── Gold divider line ── */
.el-divider .elementor-divider-separator {
  border-color: var(--gold) !important;
}

/* ── Pillar card ── */
.el-pillar-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  padding: 2rem !important;
  height: 100% !important;
  transition: border-color 0.3s, transform 0.3s !important;
}
.el-pillar-card:hover {
  border-color: var(--gold) !important;
  transform: translateY(-4px) !important;
}
.el-pillar-card .el-pillar-number {
  font-family: 'Amiri', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.el-pillar-card .el-pillar-bar {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.el-pillar-card h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  color: var(--text-white) !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
}
.el-pillar-card p {
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  line-height: 1.8 !important;
  margin-bottom: 1.5rem !important;
}
.el-pillar-card a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}

/* ── Blog card ── */
.el-blog-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  overflow: hidden !important;
  transition: border-color 0.3s, transform 0.3s !important;
}
.el-blog-card:hover {
  border-color: var(--gold) !important;
  transform: translateY(-4px) !important;
}
.el-blog-card .el-blog-thumb {
  aspect-ratio: 16 / 9;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.el-blog-card .el-blog-body { padding: 1.5rem; }
.el-blog-card .el-blog-cat {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border: 1px solid var(--border-mid);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.75rem;
}
.el-blog-card h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  color: var(--text-white) !important;
  line-height: 1.3 !important;
  margin-bottom: 0.75rem !important;
}
.el-blog-card p {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  line-height: 1.75 !important;
}
.el-blog-card .el-blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: 'Inter', sans-serif;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1.25rem;
}

/* ── Bank details box ── */
.el-bank-box {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  padding: 2rem !important;
}
.el-bank-row {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.el-bank-row:last-child { border-bottom: none; margin-bottom: 0; }
.el-bank-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.4rem;
}
.el-bank-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-white);
}

/* ── Buttons ── */
.el-btn-gold {
  display: inline-block !important;
  padding: 0.85rem 2.5rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  transition: background 0.3s, color 0.3s !important;
  border-radius: 0 !important;
}
.el-btn-gold:hover {
  background: var(--gold) !important;
  color: var(--bg-deep) !important;
}
.el-btn-red {
  display: inline-block !important;
  padding: 0.85rem 2.5rem !important;
  border: 1px solid var(--red) !important;
  background: var(--red) !important;
  color: var(--text-white) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
}
.el-btn-green {
  display: inline-block !important;
  padding: 0.85rem 2.5rem !important;
  border: 1px solid var(--green) !important;
  background: var(--green) !important;
  color: var(--text-white) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
}

/* ── Verse section ── */
.el-verse-arabic {
  font-family: 'Amiri', serif !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  color: var(--text-white) !important;
  line-height: 1.9 !important;
  direction: rtl !important;
  text-align: center !important;
}
.el-verse-translation {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.25rem !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: rgba(245,237,216,0.75) !important;
  line-height: 1.8 !important;
  text-align: center !important;
}
.el-verse-ref {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  text-align: center !important;
}

/* ── Hero section (Elementor) ── */
.el-hero-section.elementor-section {
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
}
.el-hero-section .elementor-background-overlay {
  background: linear-gradient(
    to bottom,
    rgba(13,7,4,0.55) 0%,
    rgba(13,7,4,0.72) 60%,
    rgba(13,7,4,0.92) 100%
  ) !important;
}
.el-hero-arabic {
  font-family: 'Amiri', serif !important;
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  color: var(--gold) !important;
  direction: rtl !important;
  text-align: center !important;
  margin-bottom: 1.5rem !important;
}
.el-hero-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  color: var(--text-white) !important;
  text-align: center !important;
}
.el-hero-sub {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
  text-align: center !important;
}

/* ── Elementor overrides — remove default white backgrounds ── */
.elementor-page .elementor-section,
.elementor-page .e-con {
  background-color: transparent;
}
.elementor-widget-heading .elementor-heading-title { line-height: inherit; }
.elementor-widget-text-editor { color: var(--text-muted); }

