/* ============================================
   THE ARABIC CHURCH IN LIVERPOOL UK
   Professional Church Website Stylesheet
   ============================================ */

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

:root {
  --navy: #1B3A6B;
  --navy-dark: #0F2447;
  --navy-deep: #091830;
  --gold: #D4AF37;
  --gold-light: #E8C547;
  --gold-dark: #B8971E;
  --white: #FFFFFF;
  --gray-light: #F5F6FA;
  --gray: #E8E9EF;
  --gray-mid: #C5C7D4;
  --text-dark: #1A2A4A;
  --text-med: #4A5568;
  --text-light: #718096;
  --font-ar: 'Cairo', 'Tajawal', sans-serif;
  --font-en: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg: 0 8px 48px rgba(27,58,107,0.16);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  direction: rtl;
  line-height: 1.75;
  overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-white-70 { color: rgba(255,255,255,0.75); }
.text-center { text-align: center; }
.lead-text { font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1rem; }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-ar);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.4); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: white;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(15, 36, 71, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(9, 24, 48, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon svg { width: 38px; height: 38px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-ar { font-size: 1rem; font-weight: 700; color: var(--white); }
.logo-en { font-size: 0.7rem; font-weight: 400; color: var(--gold); font-family: var(--font-en); letter-spacing: 0.05em; }

.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(212,175,55,0.1); }
.nav-link .fa-chevron-down { font-size: 0.7rem; }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 110%; right: 0;
  min-width: 180px;
  background: var(--navy-deep);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  display: block; padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.8); font-size: 0.875rem;
  border-radius: 8px; transition: var(--transition);
}
.dropdown-menu li a:hover { color: var(--gold); background: rgba(212,175,55,0.1); }

.nav-cta { margin-right: auto; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, #2D5BA0 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.08) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  background: var(--gold);
  animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 600px; height: 600px; top: -200px; left: -100px; animation-delay: 0s; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; right: -50px; animation-delay: 3s; }
.shape-3 { width: 200px; height: 200px; top: 30%; right: 20%; animation-delay: 6s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 860px;
  z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease 0.3s both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-verse {
  display: inline-flex; align-items: flex-start; gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.25);
  border-right: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: right;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-quote-icon { color: var(--gold); margin-top: 0.25rem; flex-shrink: 0; }
.hero-verse p { color: rgba(255,255,255,0.9); font-size: 0.95rem; margin-bottom: 0.25rem; }
.hero-verse span { color: var(--gold); font-size: 0.8rem; font-weight: 700; }
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-scroll a { color: rgba(255,255,255,0.5); font-size: 1.25rem; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   SECTIONS BASE
   ============================================ */
.section { padding: 5rem 0; }
.section-light { background: var(--white); }
.section-gray { background: var(--gray-light); }
.section-navy { background: var(--navy-dark); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header-white { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(27,58,107,0.08);
  color: var(--navy);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(27,58,107,0.15);
}
.section-badge-light {
  display: inline-flex; align-items: center;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(212,175,55,0.3);
}
.section-title { color: var(--text-dark); margin-bottom: 0.75rem; }
.section-subtitle { color: var(--text-med); max-width: 600px; margin: 0.75rem auto 0; font-size: 1rem; }
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; color: var(--gold); margin: 0.75rem auto;
}
.section-divider span {
  display: block; height: 2px; width: 60px;
  background: linear-gradient(to left, var(--gold), transparent);
  border-radius: 2px;
}
.section-divider span:last-child { background: linear-gradient(to right, var(--gold), transparent); }
.section-divider.white { color: rgba(255,255,255,0.5); }
.section-divider.white span { background: linear-gradient(to left, rgba(255,255,255,0.4), transparent); }
.section-divider.white span:last-child { background: linear-gradient(to right, rgba(255,255,255,0.4), transparent); }
.section-divider.left { justify-content: flex-start; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text p { color: var(--text-med); margin-bottom: 1rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.value-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem;
  padding: 0.75rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--gray);
  transition: var(--transition);
}
.value-item i { color: var(--gold); font-size: 1.2rem; }
.value-item:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.value-item:hover i { color: var(--gold); }

.about-visual { display: flex; flex-direction: column; gap: 1.25rem; }
.about-card-main {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.1) 0%, transparent 60%);
}
.cross-symbol { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.about-card-main h3 { margin-bottom: 0.75rem; }
.about-card-main p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.about-card-sub {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.stat-item {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  text-align: center;
  border: 1px solid var(--gray);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.stat-num { font-size: 1.4rem; color: var(--gold); }
.stat-item span:last-child { font-size: 0.75rem; font-weight: 700; color: var(--navy); }
.about-verse-box {
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-right: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.about-verse-box i { color: var(--gold); font-size: 1.1rem; }
.about-verse-box p { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }
.about-verse-box span { font-size: 0.8rem; color: var(--gold); font-weight: 700; }

/* ============================================
   MEETINGS
   ============================================ */
.meetings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.meeting-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  color: var(--white);
  position: relative;
  transition: var(--transition);
}
.meeting-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.meeting-card.featured {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.4);
}
.meeting-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}
.meeting-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.meeting-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.meeting-time {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
}
.meeting-time i { color: var(--gold); width: 14px; }
.meeting-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-top: 0.75rem; }
.meetings-verse {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.7);
}
.meetings-verse i { color: var(--gold); font-size: 1.3rem; }
.meetings-verse p { font-size: 1rem; color: rgba(255,255,255,0.9); font-weight: 600; }
.meetings-verse span { color: var(--gold); font-size: 0.85rem; }

