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

:root {
  --green-deep: #0a2e1a;
  --green-mid: #1a5c35;
  --green-bright: #2d9e60;
  --green-light: #4fd68a;
  --gold: #c9972b;
  --gold-light: #f0c85a;
  --cream: #fdf8ef;
  --cream-dark: #f5edd8;
  --text-dark: #0d1f14;
  --text-muted: #4a6b57;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* NAV — height choti ki */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 0.5rem 2.5rem; /* was 1rem — ab 0.5rem */
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253, 248, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 158, 96, 0.15);
  min-height: 56px; /* explicit compact height */
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Amiri', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--green-deep);
  text-decoration: none;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-mid); }
.nav-cta {
  background: var(--green-mid); color: var(--white);
  padding: 0.5rem 1.3rem; border-radius: 50px;
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--green-bright); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh;
  padding: 8rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed; inset: 0; z-index: -1;
  background: var(--cream);
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45,158,96,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,151,43,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.arabic-watermark {
  position: absolute; top: 50%; right: 48%;
  transform: translate(50%, -50%);
  font-family: 'Amiri', serif;
  font-size: 22rem;
  color: rgba(45, 158, 96, 0.04);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(45,158,96,0.1);
  border: 1px solid rgba(45,158,96,0.25);
  color: var(--green-mid);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: 'Amiri', serif;
  font-size: 4rem; line-height: 1.15;
  color: var(--green-deep);
  margin-bottom: 1rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero h1 span {
  color: var(--green-bright);
  position: relative;
}

.hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.7; max-width: 460px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0.85rem 1.6rem;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 0.88rem;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.btn-android {
  background: var(--green-deep);
  color: var(--white);
  border: none;
}
.btn-ios {
  background: var(--white);
  color: var(--green-deep);
  border: 1.5px solid rgba(10,46,26,0.2);
}

.btn-store .store-label { display: flex; flex-direction: column; }
.btn-store .store-label small { font-size: 0.72rem; opacity: 0.75; font-weight: 400; }
.btn-store .store-label strong { font-size: 0.95rem; font-weight: 600; line-height: 1.2; }

/* PHONE MOCKUP */
.hero-mockup {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  animation: floatIn 0.9s ease 0.2s both;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-wrap {
  animation: float 5s ease-in-out infinite;
  position: relative;
}

.phone-shadow {
  position: absolute; bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 20px;
  background: radial-gradient(ellipse, rgba(10,46,26,0.2) 0%, transparent 70%);
}

/* STATS ROW */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 800px; margin: 4rem auto;
  padding: 0 2.5rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid rgba(45,158,96,0.15);
  border-radius: 18px; padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-num {
  font-family: 'Amiri', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--green-bright);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; }

/* FEATURES */
.features {
  padding: 5rem 2.5rem;
  max-width: 1200px; margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(201,151,43,0.12);
  color: var(--gold);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Amiri', serif;
  font-size: 2.6rem; color: var(--green-deep);
  margin-bottom: 0.75rem;
}
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(45,158,96,0.12);
  border-radius: 20px;
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,46,26,0.08); }

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.icon-green { background: rgba(45,158,96,0.12); }
.icon-gold  { background: rgba(201,151,43,0.12); }
.icon-blue  { background: rgba(56,130,210,0.10); }

.feature-title { font-size: 1rem; font-weight: 600; color: var(--green-deep); margin-bottom: 0.5rem; }
.feature-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* PRAYER TIMES PREVIEW */
.prayer-section {
  padding: 5rem 2.5rem;
  background: var(--green-deep);
  position: relative; overflow: hidden;
}
.prayer-section::before {
  content: 'الله أكبر';
  position: absolute; top: -30px; right: -40px;
  font-family: 'Amiri', serif; font-size: 18rem;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
}
.prayer-inner { max-width: 1100px; margin: 0 auto; }
.prayer-section .section-tag { background: rgba(79,214,138,0.12); color: var(--green-light); }
.prayer-section .section-title { color: var(--cream); }
.prayer-section .section-sub   { color: rgba(253,248,239,0.6); }

.prayer-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.prayer-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 1.25rem 1rem;
  text-align: center; transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.prayer-pill:hover, .prayer-pill.active {
  background: rgba(45,158,96,0.25);
  border-color: rgba(79,214,138,0.4);
}
.prayer-name { font-family: 'Amiri', serif; font-size: 1.1rem; color: var(--cream); margin-bottom: 0.25rem; }
.prayer-arabic { font-family: 'Amiri', serif; font-size: 1.4rem; color: var(--green-light); direction: rtl; }
.prayer-time { font-size: 0.8rem; color: rgba(253,248,239,0.55); margin-top: 0.4rem; }

