/*
Theme Name: IQRA Hifz Academy
Theme URI: https://iqrahifzacademy.org
Author: IQRA Hifz Academy
Author URI: https://iqrahifzacademy.org
Description: A professional, beautiful theme for IQRA Hifz Academy - Full-Time Hifz Program. Built with teal and gold branding, featuring animated sections, FAQ accordion, enrollment form, and complete Islamic educational program presentation.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: iqra-hifz
Tags: education, islamic, one-page, custom-colors, custom-logo, full-width-template
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --teal:       #0f4652;
  --teal-light: #1a6478;
  --teal-dark:  #0a2f3a;
  --gold:       #c9a32d;
  --gold-light: #e8c96a;
  --gold-pale:  #f5ecc8;
  --cream:      #fdf9f0;
  --white:      #ffffff;
  --text-dark:  #1a2e35;
  --text-mid:   #3d5a62;
  --text-light: #7a9ba4;
  --border:     rgba(201,163,45,0.2);
  --radius:     12px;
  --shadow-sm:  0 2px 12px rgba(15,70,82,0.08);
  --shadow-md:  0 8px 32px rgba(15,70,82,0.12);
  --shadow-lg:  0 20px 60px rgba(15,70,82,0.16);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:var(--cream);
  color:var(--text-dark);
  overflow-x:hidden;
  line-height:1.6;
}
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family:'Cormorant Garamond', Georgia, serif;
  line-height:1.15;
  color:var(--teal-dark);
}
.serif { font-family:'Cormorant Garamond', Georgia, serif; }
.section-label {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.16em;
  color:var(--gold);
  font-weight:700;
  font-family:'Outfit', sans-serif;
  display:block;
  margin-bottom:14px;
}
.section-title {
  font-size:clamp(34px,4vw,56px);
  font-weight:400;
  color:var(--teal-dark);
  line-height:1.12;
  margin-bottom:18px;
}
.section-title em { font-style:italic; color:var(--teal); }
.section-desc {
  font-size:17px;
  color:var(--text-mid);
  line-height:1.78;
  font-weight:300;
  max-width:620px;
}
.gold-divider {
  height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  max-width:180px;
  margin:0 auto 48px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width:1200px; margin:0 auto; padding:0 32px; }
section { padding:96px 0; }
.text-center { text-align:center; }
.text-center .section-desc { margin:0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--gold);
  color:var(--teal-dark);
  padding:16px 36px;
  border-radius:6px;
  font-weight:700;
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-family:'Outfit',sans-serif;
  transition:all var(--transition);
}
.btn-primary:hover {
  background:var(--gold-light);
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(201,163,45,0.35);
}
.btn-outline {
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1.5px solid rgba(255,255,255,0.4);
  color:var(--white);
  padding:16px 36px;
  border-radius:6px;
  font-weight:500;
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-family:'Outfit',sans-serif;
  transition:all var(--transition);
}
.btn-outline:hover { border-color:var(--gold-light); color:var(--gold-light); }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#iqra-nav {
  position:fixed;
  top:0; left:0; right:0;
  z-index:9999;
  background:rgba(15,70,82,0.97);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(201,163,45,0.22);
  height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 48px;
  transition:box-shadow var(--transition);
}
#iqra-nav.scrolled { box-shadow:0 4px 32px rgba(0,0,0,0.28); }
.nav-logo { display:flex; align-items:center; }
.site-logo-svg {
  height:80px;
  width:auto;
  display:block;
  background:#ffffff;
  border-radius:8px;
  padding:6px 10px;
}
.nav-links {
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-links a {
  color:rgba(255,255,255,0.78);
  font-size:13px;
  font-weight:500;
  letter-spacing:0.05em;
  text-transform:uppercase;
  font-family:'Outfit',sans-serif;
  transition:color var(--transition);
}
.nav-links a:hover { color:var(--gold-light); }
.nav-links .nav-cta {
  background:var(--gold);
  color:var(--teal-dark) !important;
  padding:10px 22px;
  border-radius:4px;
  font-weight:700 !important;
  letter-spacing:0.07em !important;
  transition:background var(--transition) !important;
}
.nav-links .nav-cta:hover { background:var(--gold-light) !important; }
.nav-mobile-toggle {
  display:none;
  flex-direction:column;
  gap:5px;
  padding:4px;
  cursor:pointer;
}
.nav-mobile-toggle span {
  width:24px; height:2px;
  background:var(--white);
  border-radius:2px;
  display:block;
  transition:all var(--transition);
}
.mobile-nav-menu {
  display:none;
  position:fixed;
  top:96px; left:0; right:0;
  background:rgba(10,47,58,0.98);
  padding:24px 32px;
  border-bottom:1px solid rgba(201,163,45,0.2);
  z-index:9998;
  flex-direction:column;
  gap:20px;
}
.mobile-nav-menu.open { display:flex; }
.mobile-nav-menu a {
  color:rgba(255,255,255,0.8);
  font-size:15px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.05em;
  font-family:'Outfit',sans-serif;
  transition:color var(--transition);
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.mobile-nav-menu a:hover { color:var(--gold-light); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height:100vh;
  background:linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, #1a6478 100%);
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:120px 48px 80px;
}
.hero-bg-radial {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 800px 600px at 72% 50%, rgba(201,163,45,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 18% 80%, rgba(201,163,45,0.06) 0%, transparent 70%);
}
.hero-pattern {
  position:absolute; inset:0; opacity:0.04; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a32d' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
/* Two-column hero layout */
.hero-inner {
  position:relative;
  width:100%;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  animation:fadeUp 0.85s ease both;
}
.hero-left { display:flex; flex-direction:column; max-width:780px; }
/* Removed hero-right — clean single column hero */
.hero-stats-card,
.hero-right,
.hero-stat-item,
.hero-stat-divider,
.hero-info-box,
.hero-info-time,
.hero-info-sub,
.hero-info-label,
.hero-ideal-list { display:none !important; }
.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(201,163,45,0.14);
  border:1px solid rgba(201,163,45,0.4);
  border-radius:100px;
  padding:8px 20px;
  margin-bottom:28px;
  color:var(--gold-light);
  font-size:12px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-family:'Outfit',sans-serif;
  align-self:flex-start;
}
.hero-badge::before {
  content:'';
  width:6px; height:6px;
  background:var(--gold);
  border-radius:50%;
  animation:pulse 2s infinite;
}
.hero-left h1 {
  font-size:clamp(42px,5vw,76px);
  font-weight:300;
  color:var(--white);
  line-height:1.08;
  margin-bottom:14px;
  letter-spacing:-0.01em;
}
.hero-left h1 em { font-style:italic; color:var(--gold-light); }
.hero-ayah {
  font-family:'Cormorant Garamond',serif;
  font-size:19px;
  font-style:italic;
  color:rgba(255,255,255,0.72);
  margin-bottom:6px;
  line-height:1.55;
}
.hero-ayah-ref {
  font-size:12px;
  color:var(--gold-light);
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:28px;
  opacity:0.8;
  font-family:'Outfit',sans-serif;
}
.hero-desc {
  font-size:17px;
  color:rgba(255,255,255,0.72);
  line-height:1.72;
  margin-bottom:40px;
  font-weight:300;
}
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:48px; }

