:root {
  --primary: #48a875;
  --primary-dark: #247852;
  --accent: #525b88;
  --cream: #fffaf5;
  --soft: #f6f7f4;
  --text: #333936;
  --muted: #6f7772;
  --dark: #1f2522;
  --card: rgba(255, 255, 255, 0.88);
  --border: rgba(72, 168, 117, 0.18);
  --shadow: 0 24px 70px rgba(31, 37, 34, 0.12);
  --header-offset: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(72, 168, 117, 0.12), transparent 32rem),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 45%, #f6f7f4 100%);
  color: var(--text);
  font: normal 16px/1.75 "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: default;
}

#services,
#about,
#contact {
  scroll-margin-top: var(--header-offset);
}

/*
------------------------------------------
Typography
------------------------------------------
*/
h1,
h2,
h3,
h5,
h6 {
  color: var(--text);
  font-family: "Bree Serif", serif;
  line-height: 1.15;
  margin: 0 0 18px;
  padding: 0;
  text-transform: none;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 26px;
}

h1:after,
h2.service:after,
h3:after,
h5:after,
h6:after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 22px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #a9e7c4);
}

p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 16px;
}

b {
  color: var(--accent);
}

/*
------------------------------------------
Header / Navbar
------------------------------------------
*/
.highlight-color {
  color: var(--primary);
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 250, 245, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(72, 168, 117, 0.16);
  box-shadow: 0 10px 40px rgba(31, 37, 34, 0.06);
}

.header .navbar {
  background: transparent !important;
  padding: 18px 0;
}

.navbar-brand {
  color: var(--text) !important;
  font-size: clamp(22px, 3vw, 32px) !important;
  white-space: normal;
}

.navbar-nav {
  gap: 8px;
}

.navbar-nav > li {
  padding-right: 0;
}

.navbar .nav-link {
  color: #46504b !important;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 16px !important;
  border-radius: 999px;
  transition: all 0.22s ease;
}

.navbar .nav-link:hover {
  color: var(--primary-dark) !important;
  background: rgba(72, 168, 117, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--primary-dark);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.72));
  border: 1px solid rgba(72, 168, 117, 0.2);
  box-shadow: 0 10px 26px rgba(31, 37, 34, 0.08);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.nav-icon-link i {
  font-size: 19px;
  line-height: 1;
}

.nav-icon-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(72, 168, 117, 0.28);
}

/*
------------------------------------------
Main layout
------------------------------------------
*/
.main {
  overflow: hidden;
}

.max-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.features-listing .feature {
  position: relative;
  padding: 28px 20px 32px;
  border: 0;
  background: transparent;
}

.features-listing .feature:nth-child(odd) {
  background: transparent;
  border: 0;
  box-shadow: none;
}

/*
------------------------------------------
FlexSlider / Carousel
------------------------------------------
*/
.flexslider {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 44px 30px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,255,255,0.74)),
    radial-gradient(circle at top right, rgba(72,168,117,0.18), transparent 24rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.flexslider,
.flexslider .flex-viewport,
.flexslider .slides,
.flexslider .slides > li {
  box-sizing: border-box;
}

.flexslider .flex-viewport {
  height: 390px !important;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.flexslider .slides {
  height: 100% !important;
}

.flexslider .slides > li {
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.flexslider .slides > li::after {
  content: "";
  display: table;
  clear: both;
}

.flexslider img {
  height: auto !important;
}

.features-listing .feature .feature-image {
  width: 46% !important;
}

.features-listing .feature .feature-desc {
  width: 50% !important;
  padding: 16px 8px;
  text-align: left;
}

.flexslider .slides > li:nth-child(odd) .feature-image {
  float: right !important;
}

.flexslider .slides > li:nth-child(odd) .feature-desc {
  float: left !important;
}

.flexslider .slides > li:nth-child(even) .feature-image {
  float: left !important;
}

.flexslider .slides > li:nth-child(even) .feature-desc {
  float: right !important;
}

.features-listing .feature .feature-image img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(31, 37, 34, 0.18);
  transform: rotate(-1.5deg);
}

.flexslider .slides > li:nth-child(even) .feature-image img {
  transform: rotate(1.5deg);
}

.feature-desc .service {
  color: var(--text);
}

.feature-desc p {
  max-width: 620px;
}

.flexslider .flex-control-nav {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  z-index: 50;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100% !important;
  margin: 8px auto 0 !important;
  padding: 0 !important;
  transform: none !important;
  text-align: center;
}

.flexslider .flex-control-nav li {
  display: inline-flex;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 999px;
}

.flexslider .flex-control-nav li a {
  display: block;
  width: 13px;
  height: 13px;
  background: rgba(72, 168, 117, 0.3);
  border-radius: 999px;
  box-shadow: none;
  text-indent: -9999px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.flexslider .flex-control-nav li a:hover {
  background: rgba(72, 168, 117, 0.58);
}

.flexslider .flex-control-nav li a.flex-active {
  width: 34px;
  background: var(--primary);
}

/*
------------------------------------------
About section
------------------------------------------
*/
.about-section {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 30px auto 78px;
  padding: clamp(22px, 3.4vw, 44px) !important;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(22px, 3.4vw, 46px);
  align-items: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(72, 168, 117, 0.16), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(82, 91, 136, 0.08), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,250,245,0.94));
  border: 1px solid rgba(72, 168, 117, 0.16);
  box-shadow: 0 22px 62px rgba(31, 37, 34, 0.08);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  left: -115px;
  bottom: -135px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(72, 168, 117, 0.11);
  pointer-events: none;
}

.about-copy {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 3.4vw, 36px);
  border-radius: 27px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,255,255,0.68));
  border: 1px solid rgba(72, 168, 117, 0.18);
  box-shadow: 0 16px 42px rgba(31, 37, 34, 0.07);
}