/* ============================================
   VISIT
   ============================================ */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.visit-expect h3 { font-size: 1.2rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.expect-list { display: flex; flex-direction: column; gap: 0.6rem; }
.expect-list li { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; color: var(--text-dark); }
.expect-list li i { color: var(--gold); font-size: 1rem; }
.visit-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.visit-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray);
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.visit-card:hover { box-shadow: var(--shadow); transform: translateX(-4px); }
.visit-card-icon { font-size: 1.75rem; color: var(--gold); }
.visit-card h4 { font-size: 1.05rem; color: var(--navy); }
.visit-card p { font-size: 0.9rem; color: var(--text-med); }
.visit-verse {
  font-size: 0.8rem; color: var(--gold); font-weight: 700;
  border-top: 1px solid var(--gray); padding-top: 0.5rem; margin-top: 0.25rem;
}
.visit-cta { text-align: center; }

/* ============================================
   SERMONS
   ============================================ */
.sermon-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.tag {
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-med);
  border: 2px solid var(--gray);
  transition: var(--transition);
  font-family: var(--font-ar);
}
.tag:hover, .tag.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sermons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.sermon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray);
}
.sermon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sermon-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.sermon-thumb::before {
  content: '✝';
  position: absolute;
  font-size: 6rem;
  color: rgba(255,255,255,0.04);
  right: -1rem; bottom: -1rem;
}
.sermon-play {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
  cursor: pointer;
}
.sermon-play:hover { background: var(--gold); color: var(--navy-dark); }
.sermon-label {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--gold); color: var(--navy-dark);
  font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.sermon-body { padding: 1.5rem; }
.sermon-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.sermon-cat { background: rgba(27,58,107,0.08); color: var(--navy); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 50px; }
.sermon-date { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.sermon-body h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.sermon-body p { font-size: 0.875rem; color: var(--text-med); margin-bottom: 1rem; }

.live-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--white);
  margin-bottom: 2rem;
}
.live-dot {
  width: 14px; height: 14px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-red 1.5s infinite;
  box-shadow: 0 0 0 4px rgba(239,68,68,0.2);
}
@keyframes pulse-red { 0%,100%{box-shadow:0 0 0 4px rgba(239,68,68,0.2)} 50%{box-shadow:0 0 0 8px rgba(239,68,68,0.1)} }
.live-banner span { flex: 1; font-weight: 600; }

.sermons-verse {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.sermons-verse i { color: var(--gold); font-size: 1.3rem; }
.sermons-verse p { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; font-style: italic; max-width: 600px; }
.sermons-verse span { color: var(--gold); font-size: 0.85rem; font-weight: 700; }

/* ============================================
   KNOW JESUS
   ============================================ */
.know-jesus-section {
  position: relative;
  background: var(--navy-deep);
  padding: 5rem 0;
}
.know-jesus-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #2D5BA0 100%);
  opacity: 0.98;
}
.know-jesus-section .container { position: relative; z-index: 2; }
.jesus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.jesus-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  color: var(--white);
  text-align: center;
  transition: var(--transition);
}
.jesus-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); border-color: rgba(212,175,55,0.3); }
.jesus-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.jesus-card h3 { margin-bottom: 0.75rem; }
.jesus-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; line-height: 1.7; }
.jesus-verse {
  font-size: 0.8rem; color: var(--gold); font-weight: 700;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.75rem;
}
.prayer-salvation-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
}
.prayer-salvation-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.prayer-salvation-box h3 { margin-bottom: 1.5rem; }
.salvation-prayer {
  background: rgba(255,255,255,0.05);
  border-right: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 1.75rem;
  text-align: right;
}
.salvation-prayer p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.9;
  font-style: italic;
}

