/* =========================================================
   Meezab-e-Haram — Base & Navbar Styles
   ========================================================= */

:root {
  --green-dark:  #14470b;   /* announcement bar */
  --green:       #1c6b16;   /* primary green */
  --green-deep:  #0f4d2a;   /* logo deep green */
  --gold:        #c9a227;   /* logo gold accent */
  --ink:         #1f2a24;   /* main text */
  --muted:       #5c6b62;   /* muted text */
  --line:        #e7ece8;   /* borders */
  --white:       #ffffff;
  --shadow:      0 6px 24px rgba(15, 77, 42, 0.08);
  --radius:      40px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

.icon { flex: none; vertical-align: middle; }

/* ===== Announcement Bar ===== */
.topbar {
  background: var(--green-dark);
  color: var(--white);
}
.topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  justify-content: center;
}
.topbar__text {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow);
}
.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo img {
  height: 84px;
  width: auto;
}

/* ===== Nav (desktop: logo | centered links | whatsapp) ===== */
.nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__list {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav__link:hover { color: var(--green); }

.nav__link.active {
  color: var(--green-deep);
  font-weight: 600;
}
.nav__link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.caret { transition: transform .2s ease; opacity: .7; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

/* ===== Dropdown ===== */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--muted);
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.dropdown li a:hover {
  background: #f3f8f3;
  color: var(--green-deep);
}

/* ===== WhatsApp icon button ===== */
.btn-whatsapp {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(28, 107, 22, 0.28);
  transition: background .2s ease, transform .2s ease;
}
.btn-whatsapp:hover {
  background: var(--green-deep);
  transform: translateY(-2px) scale(1.05);
}

/* ===== Hamburger ===== */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.navbar__toggle span {
  width: 26px;
  height: 3px;
  background: var(--green-deep);
  border-radius: 3px;
  transition: transform .3s ease, opacity .3s ease;
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .navbar__toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    box-shadow: -8px 0 30px rgba(0,0,0,.12);
    padding: 90px 20px 30px;
    overflow-y: auto;
    transition: right .3s ease;
    z-index: 90;
  }
  .nav.open { right: 0; }

  .nav__list {
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
  }
  .nav__link { justify-content: space-between; width: 100%; }
  .nav__link.active::after { display: none; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 0 0 6px 14px;
    padding: 0;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown:hover .caret { transform: none; }
  .has-dropdown.open .caret { transform: rotate(180deg); }

  .btn-whatsapp { margin: 16px auto 0; }
}

@media (max-width: 480px) {
  .navbar__logo img { height: 64px; }
  .topbar__text { font-size: 0.68rem; letter-spacing: .8px; }
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero {
  position: relative;
  aspect-ratio: 1672 / 640;        /* wide banner */
  min-height: 540px;
  display: flex;
  align-items: center;
  background: url('../assets/hero.png') center 35% / cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 28, 16, 0.92) 0%,
    rgba(8, 28, 16, 0.78) 28%,
    rgba(8, 28, 16, 0.45) 55%,
    rgba(8, 28, 16, 0.10) 80%,
    rgba(8, 28, 16, 0.0) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
.hero__content { max-width: 640px; color: #fff; }

.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero__divider {
  display: block;
  width: 96px;
  height: 4px;
  border-radius: 4px;
  background: var(--green);
  margin-bottom: 18px;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,.92);
  margin-bottom: 34px;
}

/* ===== Hero actions ===== */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px 9px 20px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(28, 107, 22, 0.28);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(28, 107, 22, 0.38);
}
.btn-primary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  color: var(--green);
  border-radius: 50%;
  font-size: 0.78rem;
  transition: transform .2s ease;
}
.btn-primary:hover .btn-primary__icon { transform: translateX(3px); }

