:root {
  --green-950: #102d27;
  --green-800: #174f43;
  --green-700: #1d6a58;
  --green-100: #e8f3ee;
  --gold-600: #b88a35;
  --gold-200: #ead7a8;
  --beige-100: #f7f1e7;
  --cream: #fffaf1;
  --white: #ffffff;
  --ink: #1e2c28;
  --muted: #68736f;
  --line: rgba(16, 45, 39, 0.13);
  --shadow: 0 18px 50px rgba(16, 45, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background: var(--cream);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.34;
  background:
    linear-gradient(30deg, transparent 48%, rgba(184, 138, 53, 0.13) 49%, rgba(184, 138, 53, 0.13) 51%, transparent 52%),
    linear-gradient(150deg, transparent 48%, rgba(29, 106, 88, 0.11) 49%, rgba(29, 106, 88, 0.11) 51%, transparent 52%);
  background-size: 54px 54px;
}

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

img,
svg {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  color: var(--green-950);
}

h1 {
  font-size: clamp(2.2rem, 8vw, 4.8rem);
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.55rem, 5vw, 2.6rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 0.55rem;
}

p {
  color: var(--muted);
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--green-950);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.45rem 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(232, 243, 238, 0.95));
  border-bottom: 1px solid rgba(184, 138, 53, 0.22);
  box-shadow: 0 12px 30px rgba(16, 45, 39, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 0.58rem;
  color: #101010;
}

.brand-mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f6d35b;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 230, 132, 0.32), transparent 26%),
    linear-gradient(135deg, #0b0b0b, #25200d 54%, #0f0f0f);
  font-family: Amiri, serif;
  font-size: 1.5rem;
  border: 2px solid #d9b442;
  box-shadow: 0 10px 24px rgba(15, 15, 15, 0.18), inset 0 0 0 1px rgba(255, 227, 126, 0.3);
}

.brand > span:last-child {
  min-width: 0;
  padding: 0.5rem 0.98rem 0.52rem;
  border: 1px solid rgba(217, 180, 66, 0.78);
  border-radius: 8px;
  background: linear-gradient(135deg, #0c0c0c, #1f1a09);
  box-shadow: 0 8px 18px rgba(16, 16, 16, 0.12), inset 0 0 0 1px rgba(255, 227, 126, 0.14);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(1.08rem, 4.3vw, 1.28rem);
  line-height: 1.2;
  color: #d9b442;
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 8px rgba(217, 180, 66, 0.22);
}

.brand small {
  color: rgba(255, 226, 126, 0.76);
  font-size: 0.82rem;
  white-space: nowrap;
}

.nav-toggle {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  gap: 5px;
  align-content: center;
  border: 1px solid rgba(15, 95, 79, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 18px rgba(16, 45, 39, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--green-950);
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 16px;
  right: 16px;
  display: none;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius);
  color: var(--green-950);
  font-weight: 600;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav .is-active {
  background: var(--green-100);
  color: var(--green-800);
}

.header-cta {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(23, 79, 67, 0.2);
}

.top-image-section {
  padding: 1rem 0 0;
  background: linear-gradient(180deg, var(--white), rgba(232, 243, 238, 0.65));
}

.top-image-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 53, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.top-image-frame a {
  display: flex;
  justify-content: center;
  width: 100%;
}

.top-image-frame img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
  background: var(--white);
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 1.75rem 0 1rem;
  background:
    radial-gradient(circle at 72% 20%, rgba(184, 138, 53, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(232, 243, 238, 0.85), rgba(255, 250, 241, 0.72));
}

.hero-grid,
.split-layout,
.content-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-text-only {
  max-width: 860px;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold-600);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-subtitle,
.page-hero p {
  font-size: 1.08rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1rem;
}

.btn,
.search-box button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.btn.primary,
.search-box button,
.header-cta {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 12px 28px rgba(23, 79, 67, 0.22);
}

.btn.secondary {
  color: var(--green-950);
  background: var(--white);
  border-color: var(--line);
}

.btn.full {
  width: 100%;
}

.micro-disclaimer,
.small-note,
.form-note {
  font-size: 0.88rem;
  color: #61706b;
}

.hero-panel {
  min-height: 360px;
  padding: 1rem;
  border: 1px solid rgba(184, 138, 53, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(232, 243, 238, 0.86));
  box-shadow: var(--shadow);
}

.image-hero-panel {
  position: relative;
  min-height: auto;
  padding: 0.65rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(232, 243, 238, 0.9));
}

.image-hero-panel > img {
  display: block;
  width: 100%;
  max-height: min(76vh, 680px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: #fffaf1;
}

.home-banner {
  display: grid;
  place-items: center;
}

.know-us-section {
  padding-top: 1rem;
  background: var(--white);
}

.know-us-copy {
  text-align: center;
}

.know-us-copy .eyebrow {
  margin-bottom: 0.55rem;
}

.know-us-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.know-us-copy p {
  color: #52615d;
  font-size: clamp(1.08rem, 2.2vw, 1.18rem);
  line-height: 1.85;
}

.know-us-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.75rem;
  margin: 1.35rem 0 1.55rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.know-us-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(232, 243, 238, 0.58);
  color: var(--green-950);
  font-weight: 800;
}

.know-us-points span {
  font-size: 1.25rem;
  line-height: 1;
}

.know-us-gallery {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.65rem;
}

.know-us-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 53, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.know-us-image img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
  background: var(--white);
}

