@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600&family=Noto+Nastaliq+Urdu:wght@400;600;700&display=swap');

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

:root {
  --primary: #0f3d2e;
  --primary-light: #1f6b52;
  --secondary: #d8b889;
  --white: #ffffff;
  --muted: #f4f1eb;
  --text: #0f3d2e;
  --text-muted: rgba(15,61,46,0.70);
  --shadow: 0 4px 24px rgba(15,61,46,0.10);
  --shadow-lg: 0 8px 40px rgba(15,61,46,0.18);
  --radius: 16px;
  --container: 1200px;
}

html { scroll-behavior: smooth; overflow-y: scroll; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15,61,46,0.08);
  box-shadow: 0 2px 16px rgba(15,61,46,0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}
.navbar-logo span { color: var(--secondary); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Regular nav links — exclude the button */
.navbar-links a:not(.navbar-btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.2s;
}
.navbar-links a:not(.navbar-btn):hover,
.navbar-links a:not(.navbar-btn).active { color: var(--secondary); }

/* WhatsApp button — works both inside .navbar-links and .mobile-menu */
.navbar-btn,
a.navbar-btn,
.navbar-links .navbar-btn,
.mobile-menu .navbar-btn {
  display: inline-block;
  background: var(--primary) !important;
  color: var(--secondary) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  line-height: 1.4;
}
.navbar-btn:hover,
a.navbar-btn:hover,
.navbar-links .navbar-btn:hover,
.mobile-menu .navbar-btn:hover {
  background: var(--primary-light) !important;
  color: var(--secondary) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15,61,46,0.25);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--primary);
}
.hamburger svg { display: block; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: #fff;
  border-top: 1px solid rgba(15,61,46,0.08);
  box-shadow: 0 8px 20px rgba(15,61,46,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  padding: 10px 0;
  border-bottom: 1px solid rgba(15,61,46,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--secondary); }
.mobile-menu .navbar-btn { margin-top: 8px; text-align: center; display: block; color: var(--secondary); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--secondary); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,61,46,0.25); }
.btn-gold { background: var(--secondary); color: var(--primary); }
.btn-gold:hover { background: #c9a678; transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; height: 56px; }
.btn-full { width: 100%; }
.btn-rounded { border-radius: 50px; }

/* ===================== SECTION HEADINGS ===================== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-head p { font-size: 1.05rem; color: var(--text-muted); }
.divider { width: 72px; height: 4px; background: var(--secondary); margin: 16px auto 20px; border-radius: 2px; }
.divider-left { margin-left: 0; }

/* ===================== PAGE BANNER ===================== */
.page-banner {
  background: var(--primary);
  padding: 100px 0 64px;
  text-align: center;
}
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}
.page-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.80); max-width: 640px; margin: 0 auto; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,61,46,0.92) 50%, rgba(15,61,46,0.55));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: #fff;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h2 {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

/* ===================== ABOUT PREVIEW ===================== */
.about-preview { padding: 96px 0; background: #fff; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.scholar-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.scholar-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,61,46,0.08);
}
.scholar-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.25;
}
.about-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }

/* ===================== SERVICES GRID ===================== */
.services-section { padding: 96px 0; background: var(--muted); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,61,46,0.18);
  transition: opacity 0.5s;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card:hover .service-card-img::after { opacity: 0; }
.service-card-body { padding: 28px 28px 24px; }
.service-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; }
.service-card-body a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.service-card-body a:hover { color: var(--primary); gap: 10px; }
.services-cta { text-align: center; }