/* ===== Rating ===== */
.hero__rating { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.avatars img:first-child { margin-left: 0; }
.rating__stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; }
.rating__text { font-size: 0.95rem; font-weight: 600; color: #fff; }

/* ===== Trust features (minimalistic + glass) ===== */
.hero__features {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.feature + .feature::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,.22);
}
.feature__icon {
  flex: none;
  color: #7ed957;
  font-size: 1.15rem;
}
.feature__text { display: flex; flex-direction: column; line-height: 1.3; }
.feature__text strong { font-size: 0.9rem; font-weight: 600; color: #fff; }
.feature__text span { font-size: 0.78rem; color: rgba(255,255,255,.65); }

/* ===== Floating WhatsApp (circled icon, like navbar) ===== */
.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(28, 107, 22, 0.4);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.float-whatsapp i { font-size: 1.6rem; }
.float-whatsapp:hover {
  background: var(--green-deep);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(28, 107, 22, 0.55);
}

/* ===== Hero responsive ===== */
@media (max-width: 768px) {
  .hero {
    aspect-ratio: auto;
    min-height: 540px;
    background-size: cover;
  }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 28, 16, 0.85) 0%,
      rgba(8, 28, 16, 0.7) 50%,
      rgba(8, 28, 16, 0.88) 100%
    );
  }
  .hero__actions { gap: 20px; }
  .hero__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .feature + .feature::before { display: none; }
  .float-whatsapp { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

/* =========================================================
   Section heading (shared)
   ========================================================= */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow__orn { font-size: 0.7rem; color: var(--green); opacity: .85; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title .accent { color: var(--green); }
.section-sub { font-size: 1.02rem; color: var(--muted); }

/* =========================================================
   Our Services
   ========================================================= */
.services { padding: 90px 0; background: #fafbfa; }
.services__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}

/* Left showcase */
.services__showcase { display: flex; flex-direction: column; }
.showcase__media {
  position: relative;
  flex: 1;                 /* fills remaining height to match right column */
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15, 77, 42, 0.14);
}
.showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase__bar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 12px 6px;
  background: rgba(12, 40, 22, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
}
.mini-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  position: relative;
}
.mini-feature + .mini-feature::before {
  content: "";
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 1px;
  background: rgba(255,255,255,.16);
}
.mini-feature i { color: var(--gold); font-size: 0.95rem; flex: none; }
.mini-feature strong { display: block; font-size: 0.78rem; color: #fff; font-weight: 600; line-height: 1.25; }
.mini-feature span { display: block; font-size: 0.68rem; color: rgba(255,255,255,.72); line-height: 1.3; }

/* Promise */
.promise {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 24px;
  background: #eef5ec;
  border-radius: 14px;
}
.promise__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dcebd6;
  color: var(--green);
  font-size: 1.2rem;
}
.promise__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
}
.promise__text {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  border-left: 1px solid #cdddc6;
  padding-left: 16px;
}

/* Right cards */
.services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 18px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 77, 42, 0.12);
  border-color: transparent;
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eef5ec;
  color: var(--green);
  font-size: 1.3rem;
  margin-bottom: 12px;
  transition: background .25s ease, transform .25s ease;
}
.service-card:hover .service-card__icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 9px;
}
.service-card__rule {
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.service-card__arrow {
  margin-top: auto;
  color: var(--green);
  font-size: 0.95rem;
  transition: transform .25s ease;
}
.service-card:hover .service-card__arrow { transform: translateX(5px); }

/* Services responsive */
@media (max-width: 992px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services { padding: 60px 0; }
  .services__cards { grid-template-columns: 1fr; }
  .showcase__bar { position: static; margin-top: -2px; border-radius: 0; left: 0; right: 0; }
  .promise { grid-template-columns: auto 1fr; }
  .promise__text { grid-column: 1 / -1; border-left: 0; padding-left: 0; }
}

/* =========================================================
   Explore / Quick Services (image-free cards)
   ========================================================= */
.explore { padding: 90px 0; background: #ffffff; }
.explore__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.explore__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ex-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.ex-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 77, 42, 0.16);
  border-color: transparent;
}

/* Gradient art panel (replaces image) */
.ex-card__art {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(201,162,39,0.28) 0%, rgba(201,162,39,0) 45%),
    linear-gradient(150deg, var(--green-deep) 0%, var(--green) 100%);
  overflow: hidden;
}
.ex-card__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.10) 0, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 88% 30%, rgba(255,255,255,0.08) 0, rgba(255,255,255,0) 26%);
}
.ex-card__watermark {
  position: absolute;
  right: -14px;
  bottom: -18px;
  font-size: 7rem;
  color: rgba(255,255,255,0.07);
  transform: rotate(-8deg);
  pointer-events: none;
}
.ex-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.9rem;
  transition: transform .28s ease, background .28s ease;
}
.ex-card:hover .ex-card__icon {
  transform: scale(1.08);
  background: rgba(255,255,255,0.22);
}

