/*
Theme Name: KFR Custom
Description: A custom WordPress theme for Kenyan Furnished Rentals, focused on boutique medical housing services.
Author: Aiman Fiaz
Version: 1.0
Text Domain: kfr-custom
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* CSS Variables for colors and stuff */
:root {
  /* ===== Brand Colors ===== */
  --color-primary: #b31217;
  --color-secondary: #0f652f;
  --color-dark: #111;
  --color-text: #000000;
  --color-muted: #000000;

  /* ===== Backgrounds ===== */
  --bg-body: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #2f2f38;
  --bg-footer: #3b3b45;

  /* ===== Typography ===== */
  --font-primary:
    "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* ===== UI ===== */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  /* ===== Shadows ===== */
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* =========================
   LOCAL POPPINS (TTF)
   Path: assets/fonts/poppins/
   ========================= */

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-ExtraLightItalic.ttf")
    format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-ExtraBoldItalic.ttf")
    format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

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

body {
  font-family: var(--font-primary);
  color: #1d1d1d;
  color: var(--color-text);
  background: var(--bg-body);
  line-height: 1.6;
}

.home-about {
  padding: 30px 20px;
  background-color: var(--bg-light);
  text-align: center;
}

.home-about__container {
  max-width: 1100px;
  margin: 0 auto;
}

.home-about__title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.home-about__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-muted);
}

.hospital-section {
  background-color: var(--bg-light);
  padding: 7px 15px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.content {
  flex: 1;
}

.top-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-secondary);
  margin-bottom: 20px;
}

h2 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 20px;
}

.content p,
.hashtags,
blockquote {
  font-family: var(--font-primary);
}

.highlight {
  color: var(--color-secondary);
}

.content p {
  margin-bottom: 18px;
  color: var(--color-text);
}

.hashtags {
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: 20px;
  font-size: 14px;
}

.healing-text {
  color: #1f6f43;
}

blockquote {
  padding-left: 20px;
  border-left: 4px solid var(--color-secondary);
  font-style: italic;
  color: var(--color-dark);
  font-size: 12px;
}

blockquote span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  font-style: normal;
}

.view-programs-section {
  background: #ffffff;
  margin: 25px 0;
  text-align: center;
}

.view-programs-btn {
  background-color: #000000;
  color: #ffffff;
  font-size: 9px;
  padding: 9px 30px;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
}

.images {
  flex: 1;
  display: flex;
  gap: 20px;
}

.image {
  overflow: hidden;
}

.image-large {
  flex: 1.2;
  border-bottom-left-radius: 12px;
}

.image-small {
  flex: 1.2;
  border-top-right-radius: 12px;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .container {
    flex-direction: column;
  }

  .images {
    flex-direction: column;
  }
}

/* ========== OUR CASES SECTION ========== */
.our-cases-section {
  padding: 60px 15px 10px 15px;
  background: var(--bg-body);
}

.our-cases-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.our-cases-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.our-cases-top-bar {
  width: 40px;
  height: 4px;
  background: #000;
  border-radius: 2px;
}