/* Clean stat pills below the buttons */
.hero-pills {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:0;
}
.hero-pill {
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(201,163,45,0.3);
  border-radius:100px;
  padding:10px 20px;
}
.hero-pill-num {
  font-family:'Cormorant Garamond',serif;
  font-size:22px;
  font-weight:600;
  color:var(--gold-light);
  line-height:1;
}
.hero-pill-label {
  font-size:12px;
  color:rgba(255,255,255,0.65);
  text-transform:uppercase;
  letter-spacing:0.07em;
  font-family:'Outfit',sans-serif;
}

/* Hero mobile */
@media (max-width:900px) {
  #hero { padding:110px 24px 60px; }
  .hero-inner { max-width:100%; }
  .hero-pills { gap:8px; }
  .hero-pill { padding:8px 14px; }
}

/* ============================================================
   VERSE BANNER
   ============================================================ */
#verse-banner {
  background:linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding:64px 32px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
#verse-banner::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 600px 300px at 50% 50%, rgba(201,163,45,0.1) 0%, transparent 70%);
  pointer-events:none;
}
.verse-arabic {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(26px,4vw,44px);
  font-style:italic;
  color:var(--gold-light);
  margin-bottom:16px;
  position:relative;
  line-height:1.5;
}
.verse-translation {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(18px,2.5vw,28px);
  color:rgba(255,255,255,0.85);
  font-style:italic;
  position:relative;
  margin-bottom:12px;
  line-height:1.5;
}
.verse-ref {
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold);
  position:relative;
  font-family:'Outfit',sans-serif;
  font-weight:600;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background:var(--cream); }