/* COMMUNITY */
.community {
  padding: 5rem 2.5rem;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.community h2 {
  font-family: 'Amiri', serif; font-size: 2.4rem;
  color: var(--green-deep); margin-bottom: 1rem;
}
.community p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

.leaderboard {
  background: var(--white);
  border: 1px solid rgba(45,158,96,0.12);
  border-radius: 20px;
  overflow: hidden;
}
.lb-header {
  background: var(--green-deep); color: var(--cream);
  padding: 1rem 1.25rem;
  font-family: 'Amiri', serif; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.lb-row {
  display: flex; align-items: center; gap: 12px;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(45,158,96,0.08);
  transition: background 0.15s;
}
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: rgba(45,158,96,0.04); }
.lb-rank { font-weight: 700; color: var(--green-bright); width: 24px; font-size: 0.9rem; }
.lb-rank.gold   { color: #c9972b; }
.lb-rank.silver { color: #8a8fa0; }
.lb-rank.bronze { color: #a0633a; }
.lb-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-mid); display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--white); font-weight: 600;
  flex-shrink: 0;
}
.lb-name { flex: 1; font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }
.lb-pts { font-size: 0.85rem; color: var(--text-muted); }
.lb-pts strong { color: var(--green-bright); }

/* Q&A + FATWA SPOTLIGHT */
.spotlight-section {
  padding: 5rem 2.5rem;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.spotlight-panel {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 3rem 0;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
}
.panel-qna {
  background: linear-gradient(150deg, #0a2e1a 0%, #14421f 45%, #2d1f0a 100%);
}
.panel-fatwa {
  background: linear-gradient(150deg, #071522 0%, #0d2b3d 45%, #0a2e1a 100%);
}
.spotlight-content { position: relative; z-index: 2; max-width: 460px; }
.spotlight-badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.badge-gold { background: rgba(201,151,43,0.18); color: var(--gold-light); }
.badge-blue { background: rgba(56,130,210,0.18); color: #7ec8ff; }

.spotlight-title {
  font-family: 'Amiri', serif;
  font-size: 2.6rem;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.accent-gold { color: var(--gold-light); }
.accent-blue { color: #7ec8ff; }

.spotlight-desc {
  font-size: 1rem;
  color: rgba(253,248,239,0.65);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.spotlight-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.spotlight-tag {
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid;
}
.tag-gold { background: rgba(201,151,43,0.1); border-color: rgba(201,151,43,0.3); color: var(--gold-light); }
.tag-blue { background: rgba(56,130,210,0.1); border-color: rgba(56,130,210,0.3); color: #7ec8ff; }

.spotlight-phone {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  overflow: hidden; 
}
.spotlight-phone svg { 
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35)); 
  height: auto; 
}

@media (max-width: 1000px) {
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-panel { min-height: unset; padding: 3rem 2rem 0; align-items: center; text-align: center; }
  .spotlight-content { max-width: 100%; }
  .spotlight-tags { justify-content: center; }
  
  .spotlight-phone { 
    justify-content: center; 
    max-height: 280px; 
  }
  .spotlight-phone svg { 
    width: min(460px, 90vw); 
    margin-bottom: -220px; 
  }
}

@media (max-width: 600px) {
  .spotlight-title { font-size: 2rem; }
  
  .spotlight-phone {
    max-height: 220px; 
  }
  .spotlight-phone svg { 
    width: min(380px, 85vw); 
    margin-bottom: -150px; 
  }
}
/* DOWNLOAD CTA */
.cta-section {
  padding: 6rem 2.5rem;
  text-align: center;
  background: linear-gradient(160deg, var(--green-deep) 0%, #0d3d20 100%);
  position: relative; overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,214,138,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section .section-title { color: var(--cream); font-size: 3rem; }
.cta-section p { color: rgba(253,248,239,0.7); max-width: 500px; margin: 1rem auto 2.5rem; line-height: 1.7; }

.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-store-lg {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 200px;
}
.btn-store-lg:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }

.btn-gplay { background: var(--white); color: var(--green-deep); }
.btn-appstore { background: rgba(255,255,255,0.12); color: var(--cream); border: 1px solid rgba(255,255,255,0.2); }

.btn-store-lg .sl { display: flex; flex-direction: column; }
.btn-store-lg .sl small { font-size: 0.72rem; opacity: 0.65; font-weight: 400; }
.btn-store-lg .sl strong { font-size: 1.05rem; font-weight: 600; line-height: 1.2; }

/* MOBILE BURGER MENU */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.burger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: 0.3s;
  border-radius: 3px;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop nav-cta visible, mobile hidden (shown in menu instead) */
.nav-cta-desktop { display: inline-flex; }

@media (max-width: 600px) {
  .burger { display: flex; }
  .nav-cta-desktop {display: flex !important; } 
  nav { padding: 0.4rem 1.25rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px; 
    left: 0;
    width: 100%;
    background: var(--cream);
    flex-direction: column;
    padding: 0.75rem 0 1rem;
    gap: 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-links.active { display: flex; }

  .nav-links li { text-align: center; }
  .nav-links a {
    display: block;
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  /* "Get the App" button — mobile menu ke andar */
  .nav-links .mobile-cta-item {
    margin-top: 0.5rem;
    padding: 0 1.25rem;
  }
  .nav-links .mobile-cta-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--green-mid);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
  }
}

/* FOOTER */
footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3.5rem 2.5rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0;
}
.footer-logo { font-family: 'Amiri', serif; font-size: 1.2rem; color: var(--cream); }
.footer-col h4 {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a,
.footer-col ul li button.footer-link {
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit;
  color: rgba(253,248,239,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover,
.footer-col ul li button.footer-link:hover { color: var(--green-light); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  color: rgba(253,248,239,0.65);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
}
.footer-col ul li a,
.footer-col ul li button.footer-link {
  position: relative;
  padding-left: 18px;
}

.footer-col ul li a::before,
.footer-col ul li button.footer-link::before {
  content: "›";   /* arrow */
  position: absolute;
  left: 0;
  color: #4fd68a;
  font-size: 1rem;
  font-weight: bold;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 0.15rem; }
.footer-bottom {
  width: 100%;
  max-width: none;

  margin: 2.5rem 0 0;
  padding-top: 1.5rem;

  border-top: 1px solid rgba(255,255,255,0.07);

  display: flex;
  align-items: center;
  justify-content: space-between;

  flex-wrap: wrap;
  gap: 0.8rem;
}
footer p { font-size: 0.82rem; color: rgba(253,248,239,0.45); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; justify-items: start; text-align: left; }

  .footer-col { text-align: left; }
  .footer-logo { width: 100%; }

  /* left-align footer lists/typography */
  .footer-col h4 { text-align: left; }
  .footer-col ul { align-items: flex-start; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* CONTACT / PRIVACY-STYLE MODAL */
.site-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,46,26,0.55);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 1.2rem;
}
.site-modal-overlay.active { display: flex; }
.site-modal {
  background: var(--cream);
  border-radius: 18px;
  max-width: 460px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalPop 0.25s ease;
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.site-modal h3 {
  font-family: 'Amiri', serif;
  color: var(--green-deep);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.site-modal p.modal-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
}
.site-modal-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s;
}
.site-modal-close:hover { background: rgba(45,158,96,0.12); color: var(--green-deep); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(45,158,96,0.25);
  border-radius: 10px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-bright);
}
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form button[type="submit"] {
  background: var(--green-mid);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.contact-form button[type="submit"]:hover { background: var(--green-bright); transform: translateY(-1px); }
.contact-form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.contact-form-status {
  font-size: 0.85rem;
  margin-top: -0.3rem;
  display: none;
}
.contact-form-status.success { display: block; color: var(--green-bright); }
.contact-form-status.error { display: block; color: #c44; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-mockup { margin-top: 2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .prayer-grid { grid-template-columns: repeat(3, 1fr); }
  .community { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; max-width: 400px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.6rem; }
  .features-grid { grid-template-columns: 1fr; }
  .prayer-grid { grid-template-columns: repeat(2, 1fr); }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 42px; 
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.logo-text h1 {
  margin: 0;
  font-size: 20px;
  color: #0a2e1a;
  font-weight: 700;
}
.logo-text p {
  margin: 2px 0 0;
  font-size: 11px;
  color: #666;
  line-height: 1.2;
}
.logo-texte h1 {
  margin: 0;
  font-size: 20px;
  color: #748677;
  font-weight: 500;
}
.logo-texte p {
  margin: 2px 0 0;
  font-size: 11px;
  color: #748677;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .logo-text p { display: none; } 
  .logo-text h1 { font-size: 17px; }
  .nav-logo img { width: 34px; height: 34px; }
}
/* --- PRAYER SHOWCASE additions (new) --- */
.prayer-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3rem;
}
.prayer-features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.pf-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pf-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(79,214,138,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.pf-text h4 {
  font-family: 'DM Sans', sans-serif;
  color: var(--cream);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.pf-text p {
  color: rgba(253,248,239,0.6);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}
.prayer-phone { display: flex; justify-content: center; }
.prayer-phone svg { filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35)); }

@media (max-width: 900px) {
  .prayer-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .prayer-phone { order: -1; }
}