.our-cases-title {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.our-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.our-case-card {
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.our-case-image {
  position: relative;
  height: 220px;
}

.our-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.our-case-body {
  margin: 0 auto;
  width: 90%;
  position: relative;
  background: var(--bg-body);
  margin-top: -36px;
  padding: 10px 18px 20px;
}

.our-case-icon {
  position: absolute;
  top: -63px;
  left: 0;
  width: 42px;
  height: 42px;
  border-radius: 3px;
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.our-case-label {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #777;
}

.our-case-body h3 {
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 16px;
}

.our-case-body p {
  padding-bottom: 16px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 18px;
}

.our-case-body a {
  display: inline-block;
  text-transform: UPPERCASE;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .our-cases-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .our-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== OUR CASES FLIP CARDS ========== */
.our-cases-flip-section {
  padding: 0px 20px;
  background: var(--bg-light);
}

.our-cases-flip-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0px 30px;
}

.our-cases-flip-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.our-cases-flip-bar {
  width: 40px;
  height: 4px;
  background: #000;
  border-radius: 2px;
}

.our-cases-flip-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
}

.our-cases-flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.our-cases-flip-card {
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: visible;
  perspective: 1000px;
}

.our-cases-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.our-cases-flip-card:hover .our-cases-flip-inner {
  transform: rotateY(180deg);
}

.our-cases-flip-front,
.our-cases-flip-back {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: var(--shadow-md);
  border-top-left-radius: 9px;
  border-bottom-right-radius: 9px;
  border-bottom: 6px solid #b31217 !important;
  background: var(--bg-body);
}

.our-cases-front-image img {
  width: 100%;
  height: 85%;
  object-fit: cover;
  display: block;
}

.our-cases-front-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.our-cases-front-title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.our-cases-front-divider {
  height: 1px;
  background: rgba(179, 18, 23, 0.35);
}

.our-cases-front-size {
  background: #f2f2f2;
  padding: 3px 12px;
  font-size: 10px;
  color: #2a2a2a;
  text-align: center;
  font-weight: 400;
}

.our-cases-front-features {
  margin: 0;
  padding: 20px 0px 0px 0px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 14px;
  color: #4b4b4b;
  font-size: 14px;
}

.our-cases-front-features li {
  display: flex;
  align-items: center;
}

.our-cases-front-ico {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.our-cases-flip-back {
  transform: rotateY(180deg);
  background: var(--color-primary);
  color: #fff;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.our-cases-back-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.our-cases-back-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

.our-cases-back-list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  line-height: 1.5;
}

.our-cases-back-cta {
  margin-top: auto;
  display: inline-block;
  width: max-content;
  background: var(--bg-body);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .our-cases-flip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .our-cases-flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-cases-flip-card {
    height: 540px;
  }
}

@media (max-width: 600px) {
  .our-cases-flip-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== HEADER ========== */
.header {
  width: 100%;
  background: var(--bg-body);
  font-family: var(--font-primary);
}

.header__topbar {
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.header__topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 24px;
  flex-wrap: wrap;
}

.header__topitem {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0.95;
}

.header__topitem a {
  color: #fff;
  text-decoration: none;
}

.header__topicon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.header__main {
  background: var(--bg-body);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.header__main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-dark);
}

.header__logo-img {
  width: 84px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.header__nav {
  margin-left: auto;
}

.header__nav a,
.header__nav button {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 8px 2px;
  cursor: pointer;
}

.header__nav a:hover,
.header__nav button:hover {
  color: var(--color-primary);
}

.header__nav a.active,
.header__nav button.active {
  color: var(--color-primary) !important;
}

.header__nav .menu-item-has-children {
  position: relative;
}

.header__nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg-body);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  padding: 0px;
  display: none;
  z-index: 50;
}

.header__nav .menu-item-has-children:hover .sub-menu {
  display: block;
}

.header__nav .sub-menu a {
  display: block;
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--color-text);
}

.header__nav .sub-menu a:hover {
  background: rgba(179, 18, 23, 0.08);
  color: var(--color-primary);
}

.header__nav .menu-item-has-children > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
  color: var(--color-text);
  transition: transform 0.2s;
}

.header__nav .menu-item-has-children:hover > a::after {
  content: "▼";
}

.header__burger {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  background: var(--bg-body);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.header__burger span {
  width: 18px;
  height: 2px;
  background: #222;
  display: block;
}

.header__toggle {
  display: none;
}

.header__mobile {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-body);
}