/* Body */
.ex-card__body { padding: 22px 22px 24px; text-align: center; }
.ex-card__body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.ex-card__body > p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.ex-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: gap .2s ease, color .2s ease;
}
.ex-card:hover .ex-card__link { gap: 11px; color: var(--green-deep); }

/* Responsive */
@media (max-width: 992px) {
  .explore__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .explore { padding: 60px 0; }
  .explore__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Moments — Gallery (minimalistic)
   ========================================================= */
.moments { padding: 90px 0; background: #fafbfa; }
.moments__inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.moments__head { text-align: center; margin-bottom: 44px; }
.moments__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--ink);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.moments__sub { font-size: 1rem; color: var(--muted); }
.moments__sub .accent { color: var(--green); font-weight: 500; }

/* Featured */
.moments__feature {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 14px 38px rgba(15, 77, 42, 0.10);
}
.moments__feature img {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.moments__feature:hover img { transform: scale(1.03); }

/* Thumbnails */
.moments__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.moment {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.moment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,28,16,0) 40%, rgba(8,28,16,0.35) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.moment:hover img { transform: scale(1.08); }
.moment:hover::after { opacity: 1; }

/* Responsive */
@media (max-width: 768px) {
  .moments__thumbs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .moments { padding: 60px 0; }
  .moments__thumbs { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* =========================================================
   Reviews / Testimonials
   ========================================================= */
.reviews {
  padding: 80px 0 70px;
  background:
    radial-gradient(circle at 1px 1px, rgba(15,77,42,0.05) 1px, transparent 0) 0 0 / 26px 26px,
    linear-gradient(180deg, #eef3f1 0%, #e8efeb 100%);
}
.reviews__inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Head */
.reviews__head { text-align: center; margin-bottom: 40px; }
.reviews__pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 3px 10px rgba(15,77,42,0.07);
}
.pill i { color: var(--green); font-size: 0.78rem; }
.reviews__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 12px;
}
.reviews__sub { font-size: 1rem; color: var(--muted); margin-bottom: 14px; }
.reviews__rating { font-size: 0.95rem; color: var(--ink); }
.reviews__rating strong { font-weight: 700; }
.stars { color: var(--gold); letter-spacing: 1px; }
.stars--sm { font-size: 0.82rem; }

/* Carousel */
.reviews__carousel {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews__viewport { overflow: hidden; flex: 1; }
.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform .45s ease;
}
.review-card {
  flex: 0 0 calc((100% - 48px) / 3);   /* 3 visible */
  background: #fff;
  border-radius: 16px;
  padding: 26px 26px 28px;
  box-shadow: 0 10px 30px rgba(15,77,42,0.08);
}
.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}
.avatar--orange { background: #e08c1f; }
.avatar--teal   { background: #2b9b8f; }
.avatar--green  { background: #2e7d32; }
.avatar--purple { background: #7b4ca0; }
.avatar--red    { background: #d2493c; }
.avatar--blue   { background: #2f6fb0; }
.gbadge { display: inline-flex; }
.review-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.review-card__role { font-size: 0.82rem; color: var(--muted); display: block; margin-bottom: 12px; }
.review-card .stars--sm { display: block; margin-bottom: 14px; }
.review-card__text {
  font-size: 0.9rem;
  color: #54625a;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-deep);
}
.review-card__more:hover { color: var(--green); }

/* Nav arrows */
.reviews__nav {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #cfddd4;
  background: #fff;
  color: var(--green);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(15,77,42,0.10);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.reviews__nav:hover { background: var(--green); color: #fff; transform: scale(1.06); }
.reviews__nav:disabled { opacity: .4; cursor: not-allowed; }
.reviews__nav:disabled:hover { background: #fff; color: var(--green); transform: none; }

/* Dots */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.reviews__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #c2d2c8;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.reviews__dots button.active { background: var(--green); transform: scale(1.25); }

/* Responsive */
@media (max-width: 900px) {
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }   /* 2 visible */
}
@media (max-width: 600px) {
  .review-card { flex: 0 0 100%; }                       /* 1 visible */
  .reviews__nav { width: 40px; height: 40px; }
}

/* =========================================================
   Contact
   ========================================================= */
.contact {
  padding: 90px 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(28,107,22,0.10) 0, rgba(28,107,22,0) 40%),
    radial-gradient(circle at 85% 85%, rgba(28,107,22,0.10) 0, rgba(28,107,22,0) 40%),
    #f3f8f3;
}
.contact__inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.pill--soft {
  display: inline-block;
  padding: 9px 22px;
  margin-bottom: 16px;
  background: #e1f0df;
  color: var(--green-deep);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.contact__title { letter-spacing: -0.5px; }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.contact-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 16px 40px rgba(15,77,42,0.10);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 5px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--green) 0%, #3aa544 100%);
}
.contact-card::after {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(28,107,22,0.06);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15,77,42,0.16);
}
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--green) 0%, #3aa544 100%);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px rgba(28,107,22,0.30);
}
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.contact-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.contact-card__value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 22px;
  word-break: break-word;
}
.contact-card__value:hover { color: var(--green-deep); }
.contact-card__btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(150deg, var(--green) 0%, #3aa544 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(28,107,22,0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(28,107,22,0.4); }

@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; max-width: 460px; margin: 12px auto 0; }
}
@media (max-width: 480px) {
  .contact { padding: 60px 0; }
}

/* =========================================================
   Map
   ========================================================= */
.map { line-height: 0; }
.map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.1);
}

/* =========================================================
   CTA Banner
   ========================================================= */
.cta-banner {
  background: linear-gradient(100deg, var(--green-deep) 0%, var(--green) 60%, #2f9a38 100%);
}
.cta-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.cta-banner__text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.02rem);
  font-weight: 600;
  color: #fff;
}
.cta-banner__text span { color: #ffd966; }
.cta-banner__btn {
  flex: none;
  display: inline-block;
  padding: 8px 22px;
  border: 2px solid #ffd966;
  border-radius: 999px;
  color: #ffd966;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.76rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.cta-banner__btn:hover {
  background: #ffd966;
  color: var(--green-deep);
  transform: translateY(-2px);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #0c2812;
  color: rgba(255,255,255,0.78);
}
.footer__top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer__logo {
  height: 84px;
  width: auto;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
}
.footer__about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.95rem;
  transition: background .2s ease, transform .2s ease;
}
.footer__social a:hover { background: var(--green); transform: translateY(-3px); }

