.nav-toggle {
  display: none;
}
.nav-toggle:checked ~ .nav-links {
  right: 0;
}
.nav-toggle:checked ~ .nav-toggle-label span {
  background: transparent;
}
.nav-toggle:checked ~ .nav-toggle-label span::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle:checked ~ .nav-toggle-label span::after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-toggle-label {
  display: none;
  position: relative;
  z-index: 1000;
  height: 24px;
  width: 30px;
  cursor: pointer;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: white;
  height: 2px;
  width: 30px;
  position: absolute;
  transition: all 0.3s ease;
}
.nav-toggle-label span {
  top: 11px;
}
.nav-toggle-label span::before, .nav-toggle-label span::after {
  content: "";
}
.nav-toggle-label span::before {
  top: -8px;
}
.nav-toggle-label span::after {
  top: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  margin: 0;
}
.nav-links li a {
  position: relative;
}
@media (min-width: 768px) {
  .nav-links {
    gap: 0;
  }
  .nav-links a {
    display: block;
    padding: 0.5rem 1rem;
  }
  .nav-links li:first-child a {
    padding-left: 1rem;
  }
  .nav-links li:last-child a {
    padding-right: 1rem;
  }
}

@media (max-width: 910px) {
  .nav-toggle-label {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    height: 100vh;
    width: 70%;
    max-width: 300px;
    flex-direction: column;
    gap: 2rem;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
  }
  .nav-links li {
    opacity: 0.9;
    text-align: right;
  }
  .nav-links li a {
    font-size: 1.2rem;
  }
  .nav-links li a.active::after {
    bottom: -2px;
  }
}
.customer-reviews {
  padding: 4rem 0;
  background-color: #f9fafb;
}
.customer-reviews__header {
  text-align: center;
  margin-bottom: 3rem;
}
.customer-reviews__header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.customer-reviews__header p {
  font-size: 1.125rem;
  color: #4b5563;
}
.customer-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.customer-reviews__card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.customer-reviews__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.customer-reviews__card-header h3 {
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0;
}
.customer-reviews__card-header .rating {
  display: flex;
  align-items: center;
  color: #f59e0b;
  font-weight: 600;
}
.customer-reviews__card-header .rating span {
  margin-left: 0.25rem;
}
.customer-reviews__card-body {
  color: #4b5563;
  flex-grow: 1;
}
.customer-reviews__card-footer {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: auto;
}
.customer-reviews__cta {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .customer-reviews__grid {
    grid-template-columns: 1fr;
  }
}
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
}
.photo-gallery a {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
}
.photo-gallery a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.photo-gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

@font-face {
  font-family: "Abel";
  font-style: normal;
  font-weight: normal;
  src: url("/assets/font/abel-latin-400-normal.woff2") format("woff2"), url("/assets/font/abel-latin-400-normal.woff") format("woff");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --system-ui:
    system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  font-size: 1.2rem;
  font-family: var(--system-ui);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 2rem;
  line-height: 2;
}
@media (max-width: 768px) {
  body {
    font-size: 1rem;
    padding-top: 75px;
    gap: 1rem;
  }
}

h1,
h2,
h3,
h4 {
  color: #2e7531;
  line-height: 1.4;
  font-family: "Abel", var(--system-ui);
}

nav {
  font-family: "Abel", var(--system-ui);
}

a {
  color: #2e7531;
}

.margin-top {
  margin-top: 1rem;
}

hr {
  color: #388e3c;
  opacity: 0.2;
  height: 1px;
  margin: 2rem 0;
}

blockquote {
  font-style: italic;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container > .row {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 768px) {
  .container > .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

header {
  padding-left: 1rem;
  background: #1a1a1a;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  display: flex;
}
header .logo img {
  height: 40px;
  width: auto;
  display: block;
}
header nav {
  background: #1a1a1a;
  padding: 1rem;
  position: relative;
}
header .nav-links {
  background: #1a1a1a;
  font-size: larger;
}
header .nav-links a {
  color: white;
}
header .nav-links a:hover {
  color: yellow;
}
header .nav-links a.active {
  color: #4caf50;
}
@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #1a1a1a;
    padding: 5px;
  }
  header .logo {
    padding: 0.5rem 1rem;
  }
  header .logo img {
    height: 25px;
  }
}

article {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(15px);
  animation: articleFadeIn 0.6s ease-out 0.1s forwards;
}
@media (max-width: 768px) {
  article {
    gap: 1rem;
    padding: 0 1rem;
  }
}
@media (max-width: 1200px) {
  article {
    padding: 0 0.5rem;
  }
}
article a {
  transition: color 0.3s ease;
}
article a:hover {
  color: black;
}
article .content img {
  display: block;
  max-width: 30%;
  width: auto;
  height: auto;
  max-height: 400px;
  float: right;
  margin: 0 0 1rem 1rem;
  border: 1px solid #4caf50;
  border-radius: 0 20px 0 20px;
}
article .content .center img {
  max-width: 70%;
  margin: 1rem auto;
  float: none;
}
@media (max-width: 768px) {
  article .content .center-right img {
    max-width: 70%;
    margin: 1rem auto;
    float: none;
  }
}