.header__mobile-inner {
  background-color: white;
  width: 100%;
  z-index: 99;
  position: absolute;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header__mobile a {
  padding: 3px 10px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.header__mobile a:hover {
  border-color: rgba(179, 18, 23, 0.35);
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__toggle:checked ~ .header__mobile {
    display: block !important;
  }

  .header__main-inner {
    padding: 12px 16px;
  }

  .header__topbar-inner {
    gap: 14px;
    padding: 8px 14px;
  }

  .header__mobile .sub-menu {
    display: none;
    margin-left: 20px;
    font-size: 16px;
  }

  .header__mobile .sub-menu.is-open {
    display: block;
  }

  .header__mobile .menu-item-has-children > a::after {
    content: "▶";
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.2s;
  }

  .header__mobile .menu-item-has-children > a.is-open::after {
    content: "▼";
  }
}

/* ========== FOOTER ========== */
.footer {
  font-family: var(--font-primary);
  background: var(--bg-footer);
  color: #e9e9ee;
  border-top: px solid #be2227 !important;
}
.foter-nav {
  border-bottom: dotted 2px #ebebeb70;
  padding-bottom: 7px;
  padding-right: 122px;
}
.foter-nav-add {
  border-bottom: dotted 2px rgba(255, 255, 255, 0.1);
  padding-bottom: 7px;
  padding-right: 232px;
}

.footer__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.footer__logo {
  max-width: 196px;
}

.footer__tagline {
  font-size: 9px;
  text-align: center;
  opacity: 0.9;
  margin-top: -10px;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  text-align: center;
}

.footer__social {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.footer__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.footer__divider {
  height: 1px;
  background: rgba(179, 18, 23, 0.35);
  margin-bottom: 14px;
}

.footer__links {
  list-style: none;
  padding: 20px 0px 0px 0px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: #e9e9ee;
  text-decoration: none;
  font-size: 12px;
  padding-bottom: 10px;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.1);
  display: block;
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact {
  list-style: none;
  padding: 23px 0px 0px 0px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 12px;
  font-size: 12px;
}

.footer__icon {
  width: 26px;
  height: 26px;
  border-radius: 3px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 13px;
  color: #fff;
}

.footer__contact a {
  color: #e9e9ee;
  text-decoration: none;
}

.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  background: var(--bg-dark);
}

.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 980px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .foter-nav {
    border-bottom: dotted 2px #ebebeb70;
    padding-right: 106px;
    padding-bottom: 10px;
  }
  .footer__wrap {
    padding: 40px 16px 24px;
  }
  .foter-nav-add {
    border-bottom: dotted 2px #ebebeb70;
    padding-bottom: 10px;
    padding-right: 213px;
  }
  .footer__brand,
  .footer__tagline,
  .footer__socials {
    text-align: left !important;
    justify-content: left;
  }
}

/* ========== HERO SLIDER ========== */
.hero {
  font-family: var(--font-primary);
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  background: var(--color-dark);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero__inner {
  width: 100%;
}

.hero__title {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__text {
  margin: 0 auto 14px;
  max-width: 860px;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero__tags {
  margin: 0 auto 18px;
  max-width: 860px;
  font-size: 12px;
  opacity: 0.9;
}

.hero__btn {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.hero__btn:hover {
  filter: brightness(1.05);
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero__dot.is-active {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.hero__arrow {
  display: none;
}

.hero__arrow:hover {
  background: rgba(0, 0, 0, 0.4);
}

.hero__arrow.prev {
  left: 14px;
}

.hero__arrow.next {
  right: 14px;
}

@media (max-width: 900px) {
  .hero__slider {
    height: 420px;
  }

  .hero__title {
    font-size: 20px;
  }

  .hero__text {
    font-size: 12.5px;
  }
}

@media (max-width: 600px) {
  .hero__slider {
    height: 420px;
  }

  .home-about__title,
  .footer__title {
    font-weight: 700;
    font-size: 23px;
  }

  .hero__text,
  .hero__tags {
    font-size: 12px;
  }

  .hero__arrow {
    display: none;
  }
}

/* WP Active menu item (desktop + mobile) */
.header__nav .current-menu-item > a,
.header__nav .current_page_item > a,
.header__nav .current-menu-ancestor > a,
.header__nav .current_page_ancestor > a {
  color: var(--color-primary) !important;
}

.header__mobile .current-menu-item > a,
.header__mobile .current_page_item > a {
  color: var(--color-primary) !important;
  border-color: rgba(179, 18, 23, 0.35);
}

/* Remove dots/bullets from WP menus */
.header__nav ul,
.header__nav li,
.header__mobile ul,
.header__mobile li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================
   ABOUT US PAGE (SCOPED)
   ========================= */
.about-us-page {
  font-family: var(--font-primary);
  color: #1d1d1d;
  line-height: 1.6;
  background: #f6f6f6;
}

.about-us-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-us-section {
  padding: 42px 0;
}

/* Section heading */
.about-us-section__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.about-us-section__bar {
  width: 44px;
  height: 4px;
  border-radius: 2px;
}

.about-us-section__bar--red {
  background: #b31217;
}

.about-us-section__bar--green {
  background: #1f6f43;
}

.about-us-section__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #111;
}

/* Card */
.about-us-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Buttons */
.about-us-btnPt {
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 9px 26px;
  border-radius: 999px;
  text-transform: uppercase;
}

.about-us-btn {
  margin-top: 34px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 7px 26px;
  border-radius: 999px;
  text-transform: uppercase;
}

.about-us-btn--green {
  background: #1f6f43;
  color: #fff;
}

.about-us-btn--greenpt {
  background: #1f6f43;
  color: #fff;
  padding: 7px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 9px 26px;
  border-radius: 999px;
  text-transform: uppercase;
}

.about-us-btn--green:hover {
  filter: brightness(1.06);
}

.about-us-quote {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.about-us-quote__bar {
  width: 4px;
  border-radius: 2px;
  background: #1f6f43;
  flex: 0 0 auto;
}

.about-us-quote__text {
  font-size: 12px;
  color: #111;
  font-style: italic;
  line-height: 1.7;
}

.about-us-quote--mini .about-us-quote__text {
  font-size: 11.5px;
  opacity: 0.95;
}

/* =========================
   HERO
   ========================= */
.about-us-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  background: #111;
}

.about-us-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/wp-content/uploads/2026/01/The-Healing-Stays-Program.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.about-us-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.about-us-hero__content {
  position: relative;
  z-index: 2;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 16px;
  text-align: center;
  color: #fff;
}

.about-us-hero__inner {
  width: 100%;
  max-width: 850px;
}

.about-us-hero__title {
  margin: 0 0 25px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.about-us-hero__subtitle {
  margin: 0 auto;
  max-width: 900px;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.95;
  margin-bottom:20px;
}

/* =========================
   OUR STORY
   ========================= */
.about-us-story__card {
  padding: 0;
}

.about-us-story__grid {
  display: grid;
  grid-template-columns: 1.65fr 0.85fr;
  gap: 18px;
  padding: 18px;
}

.about-us-story__content {
  background: #fff;
}

.about-us-story__lead {
  margin: 0 0 12px;
  font-size: 13px;
  color: #222;
}

.about-us-story__list {
  margin: 0 0 12px;
  padding-left: 18px;
  font-size: 13px;
  color: #222;
}

.about-us-story__list li {
  margin-bottom: 8px;
}

.about-us-story__para {
  margin: 0 0 12px;
  font-size: 13px;
  color: #333;
}

.about-us-story__media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-us-story__img {
  border-radius: 10px;
  overflow: hidden;
}

.about-us-story__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-us-story__img--top {
  height: 100%;
}

/* =========================
   OUR CAUSE
   ========================= */
.about-us-cause__card {
  padding: 18px;
}

.about-us-cause__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.about-us-cause__para {
  margin: 0;
  font-size: 13px;
  color: #333;
}

.about-us-cause__media {
  display: flex;
  justify-content: flex-end;
}

.about-us-cause__blob {
  width: 260px;
  height: 180px;
  border-radius: 40px;
  overflow: hidden;
}

.about-us-cause__blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   OUR PROGRAMS (TABLE)
   ========================= */
.about-us-programs__card {
  padding: 30px;
}

.about-us-programs__intro {
  margin: 0 0 12px;
  font-size: 12px;
  color: #333;
}

.about-us-programs__table-wrap {
  width: 100%;
  overflow: auto;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-us-programs__table {
  border-collapse: collapse;
}

.about-us-programs__table th {
  background: #1f6f43;
  color: #fff;
  text-align: left;
  padding: 12px 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.about-us-programs__table td {
  padding: 12px 12px;
  font-size: 12.5px;
  color: #2b2b2b;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-us-programs__table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.about-us-programs__foot {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: #333;
}

/* =========================
   MISSION / VISION
   ========================= */
.about-us-values {
  padding-top: 20px;
}

.about-us-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-us-values__card {
  padding: 22px 20px;
}

.about-us-values__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-values__icon img {
  width: 70px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.about-us-values__title {
  text-align: center;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #111;
}

.about-us-values__text {
  text-align: center;
  margin: 0 0 14px;
  font-size: 13px;
  color: #333;
}

.about-us-values__cta {
  margin-top: 8px;
}

.about-us-values__note {
  margin-top: 12px;
  font-size: 12px;
  color: #666;
  text-align: center;
  font-style: italic;
}

/* =========================
   PARTNER BANNER
   ========================= */
.about-us-partner {
  position: relative;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  background: #111;
}

.about-us-partner__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://kanyan.lppcafe.com/wp-content/uploads/2026/01/The-Healing-Stays-Program-1024x683-1.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.about-us-partner__overlay {
  position: absolute;
  inset: 0;
  background:rgb(0 0 0 / 0%);
}

.about-us-partner__content {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 16px;
  text-align: center;
  color: #fff;
}

.about-us-partner__inner {
  width: 100%;
  max-width: 780px;
  padding: 36px 34px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
}

.about-us-partner__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
}
.about-us-partner__titlechild{
  font-size: 13px;
  font-weight: 500;
}

.about-us-partner__text {
  margin: 0 auto 16px;
  max-width: 900px;
  font-size: 12px;
  line-height: 1.75;
  opacity: 0.95;
}

/* =========================RESPONSIVE   ========================= */

@media (max-width: 980px) {
  .about-us-story__grid {
    grid-template-columns: 1fr;
  }

  .about-us-story__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-us-story__img--top,
  .about-us-story__img--bottom {
    height: 170px;
  }

  .about-us-cause__grid {
    grid-template-columns: 1fr;
  }

  .about-us-cause__media {
    justify-content: flex-start;
  }

  .about-us-cause__blob {
    width: 100%;
    max-width: 420px;
    height: 190px;
  }

  .about-us-values__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-us-container {
    padding: 0 16px;
  }

  .about-us-section {
    padding: 34px 0;
  }

  .about-us-hero__content {
    min-height: 240px;
  }

  .about-us-hero__title {
    font-size: 22px;
  }

  .about-us-hero__subtitle {
    font-size: 12px;
  }

  .about-us-story__media {
    grid-template-columns: 1fr;
  }

  .about-us-programs__table {
    min-width: 640px;
  }
}

/* ========================= MISSION / VISION ========================= */
.about-us-mv__grid {
  gap: 32px;
  align-items: start;
}

.about-us-mv__card {
  padding: 36px 42px;
  border-radius: 10px;
  margin-bottom: 30px;
  margin-top: 25px;
}

.about-us-mv__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.about-us-mv__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.about-us-mv__title {
  text-align: center;
  margin: 6px 0 14px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #1f6f43;
  text-transform: uppercase;
}

.about-us-mv__text {
  margin: 0;
  font-size: 13px;
  color: #333;
  line-height: 1.75;
  text-align: center;
}

.about-us-mv__text--center {
  text-align: center;
}

.about-us-mv__quoteRow {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
}

.about-us-mv__quoteBar {
  width: 4px;
  height: 40px;
  background: #1f6f43;
  border-radius: 2px;
}

.about-us-mv__quote {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #111;
  font-style: italic;
  text-align: center;
}

.about-us-mv__right {
  display: grid;
  gap: 18px;
  align-content: start;
}

.about-us-mv__btn {
  justify-self: center;
  margin-top: 0;
}

.about-us-mv__note {
  text-align: center;
  font-size: 12px;
  color: #666;
  font-style: italic;
  margin-top: -4px;
}

@media (max-width: 980px) {
  .about-us-mv__card {
    padding: 28px 24px;
  }
}

.header__main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.header__main-inner .custom-logo {
  width: 100px;
  height: auto;
}

.header__nav {
  margin-left: auto;
}

.custom-logo {
  width: 140px;
  height: auto;
}

@media (max-width: 1024px) {
  .header__main-inner {
    justify-content: space-between;
  }

  .header__main-inner .custom-logo-link {
    flex: 0 0 auto;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .header__main-inner {
    padding: 10px 16px;
  }
  .header__main-inner .custom-logo {
    max-height: 52px;
    width: 100px;
    height: auto;
  }
}
/* ========================= Contact Us Page ========================= */
.contact-section {
  background: #fff;
  padding: 40px 0;
}
.contact-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.contact-title {
  margin: 0 0 18px;
  font-size: 22px;
  color: #0f652f;
}
.contact-right {
  background: #eeeeee85;
  border-left: 1px solid #eee;
  padding: 25px;
}
.contact-side-title {
  margin: 0 0 16px;
  font-size: 18px;
}
.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-ico {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #b31217;
  color: #fff;
  flex: 0 0 34px;
}
.contact-item a {
  color: #111;
  text-decoration: none;
}
.contact-item a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .contact-right {
    border-left: none;
    padding: 10px;
    border-top: 1px solid #eee;
    font-size: 12px;
  }
}
/* ================= HERO TWEAKS ================= */
.partner-hero .about-us-hero__inner {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.partner-hero__desc {
  margin-top: 10px;
  line-height: 1.6;
}

/* Buttons row */
.partner-hero__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  margin-bottom: 14px;
}

.partner-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
  white-space: nowrap;
}

.partner-hero__btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.partner-hero__btn--green {
  background: #0f652f;
  color: #fff;
}
.partner-hero__btn--dark {
  background: #111;
  color: #fff;
}
.partner-hero__btn--red {
  background: #b31217;
  color: #fff;
}

.partner-hero__note {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.9;
}

/* ================= PROGRAM CARDS ================= */

.program-cards {
  padding: 50px 0;
  background: #fff;
}

.program-cards__wrap {
  max-width: 1126px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 26px;
  box-shadow: 0 2px 07px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.program-card__icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.program-card__icon--primary {
  color: #b31217;
}
.program-card__icon--secondary {
  color: #0f652f;
}

.program-card__kicker {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 4px;
}
.partner-why__list {
  text-align: left;
  padding-top:10px;
  padding-bottom:10px;
  padding-left: 30px;
  font-size: 12px;
}
.program-card__title {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 14px 0;
  color: #111;
  font-weight: 600;
}
.program-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: black;
}

@media (max-width: 900px) {
  .program-cards__wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .partner-hero__btn {
    width: 100%;
    max-width: 360px;
  }
}

/* =========================
   HEALING HERO BUTTONS
========================= */
.hs-hero-btns {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hs-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.6px;
  background: transparent;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    opacity 0.15s ease;
}

.hs-hero-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .hs-hero-btn {
    min-width: 0;
    width: 100%;
    max-width: 360px;
  }
}

/* =========================
   ABOUT THE PROGRAM
========================= */
.program-about {
  padding: 56px 0;
  background: #fff;
}

.program-about__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
}

.program-about__blob {
  width: 360px;
  height: 280px;
  border-radius: 48% 52% 45% 55% / 48% 42% 58% 52%;
  overflow: hidden;
  position: relative;
}

.program-about__blob::before,
.program-about__blob::after {
  content: "";
  position: absolute;
  background: #111;
  border-radius: 999px;
  opacity: 0.9;
}

.program-about__blob::before {
  width: 10px;
  height: 10px;
  top: 18px;
  right: 16px;
}
.program-about__blob::after {
  width: 6px;
  height: 6px;
  top: 10px;
  right: 34px;
}

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

.program-about__title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  color: #0f652f;
  font-weight: 600;
}

.program-about__text {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.75;
  color: #333;
  max-width: 720px;
}

.program-about__quote {
  margin: 0;
  display: grid;
  grid-template-columns: 4px 1fr;
  align-items: start;
}

.program-about__quote-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  font-style: italic;
}

.program-about__quote-by {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 700;
  color: #111;
}

@media (max-width: 900px) {
  .program-about__wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .program-about__blob {
    width: 100%;
    max-width: 420px;
    height: 280px;
  }
}

/* =========================
   HOW IT WORKS
========================= */
.how-works {
  padding: 60px 0;
  background: #111;
  color: #fff;
}

.how-works__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-works__head {
  margin-bottom: 30px;
}

.how-works__bar {
  display: block;
  width: 60px;
  height: 4px;
  background: #0f652f;
  margin-bottom: 10px;
}

.how-works__title {
  font-size: 32px;
  margin: 0;
}

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

.how-works__card {
  background: #d0d0d0;
  color: #111;
  padding: 24px;
  border-radius: 10px;
}

.how-works__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.how-works__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 26px;
  color: #0f652f;
}

.how-works__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.how-works__icon:has(img) i {
  display: none;
}

.how-works__num {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #000;
  color: #fff;
  font-size: 11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-works__arrow {
  font-size: 28px;
  color: #0f652f;
}

.how-works__card-title {
  margin: 0 0 10px;
  color: #0f652f;
  font-weight: 600;
}

.how-works__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #222;
}

.how-works__btns {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  .how-works__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .how-works__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   WHO WE SERVE
========================= */
.who-serve {
  padding: 60px 0;
  background: #fff;
}

.who-serve__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.who-serve__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}

.who-serve__title {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  color: #111;
}

.who-serve__line {
  height: 1px;
  width: 220px;
  background:rgb(15 101 47);
;
}

.who-serve__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: start;
}

.who-serve__divider {
  width: 1px;
  height: 140px;
  background: rgba(0, 0, 0, 0.25);
  justify-self: center;
}

.who-serve__item {
  text-align: center;
  padding: 0 28px;
}

.who-serve__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0f652f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
}