.section-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--primary-dark) !important;
  background: rgba(72, 168, 117, 0.12);
  border: 1px solid rgba(72, 168, 117, 0.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy h2 {
  font-size: clamp(29px, 3.5vw, 45px);
  margin-bottom: 18px !important;
}

.about-copy h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 5px;
  margin: 19px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #a9e7c4);
}

.about-copy p {
  font-size: 16px;
  line-height: 1.68;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.about-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 19px 21px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(72, 168, 117, 0.14);
  box-shadow: 0 10px 30px rgba(31, 37, 34, 0.055);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.about-point:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(72, 168, 117, 0.28);
  box-shadow: 0 18px 46px rgba(31, 37, 34, 0.1);
}

.about-point-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 24px rgba(72, 168, 117, 0.24);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.about-point h3 {
  color: var(--text) !important;
  font-size: 20px;
  margin-bottom: 7px !important;
}

.about-point h3::after {
  display: none !important;
  content: none !important;
}

.about-point p {
  color: #66716b;
  font-size: 15px;
  line-height: 1.62;
  margin: 0;
}

/*
------------------------------------------
Footer
------------------------------------------
*/
.footer {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(72, 168, 117, 0.28), transparent 26rem),
    radial-gradient(circle at bottom right, rgba(82, 91, 136, 0.18), transparent 24rem),
    linear-gradient(135deg, #1f2522, #111613);
  color: rgba(255,255,255,0.78);
  padding: 46px 20px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 34px;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 18px;
  align-items: stretch;
}

.footer-card,
.footer-map {
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
}

.footer-card {
  padding: 28px;
}

.footer-eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #baf0d0 !important;
  background: rgba(72, 168, 117, 0.14);
  border: 1px solid rgba(72, 168, 117, 0.22);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer h3 {
  color: #fff !important;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 22px;
  text-transform: none;
}

.footer h3::after {
  display: none !important;
  content: none !important;
}

.footer p,
.footer b {
  color: rgba(255,255,255,0.78) !important;
}

.footer-info p {
  margin-bottom: 18px;
  line-height: 1.7;
}

.footer-info span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 800;
}

.footer a {
  color: #baf0d0 !important;
  text-decoration: none !important;
  transition: color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.footer a:hover {
  color: #fff !important;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
  font-weight: 800;
}

.footer-instagram::before,
.footer-instagram::after {
  display: none !important;
  content: none !important;
}

.footer-instagram:hover {
  transform: translateY(-2px);
  background: rgba(72, 168, 117, 0.18);
}

.footer-instagram i {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 28px rgba(72, 168, 117, 0.25);
}

.footer-map {
  min-height: 260px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  border: 0;
  filter: saturate(0.95) contrast(1.03);
}

/*
------------------------------------------
Responsive
------------------------------------------
*/
@media screen and (max-width: 1000px) {
  :root {
    --header-offset: 84px;
  }

  .header .navbar {
    padding: 14px 0;
  }

  .navbar-brand {
    padding-right: 0 !important;
  }

  .nav-actions {
    margin-top: 12px;
  }

  .features-listing .feature {
    padding: 24px 12px 34px;
  }

  .flexslider {
    padding: 28px 28px 30px;
    border-radius: 28px;
  }

  .flexslider .flex-viewport {
    height: 760px !important;
  }

  .features-listing .feature .feature-image,
  .features-listing .feature .feature-desc {
    float: none !important;
    width: 100% !important;
  }

  .features-listing .feature .feature-image img {
    max-width: 100%;
    transform: none !important;
  }

  .feature-desc {
    text-align: left !important;
  }

  .flexslider .flex-control-nav {
    margin-top: 8px !important;
  }

  .about-section {
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding: 26px 16px !important;
    border-radius: 26px;
  }

  .about-point:hover {
    transform: translateY(-3px);
  }

  .footer {
    padding: 40px 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 240px;
  }
}

@media screen and (max-width: 600px) {
  :root {
    --header-offset: 78px;
  }

  body {
    font-size: 15px;
  }

  .features-listing .feature {
    padding: 22px 12px 30px;
  }

  .flexslider {
    padding: 20px 20px 28px;
    border-radius: 24px;
  }

  .flexslider .flex-viewport {
    height: 820px !important;
  }

  .flexslider .flex-control-nav {
    margin-top: 8px !important;
  }

  h2 {
    font-size: 30px;
  }

  p {
    font-size: 16px;
  }

  .about-section {
    width: min(100% - 24px, 1120px);
    padding: 20px 13px !important;
    border-radius: 22px;
    gap: 16px;
  }

  .about-copy {
    padding: 22px;
    border-radius: 20px;
  }

  .about-copy h2 {
    font-size: 28px;
  }

  .about-point {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 18px;
    border-radius: 18px;
  }

  .about-point-number {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .about-point h3 {
    font-size: 20px;
  }

  .footer {
    padding: 34px 12px;
  }

  .footer::before {
    inset: 10px;
    border-radius: 24px;
  }

  .footer-card {
    padding: 24px;
    border-radius: 24px;
  }

  .footer h3 {
    font-size: 25px;
  }

  .footer-map {
    border-radius: 24px;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 220px;
  }

  .footer-instagram {
    align-items: flex-start;
  }

  .footer h3:after,
  h2.service:after {
    margin-left: auto;
    margin-right: auto;
  }
}