.hero {
  color: white;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  margin-top: -2rem;
  opacity: 0;
  animation: heroFadeIn 0.6s ease-out forwards;
}
.hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4624/2084;
  height: auto;
}
.hero h1 {
  background: rgba(0, 0, 0, 0.6);
  color: #4bcc54;
  padding: 1rem;
  position: absolute;
  margin: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes articleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.accreditations-container {
  overflow: hidden;
}
.accreditations-container .scroll {
  display: flex;
  gap: 1rem;
  padding: 2px 0 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: stretch;
}
.accreditations-container .scroll::-webkit-scrollbar {
  display: none;
}
.accreditations-container .scroll .item {
  flex: 0 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  width: 20%;
  padding-top: 20%;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.7s ease-in-out forwards;
}
.accreditations-container .scroll .item:nth-child(1) {
  animation-delay: 0.1s;
}
.accreditations-container .scroll .item:nth-child(2) {
  animation-delay: 0.2s;
}
.accreditations-container .scroll .item:nth-child(3) {
  animation-delay: 0.3s;
}
.accreditations-container .scroll .item:nth-child(4) {
  animation-delay: 0.4s;
}
.accreditations-container .scroll .item:nth-child(5) {
  animation-delay: 0.5s;
}
.accreditations-container .scroll .item:nth-child(6) {
  animation-delay: 0.6s;
}
.accreditations-container .scroll .item:nth-child(n+7) {
  animation-delay: 0.7s;
}
.accreditations-container .scroll .item:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.accreditations-container .scroll .item img {
  height: 80%;
  width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
@media (min-width: 768px) {
  .accreditations-container .scroll .item {
    width: calc((100% - 5rem) / 6);
    padding-top: calc((100% - 5rem) / 6);
  }
}

.card {
  background: #f9f9f9;
  min-width: 50%;
  flex: 1;
  min-width: 250px;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .card {
    padding: 1rem;
  }
}
@media (min-width: 1200px) {
  .card {
    padding: 1.5rem;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  align-content: center;
  text-align: center;
}
@media (min-width: 769px) {
  .service-card {
    flex: 1 1 calc(33.333% - 1.33rem);
    max-width: calc(33.333% - 1.33rem);
  }
}
@media (min-width: 900px) {
  .service-card {
    flex: 1 1 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
  }
}
.service-card .header-icon {
  width: 30%;
  height: auto;
}
.service-card > * {
  margin: 0;
  padding: 0;
}

.row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.row.v-padding {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 796px) {
  .row {
    gap: 1rem;
  }
}

.highlight {
  background: white;
  flex: 1;
  min-width: 250px;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.highlight h3 {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .highlight {
    min-width: 100%;
  }
}

.accreditation-logo-card {
  margin-top: 1rem;
}

.accreditation-logo {
  display: block;
  margin: 0 auto;
  max-width: 40%;
  height: auto;
}

.services-heading {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .services-heading {
    display: block;
  }
}
.services-heading h2 {
  margin-top: 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.2s ease;
}
.services-list a:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.services-list a:hover img {
  filter: none;
}
.services-list img {
  width: 40px;
  height: 40px;
  transition: filter 0.3s linear;
  filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(49%) contrast(119%);
}
.services-list small {
  display: block;
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5rem;
  font-weight: normal;
}
@media (min-width: 769px) {
  .services-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5rem;
  }
  .services-list a {
    flex: 1 1 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
    justify-content: center;
  }
}
@media (min-width: 900px) {
  .services-list a {
    flex: 1 1 calc(25% - 1.125rem);
    max-width: calc(25% - 1.125rem);
  }
}

.accreditation-url {
  text-align: center;
  font-weight: bold;
}

footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 2rem;
}
footer a {
  color: #22a02a;
}
footer .social-links {
  list-style-type: none;
  padding: 1rem 0;
}
footer .social-links li {
  display: inline-block;
  margin: 0 0.5rem;
}
footer .social-links li img {
  filter: invert(100%);
  width: 50px;
  height: auto;
  transition: all 0.3s ease;
}
footer .social-links li img:hover {
  transform: scale(1.3) rotate(5deg);
  filter: invert(100%) drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
}
footer .areas-covered {
  max-width: 30rem;
  margin: 1rem auto;
  font-size: 0.9rem;
  line-height: 1.2rem;
}

.contact-form-form {
  width: 100%;
  max-width: 500px;
  padding: 1rem;
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.contact-form-form label,
.contact-form-form input,
.contact-form-form textarea {
  display: block;
  width: 100%;
  margin: 0 0 1rem 0;
}
.contact-form-form label {
  color: #2e7531;
  font-family: "Abel", var(--system-ui);
}
.contact-form-form label.url {
  display: none;
}
.contact-form-form input,
.contact-form-form textarea {
  padding: 0.3rem 0.5rem;
  font-family: "Abel", var(--system-ui);
  border-radius: 3px;
  border: 1px solid #cccccc;
  font-size: 1.2rem;
}
.contact-form-form textarea {
  height: 6rem;
}

.image-row p {
  display: flex;
  gap: 1em;
}
.image-row p img {
  height: auto;
  max-width: 100%;
  min-width: 0;
}

.btn {
  display: inline-block;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 200px;
  font-size: 1.2rem;
  line-height: 1.2rem;
}
.btn.primary-btn {
  background-color: #2e7531;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}
.btn.primary-btn:hover {
  background-color: #2e7531;
  box-shadow: 0 5px 15px rgba(46, 117, 49, 0.4);
}
.btn.primary-btn:hover::before {
  left: 100%;
}
.btn.secondary-btn {
  background-color: white;
  color: #2e7531;
  border: 1px solid #2e7531;
}
.btn.secondary-btn:hover {
  background-color: #f0f0f0;
}