.about-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  /* ✅ dynamic height, avoids overflow */
  background: url('/assest/546d5e23f5d7b4718a2fba9b2bb32228f0052105.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  /* ✅ extra padding so text never touches edges */
  box-sizing: border-box;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 50, 30, 0.5);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature i {
  color: gold;
}

/* ✅ Mobile Responsive */
@media (max-width: 900px) {
  .about-content h1 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .features {
    flex-direction: column;
    gap: 15px;
  }
}

.our-story-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.our-story-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.our-story-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.our-story-content {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 550px;
}

.our-story-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.our-story-content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.our-story-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.our-story-list li {
  margin-bottom: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.our-story-list li::before {
  content: "•";
  color: #FFD700;
  /* gold bullet */
  font-size: 1.5rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .our-story-section {
    flex-direction: column;
    text-align: center;
  }

  .our-story-content {
    text-align: left;
  }
}

.values-section {
  text-align: center;
  padding: 60px 20px;
}

.values-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #111;
}

.values-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.value-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff6dd;
  /* soft yellow background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-circle i {
  font-size: 22px;
  color: #ffb400;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .values-container {
    flex-direction: column;
    align-items: center;
  }
}

:root {
  --ink: #0f172a;
  --muted: #6b7280;
  --green: #0b644b;
  --gold: #d9b44a;
  --card: #ffffff;
  --shadow: 0 12px 28px rgba(2, 8, 20, .12);
  --hero-img: url('/assest/abt1.jpg');
}

/* ======= Hygiene banner ======= */
.hy-hero {
  position: relative;
  background:
    linear-gradient(to bottom, rgba(6, 24, 18, .64), rgba(6, 24, 18, .64)),
    var(--hero-img) center/cover no-repeat;
  color: #fff;
}

.hy-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 16px 64px;
  text-align: center;
}

.hy-hero__title {
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
  letter-spacing: .2px;
  margin: 0 0 28px;
}

.hy-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hy-hero__feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hy-hero__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff14;
  border: 1px solid #ffffff33;
  backdrop-filter: blur(4px);
}

.hy-hero__icon svg {
  width: 26px;
  height: 26px;
  fill: #f6c56d;
}

.hy-hero__label {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
}

/* ======= Our Spaces ======= */
.spaces {
  background: #f7faf9;
}

.spaces__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px 72px;
}

.spaces__title {
  text-align: center;
  color: var(--ink);
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 800;
  margin: 0 0 28px;
}

.spaces__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.s-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.s-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(2, 8, 20, .16);
}

.s-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.s-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s-card__tag {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  background: #e9f5ee;
  padding: 6px 8px;
  border-radius: 10px;
}

.s-card__tag--gold {
  background: #fff5d6;
  color: #5b4502;
}

.s-card__tag--blue {
  background: #e9f2ff;
  color: #0a3b76;
}

.s-card__tag--dark {
  background: #111827;
  color: #fff;
}

.s-card__body {
  padding: 14px 14px 18px;
}

.s-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.s-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.spaces__cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

/* ======= Responsive ======= */
@media (max-width: 900px) {
  .hy-hero__features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

@media (max-width: 560px) {
  .spaces__grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --green: #0b644b;
  --ink: #0f172a;
  --muted: #6b7280;
  --surface: #ffffff;
  --other-bg: #eff1f4;
  --shadow: 0 18px 36px rgba(2, 8, 20, .08);
  --shadow-strong: 0 24px 46px rgba(2, 8, 20, .12);
}

/* ====== Why Choose ====== */
.wc {
  background: #fbfcfb;
}

.wc__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px 24px;
}

.wc__title {
  text-align: center;
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 22px;
}

.wc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.wc-col {
  padding: 22px;
}

.wc-col--good {
  background: var(--green);
  color: #eafff6;
}

.wc-col--other {
  background: var(--other-bg);
  color: #1f2937;
}

.wc-col__title {
  text-align: center;
  font-weight: 800;
  margin: 4px 0 14px;
  color: inherit;
}

.wc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.wc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
}

.wc-list--good li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dbf8e7;
  display: inline-block;
  position: relative;
  box-shadow: inset 0 0 0 2px #86d7b1;
}

.wc-list--good li::after {
  content: "";
  width: 8px;
  height: 4px;
  border: 2px solid #148c60;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  position: relative;
  left: -22px;
}

.wc-list--bad li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffe7e7;
  display: inline-block;
  position: relative;
  box-shadow: inset 0 0 0 2px #ffb1b1;
}

.wc-list--bad li::after {
  content: "";
  width: 10px;
  height: 10px;
  position: relative;
  left: -21px;
  border-right: 2px solid #e11d48;
  border-left: 2px solid #e11d48;
  transform: rotate(45deg);
}

.wc-list--bad li {
  color: #384250;
}

