/* =============================================
   MARKAZ ROHANIYAT — styles.css
   Light Islamic Premium Design
   ============================================= */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a2e1a; background: #f8f7f2; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- CSS Variables ---- */
:root {
  --green-dark: #0f2d1a;
  --green-mid: #1a4a2a;
  --green-bright: #2d7a47;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --beige: #f8f7f2;
  --beige-mid: #f0ede6;
  --white: #ffffff;
  --text-dark: #1a2e1a;
  --text-mid: #3a4a3a;
  --text-light: #5a6a5a;
  --text-muted: #8a9a8a;
  --border: #e8e2d9;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --container: 1200px;
  --section-py: 80px;
}

/* ---- Container ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ---- Section Label ---- */
.section-label {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label .line { height: 1px; width: 32px; background: var(--gold); }
.section-label span { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

.section-label.left { justify-content: flex-start; }

/* ---- Section Heading ---- */
.section-heading { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.15; color: var(--text-dark); }

/* ---- Gold divider ---- */
.gold-divider { width: 48px; height: 2px; background: #c8dfd0; margin: 12px 0; }
.gold-divider.centered { margin: 12px auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; border: none; transition: all 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-bright) 100%);
  color: #fff; box-shadow: 0 4px 16px rgba(26,74,42,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,74,42,0.3); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  color: var(--green-dark); box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: #f0f7f2; border: 1px solid #c8dfd0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-arabic { font-family: 'Amiri', serif; font-size: 18px; font-weight: 700; color: var(--green-mid); line-height: 1; direction: rtl; }
.logo-en { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #999; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #555; transition: color 0.2s; }
.nav-link:hover { color: var(--green-mid); }
.nav-cta {
  padding: 10px 20px; border-radius: 9px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: #fff; transition: all 0.2s ease;
}
.nav-cta:hover { box-shadow: 0 4px 16px rgba(26,74,42,0.3); transform: translateY(-1px); }

.hamburger {
  display: none; background: none; border: none; padding: 6px;
  color: var(--green-mid); cursor: pointer;
}
.hamburger svg { width: 24px; height: 24px; }

.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 0 16px; border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link { display: block; padding: 10px 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #555; border-radius: 8px; transition: all 0.15s; }
.mobile-nav-link:hover { color: var(--green-mid); background: #f0f7f2; }
.mobile-nav-cta {
  margin: 8px 16px 0; display: block; text-align: center; padding: 12px;
  border-radius: 10px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright)); color: #fff;
}

@media (max-width: 767px) { .nav { display: none; } .hamburger { display: block; } }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 72px;
  background-image: url("https://images.unsplash.com/photo-1584551246679-0daf3d275d0f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=85"),
                    url("https://images.pexels.com/photos/3822722/pexels-photo-3822722.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0a1a0e;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,22,12,0.88) 0%, rgba(8,22,12,0.78) 50%, rgba(8,22,12,0.55) 100%);
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 112px;
  background: linear-gradient(to top, #f8f7f2, transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 80px 0 100px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-eyebrow .line { height: 1px; width: 32px; background: var(--gold); }
.hero-eyebrow span { font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.hero h1 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.08; color: #fff; font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 20px; }
.hero h1 .gold { color: var(--gold-light); }
.hero-scholar { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.hero-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.62); margin-bottom: 32px; max-width: 520px; font-weight: 300; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 24px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.45); }

/* =============================================
   ABOUT
   ============================================= */
.about { padding: var(--section-py) 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-frame {
  position: absolute; inset: 0; border-radius: 20px;
  border: 2px solid var(--gold); opacity: 0.22;
  transform: translate(12px, 12px);
}
.about-image-inner { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-md); }
.about-image-inner img { width: 100%; height: auto; display: block; object-fit: contain; }
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--text-dark); margin: 0; }
.about-text { font-size: 15px; line-height: 1.75; color: var(--text-light); }
.about-creds { display: flex; flex-direction: column; gap: 10px; }
.about-cred { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #4a5a4a; }
.about-cred-icon { width: 18px; height: 18px; color: var(--green-mid); flex-shrink: 0; margin-top: 1px; }
.about-stats { display: flex; gap: 32px; padding-top: 16px; border-top: 1px solid var(--border); }
.about-stat-n { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--green-mid); }
.about-stat-l { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: #999; margin-top: 3px; }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* =============================================
   SERVICES
   ============================================= */
.services { padding: var(--section-py) 0; background: var(--beige); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #c8dfd0; }
.service-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 22px; height: 22px; }
.service-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--text-dark); }
.service-desc { font-size: 13px; line-height: 1.65; color: var(--text-light); flex-grow: 1; }
.service-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px; border-radius: 9px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: #fff; margin-top: 4px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  transition: all 0.2s ease;
}
.service-btn:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,74,42,0.25); }

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* =============================================
   TRUST SIGNALS
   ============================================= */