.footer__col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  border-radius: 3px;
  background: var(--gold);
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  transition: color .2s ease, padding-left .2s ease;
}
.footer__col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.footer__contact i { color: var(--gold); margin-top: 4px; font-size: 0.85rem; }
.footer__contact a { color: rgba(255,255,255,0.78); }
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 22px 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 540px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .map iframe { height: 300px; }
}

/* =========================================================
   Shared layout additions (topbar social, footer branches)
   ========================================================= */
.topbar__inner--split { justify-content: space-between; }
.topbar__social { display: inline-flex; gap: 14px; }
.topbar__social a {
  color: rgba(255,255,255,.85);
  font-size: 0.85rem;
  transition: color .2s ease, transform .2s ease;
}
.topbar__social a:hover { color: #fff; transform: translateY(-1px); }

@media (max-width: 600px) {
  .topbar__inner--split { justify-content: center; }
  .topbar__social { display: none; }
}

/* Footer branches */
.footer__branches { background: #0a210f; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__branches-inner { max-width: 1280px; margin: 0 auto; padding: 30px 24px; }
.footer__branches-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer__branches-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 36px; height: 3px; border-radius: 3px; background: var(--gold);
}
.branch-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.branch {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.branch:hover { background: rgba(28,107,22,0.22); border-color: var(--green); transform: translateY(-3px); }
.branch__city { font-size: 0.92rem; font-weight: 700; color: var(--gold); }
.branch__name { font-size: 0.76rem; color: rgba(255,255,255,0.7); }
.branch__phone { font-size: 0.82rem; color: #fff; font-weight: 600; }
.branch__phone i { color: var(--green); font-size: 0.72rem; margin-right: 4px; }

@media (max-width: 1100px) { .branch-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .branch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .branch-grid { grid-template-columns: 1fr; } }