/* stack on mobile */
@media (max-width:760px) {
  .wc-card {
    grid-template-columns: 1fr;
  }
}

/* ====== Impact ====== */
.impact {
  background: #ffffff;
}

.impact__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 42px 16px 72px;
}

.impact__title {
  text-align: center;
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 22px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.impact-item {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.impact-num {
  display: inline-block;
  min-width: 3ch;
  font: 800 38px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--green);
}

.impact-caption {
  margin-top: 6px;
  font-weight: 800;
  color: var(--ink);
}

.impact-sub {
  color: var(--muted);
}

@media (max-width:900px) {
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:560px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --bg: #fffefb;
  --ink: #0f172a;
  --muted: #6b7280;
  --card: #ffffff;
  --ring: #eef2f7;
  --accent: #0b644b;
  --shadow: 0 14px 28px rgba(2, 8, 20, .12);
}

/* ===== Well-being ===== */
.wb {
  background: var(--bg);
}

.wb__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px 22px;
}

.wb__title {
  text-align: center;
  color: #1e293b;
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 800;
  margin: 0 0 24px;
}

.wb-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wb-card {
  background: var(--card);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.wb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(2, 8, 20, .16);
}

.wb-media {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #e9eef5;
}

.wb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wb-card__title {
  margin: 12px 4px 6px;
  color: #111827;
  font-weight: 800;
  font-size: 18px;
}

.wb-card__text {
  margin: 0 4px 6px;
  color: var(--muted);
  font-size: 14px;
}

/* ===== Accolades band ===== */
.acc {
  background: #fbfbfd;
  border-top: 1px solid var(--ring);
  border-bottom: 1px solid var(--ring);
}

.acc__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 16px;
}

.acc-list {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.acc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
}

.acc-ico {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #fff7db;
  border-radius: 999px;
  border: 1px solid #ffe9a3;
}

.acc-ico svg {
  width: 16px;
  height: 16px;
  fill: #cf9b00;
}

.acc-text {
  font-weight: 600;
  color: #4b5563;
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .wb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .wb-grid {
    grid-template-columns: 1fr;
  }

  .acc-list {
    gap: 18px;
    justify-content: flex-start;
  }
}

@media (max-width:480px) {
  .acc-list {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
  }

  .acc-item {
    white-space: nowrap;
  }

  .acc-list::-webkit-scrollbar {
    height: 6px;
  }
}

/* ===== Tokens you can tweak ===== */
:root {
  --s-bg: #fffdf9;
  /* section background */
  --s-ink: #0f172a;
  /* heading/body base */
  --s-muted: #475569;
  /* secondary text */
  --s-accent: #0b644b;
  /* link/brand accent */
  --s-shadow: 0 28px 60px rgba(2, 8, 20, .12);
  /* image depth */
}

/* ===== Section layout ===== */
.sustain {
  background: var(--s-bg);
}

.sustain__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px clamp(16px, 4vw, 28px);
}

.sustain__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  /* text a bit wider */
  gap: clamp(24px, 6vw, 56px);
  align-items: center;
}

/* ===== Typography ===== */
.sustain__title {
  margin: 0 0 14px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--s-ink);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.01em;
}

.sustain__content p{
  margin-bottom: 15px !important;
}

.sustain__lead {
  margin: 0 0 14px;
  color: var(--s-muted);
  font-size: clamp(15px, 1.4vw, 16.5px);
  line-height: 1.7;
}

.sustain__body {
  margin: 0 0 22px;
  color: var(--s-muted);
  font-size: clamp(15px, 1.4vw, 16.5px);
  line-height: 1.75;
}

/* ===== Link with arrow ===== */
.sustain__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--s-accent);
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.sustain__link svg {
  width: 18px;
  height: 18px;
  transition: transform .25s ease;
}

.sustain__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .25s ease;
  opacity: .4;
}

.sustain__link:hover svg {
  transform: translateX(4px);
}

.sustain__link:hover::after {
  transform: scaleX(1);
}

/* ===== Image ===== */
.sustain__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--s-shadow);
  background: #eef2f6;
}

.sustain__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  /* keeps shape nicely on large screens */
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }

  .our-story-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px 20px;
    flex-wrap: wrap;
  }

  .wc__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 16px 24px;
  }

  .wb__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 16px 22px;
  }

  .top-bar {
    background: #0e1a2b !important;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    flex-direction: column;
    align-items: center;
  }

  .values-section {
    text-align: center;
    padding: 30px 20px;
  }

  .sustain__grid {
    grid-template-columns: 1fr;
  }

  .sustain__media {
    order: -1;
  }

  /* show image first on small screens */
}

:root {
  --ink: #0f172a;
  --muted: #475569;
  --card: #ffffff;
  --ring: #e9eef5;
  --accent: #0b644b;
  --accent-ink: #f9fdfc;
  --shadow: 0 18px 40px rgba(2, 8, 20, .12);
}