/* ============================================
   MINISTRIES
   ============================================ */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ministry-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.ministry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.ministry-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.ministry-icon.kids { background: rgba(239,68,68,0.1); color: #ef4444; }
.ministry-icon.youth { background: rgba(16,185,129,0.1); color: #10b981; }
.ministry-icon.family { background: rgba(59,130,246,0.1); color: #3b82f6; }
.ministry-icon.groups { background: rgba(245,158,11,0.1); color: #f59e0b; }
.ministry-icon.outreach { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.ministry-icon.volunteer { background: rgba(236,72,153,0.1); color: #ec4899; }
.ministry-card h3 { font-size: 1.1rem; color: var(--navy); }
.ministry-card p { font-size: 0.875rem; color: var(--text-med); }
.ministry-verse {
  font-size: 0.78rem; color: var(--gold); font-weight: 700;
  border-top: 1px solid var(--gray); padding-top: 0.5rem;
}
.ministry-list { display: flex; flex-direction: column; gap: 0.3rem; }
.ministry-list li { font-size: 0.85rem; color: var(--text-med); display: flex; align-items: center; gap: 0.5rem; }
.ministry-list li i { color: var(--gold); font-size: 0.75rem; }

/* ============================================
   NEW BELIEVERS STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  color: var(--white);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.step-num {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 2rem; font-weight: 900;
  color: rgba(212,175,55,0.15);
  font-family: var(--font-en);
  line-height: 1;
}
.step-icon { font-size: 2.25rem; color: var(--gold); margin-bottom: 1rem; }
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.newbelievers-verse {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.newbelievers-verse i { color: var(--gold); font-size: 1.3rem; }
.newbelievers-verse p { font-size: 0.95rem; color: rgba(255,255,255,0.9); font-weight: 600; font-style: italic; }
.newbelievers-verse span { color: var(--gold); font-size: 0.85rem; font-weight: 700; }

/* ============================================
   EVENTS
   ============================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: grid;
  grid-template-columns: auto 1fr;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-card.featured-event { border: 2px solid var(--gold); }
.event-date {
  background: var(--navy);
  padding: 1.5rem 1rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 80px;
  text-align: center;
}
.event-month { font-size: 0.7rem; font-weight: 700; color: var(--gold); text-transform: uppercase; font-family: var(--font-en); margin-bottom: 0.25rem; }
.event-day { font-size: 1.75rem; font-weight: 900; color: var(--white); font-family: var(--font-en); line-height: 1; }
.event-day i { font-size: 1.5rem; color: var(--gold); }
.event-body { padding: 1.25rem 1rem; }
.event-type { font-size: 0.75rem; font-weight: 700; color: var(--gold); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.3rem; }
.event-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.event-body p { font-size: 0.875rem; color: var(--text-med); margin-bottom: 0.75rem; }
.event-details { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.event-details span { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.event-details i { color: var(--gold); }

/* ============================================
   PRAYER REQUEST
   ============================================ */
.prayer-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.prayer-info .section-badge { margin-bottom: 0.75rem; }
.prayer-promise {
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-right: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.prayer-promise i { color: var(--gold); font-size: 1.1rem; }
.prayer-promise p { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; font-style: italic; }
.prayer-promise span { font-size: 0.8rem; color: var(--gold); font-weight: 700; }
.prayer-features { display: flex; flex-direction: column; gap: 0.6rem; }
.prayer-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.prayer-feature i { color: var(--gold); width: 18px; }
.prayer-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray);
}
.prayer-form h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.prayer-form h3 i { color: var(--gold); }

/* Forms */
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  font-family: var(--font-ar);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--gray-light);
  transition: var(--transition);
  outline: none;
  direction: rtl;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}
.form-textarea { resize: vertical; }
.form-checkboxes { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; cursor: pointer; }
.form-check { accent-color: var(--gold); width: 16px; height: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   PASTORAL
   ============================================ */
.pastoral-leaders {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.pastoral-leader-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 180px;
}
.pastoral-leader-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.75rem; }
.pastoral-leader-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.25rem; font-weight: 700; }
.pastoral-leader-card p { font-size: 0.9rem; color: var(--text-med); }
.pastoral-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.pastoral-card {
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.pastoral-card:hover { background: var(--navy); color: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pastoral-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; }
.pastoral-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.4rem; }
.pastoral-card:hover h4 { color: var(--white); }
.pastoral-card p { font-size: 0.85rem; color: var(--text-med); }
.pastoral-card:hover p { color: rgba(255,255,255,0.75); }
.pastoral-verse {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.pastoral-verse i { color: var(--gold); font-size: 1.2rem; }
.pastoral-verse p { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; font-style: italic; }
.pastoral-verse span { color: var(--gold); font-size: 0.85rem; font-weight: 700; }

/* ============================================
   GIVING
   ============================================ */
.giving-section {
  position: relative;
  background: var(--navy-dark);
  padding: 5rem 0;
}
.giving-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 70%);
}
.giving-section .container { position: relative; z-index: 2; }
.giving-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.giving-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.giving-card:hover { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }
.giving-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; }
.giving-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.giving-card p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.giving-verse {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.giving-verse i { color: var(--gold); font-size: 1.2rem; }
.giving-verse p { font-size: 1rem; color: rgba(255,255,255,0.9); font-weight: 600; font-style: italic; }
.giving-verse span { color: var(--gold); font-size: 0.85rem; font-weight: 700; }

/* ============================================
   TESTIMONIES
   ============================================ */
.testimonies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.testimony-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimony-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(212,175,55,0.3); }
.testimony-quote { color: var(--gold); font-size: 1.5rem; margin-bottom: 0.75rem; }
.testimony-card p { font-size: 0.9rem; color: var(--text-med); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimony-author { display: flex; align-items: center; gap: 0.75rem; }
.testimony-avatar { font-size: 2.5rem; color: var(--gray-mid); }
.testimony-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimony-author span { font-size: 0.8rem; color: var(--text-light); }
.testimonies-verse {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.testimonies-verse i { color: var(--gold); font-size: 1.2rem; }
.testimonies-verse p { font-size: 0.9rem; color: var(--text-dark); font-style: italic; }
.testimonies-verse span { color: var(--gold); font-size: 0.85rem; font-weight: 700; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: right;
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex; align-items: center; gap: 0.75rem;
  transition: var(--transition);
}
.faq-q:hover { background: var(--gray-light); }
.faq-icon { margin-right: auto; color: var(--gold); transition: var(--transition); font-size: 0.875rem; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: 0.9rem; color: var(--text-med); }

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong { font-size: 0.85rem; color: var(--text-light); display: block; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }
.contact-social { display: flex; gap: 0.75rem; margin: 1.5rem 0; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube { background: #ff0000; }
.social-btn.whatsapp-s { background: #25D366; }
.social-btn:hover { transform: translateY(-3px) scale(1.1); }
.contact-map-placeholder {
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--text-med);
  margin-top: 1rem;
}
.contact-map-placeholder i { font-size: 3rem; color: var(--navy); margin-bottom: 0.75rem; }
.contact-map-placeholder p { font-weight: 700; color: var(--navy); }
.contact-map-placeholder span { font-size: 0.875rem; }
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--navy);
  padding: 1.5rem 0;
}
.cta-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.cta-block { display: flex; align-items: center; gap: 1rem; }
.cta-icon { font-size: 1.75rem; color: var(--gold); flex-shrink: 0; }
.cta-block h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.1rem; }
.cta-block p { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.cta-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-deep); }
.footer-top { padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-ar { font-size: 1rem; font-weight: 700; color: var(--white); display: block; }
.footer-logo-en { font-size: 0.7rem; color: var(--gold); font-family: var(--font-en); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.footer-verse {
  border: 1px solid rgba(212,175,55,0.2);
  border-right: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.footer-verse i { color: var(--gold); font-size: 0.9rem; }
.footer-verse p { font-size: 0.8rem; color: rgba(255,255,255,0.8); font-style: italic; }
.footer-verse span { font-size: 0.75rem; color: var(--gold); font-weight: 700; }
.footer-links h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 1.25rem; font-weight: 700; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-links ul li a i { font-size: 0.7rem; color: var(--gold); }
.footer-contact h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 1.25rem; font-weight: 700; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item i { color: var(--gold); width: 14px; margin-top: 0.2rem; flex-shrink: 0; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-verse { color: rgba(212,175,55,0.6) !important; font-style: italic; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .meetings-grid { grid-template-columns: 1fr 1fr; }
  .ministries-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(212,175,55,0.2);
    padding: 1.5rem;
    z-index: 800;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav.open .nav-list { flex-direction: column; gap: 0.25rem; width: 100%; }
  .nav.open .nav-link { padding: 0.75rem 1rem; font-size: 1rem; width: 100%; border-radius: var(--radius); }
  .nav.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.04); margin-top: 0.25rem; border-color: rgba(255,255,255,0.08); }
  .nav.open .nav-cta { display: inline-flex; margin-top: 1rem; }
  .sermons-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .prayer-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .jesus-grid { grid-template-columns: 1fr; }
  .pastoral-grid { grid-template-columns: 1fr 1fr; }
  .giving-grid { grid-template-columns: 1fr 1fr; }
  .testimonies-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; gap: 1.5rem; }
  .cta-divider { width: 60px; height: 1px; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .meetings-grid { grid-template-columns: 1fr; }
  .ministries-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card-sub { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .pastoral-grid { grid-template-columns: 1fr 1fr; }
  .giving-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .event-card { grid-template-columns: 1fr; }
  .event-date { flex-direction: row; align-items: center; justify-content: flex-start; gap: 0.75rem; padding: 0.75rem 1rem; }
}