.trust { padding: 64px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.trust-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: var(--border);
}
.trust-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; background: #f0f7f2; border: 1px solid #c8dfd0; transition: transform 0.3s; }
.trust-icon:hover { transform: scale(1.08); }
.trust-icon svg { width: 24px; height: 24px; color: var(--green-mid); }
.trust-value { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--green-mid); line-height: 1.1; margin-bottom: 4px; }
.trust-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dark); margin-bottom: 3px; }
.trust-sub { font-size: 11px; color: #999; }

@media (max-width: 767px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:not(:last-child)::after { display: none; }
}

/* =============================================
   SERVICE SHOWCASE
   ============================================= */
.showcase { padding: var(--section-py) 0; background: var(--beige); }
.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.showcase-card {
  position: relative; border-radius: 20px; overflow: hidden;
  min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--border); transition: all 0.3s ease;
}
.showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.showcase-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.showcase-card:hover img { transform: scale(1.05); }
.showcase-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,18,8,0.92) 0%, rgba(5,18,8,0.5) 55%, rgba(5,18,8,0.15) 100%); }
.showcase-body { position: relative; z-index: 2; padding: 28px; }
.showcase-line { width: 32px; height: 2px; background: var(--gold); margin-bottom: 14px; transition: width 0.3s; }
.showcase-card:hover .showcase-line { width: 52px; }
.showcase-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.showcase-tagline { font-size: 12px; font-weight: 500; color: #c8e0d0; margin-bottom: 4px; }
.showcase-desc { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.showcase-link { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.showcase-link:hover { color: var(--gold-light); }
.showcase-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.showcase-link:hover svg { transform: translateX(3px); }

@media (max-width: 767px) { .showcase-grid { grid-template-columns: 1fr; } }

/* =============================================
   ALTERNATING SECTIONS
   ============================================= */
.alternating { padding: var(--section-py) 0; background: #fff; }
.alt-section { display: flex; align-items: center; gap: 64px; margin-bottom: 80px; }
.alt-section:last-child { margin-bottom: 0; }
.alt-section.reversed { flex-direction: row-reverse; }
.alt-image { width: 50%; flex-shrink: 0; position: relative; }
.alt-image-border { position: absolute; inset: 0; border-radius: 20px; border: 2px solid var(--gold); opacity: 0.22; transition: all 0.3s; }
.alt-section:not(.reversed) .alt-image-border { transform: translate(10px, 10px); }
.alt-section.reversed .alt-image-border { transform: translate(-10px, 10px); }
.alt-image-inner { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-md); }
.alt-image-inner img { width: 100%; height: auto; display: block; object-fit: contain; }
.alt-text { width: 50%; display: flex; flex-direction: column; gap: 16px; }
.alt-number { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 700; color: var(--green-mid); opacity: 0.07; line-height: 1; margin-bottom: -8px; }
.alt-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.alt-body { font-size: 15px; line-height: 1.8; color: var(--text-light); }
.alt-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green-mid); transition: color 0.2s; }
.alt-link:hover { color: var(--gold); }
.alt-link svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .alt-section, .alt-section.reversed { flex-direction: column; gap: 32px; }
  .alt-image, .alt-text { width: 100%; }
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why { padding: var(--section-py) 0; background: var(--beige); border-top: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-heading { font-size: clamp(1.8rem, 3vw, 2.3rem); margin-bottom: 16px; }
.why-intro { font-size: 15px; line-height: 1.75; color: var(--text-light); margin-bottom: 28px; }
.why-cards { display: flex; flex-direction: column; gap: 14px; }
.why-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  transition: all 0.25s ease;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.why-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-card-icon svg { width: 20px; height: 20px; }
.why-card-title { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.why-card-desc { font-size: 12px; line-height: 1.6; color: var(--text-light); }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: var(--section-py) 0; background: var(--beige); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; transition: all 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.testimonial-quote { font-size: 14px; line-height: 1.75; color: var(--text-light); font-style: italic; margin-bottom: 20px; }
.testimonial-footer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--beige-mid); }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: #f0f7f2; color: var(--green-mid); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.testimonial-country { font-size: 11px; color: #999; margin-top: 1px; }

@media (max-width: 767px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* =============================================
   FAQ
   ============================================= */
.faq { padding: var(--section-py) 0; background: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: #fff; transition: border-color 0.2s;
}
.faq-item.open { border-color: #c8dfd0; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; text-align: left; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--text-dark); gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green-mid); }
.faq-item.open .faq-question { color: var(--green-mid); }
.faq-chevron { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 13px; line-height: 1.75; color: var(--text-light); }

/* =============================================
   CONTACT
   ============================================= */
.contact { padding: var(--section-py) 0; background: var(--beige); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-intro { font-size: 15px; line-height: 1.75; color: var(--text-light); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 12px; background: #f0f7f2; border: 1px solid #c8dfd0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 16px; height: 16px; color: var(--green-mid); }
.contact-detail-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: #bbb; margin-bottom: 2px; }
.contact-detail-value { font-size: 13px; font-weight: 500; color: var(--text-dark); }
a .contact-detail-value:hover { color: var(--green-mid); }
.contact-btns { display: flex; gap: 12px; }
.contact-form-wrap {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 32px 28px; box-shadow: var(--shadow-sm);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: #aaa; }
.form-input, .form-textarea {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-dark);
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(26,74,42,0.08); }
.form-input::placeholder, .form-textarea::placeholder { color: #bbb; }
.form-textarea { resize: none; min-height: 110px; }
.form-submit {
  width: 100%; padding: 14px; border: none; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; color: #fff; cursor: pointer;
  background: #25D366; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s ease;
}
.form-submit:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--green-dark); padding-top: 0; }
.footer-gold-bar { height: 3px; background: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold) 75%, transparent); }
.footer-inner { padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-arabic { font-family: 'Amiri', serif; font-size: 26px; font-weight: 700; color: var(--gold); direction: rtl; margin-bottom: 4px; }
.footer-brand-en { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-about { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 240px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: all 0.2s ease;
}
.footer-social:hover { background: var(--gold); color: var(--green-dark); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }
.footer-contacts { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); margin-bottom: 2px; }
.footer-contact-value { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
a .footer-contact-value { }
.footer-contact-item a:hover .footer-contact-value { color: var(--gold); }
.footer-bottom { padding: 20px 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.2); max-width: 480px; line-height: 1.5; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.floating-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s ease;
}
.floating-wa:hover { transform: scale(1.1); }
.floating-wa svg { width: 28px; height: 28px; }
.floating-wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; animation: wa-ring 2.5s ease-out infinite; opacity: 0;
}
@keyframes wa-ring { 0% { transform: scale(1); opacity: 0.5; } 80%, 100% { transform: scale(1.7); opacity: 0; } }

/* =============================================
   SECTION DIVIDER
   ============================================= */
.section-divider { display: flex; align-items: center; justify-content: center; padding: 8px 0; }
.section-divider-inner { display: flex; align-items: center; gap: 12px; }
.section-divider-line { height: 1px; width: 48px; background: var(--border); }
.section-divider-gem { width: 8px; height: 8px; border: 1px solid var(--gold); transform: rotate(45deg); opacity: 0.5; }

/* =============================================
   TEXT CENTER SECTION
   ============================================= */
.section-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.section-header .section-heading { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.section-header p { font-size: 14px; line-height: 1.75; color: var(--text-light); }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767px) {
  :root { --section-py: 56px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
}
