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

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

:root {
  --green: #0d4a2f;
  --green-light: #155e3c;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #faf5ed;
  --white: #ffffff;
  --text: #1a2e25;
  --muted: #6b7c72;
  --border: #d8e8e0;
  --radius: 1rem;
  --shadow: 0 8px 30px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

.font-serif { font-family: 'Playfair Display', serif; }
.font-urdu { font-family: 'Noto Nastaliq Urdu', serif; }

img { width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* HEADER */
header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,245,237,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; gap: 1rem;
}
.logo { text-decoration: none; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--green); line-height: 1.1; display: block;
}
.logo-sub {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold); font-weight: 600;
}

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text); text-decoration: none;
  transition: color 0.2s; position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s;
}
nav a:hover, nav a.active { color: var(--gold); }
nav a:hover::after { width: 100%; }

.nav-btns { display: flex; gap: 0.75rem; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.25rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.2s; border: none;
}
.btn-outline {
  border: 1.5px solid var(--gold); color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--green); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-light); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #128C7E; }
.btn-gold { background: var(--gold); color: var(--green); font-weight: 700; }
.btn-gold:hover { background: var(--gold-light); }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }

.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 20px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  width: 100%; height: 2px; background: var(--green);
  border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-nav {
  display: none; flex-direction: column; gap: 1rem;
  padding: 1rem 0 1.5rem; border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.05rem; font-weight: 600; color: var(--text);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-btns { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }

/* PAGE TOP PADDING */
.page-top { padding-top: 80px; }

/* HERO SLIDER */
.slider-wrap { position: relative; overflow: hidden; background: var(--green); }
.slider-track { display: flex; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.slide { flex: 0 0 100%; min-width: 0; }
.slider-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5);
  cursor: pointer; transition: background 0.3s;
}
.dot.active { background: var(--gold); }
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  color: #fff; border: none; width: 44px; height: 44px;
  border-radius: 50%; font-size: 1.2rem; cursor: pointer;
  transition: background 0.2s; z-index: 5;
}
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,0.3); }

/* SECTIONS */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.section-white { background: #fff; }
.section-green { background: var(--green); color: #fff; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700; color: var(--green); margin-bottom: 0.75rem;
}
.section-title.white { color: #fff; }
.section-urdu {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 1.5rem; color: var(--gold); direction: rtl;
  margin-bottom: 1.25rem;
}
.section-desc { color: var(--muted); font-size: 1.05rem; max-width: 700px; }
.text-center { text-align: center; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* TWO COL LAYOUT */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.two-col.reverse { }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-text { order: -1; }
}

.col-text { display: flex; flex-direction: column; gap: 1rem; }
.col-text .urdu-block {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 1.4rem; color: var(--green);
  direction: rtl; line-height: 2;
}
.col-text p { color: var(--muted); font-size: 1.05rem; }

.img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.img-wrap img { width: 100%; height: auto; display: block; }

/* BADGE */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.12); color: var(--gold);
  border-radius: 50px; padding: 0.3rem 1rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem; display: flex; flex-direction: column;
  gap: 0.6rem; transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow);
}
.service-card:hover { box-shadow: 0 12px 40px rgba(13,74,47,0.1); border-color: var(--gold); }
.service-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(13,74,47,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 0.5rem;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--green); }
.service-card .urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: 0.95rem; color: var(--gold); direction: rtl; }
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; flex: 1; }
.service-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0.5rem;
}
.service-card-footer a { font-size: 0.8rem; font-weight: 700; color: var(--green); text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; }
.service-card-footer a:hover { color: var(--gold); }
.wa-link { color: #25D366 !important; display: flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 780px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.3rem 1.5rem; font-size: 1rem; font-weight: 600;
  color: var(--green); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1.3rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.3rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* CONTACT & CTA */
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.cta-btns.center { justify-content: center; }

/* DISCLAIMER */
.disclaimer {
  background: #f0ede6; text-align: center; padding: 0.9rem 1rem;
  font-size: 0.85rem; color: var(--muted);
}

/* FLOATING WA */
.float-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  background: #25D366; color: #fff; width: 58px; height: 58px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* FOOTER */
footer { background: var(--green); color: rgba(255,255,255,0.8); padding: 4rem 0 2rem; border-top: 5px solid var(--gold); }
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem; margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.footer-logo-sub { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); }
.footer-about { font-size: 0.9rem; margin: 1rem 0; line-height: 1.7; }
.footer-heading {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 600; color: var(--gold); margin-bottom: 1.25rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid rgba(201,168,76,0.3);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 0.75rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* PAGE HEADER */
.page-header {
  background: var(--green); color: #fff;
  padding: 5rem 0 3.5rem; text-align: center;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
}
.page-header .urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: 1.4rem; color: var(--gold); margin-top: 0.5rem; }
.breadcrumb { margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.65); display: flex; justify-content: center; gap: 0.5rem; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* SUBPAGE OTHER SERVICES */
.other-services { background: #fff; padding: 3.5rem 0; }
.other-services h2 { font-family: 'Playfair Display', serif; color: var(--green); margin-bottom: 1.5rem; text-align: center; }
.other-links { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.other-links a {
  padding: 0.5rem 1.2rem; border-radius: 50px;
  border: 1.5px solid var(--green); color: var(--green);
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.other-links a:hover { background: var(--green); color: #fff; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav, .nav-btns { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .two-col { gap: 2rem; }
}