.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  margin-top:64px;
}
.about-text p {
  font-size:16px;
  color:var(--text-mid);
  line-height:1.82;
  margin-bottom:20px;
  font-weight:300;
}
.quote-block {
  border-left:3px solid var(--gold);
  padding:20px 28px;
  background:rgba(201,163,45,0.06);
  border-radius:0 8px 8px 0;
  margin:32px 0;
}
.quote-block p {
  font-family:'Cormorant Garamond',serif;
  font-size:20px;
  font-style:italic;
  color:var(--teal);
  line-height:1.65;
  margin:0;
}
.quote-block cite {
  display:block;
  font-size:11px;
  font-style:normal;
  color:var(--gold);
  margin-top:10px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-family:'Outfit',sans-serif;
  font-weight:600;
}
.why-cards { display:flex; flex-direction:column; gap:18px; }
.why-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  transition:all var(--transition);
}
.why-card:hover {
  border-color:rgba(201,163,45,0.5);
  transform:translateX(4px);
  box-shadow:var(--shadow-sm);
}
.why-icon {
  width:48px; height:48px;
  background:linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:22px;
}
.why-card h4 {
  font-family:'Cormorant Garamond',serif;
  font-size:20px;
  font-weight:600;
  color:var(--teal-dark);
  margin-bottom:5px;
}
.why-card p { font-size:14px; color:var(--text-mid); line-height:1.65; font-weight:300; }

/* ============================================================
   PROGRAM / SCHEDULE SECTION
   ============================================================ */
#program {
  background:var(--teal-dark);
  position:relative;
  overflow:hidden;
}
#program::before {
  content:'';
  position:absolute;
  top:-100px; right:-100px;
  width:500px; height:500px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(201,163,45,0.08) 0%, transparent 70%);
  pointer-events:none;
}
#program .section-title { color:var(--white); }
#program .section-desc { color:rgba(255,255,255,0.6); }
.highlights-row {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-radius:16px;
  overflow:hidden;
  margin-top:56px;
  border:1px solid rgba(201,163,45,0.2);
}
.highlight-cell {
  padding:36px 24px;
  border-right:1px solid rgba(201,163,45,0.15);
  background:rgba(255,255,255,0.04);
  text-align:center;
}
.highlight-cell:last-child { border-right:none; }
.highlight-cell .num {
  font-family:'Cormorant Garamond',serif;
  font-size:48px;
  font-weight:600;
  color:var(--gold-light);
  line-height:1;
  margin-bottom:8px;
}
.highlight-cell .lbl {
  font-size:12px;
  color:rgba(255,255,255,0.5);
  text-transform:uppercase;
  letter-spacing:0.09em;
  font-family:'Outfit',sans-serif;
}
.schedule-block {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(201,163,45,0.2);
  border-radius:16px;
  padding:40px;
  margin-top:48px;
}
.schedule-block h3 {
  font-family:'Cormorant Garamond',serif;
  font-size:28px;
  color:var(--gold-light);
  margin-bottom:36px;
  font-weight:400;
}
.timeline-item {
  display:flex;
  gap:24px;
  align-items:stretch;
}
.timeline-time {
  min-width:120px;
  text-align:right;
  padding:18px 0;
}
.timeline-time span {
  font-family:'Cormorant Garamond',serif;
  font-size:16px;
  font-weight:600;
  color:var(--gold-light);
}
.timeline-connector {
  display:flex;
  flex-direction:column;
  align-items:center;
  width:28px;
  flex-shrink:0;
}
.timeline-dot {
  width:12px; height:12px;
  background:var(--gold);
  border-radius:50%;
  margin-top:22px;
  flex-shrink:0;
}
.timeline-line { width:2px; flex:1; background:rgba(201,163,45,0.25); }
.timeline-item:last-child .timeline-line { display:none; }
.timeline-content { flex:1; padding:14px 0 22px; }
.timeline-content h4 {
  font-family:'Cormorant Garamond',serif;
  font-size:19px;
  color:var(--white);
  margin-bottom:4px;
}
.timeline-content p { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.62; font-weight:300; }

/* ============================================================
   CURRICULUM
   ============================================================ */
#curriculum { background:var(--white); }
.curriculum-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top:56px;
}
.curriculum-card {
  border:1px solid rgba(15,70,82,0.1);
  border-radius:16px;
  padding:36px 28px;
  position:relative;
  overflow:hidden;
  background:var(--cream);
  transition:all var(--transition);
}
.curriculum-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  transform:scaleX(0);
  transition:transform var(--transition);
  transform-origin:left;
}
.curriculum-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:transparent;
}
.curriculum-card:hover::before { transform:scaleX(1); }
.curriculum-num {
  font-family:'Cormorant Garamond',serif;
  font-size:60px;
  font-weight:300;
  color:rgba(15,70,82,0.08);
  line-height:1;
  margin-bottom:14px;
}
.curriculum-card h3 {
  font-family:'Cormorant Garamond',serif;
  font-size:23px;
  font-weight:600;
  color:var(--teal-dark);
  margin-bottom:9px;
}
.curriculum-card p { font-size:14px; color:var(--text-mid); line-height:1.72; font-weight:300; }