.arch-window {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 140px 140px 8px 8px;
  background:
    linear-gradient(180deg, rgba(16, 45, 39, 0.1), rgba(16, 45, 39, 0.02)),
    repeating-linear-gradient(45deg, rgba(184, 138, 53, 0.13), rgba(184, 138, 53, 0.13) 1px, transparent 1px, transparent 18px),
    var(--green-100);
}

.moon {
  position: absolute;
  top: 42px;
  right: 70px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: -13px 0 0 var(--gold-600);
}

.mosque-line {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 48px;
  height: 82px;
  background:
    radial-gradient(circle at 50% 0, var(--green-800) 0 32px, transparent 33px),
    linear-gradient(var(--green-800), var(--green-800));
  background-size: 100% 100%, 100% 42px;
  background-position: center top, center bottom;
  background-repeat: no-repeat;
}

.hero-stat {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
}

.pattern-image {
  width: 100%;
  height: 92px;
  object-fit: cover;
  margin-top: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  color: var(--green-800);
  font-size: 1.5rem;
}

.trust-strip {
  padding: 1rem 0;
  background: var(--green-950);
  color: var(--white);
}

.trust-grid {
  display: grid;
  gap: 0.6rem;
}

.trust-grid span {
  padding-left: 1.1rem;
  position: relative;
  font-weight: 700;
}

.trust-grid span::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 0.7rem;
  border-radius: 50%;
  background: var(--gold-600);
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.95), rgba(232, 243, 238, 0.78)),
    radial-gradient(circle at 20% 15%, rgba(184, 138, 53, 0.16), transparent 30%);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 53, 0.24);
  border-radius: var(--radius);
  background: var(--green-950);
  box-shadow: 0 18px 44px rgba(16, 45, 39, 0.13);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  background: var(--green-950);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(234, 215, 168, 0.32);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(16, 45, 39, 0.82);
  box-shadow: 0 10px 24px rgba(16, 45, 39, 0.18);
  font-weight: 800;
  line-height: 1.2;
}

.card-grid,
.quote-grid,
.step-grid,
.post-grid,
.value-columns,
.content-columns {
  display: grid;
  gap: 1rem;
}

.service-card,
.post-card,
.step-card,
.side-panel,
.contact-panel,
.contact-form,
.blog-sidebar,
.disclaimer-box,
.consultation-card,
.resource-link,
.dua-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(16, 45, 39, 0.07);
}

.service-card,
.post-card,
.step-card,
.side-panel,
.contact-panel,
.blog-sidebar,
.disclaimer-box,
.consultation-card,
.resource-link,
.dua-card {
  padding: 1.25rem;
}

.card-media,
.post-image,
.panel-image {
  display: block;
  width: 100%;
  border: 1px solid rgba(184, 138, 53, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 45, 39, 0.1);
  object-fit: contain;
  background: linear-gradient(135deg, var(--cream), var(--green-100));
}

