/* ================================================
   Online Istikhara - Peer Duarab Ali Shah UK
   style.css
================================================ */

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

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

:root {
  --islamic-blue: #0f2a4a;
  --islamic-blue-light: #1a3f6f;
  --gold: #c9a227;
  --gold-light: #e8c55a;
  --cream: #fafaf7;
  --wa-green: #25d366;
  --wa-dark: #128c7e;
  --text-main: #0f2a4a;
  --text-muted: #64748b;
  --text-body: #374151;
  --bg-light: #f8f9fd;
  --border-light: #e8eef5;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #fff;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(10,30,53,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.18);
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(10,30,53,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1.3; }
.nav-brand-name { font-weight: 700; font-size: 1rem; color: #e8c55a; }
.nav-brand-sub { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: #c9a227; transition: width 0.3s;
}
.nav-link:hover { color: #e8c55a; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #e8c55a; }
.nav-link.active::after { width: 100%; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

.nav-mobile {
  display: none; flex-direction: column; gap: 16px;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,30,53,0.98);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { font-size: 1rem; }

/* ---- WHATSAPP BUTTON ---- */
.wa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: 999px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.3s;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff; border: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.wa-btn:hover {
  background: linear-gradient(135deg, #20c55e 0%, #0f7a6c 100%);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  transform: translateY(-2px);
}
.wa-btn:active { transform: translateY(0); }
.wa-btn.sm { font-size: 0.875rem; padding: 10px 22px; gap: 7px; }
.wa-btn.md { font-size: 1rem; padding: 14px 28px; gap: 8px; }
.wa-btn.lg { font-size: 1.1rem; padding: 16px 36px; gap: 10px; }
.wa-btn.full-width { width: 100%; }
.wa-btn svg { flex-shrink: 0; }

/* Floating button */
.floating-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: pulse-wa 2s infinite;
  text-decoration: none;
}
@keyframes pulse-wa {
  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); }
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1e35 0%, #0f2a4a 40%, #1a3f6f 80%, #0f2a4a 100%);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,162,39,0.12) 1px, transparent 0),
    linear-gradient(135deg, #0a1e35 0%, #0f2a4a 40%, #1a3f6f 80%, #0f2a4a 100%);
  background-size: 32px 32px, 100%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 100px 20px 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(201,162,39,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.bismillah {
  font-family: 'Amiri', serif;
  font-size: 1.5rem; color: #e8c55a;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4); margin-bottom: 18px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 999px; font-size: 0.78rem; font-weight: 600;
  background: rgba(201,162,39,0.2); border: 1px solid rgba(201,162,39,0.4);
  color: #e8c55a; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700;
  color: #fff; line-height: 1.2; margin-bottom: 20px; max-width: 800px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 span { color: #e8c55a; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 600px; line-height: 1.7; margin-bottom: 14px; }
.hero-sub { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 40px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 40px; }
.outline-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(201,162,39,0.5); color: #e8c55a;
  transition: all 0.3s; cursor: pointer; text-decoration: none;
}
.outline-btn:hover { background: rgba(201,162,39,0.1); }
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust .check { color: #c9a227; }
.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.25); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ---- SECTIONS ---- */
section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }
.container-md { max-width: 960px; margin: 0 auto; }

.section-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #c9a227; margin-bottom: 8px; }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg,#c9a227,#e8c55a,#c9a227); border-radius: 2px; margin: 0 auto 20px; }
.section-divider.left { margin-left: 0; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--text-main); margin-bottom: 14px; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.text-center { text-align: center; }

/* ---- CARDS GRID ---- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.grid-2-fixed { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: 16px; padding: 28px;
  transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,42,74,0.14); }

/* ---- WHY CHOOSE US ---- */
.why-section { background: #fff; }
.why-card { background: #fafbfc; }
.why-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ---- SERVICES ---- */
.services-section { background: var(--bg-light); }
.service-card { text-align: center; box-shadow: 0 2px 16px rgba(15,42,74,0.07); }
.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #0f2a4a, #1a3f6f);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.services-cta { text-align: center; margin-top: 48px; }
.services-cta p { font-weight: 600; color: var(--text-main); margin-bottom: 20px; }

/* ---- ABOUT SECTION ---- */
.about-section { background: var(--islamic-blue); }
.about-text p { font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.about-text .quran-quote { color: #c9a227; font-weight: 600; font-style: italic; }
.about-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 20px; padding: 36px; text-align: center;
}
.about-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(201,162,39,0.2); border: 2px solid rgba(201,162,39,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 20px;
}
.about-card h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.about-card p.sub { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.about-check-list { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.about-check-list li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.about-check-list li::before { content: '✓'; color: #c9a227; font-weight: 700; }

/* ---- STEPS ---- */
.steps-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; margin-top: 48px; }
.step { text-align: center; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg,#c9a227,#e8c55a);
  color: var(--islamic-blue); font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-weight: 700; font-size: 1.05rem; color: var(--text-main); margin-bottom: 10px; }
.step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--bg-light); }
.testimonial-card {
  border-left: 4px solid #c9a227;
  box-shadow: 0 2px 16px rgba(15,42,74,0.07);
}
.stars { color: #f59e0b; display: flex; gap: 2px; margin-bottom: 8px; font-size: 0.9rem; }
.testimonial-card p.quote { font-size: 0.875rem; line-height: 1.7; font-style: italic; color: var(--text-body); margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg,#0f2a4a,#1a3f6f);
  color: #e8c55a; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.875rem; color: var(--text-main); }
.reviewer-location { font-size: 0.75rem; color: #94a3b8; }

/* ---- FAQ ---- */
.faq-section { background: #fff; }
.faq-item { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.faq-item.open { border-color: #c9a227; }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  background: #fff; color: var(--text-main); border: none; transition: all 0.3s;
}
.faq-item.open .faq-question { background: var(--islamic-blue); color: #fff; }
.faq-plus { font-size: 1.25rem; color: #c9a227; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 20px 24px;
  font-size: 0.875rem; line-height: 1.7; color: var(--text-body);
  background: #f8fafc;
}
.faq-item.open .faq-answer { display: block; }
.faq-cta {
  background: var(--islamic-blue); border-radius: 20px;
  padding: 36px; text-align: center; margin-top: 48px;
}
.faq-cta .arabic { font-family: 'Amiri', serif; font-size: 1.1rem; color: #c9a227; margin-bottom: 6px; }
.faq-cta .arabic-trans { font-size: 0.78rem; font-style: italic; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.faq-cta h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.faq-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; }

/* ---- FOOTER ---- */
footer { background: #060f1e; }
.footer-cta {
  padding: 60px 20px; text-align: center;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.footer-cta .bismillah { margin-bottom: 8px; }
.footer-cta h2 { font-size: 1.75rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-cta p { color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 500px; margin: 0 auto 28px; }
.footer-cols {
  max-width: 1200px; margin: 0 auto;
  padding: 48px 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px;
}
.footer-col h3 { font-size: 1rem; font-weight: 700; color: #e8c55a; margin-bottom: 12px; }
.footer-col h4 { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 12px; }
.footer-col p { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.45); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: #e8c55a; }
.footer-col ul.contact-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-col ul.contact-list li .dot { color: #c9a227; flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.7;
}
.footer-bottom strong { color: rgba(255,255,255,0.45); }
.footer-bottom p + p { margin-top: 6px; }

/* ---- PAGES ---- */
.page-hero {
  padding: 130px 20px 80px; text-align: center;
  background: linear-gradient(135deg, #0a1e35 0%, #0f2a4a 40%, #1a3f6f 80%, #0f2a4a 100%);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,162,39,0.12) 1px, transparent 0),
    linear-gradient(135deg, #0a1e35 0%, #0f2a4a 40%, #1a3f6f 80%, #0f2a4a 100%);
  background-size: 32px 32px, 100%;
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201,162,39,0.1) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.page-hero h1 span { color: #e8c55a; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* About page extras */
.about-story { background: #fff; }
.about-story .text-content { padding-right: 20px; }
.about-story .text-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.stats-card {
  background: var(--islamic-blue); border-radius: 20px; padding: 32px;
}
.stats-card .arabic-quote { font-family: 'Amiri', serif; font-size: 1.1rem; color: #c9a227; text-align: center; margin-bottom: 6px; }
.stats-card .arabic-trans { font-size: 0.78rem; font-style: italic; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 24px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-item {
  text-align: center; padding: 16px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,162,39,0.2);
}
.stat-item .num { font-size: 1.5rem; font-weight: 700; color: #e8c55a; }
.stat-item .label { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

.values-section { background: var(--bg-light); }
.value-card { display: flex; gap: 18px; align-items: flex-start; }
.value-card .v-icon { font-size: 1.75rem; flex-shrink: 0; }
.value-card h3 { font-weight: 700; font-size: 0.95rem; color: var(--text-main); margin-bottom: 6px; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.istikhara-info { background: #fff; }
.istikhara-info p { font-size: 0.875rem; color: var(--text-body); line-height: 1.75; margin-bottom: 16px; max-width: 800px; margin-left: auto; margin-right: auto; }
.arabic-box {
  background: var(--bg-light); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 28px; text-align: center; margin: 24px auto; max-width: 500px;
}
.arabic-box .arabic-big { font-family: 'Amiri', serif; font-size: 1.3rem; color: var(--text-main); margin-bottom: 10px; }
.arabic-box .arabic-ref { font-size: 0.75rem; font-style: italic; color: #94a3b8; }

/* Services page */
.service-detail-card { overflow: hidden; margin-bottom: 32px; }
.service-detail-header {
  padding: 18px 24px; display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, var(--islamic-blue), var(--islamic-blue-light));
}
.service-detail-header .s-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(201,162,39,0.2); border: 2px solid rgba(201,162,39,0.4);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.service-detail-header h2 { font-size: 1.15rem; font-weight: 700; color: #fff; }
.service-detail-body { padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-detail-body p { font-size: 0.875rem; color: var(--text-body); line-height: 1.75; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--text-body); }
.benefit-list li::before { content: '✓'; color: #c9a227; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.benefit-title { font-weight: 600; font-size: 0.875rem; color: var(--text-main); margin-bottom: 10px; }
.service-detail-footer { padding: 0 28px 28px; }

/* Contact page */
.contact-section { background: #fff; }
.contact-info h2 { font-size: 1.6rem; font-weight: 700; color: var(--text-main); margin-bottom: 16px; }
.contact-info > p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.c-item { display: flex; gap: 14px; align-items: flex-start; }
.c-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,162,39,0.12); border: 1px solid rgba(201,162,39,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.c-item h4 { font-weight: 600; font-size: 0.875rem; color: var(--text-main); margin-bottom: 2px; }
.c-item p { font-size: 0.85rem; color: var(--text-muted); }
.c-item a.wa-link { font-size: 0.8rem; font-weight: 600; color: #25d366; text-decoration: underline; }

.guide-box { background: var(--bg-light); border: 1px solid var(--border-light); border-radius: 20px; padding: 28px; }
.guide-box h3 { font-weight: 700; font-size: 1rem; color: var(--text-main); margin-bottom: 8px; }
.guide-box > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.guide-steps { display: flex; flex-direction: column; gap: 12px; }
.g-step { display: flex; gap: 12px; align-items: flex-start; }
.g-step-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--islamic-blue); color: #e8c55a;
  font-weight: 700; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.g-step p { font-size: 0.875rem; color: var(--text-body); }

.privacy-box { background: rgba(15,42,74,0.04); border: 1px solid rgba(15,42,74,0.1); border-radius: 16px; padding: 20px; display: flex; gap: 12px; margin-top: 16px; }
.privacy-box .p-icon { font-size: 1.25rem; flex-shrink: 0; }
.privacy-box h4 { font-weight: 600; font-size: 0.875rem; color: var(--text-main); margin-bottom: 4px; }
.privacy-box p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

.mini-cta {
  background: var(--islamic-blue); border-radius: 20px; padding: 28px; text-align: center; margin-top: 16px;
}
.mini-cta .ar { font-family: 'Amiri', serif; font-size: 1.05rem; color: #c9a227; margin-bottom: 4px; }
.mini-cta .ar-tr { font-size: 0.75rem; font-style: italic; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.mini-cta p { font-weight: 600; color: #fff; font-size: 1rem; margin-bottom: 16px; }

.faq-mini { background: var(--bg-light); }
.faq-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 40px; }
.faq-mini-item { background: #fff; border: 1px solid var(--border-light); border-radius: 12px; padding: 20px; }
.faq-mini-item h4 { font-weight: 600; font-size: 0.875rem; color: var(--text-main); margin-bottom: 8px; }
.faq-mini-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

.cta-dark { background: var(--islamic-blue); padding: 60px 20px; text-align: center; }
.cta-dark h2 { font-size: 1.75rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-dark p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 480px; margin: 0 auto 28px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-2-fixed { grid-template-columns: 1fr; }
  .service-detail-body { grid-template-columns: 1fr; }
  .floating-wa { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  section { padding: 60px 20px; }
  .hero { padding: 90px 20px 60px; }
  .page-hero { padding: 110px 20px 60px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* ---- UTILITY ---- */
.hidden { display: none !important; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
