/* ================================================
   BESTROHANIILAJ.COM — PURE CSS STYLESHEET
   Brand: Syed Salman Abbas Shah Hashmi
   ================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary: #1a6b3c;
  --primary-dark: #145430;
  --primary-light: #e8f5ee;
  --accent: #d4af37;
  --accent-hover: #c9a42e;
  --white: #ffffff;
  --bg: #fafaf8;
  --card-bg: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --whatsapp: #25D366;
  --whatsapp-dark: #1db954;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(26,107,60,0.08);
  --shadow-lg: 0 8px 40px rgba(26,107,60,0.15);
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-display: 'Georgia', 'Palatino Linotype', serif;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- ISLAMIC PATTERNS ---------- */
.pattern-bg {
  background-color: var(--primary);
  background-image:
    repeating-linear-gradient(45deg, rgba(212,175,55,0.06) 0, rgba(212,175,55,0.06) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(212,175,55,0.06) 0, rgba(212,175,55,0.06) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.pattern-bg-light {
  background-color: var(--primary-light);
  background-image:
    repeating-linear-gradient(45deg, rgba(26,107,60,0.04) 0, rgba(26,107,60,0.04) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(26,107,60,0.04) 0, rgba(26,107,60,0.04) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

/* ---------- UTILITY ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-lg { padding: 100px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.hidden { display: none !important; }

/* Section Title */
.section-badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.85rem; margin-bottom: 16px;
}
.section-badge::before, .section-badge::after {
  content: ''; display: block; width: 32px; height: 2px; background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: all 0.3s ease;
  border: none; text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: var(--primary);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline {
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 2px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px);
}
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-green {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 16px rgba(26,107,60,0.25);
}
.btn-green:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-wa {
  background: var(--whatsapp); color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.btn-call {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-call:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; border-radius: 10px; }

/* ---------- ANIMATIONS ---------- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: none; }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: none; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,107,60,0.08);
  transition: box-shadow 0.3s ease;
  height: 72px;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(26,107,60,0.12); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  font-size: 1.6rem; color: var(--primary);
}
.nav-logo-text { line-height: 1.15; }
.nav-logo-name {
  font-family: var(--font-display); font-weight: 700;
  color: var(--primary); font-size: 1.1rem;
}
.nav-logo-sub { font-size: 0.7rem; color: var(--text-muted); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px; color: var(--text);
  font-weight: 500; font-size: 0.9rem; transition: all 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }

/* Services Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle {
  display: flex; align-items: center; gap: 4px;
  cursor: pointer; padding: 8px 14px; border-radius: 8px;
  color: var(--text); font-weight: 500; font-size: 0.9rem;
  transition: all 0.2s; background: none; border: none; font-family: var(--font-main);
}
.dropdown-toggle:hover { color: var(--primary); background: var(--primary-light); }
.dropdown-toggle svg { transition: transform 0.3s; }
.nav-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%); background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px;
  min-width: 260px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s; transform: translateX(-50%) translateY(8px);
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: var(--text); font-size: 0.875rem; font-weight: 500; transition: all 0.2s;
}
.dropdown-item:hover { color: var(--primary); background: var(--primary-light); }

.nav-ctas { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 0.875rem;
}
.nav-wa-btn {
  background: var(--primary); color: var(--white);
  padding: 9px 18px; border-radius: 50px; font-weight: 700;
  font-size: 0.875rem; transition: all 0.2s;
}
.nav-wa-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

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

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  z-index: 999; padding: 16px 20px 24px; max-height: calc(100vh - 72px); overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: block; padding: 12px 16px; border-radius: 8px;
  color: var(--text); font-weight: 500; font-size: 1rem;
  transition: all 0.2s; margin-bottom: 4px;
}
.mobile-nav-link:hover { color: var(--primary); background: var(--primary-light); }
.mobile-nav-group-title {
  font-weight: 700; color: var(--primary); padding: 12px 16px 6px;
  font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.mobile-nav-sub {
  padding-left: 12px; border-left: 2px solid var(--primary-light); margin: 4px 0 4px 16px;
}
.mobile-nav-ctas {
  display: flex; gap: 10px; padding: 16px 0 0; border-top: 1px solid var(--border); margin-top: 12px;
}
.mobile-nav-ctas a { flex: 1; text-align: center; }

/* ---------- HERO ---------- */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom right, transparent 49%, var(--bg) 50%);
}
.hero-inner {
  position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto;
}
.hero-bismillah {
  display: inline-block; padding: 8px 24px; border-radius: 50px;
  border: 1px solid rgba(212,175,55,0.5); background: rgba(255,255,255,0.08);
  color: var(--accent); font-size: 1.5rem; font-family: 'Noto Nastaliq Urdu', serif;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  margin-bottom: 24px;
}
.hero-title .gold { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 40px;
  font-weight: 300;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-wrap {
  position: relative; max-width: 440px; margin: 0 auto;
}
.about-img {
  width: 100%; border-radius: 24px; border: 4px solid rgba(212,175,55,0.3);
  box-shadow: var(--shadow-lg); object-fit: cover; display: block;
  max-height: 480px; object-position: center top;
}
.about-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,107,60,0.85), transparent);
  border-radius: 0 0 20px 20px; padding: 24px 20px 20px;
  color: var(--white); text-align: center;
}
.about-img-caption h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.about-img-caption p { font-size: 0.8rem; opacity: 0.85; margin-top: 4px; }
.about-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 16px; }
.about-badge::before { content: ''; display: block; width: 32px; height: 2px; background: var(--accent); }
.about-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 20px; }
.about-text { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--accent); box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px; background: var(--primary-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px; transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--primary); }
.service-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 12px; transition: color 0.2s; }
.service-card:hover .service-title { color: var(--primary); }
.service-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; flex: 1; margin-bottom: 24px; }
.service-btns { display: flex; gap: 10px; }
.service-btns a { flex: 1; text-align: center; padding: 10px; border-radius: 10px; font-weight: 600; font-size: 0.85rem; transition: all 0.2s; }

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 32px 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow); text-align: center; transition: all 0.3s;
}
.why-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-icon {
  width: 64px; height: 64px; background: var(--primary-light);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem; transition: all 0.3s;
}
.why-card:hover .why-icon { background: var(--primary); }
.why-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.why-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }

/* ---------- HOW IT WORKS ---------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 56px; left: 22%; right: 22%;
  height: 2px; background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.step-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 40px 28px 32px; border: 1px solid var(--border);
  box-shadow: var(--shadow); text-align: center; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-lg); }
.step-num {
  position: absolute; top: 12px; right: 16px;
  font-family: var(--font-display); font-size: 4rem; font-weight: 900;
  color: rgba(26,107,60,0.07); line-height: 1; pointer-events: none;
}
.step-icon {
  width: 56px; height: 56px; background: var(--primary); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem; color: var(--white);
  box-shadow: 0 4px 16px rgba(26,107,60,0.25); position: relative; z-index: 1;
}
.step-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.step-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }

/* ---------- FEATURES (GREEN BG) ---------- */
.features-section {
  background: var(--primary); color: var(--white); padding: 80px 0; position: relative; overflow: hidden;
}
.features-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(212,175,55,0.04) 0, rgba(212,175,55,0.04) 1px, transparent 0, transparent 50%), repeating-linear-gradient(-45deg, rgba(212,175,55,0.04) 0, rgba(212,175,55,0.04) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.features-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 36px; }
.feature-item { display: flex; gap: 20px; margin-bottom: 28px; }
.feature-item:last-child { margin-bottom: 0; }
.feature-icon {
  width: 48px; height: 48px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.3rem;
}
.feature-item h4 { color: var(--accent); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.feature-item p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.features-ornament {
  display: flex; align-items: center; justify-content: center;
}
.ornament-circle {
  width: 220px; height: 220px; border: 12px solid rgba(212,175,55,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.ornament-circle::before {
  content: ''; position: absolute; inset: 8px; border: 3px solid rgba(212,175,55,0.5); border-radius: 50%;
  animation: spin 12s linear infinite;
  border-top-color: transparent;
}
.ornament-circle span { font-size: 5rem; color: var(--accent); opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- IMAGE CTA ---------- */
.images-row {
  display: flex; gap: 24px; align-items: stretch; margin-bottom: 48px;
}
.img-card {
  flex: 1; min-width: 0; background: var(--white);
  border-radius: var(--radius); border: 3px solid var(--white);
  box-shadow: var(--shadow-lg); overflow: hidden; transition: transform 0.3s;
  display: flex; align-items: center; justify-content: center;
  min-height: 300px;
}
.img-card:hover { transform: translateY(-4px); }
.img-card img {
  width: 100%; height: auto; object-fit: contain; padding: 12px;
  display: block; max-height: 420px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(212,175,55,0.4); box-shadow: var(--shadow-lg); }
.testi-stars { color: var(--accent); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; font-style: italic; flex: 1; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.875rem; color: var(--text); }

/* ---------- ARTICLE ---------- */
.article-section { background: var(--card-bg); }
.article-wrap { max-width: 800px; margin: 0 auto; }
.article-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--primary); text-align: center; margin-bottom: 36px; line-height: 1.3; }
.article-wrap p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.9; font-size: 1rem; }
.article-wrap h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 36px 0 12px; }
.article-wrap strong { color: var(--text); }
.article-wrap a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article-cta {
  margin-top: 48px; padding: 40px 32px; background: var(--primary-light);
  border-radius: var(--radius); border: 1px solid rgba(26,107,60,0.2); text-align: center;
}
.article-cta h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--primary); margin-bottom: 12px; font-weight: 700; }
.article-cta p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }

/* ---------- FOOTER ---------- */
.footer { background: #0f3d22; color: rgba(255,255,255,0.85); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { font-size: 1.8rem; color: var(--accent); }
.footer-logo-name { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.1rem; line-height: 1.2; }
.footer-brand-desc { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-heading { color: var(--accent); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,0.75); font-size: 0.875rem; }
.footer-wa-btn {
  display: flex; align-items: center; gap: 8px; background: var(--whatsapp);
  color: var(--white); padding: 12px 20px; border-radius: 10px; font-weight: 700;
  font-size: 0.9rem; transition: all 0.2s; margin-top: 16px; width: fit-content;
}
.footer-wa-btn:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 56px; height: 56px; background: var(--whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: all 0.3s;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.float-wa:hover { background: var(--whatsapp-dark); transform: scale(1.1); }
.float-wa svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

/* ---------- SERVICE PAGE ---------- */
.service-hero {
  min-height: 50vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 20px 60px;
}
.service-hero-icon { width: 80px; height: 80px; background: rgba(212,175,55,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
.service-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 700; margin-bottom: 16px; }
.service-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.service-content { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.service-images-row { display: flex; gap: 20px; margin: 40px 0; flex-wrap: wrap; }
.service-images-row .img-card { flex: 1; min-width: 220px; }
.service-body h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--primary); margin-bottom: 16px; font-weight: 700; }
.service-body h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--text); margin: 28px 0 10px; font-weight: 700; }
.service-body p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.service-cta-box { background: var(--primary); border-radius: var(--radius); padding: 40px; text-align: center; margin: 48px 0; }
.service-cta-box h3 { color: var(--white); font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 12px; }
.service-cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.service-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.related-services { margin: 48px 0; }
.related-services h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--primary); margin-bottom: 20px; font-weight: 700; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-link {
  padding: 14px 16px; background: var(--primary-light); border-radius: 10px;
  color: var(--primary); font-weight: 600; font-size: 0.85rem;
  text-align: center; border: 1px solid rgba(26,107,60,0.15); transition: all 0.2s;
}
.related-link:hover { background: var(--primary); color: var(--white); }

/* ---------- FAQ PAGE ---------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; background: var(--card-bg); font-weight: 600; color: var(--text); transition: all 0.2s; font-size: 1rem; }
.faq-question:hover { background: var(--primary-light); color: var(--primary); }
.faq-question.open { background: var(--primary); color: var(--white); }
.faq-arrow { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer.open { max-height: 300px; padding: 20px 24px; }
.faq-answer p { color: var(--text-muted); line-height: 1.8; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-item h4 { font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--text-muted); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--primary); }
.contact-form { background: var(--card-bg); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; color: var(--text); font-size: 0.875rem; margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.95rem; font-family: var(--font-main);
  color: var(--text); background: var(--bg); transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--primary); background: var(--white); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }

/* ---------- ABOUT PAGE ---------- */
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-features { margin-top: 32px; }
.about-feature-item { display: flex; gap: 16px; margin-bottom: 24px; }
.about-feature-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.about-feature-item h4 { font-weight: 700; color: var(--text); margin-bottom: 4px; font-size: 0.95rem; }
.about-feature-item p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .about-page-grid, .features-grid, .contact-grid { grid-template-columns: 1fr; }
  .features-ornament { display: none; }
  .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 60px 0; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid, .testimonials-grid, .why-grid, .steps-grid, .related-grid { grid-template-columns: 1fr; }
  .images-row, .service-images-row { flex-direction: column; }
  .img-card { min-height: 200px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-page-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* =========================================
   FINAL BUTTON TEXT FIX (SAFE & ISOLATED)
   ========================================= */

/* Fix for all green buttons */
.btn-green,
a.btn-green {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important; /* extra fix for browsers */
}

/* Hover fix */
.btn-green:hover,
a.btn-green:hover {
  color: #ffffff !important;
}

/* Ensure button text always visible */
.btn-green span,
.btn-green strong {
  color: #ffffff !important;
}

/* Fix for anchor inside article (important override) */
.article-cta a.btn-green {
  color: #ffffff !important;
}