.who-serve__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.who-serve__icon:has(img) i {
  display: none;
}

.who-serve__h {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #0f652f;
}

.who-serve__p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: black;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .who-serve__line {
    width: 120px;
  }
  .who-serve__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .who-serve__divider {
    display: none;
  }
  .who-serve__item {
    padding: 0;
  }
}


.ll-section{
  padding:48px 0;
  background:#fff;
}

.ll-wrap{
  border-radius:10px; 
  box-shadow: 0 12px 32px rgba(0, 0, 0, .15);
  max-width:1037px;
  margin:0 auto;
  padding:24px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:36px;
  align-items:center;
}

.ll-title{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.2;
  font-weight:600;
  color:#111;
}

.ll-text{
  margin:0 0 18px;
  font-size:12px;
  line-height:1.75;
  color:black;
  max-width:720px;
}

.ll-subtitle{
  margin:10px 0;
  font-size:16px;
  font-weight:600;
  color:#111;
}

.ll-list{
  margin:0 0 22px;
  padding-left:18px;
  color:black;
  font-size:12px;
  line-height:1.7;
}

.ll-list li{ margin:0px; }

.ll-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.ll-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 22px;
  border-radius:999px;
  font-weight:600;
  font-size:12px;
  letter-spacing:.6px;
  text-transform:uppercase;
  text-decoration:none;
  transition:transform .15s ease, opacity .15s ease, background .15s ease;
  white-space:nowrap;
}