/* ===== Utilities / buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
  border: 1px solid transparent;
  min-width: 160px;
}

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

.btn--primary:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}

.btn--light {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: saturate(1.2) blur(2px);
}

.btn--light:hover {
  background: rgba(255, 255, 255, .22);
}

.btn--ghost {
  background: #0d3b2c0f;
  color: var(--accent);
  border-color: #0b644b33;
}

.btn--ghost:hover {
  background: #0b644b12;
}

/* ================= TESTIMONIALS ================= */
.tst {
  background: #f7f8fb;
}

.tst__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px 34px;
}

.tst__title {
  text-align: center;
  margin: 0 0 22px;
  color: #162338;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
}

.tst-card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.tst-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.tst-stars svg {
  width: 18px;
  height: 18px;
  fill: #f6b31a;
}

.tst-date {
  color: #8b93a1;
  font-size: .86rem;
  white-space: nowrap;
}

.tst-quote {
  color: #1f2937;
  line-height: 1.75;
  margin: 10px 0 14px;
  font-size: 1.02rem;
}

.tst-card__foot {
  display: flex;
  justify-content: flex-start;
}

.tst-author strong {
  display: block;
  color: #0f172a;
}

.tst-author span {
  display: block;
  color: #7a8698;
  font-size: .86rem;
}

.tst__cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* ================= CTA HERO ================= */
.cta-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
}

.cta-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 16, 14, .65), rgba(2, 16, 14, .75)),
    url('https://images.unsplash.com/photo-1505576399279-565b52d4ac71?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  filter: saturate(1.05);
}

.cta-hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px;
  text-align: left;
}

.cta-hero__title {
  margin: 6px 0 10px;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.01em;
}

.cta-hero__sub {
  max-width: 720px;
  line-height: 1.7;
  opacity: .95;
  font-size: clamp(15px, 1.6vw, 17px);
  margin: 0 0 18px;
}

.cta-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 680px) {
  .tst-card {
    padding: 16px;
  }

  .tst-card__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cta-hero__inner {
    text-align: left;
  }
}

:root {
  --ink: #0f172a;
  --muted: #475569;
  --bg: #f8fafc;
  --card: #ffffff;
  --ring: #e9eef5;
  --radius: 14px;
  --shadow: 0 16px 40px rgba(2, 8, 20, .10);
  --green: #0b644b;
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg);
}

.faq__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 16px 24px;
}

.faq__title {
  color: #162338;
  font-weight: 800;
  text-align: center;
  font-size: clamp(24px, 3.2vw, 40px);
  margin: 0 0 18px;
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #1f2937;
  font-weight: 600;
  font-size: .98rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* plus icon */
.faq-plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #f3f6f8;
  position: relative;
  flex: 0 0 auto;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: #1f2a37;
  border-radius: 2px;
  transition: transform .2s ease;
}

.faq-plus::before {
  width: 10px;
  height: 2px;
}

.faq-plus::after {
  width: 2px;
  height: 10px;
}

.faq-item[open] .faq-plus::after {
  transform: scaleY(0);
}

/* turns + into – */

.faq-item__content {
  padding: 0 16px 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: .98rem;
  /* smooth open/close */
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-item[open] .faq-item__content {
  max-height: 260px;
}

/* ===== Visit ===== */
.visit {
  background: #fff;
}

.visit__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 16px 64px;
}

.visit__title {
  text-align: center;
  color: #162338;
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 40px);
  margin: 0 0 18px;
}

.visit-card {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.05fr 1fr;
}

.visit-card__sub {
  margin: 4px 0 10px;
  color: #0f172a;
  font-size: 1.05rem;
}

.visit-list {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.visit-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
}

.v-ico {
  font-size: 18px;
  line-height: 1.1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  min-width: 160px;
  padding: .72rem 1.05rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

.btn--green {
  background: var(--green);
  color: #fff;
}

.btn--green:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
}

.visit-card__map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ring);
  min-height: 260px;
}

.visit-card__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .visit-card {
    grid-template-columns: 1fr;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

.location-section {
  background: #a7c6c3;
  padding: 60px 20px;
}

.location-card {
  max-width: 1200px;
  margin: auto;
  background: transparent;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.location-info2 {
  padding: 20px;
}

.location-info,
.location-map {
  background: #fff;
  border-radius: 20px;
}

.location-info {
  flex: 1;
}

.location-info h2 {
  color: #0a5c45;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: #333;
}

.info-item span {
  font-size: 18px;
}

.cta-btn {
  display: inline-block;
  margin: 20px 0;
  padding: 12px 24px;
  background: #0a5c45;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;

}

.cta-btn:hover {
  background: #084b38;
}

.location-map {
  flex: 1.2;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .location-card {
    flex-direction: column;
  }
}