/* ============================================================
   MOTIVATION
   ============================================================ */
#motivation {
  background:linear-gradient(135deg,#f5ecc8 0%,var(--cream) 100%);
  text-align:center;
}
.big-quote {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(26px,4vw,46px);
  font-style:italic;
  color:var(--teal);
  line-height:1.42;
  margin-bottom:24px;
  font-weight:400;
  max-width:800px;
  margin:0 auto 24px;
}
.big-quote strong { color:var(--gold); font-style:normal; font-weight:700; }
.motivation-source {
  font-size:13px;
  color:var(--text-light);
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-family:'Outfit',sans-serif;
}
.honour-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:56px;
}
.honour-card {
  background:var(--white);
  border-radius:var(--radius);
  padding:32px;
  border:1px solid rgba(15,70,82,0.1);
  transition:all var(--transition);
}
.honour-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.honour-emoji { font-size:34px; margin-bottom:16px; }
.honour-card h4 {
  font-family:'Cormorant Garamond',serif;
  font-size:21px;
  color:var(--teal-dark);
  margin-bottom:10px;
}
.honour-card p { font-size:14px; color:var(--text-mid); line-height:1.72; font-weight:300; }

/* ============================================================
   FEATURES
   ============================================================ */
#features { background:var(--cream); }
.features-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  margin-top:56px;
}
.feature-item {
  background:var(--white);
  border-radius:16px;
  padding:38px;
  border:1px solid rgba(15,70,82,0.08);
  display:flex;
  gap:22px;
  transition:all var(--transition);
}
.feature-item:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.feature-emoji { font-size:36px; flex-shrink:0; line-height:1; margin-top:2px; }
.feature-item h3 {
  font-family:'Cormorant Garamond',serif;
  font-size:22px;
  font-weight:600;
  color:var(--teal-dark);
  margin-bottom:8px;
}
.feature-item p { font-size:15px; color:var(--text-mid); line-height:1.72; font-weight:300; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background:var(--white); }
.faq-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:56px;
}
.faq-item {
  border:1px solid rgba(15,70,82,0.1);
  border-radius:var(--radius);
  overflow:hidden;
  transition:border-color var(--transition);
}
.faq-item.open { border-color:rgba(201,163,45,0.5); }
.faq-question {
  padding:22px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  background:var(--cream);
  gap:14px;
  transition:background var(--transition);
}
.faq-item.open .faq-question { background:var(--teal-dark); }
.faq-question h4 {
  font-family:'Cormorant Garamond',serif;
  font-size:17px;
  font-weight:600;
  color:var(--teal-dark);
  line-height:1.35;
  transition:color var(--transition);
}
.faq-item.open .faq-question h4 { color:var(--white); }
.faq-toggle {
  width:28px; height:28px;
  background:var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:18px;
  color:var(--teal-dark);
  font-weight:700;
  line-height:1;
  transition:transform 0.32s ease;
}
.faq-item.open .faq-toggle { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.42s ease; }
.faq-item.open .faq-answer { max-height:420px; }
.faq-answer-inner {
  padding:18px 26px 26px;
  font-size:15px;
  color:var(--text-mid);
  line-height:1.78;
  font-weight:300;
  border-top:1px solid rgba(15,70,82,0.06);
}

/* ============================================================
   ENROLLMENT
   ============================================================ */
#enroll {
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-dark) 100%);
  position:relative;
  overflow:hidden;
  text-align:center;
}
#enroll::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 800px 400px at 50% 50%,rgba(201,163,45,0.1) 0%,transparent 70%);
  pointer-events:none;
}
#enroll .section-title { color:var(--white); }
#enroll .section-desc { color:rgba(255,255,255,0.62); margin:0 auto 48px; }
.enroll-form {
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(201,163,45,0.25);
  border-radius:20px;
  padding:48px;
  max-width:640px;
  margin:0 auto;
  position:relative;
  text-align:left;
}
.enroll-form h3 {
  font-family:'Cormorant Garamond',serif;
  font-size:26px;
  color:var(--gold-light);
  margin-bottom:32px;
  font-weight:400;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.form-group { display:flex; flex-direction:column; gap:7px; margin-bottom:14px; }
.form-group label {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:rgba(255,255,255,0.58);
  font-weight:600;
  font-family:'Outfit',sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:8px;
  padding:13px 17px;
  color:var(--white);
  font-family:'Outfit',sans-serif;
  font-size:15px;
  outline:none;
  transition:border-color var(--transition);
  width:100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--gold); }