.ll-btn:hover{ transform:translateY(-1px); opacity:.95; }

.ll-btn--primary{
  background:#0f652f;
  color:#fff;
  border:2px solid #0f652f;
}

.ll-btn--outline{
  background:transparent;
  color:#111;
  border:2px solid rgba(0,0,0,.85);
}

.ll-media{
  display:flex;
  justify-content:flex-end;
}

.ll-img{
  width:100%;
  max-width:520px;
  height:320px;
  object-fit:cover;
  border-radius:14px;
}

/* INFO CARD */
.ll-info{
  padding:40px 0 60px;
  background:#f8f8f8;
}

.ll-info__wrap{
  max-width:1077px;
  margin:0 auto;
  padding:0 20px;
}

.ll-info__card{
  background:#fff;
  border-radius:10px;
  box-shadow:0 10px 26px rgba(0,0,0,.12);
  border-bottom:6px solid #0f652f;
}

.ll-info__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  padding:28px 32px;
}

.ll-info__title{
  margin:0 0 10px;
  font-size:18px;
  font-weight:600;
  color:#0f652f;
}

.ll-info__title--mt{ margin-top:22px; }

.ll-info__list{
  margin:0;
  padding-left:18px;
  font-size:14px;
  line-height:1.7;
  color:rgba(0,0,0,.7);
}

.ll-info__list li{ margin:0px;
color:black }

/* BOOKING */
.ll-booking-head{
  padding:60px 0;
  background:#fff;
}

.ll-booking-head__wrap{
  max-width:1077px;
  margin:0 auto;
  padding:0 20px;
}

.ll-booking-head__row{
  display:flex;
  align-items:center;
  gap:18px;
}

.ll-booking-head__title{
  margin:0;
  font-size:32px;
  font-weight:600;
  color:#0f652f;
  white-space:nowrap;
}

.ll-booking-head__line{
  flex:1;
  height:1px;
  background:rgba(0,0,0,.25);
}

.ll-booking-head__sub{
  margin:12px 0 0;
  font-size:15px;
  color:#444;
}

.ll-booking-form{ margin-top:28px; }

/* Responsive */
@media (max-width:900px){
  .ll-wrap{ grid-template-columns:1fr; }
  .ll-media{ justify-content:flex-start; }
  .ll-img{ height:280px; }
}

@media (max-width:800px){
  .ll-info__grid{
    grid-template-columns:1fr;
    gap:22px;
    padding:22px;
  }
}

@media (max-width:520px){
  .ll-btn{ width:100%; }
}