* {
  box-sizing: border-box;
}

:root {
  --primary: #0f5132;
  --secondary: #d4af37;
  --background: #ffffff;
  --foreground: #09291a;
  --muted: #f3f7f5;
  --muted-foreground: #47715f;
  --border: #dfe9e4;
  --light: #f8f9fa;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  margin-top: 0;
  color: var(--primary);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

.container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link,
.dropdown-toggle {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover {
  color: var(--secondary);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem 0;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 0.5rem);
  min-width: 224px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--muted);
  color: var(--secondary);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-mini {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 0.5rem;
}

.contact-mini span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.contact-mini a {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #0b3f27;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(15, 81, 50, 0.1);
}

.btn-gold {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}

.btn-gold:hover {
  background: #c5a12f;
}

.btn-sm {
  min-height: 36px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
}

.btn-lg {
  min-height: 44px;
  padding: 0.65rem 1.25rem;
}

.full {
  width: 100%;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--foreground);
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 99px;
  transition: all 0.2s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.mobile-toggle.active .hamburger {
  background: transparent;
}

.mobile-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 1.5rem 1rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a,
.mobile-services-title {
  display: block;
  padding: 0.5rem 0;
  font-weight: 500;
}

.mobile-services-title {
  color: var(--muted-foreground);
}

.mobile-subnav {
  border-left: 2px solid var(--border);
  padding-left: 1rem;
  margin: 0.25rem 0 0.5rem;
}

.mobile-subnav a {
  font-size: 0.875rem;
}

.mobile-contact-box {
  text-align: center;
  background: rgba(243, 247, 245, 0.8);
  border-radius: 8px;
  padding: 0.5rem;
  margin: 1rem 0 0.75rem;
}

.mobile-contact-box span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.mobile-contact-box a {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--light);
  aspect-ratio: 768 / 389;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease;
}

.slider-arrow:hover {
  background: var(--white);
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background: var(--primary);
}

.section {
  padding: 4rem 0;
}

.section-white {
  background: var(--white);
}

.section-light {
  background: var(--light);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.split.align-center {
  align-items: center;
}

.split.start {
  align-items: flex-start;
}

.gap-large {
  gap: 3rem;
}

.split-col {
  width: 100%;
}

.image-full {
  width: 100%;
  height: auto;
}

.rounded {
  border-radius: 8px;
}

.shadow {
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.gold-heading {
  color: var(--secondary);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.muted-text {
  color: var(--muted-foreground);
}

.text-stack p + p {
  margin-top: 1rem;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.button-row.center {
  justify-content: center;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.section-title {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title span,
.page-hero span {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 999px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.with-margin {
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(223, 233, 228, 0.75);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-image {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(243, 247, 245, 0.3);
  border-bottom: 1px solid var(--border);
}

.service-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-content {
  padding: 2rem;
  text-align: center;
}

.service-content h3 {
  margin-bottom: 0.75rem;
}

.urdu {
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem;
  color: var(--muted-foreground);
  font-style: italic;
  font-size: 1.125rem;
}

.small {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.card-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.info-card,
.accordion,
.article-card,
.contact-card,
.cta-box {
  background: var(--white);
  border: 1px solid rgba(223, 233, 228, 0.75);
  border-radius: 12px;
}

.info-card {
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--secondary);
  flex: 0 0 auto;
  font-weight: 700;
}

.notice {
  padding: 1rem;
  border-left: 4px solid var(--secondary);
  border-radius: 8px;
  background: var(--muted);
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.accordion {
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1rem 0;
  text-align: left;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.2s ease;
}

.accordion-trigger:hover {
  color: var(--primary);
}

.accordion-content {
  display: none;
  color: var(--muted-foreground);
  padding-bottom: 1rem;
}

.accordion-item.open .accordion-content {
  display: block;
}

.accordion-content p {
  margin: 0;
}

.request-card {
  background: var(--primary);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.request-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.request-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: -0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.7rem 0.85rem;
  outline: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.article-card {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  background: var(--light);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.kicker {
  color: var(--secondary);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.article-text {
  line-height: 1.7;
}

.article-image {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(223, 233, 228, 0.75);
  background: rgba(243, 247, 245, 0.3);
  padding: 1rem;
}

.page-section {
  background: var(--white);
  scroll-margin-top: 80px;
}

.page-hero {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 4rem 1rem 6rem;
  overflow: hidden;
}

.page-hero.compact {
  padding: 4rem 1rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero span {
  margin-bottom: 1.5rem;
}

.page-hero p {
  max-width: 42rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.prose-section {
  width: min(100% - 2rem, 896px);
  margin: 0 auto;
  padding: 4rem 0;
  color: #334155;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
}

.prose-section h2,
.prose-section h3,
.prose-section h4 {
  margin-top: 1.6em;
  margin-bottom: 0.8em;
}

.prose-section h2 {
  font-size: 2rem;
}

.prose-section h3 {
  font-size: 1.5rem;
}

.prose-section h4 {
  color: var(--primary);
  font-size: 1.15rem;
}

.prose-section p,
.prose-section ul {
  margin-bottom: 1.25rem;
}

.prose-image {
  display: block;
  width: 100%;
  max-width: 672px;
  height: 300px;
  object-fit: contain;
  margin: 0 auto 2.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(243, 247, 245, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

.cta-box {
  background: var(--light);
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.cta-box h3 {
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.contact-wrap {
  padding: 4rem 1rem;
}

.contact-grid {
  max-width: 896px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-intro {
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--light);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}

.label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 -1rem;
}

.contact-name {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.contact-number {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.hours-row span {
  color: var(--muted-foreground);
}

.important-notice {
  background: rgba(15, 81, 50, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  font-size: 0.875rem;
}

.important-notice h4 {
  margin: 0 0 0.5rem;
}

.important-notice p {
  color: var(--muted-foreground);
}

.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 24rem;
}

.footer-disclaimer-title {
  color: var(--secondary) !important;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-small {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.75rem;
}

.site-footer h3 {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-links a,
.footer-bottom a,
.footer-contact-item a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact-item a:hover {
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-item > span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  flex: 0 0 auto;
}

.footer-contact-item p {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-contact-item a {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 1rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 120%);
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 100;
  opacity: 0;
  transition: all 0.25s ease;
  max-width: calc(100% - 2rem);
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 640px) {
  .button-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .split {
    flex-direction: row;
  }

  .split-col {
    width: 50%;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-card {
    padding: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .desktop-nav,
  .desktop-contact {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .logo {
    max-width: 190px;
  }

  .hero-slider {
    min-height: 260px;
  }

  .slider-prev {
    left: 0.5rem;
  }

  .slider-next {
    right: 0.5rem;
  }

  .card-buttons {
    flex-direction: column;
  }

  .card-buttons .btn {
    width: 100%;
  }

  .service-content {
    padding: 1.5rem;
  }

  .urdu {
    height: auto;
    min-height: 3rem;
  }

  .hours-row {
    flex-direction: column;
  }

  .page-hero {
    padding: 3rem 1rem 4rem;
  }
}