.card-media {
  height: 150px;
  margin-bottom: 1rem;
}

.post-image {
  height: 180px;
  margin-bottom: 1rem;
}

.panel-image {
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
}

.service-card a,
.post-card a,
.resource-link {
  color: var(--green-800);
  font-weight: 800;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  min-height: 38px;
  margin-bottom: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  color: var(--green-800);
  background: var(--green-100);
  font-family: Amiri, serif;
  font-size: 1.15rem;
}

.values-band {
  padding: 4rem 0;
  color: var(--white);
  background:
    linear-gradient(rgba(16, 45, 39, 0.94), rgba(16, 45, 39, 0.94)),
    repeating-linear-gradient(60deg, rgba(234, 215, 168, 0.2), rgba(234, 215, 168, 0.2) 1px, transparent 1px, transparent 20px);
}

.values-band h2,
.values-band p {
  color: var(--white);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.value-list span,
.value-columns div {
  padding: 1rem;
  border: 1px solid rgba(234, 215, 168, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

blockquote {
  margin: 0;
  padding: 1.3rem;
  border-left: 4px solid var(--gold-600);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-950);
}

cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.testimonials {
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 45, 39, 0.96), rgba(16, 45, 39, 0.96)),
    repeating-linear-gradient(135deg, rgba(234, 215, 168, 0.14), rgba(234, 215, 168, 0.14) 1px, transparent 1px, transparent 24px);
}

.testimonials h2,
.testimonials .section-heading p {
  color: var(--white);
}

.testimonial-slider {
  display: grid;
  gap: 1.2rem;
}

.testimonial-clean-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-height: 0;
  padding: 1.25rem;
  border: 1px solid rgba(234, 215, 168, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 231, 0.96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  scroll-snap-align: start;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover,
.testimonial-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(184, 138, 53, 0.75);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--gold-600));
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(16, 45, 39, 0.18);
  overflow: hidden;
  position: relative;
}

.testimonial-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.58;
}

.testimonial-avatar span {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.32);
}

.testimonial-top h3,
.testimonial-top p {
  margin: 0;
}

.testimonial-top p {
  font-size: 0.9rem;
}

.stars {
  display: flex;
  gap: 0.18rem;
  margin-bottom: 1rem;
  color: var(--gold-600);
  font-size: 1.12rem;
  letter-spacing: 0;
}

.testimonial-text {
  color: var(--ink);
  font-weight: 500;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.testimonial-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold-600);
}

.faq-item {
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: var(--green-950);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
}

.faq-item.is-open .faq-answer,
.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

.page-hero {
  padding: 4rem 0;
  background:
    linear-gradient(135deg, rgba(232, 243, 238, 0.92), rgba(247, 241, 231, 0.92)),
    repeating-linear-gradient(45deg, rgba(184, 138, 53, 0.14), rgba(184, 138, 53, 0.14) 1px, transparent 1px, transparent 22px);
}

.page-hero-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.visual-hero {
  position: relative;
  overflow: hidden;
}

.visual-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 250, 241, 0), rgba(184, 138, 53, 0.12));
}

.visual-hero .container {
  position: relative;
  z-index: 1;
}

.visual-hero img {
  width: 100%;
  height: clamp(240px, 32vw, 340px);
  border: 1px solid rgba(184, 138, 53, 0.28);
  border-radius: var(--radius);
  object-fit: contain;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--green-800);
  font-weight: 700;
}

.rich-content h2 {
  margin-top: 2rem;
}

.answer-box,
.definition-box,
.summary-box {
  margin: 1.2rem 0;
  padding: 1.2rem;
  border: 1px solid rgba(184, 138, 53, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(232, 243, 238, 0.8), rgba(255, 255, 255, 0.9));
}

.answer-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-800);
}

.summary-box {
  border-color: var(--line);
  background: var(--green-100);
}

.check-list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.check-list li {
  margin-bottom: 0.55rem;
}

.arabic {
  color: var(--green-950);
  font-family: Amiri, serif;
  font-size: 1.7rem;
  line-height: 2;
}

.dua-card {
  margin: 1.2rem 0;
  background: var(--white);
}