.form-group select option { background:var(--teal-dark); color:var(--white); }
.form-group textarea { resize:none; height:100px; }
.form-submit {
  width:100%;
  background:var(--gold);
  color:var(--teal-dark);
  border:none;
  padding:18px;
  border-radius:8px;
  font-family:'Outfit',sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.07em;
  text-transform:uppercase;
  cursor:pointer;
  transition:all var(--transition);
  margin-top:8px;
}
.form-submit:hover {
  background:var(--gold-light);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(201,163,45,0.35);
}
.form-success {
  background:rgba(46,139,87,0.15);
  border:1px solid rgba(46,139,87,0.5);
  border-radius:10px;
  padding:28px;
  text-align:center;
}
.form-success .success-icon { font-size:28px; margin-bottom:12px; }
.form-success h4 {
  color:#7fffd4;
  font-family:'Cormorant Garamond',serif;
  font-size:22px;
  margin-bottom:8px;
}
.form-success p { color:rgba(255,255,255,0.65); font-size:15px; }
.form-error {
  background:rgba(180,50,50,0.15);
  border:1px solid rgba(180,50,50,0.5);
  border-radius:10px;
  padding:20px 26px;
  margin-bottom:24px;
}
.form-error p { color:#ffb3b3; font-size:15px; }
.info-cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:56px;
  position:relative;
}
.info-card {
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(201,163,45,0.2);
  border-radius:var(--radius);
  padding:30px;
  text-align:center;
}
.info-card .icon { font-size:30px; margin-bottom:14px; }
.info-card h4 {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--gold);
  margin-bottom:8px;
  font-weight:700;
  font-family:'Outfit',sans-serif;
}
.info-card p { color:rgba(255,255,255,0.72); font-size:15px; line-height:1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
#iqra-footer {
  background:var(--teal-dark);
  border-top:1px solid rgba(201,163,45,0.15);
  padding:56px 0 28px;
}
.footer-top {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:64px;
  margin-bottom:44px;
}
.footer-brand p {
  font-size:14px;
  color:rgba(255,255,255,0.48);
  line-height:1.78;
  margin-top:18px;
  font-weight:300;
}
.footer-col h5 {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.13em;
  color:var(--gold);
  margin-bottom:18px;
  font-weight:700;
  font-family:'Outfit',sans-serif;
}
.footer-col ul li { margin-bottom:11px; }
.footer-col ul a {
  color:rgba(255,255,255,0.48);
  font-size:14px;
  transition:color var(--transition);
}
.footer-col ul a:hover { color:var(--gold-light); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.07);
  padding-top:26px;
  text-align:center;
}
.footer-bottom p { font-size:13px; color:rgba(255,255,255,0.28); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.8); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .about-grid { gap:48px; }
  .curriculum-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
}
@media (max-width:768px) {
  section { padding:72px 0; }
  #iqra-nav { padding:0 24px; }
  .nav-links { display:none; }
  .nav-mobile-toggle { display:flex; }
  #hero { padding:130px 24px 80px; }
  .hero-stats { position:static; margin-top:48px; gap:28px; }
  .about-grid { grid-template-columns:1fr; gap:40px; margin-top:40px; }
  .highlights-row { grid-template-columns:1fr 1fr; }
  .curriculum-grid { grid-template-columns:1fr; }
  .honour-grid { grid-template-columns:1fr; }
  .features-grid { grid-template-columns:1fr; }
  .faq-grid { grid-template-columns:1fr; }
  .info-cards { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:36px; }
  .form-row { grid-template-columns:1fr; }
  .enroll-form { padding:32px 24px; }
  .schedule-block { padding:28px 20px; }
  .timeline-time { min-width:90px; }
  .hero-stats .stat { text-align:left; }
}
@media (max-width:480px) {
  .container { padding:0 20px; }
  .hero-actions { flex-direction:column; }
  .highlights-row { grid-template-columns:1fr; }
  .highlight-cell { border-right:none; border-bottom:1px solid rgba(201,163,45,0.15); }
  .timeline-item { flex-direction:column; gap:8px; }
  .timeline-time { text-align:left; padding:0; min-width:auto; }
  .timeline-connector { display:none; }
}