/* ===================== WHY CHOOSE US ===================== */
.why-section { padding: 96px 0; background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: #fff;
  border: 1px solid rgba(15,61,46,0.08);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(15,61,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: rgba(15,61,46,0.15); }
.why-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ===================== STATS ===================== */
.stats-section {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 32px 32px;
}
.stats-head { text-align: center; margin-bottom: 56px; }
.stats-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.stats-divider { width: 72px; height: 4px; background: var(--secondary); margin: 0 auto; border-radius: 2px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.80); font-size: 1rem; font-weight: 500; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { padding: 96px 0; background: var(--muted); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.quote-icon { color: var(--secondary); margin-bottom: 20px; opacity: 0.65; }
.quote-icon svg { width: 32px; height: 32px; fill: var(--secondary); }
.testimonial-text { color: var(--text-muted); font-style: italic; line-height: 1.85; flex: 1; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.author-country { font-size: 0.85rem; color: var(--secondary); font-weight: 600; }

/* ===================== FINAL CTA ===================== */
.final-cta {
  padding: 96px 0;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 40px 40px;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.final-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.80); max-width: 560px; margin: 0 auto 40px; }
.final-cta .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.80);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  margin-bottom: 16px;
}
.footer-about { font-size: 0.92rem; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-btn:hover { background: var(--secondary); color: var(--primary); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.footer-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.92rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.footer-contact-list li svg { width: 16px; height: 16px; fill: var(--secondary); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
}

/* ===================== ABOUT PAGE ===================== */
.about-detail { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.about-img-sticky { position: sticky; top: 100px; }
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-wrap::after { content: ''; position: absolute; inset: 0; background: rgba(15,61,46,0.08); }
.about-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.about-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 48px;
  margin-bottom: 14px;
}
.about-text p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.85; margin-bottom: 18px; }
.about-list { margin: 16px 0 16px 4px; }
.about-list li { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 14px; padding-left: 4px; }
.about-list li strong { color: var(--primary); }
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
  border-top: 1px solid rgba(15,61,46,0.12);
  padding-top: 32px;
  margin: 40px 0 32px;
}

/* ===================== SERVICES PAGE ===================== */
.services-detail { padding: 80px 0; }
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}
.service-detail-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-detail-card .service-card-img { aspect-ratio: 4/3; }
.service-detail-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-detail-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-detail-divider { width: 40px; height: 3px; background: var(--secondary); border-radius: 2px; margin-bottom: 14px; }
.service-detail-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; flex: 1; margin-bottom: 24px; }
.services-footer-cta { background: #fff; padding: 80px 0; border-top: 1px solid rgba(15,61,46,0.08); text-align: center; }
.services-footer-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.services-footer-cta p { color: var(--text-muted); max-width: 560px; margin: 0 auto 32px; }

/* ===================== ISTIKHARA PAGE ===================== */
.urdu-banner {
  background: var(--primary);
  padding: 100px 24px 64px;
  text-align: center;
}
.urdu-banner h1 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
  direction: rtl;
  line-height: 1.6;
}
.urdu-banner p {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  direction: rtl;
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
}
.istikhara-form-wrap { padding: 64px 0 80px; background: var(--muted); }
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid rgba(15,61,46,0.08);
}
.form-card-title {
  text-align: center;
  margin-bottom: 36px;
}
.form-card-title h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.form-card-title p { color: var(--text-muted); font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; color: var(--primary); font-size: 0.9rem; margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  height: 48px;
  border: 1.5px solid #e0ddd6;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--primary);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group textarea { height: auto; min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(216,184,137,0.18);
}
.form-group .error-msg { color: #c0392b; font-size: 0.82rem; margin-top: 5px; display: none; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: #c0392b; }
.form-group.has-error .error-msg { display: block; }
.form-note { text-align: center; font-size: 0.82rem; color: rgba(15,61,46,0.45); margin-top: 16px; }

/* ===================== CONTACT PAGE ===================== */
.contact-section { padding: 80px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1100px; margin: 0 auto; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.contact-info p { color: var(--text-muted); margin-bottom: 48px; line-height: 1.85; }
.contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
  color: var(--primary);
}
.contact-item:hover .contact-icon { background: var(--primary); color: var(--secondary); }
.contact-icon.whatsapp { color: #25D366; }
.contact-item:hover .contact-icon.whatsapp { background: #25D366; color: #fff; }
.contact-icon svg { width: 22px; height: 22px; fill: currentColor; }
.contact-item-text h3 { font-weight: 700; color: var(--primary); font-size: 1.05rem; margin-bottom: 4px; }
.contact-item-text a { color: var(--text-muted); font-size: 1rem; transition: color 0.2s; }
.contact-item-text a:hover { color: var(--secondary); }
.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid rgba(15,61,46,0.08);
}
.contact-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 28px; }

/* ===================== FLOATING WHATSAPP ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ===================== FADE-IN ANIMATIONS ===================== */
/* Opacity-only transitions — no transform, so elements never shift position on load */
.fade-in,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.75s ease;
}
.fade-in.visible,
.fade-left.visible,
.fade-right.visible { opacity: 1; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.42s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-content h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .final-cta .btn-group .btn { width: 100%; }
}