.step-card span {
  color: var(--gold-600);
  font-weight: 900;
}

.soft-cta {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--green-100);
  text-align: center;
}

.image-soft-cta {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  text-align: left;
}

.image-soft-cta img {
  width: 100%;
  max-height: 260px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--green-950);
  box-shadow: 0 14px 34px rgba(16, 45, 39, 0.12);
}

.image-cta-section {
  padding-top: 0;
}

.image-cta {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(234, 215, 168, 0.32);
  border-radius: var(--radius);
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.image-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.42;
}

.image-cta > div {
  position: relative;
  max-width: 620px;
  padding: clamp(1.4rem, 5vw, 3rem);
  align-self: end;
}

.image-cta h2,
.image-cta p {
  color: var(--white);
}

.blog-layout {
  display: grid;
  gap: 1.4rem;
}

.search-box {
  display: grid;
  gap: 0.7rem;
}

.search-box label,
.contact-form label {
  color: var(--green-950);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.category-box {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.55rem;
}

.category-box a,
.contact-method {
  padding: 0.8rem;
  border-radius: var(--radius);
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 800;
}

.post-card span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold-600);
  font-weight: 800;
}

.policy-content {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(16, 45, 39, 0.07);
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}

.policy-content a {
  color: var(--green-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.last-updated {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--green-800);
  font-weight: 800;
}

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

.contact-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-method {
  display: block;
}

.contact-method.whatsapp,
.sticky-actions .whatsapp {
  background: #e4f6ea;
  color: #116b39;
}

.site-footer {
  padding: 3rem 0 5rem;
  color: rgba(255, 255, 255, 0.8);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.site-footer h3,
.site-footer p,
.site-footer a,
.footer-brand strong,
.footer-brand small {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-sitemap a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.sticky-actions {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.call-floating,
.whatsapp-floating {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25D366;
  box-shadow: 0 14px 34px rgba(18, 102, 58, 0.28);
  border: 0;
  font-weight: 900;
  font-size: 1.8rem;
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.call-floating {
  background: #e01f2d;
  box-shadow: 0 14px 34px rgba(224, 31, 45, 0.32);
}

.call-floating:hover {
  background: #c91421;
  transform: translateY(-2px);
}

.call-floating svg,
.whatsapp-floating svg {
  display: block;
}

@media (min-width: 700px) {
  .trust-grid,
  .card-grid.two,
  .quote-grid,
  .step-grid,
  .post-grid,
  .value-columns,
  .content-columns,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-card.featured {
    grid-row: span 2;
  }

  .gallery-card.featured img {
    min-height: 536px;
  }

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

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

  .contact-grid,
  .content-grid,
  .blog-layout {
    grid-template-columns: 0.9fr 1.4fr;
  }

  .page-hero-grid,
  .image-soft-cta {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

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

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.55rem 0.7rem;
    font-size: 0.86rem;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-grid:not(.hero-text-only) {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
  }

  .know-us-gallery {
    width: min(100vw - 48px, 1120px);
    margin: 2rem calc((820px - min(100vw - 48px, 1120px)) / 2) 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 1rem;
  }

  .know-us-image {
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(16, 45, 39, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .know-us-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(16, 45, 39, 0.16);
  }

  .know-us-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }

  .card-grid.five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid.two,
  .step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .split-layout {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .blog-layout {
    grid-template-columns: 300px 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .gallery-card:nth-child(4) {
    grid-column: span 2;
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }

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

  .sticky-actions {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .site-footer {
    padding-bottom: 3rem;
  }
}

@media (max-width: 699px) {
  .top-image-section {
    padding-top: 0.75rem;
  }

  .top-image-frame {
    border-radius: 0;
    margin-inline: -16px;
    border-left: 0;
    border-right: 0;
  }

  .top-image-frame img {
    width: 100%;
    max-height: none;
  }

  .hero {
    padding: 1.4rem 0 0.8rem;
  }

  .know-us-section {
    padding-top: 0.75rem;
  }

  .image-hero-panel {
    padding: 0.35rem;
  }

  .image-hero-panel > img,
  .visual-hero img {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .value-list {
    grid-template-columns: 1fr;
  }
}
