@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}
.btn:hover {
  opacity: 0.9;
}
.btn:active {
  transform: scale(0.98);
}
.btn--green {
  background: rgb(80, 160, 0);
  color: #fff;
}
.btn--orange {
  background: rgb(255, 120, 0);
  color: #fff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  display: block;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

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

.header__link {
  font-weight: 500;
  color: #1a1a1a;
}
.header__link:hover {
  color: rgb(80, 160, 0);
}
.header__link--dropdown::after {
  content: " ▾";
  font-size: 0.75em;
}

.header__cta {
  flex-shrink: 0;
}

.hero {
  background: linear-gradient(135deg, rgb(80, 160, 0) 0%, rgb(140, 200, 0) 100%);
  color: #fff;
  padding: 64px 0 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin: 0 0 32px;
}

.hero__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero__stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero__actions {
  display: flex;
  gap: 16px;
}

.hero__image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  color: #1a1a1a;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.info-bar {
  margin-top: -32px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.info-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-bar__icon {
  font-size: 1.5rem;
}

.info-bar__label {
  display: block;
  font-size: 0.85rem;
  color: #555;
}

.info-bar__value {
  font-weight: 600;
  color: #1a1a1a;
}

.info-bar__cta {
  flex-shrink: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head__title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
}
.section-head--light .section-head__title {
  color: #fff;
}

.about {
  padding: 64px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgb(80, 160, 0);
  color: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.about__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #1a1a1a;
}

.about__body {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.services {
  padding: 64px 0;
  background: #fafafa;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-card__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16/10;
  background: #eee;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.service-card__excerpt {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 12px;
}

.service-card__link {
  font-size: 1.25rem;
  color: rgb(255, 120, 0);
  font-weight: 600;
}

.team {
  padding: 64px 0;
}

.team__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 20px;
}

.team__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.team__tag {
  display: inline-block;
  padding: 6px 14px;
  background: #f0f0f0;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #1a1a1a;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-card__image-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgb(80, 160, 0);
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.team-card__name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.team-card__role {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.testimonials {
  padding: 64px 0;
  background: rgb(80, 160, 0);
  color: #fff;
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  color: #1a1a1a;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-card__quote-icon {
  font-size: 4rem;
  color: rgb(80, 160, 0);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-card__quote {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 24px;
  color: #555;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__name {
  display: block;
  font-weight: 600;
}

.testimonial-card__role {
  font-size: 0.9rem;
  color: #555;
}

.testimonial-card__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 8px;
}

.testimonial-card__arrow {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.testimonial-card__arrow:hover {
  background: #f5f5f5;
  border-color: rgb(255, 120, 0);
}

.news {
  padding: 64px 0;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s;
}
.news-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.news-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.news-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  padding: 16px 20px 8px;
}

.news-card__excerpt {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  padding: 0 20px 20px;
}

.booking {
  padding: 64px 0;
  background: #fafafa;
}

.booking__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 32px;
}

.booking__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.booking__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.booking-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #555;
}

.booking-card__line {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.booking-form {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.booking-form__label {
  display: block;
}
.booking-form__label--full {
  grid-column: 1/-1;
}

.booking-form__input {
  width: 100%;
  padding: 12px 16px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-top: 4px;
}
.booking-form__input:focus {
  outline: none;
  border-color: rgb(80, 160, 0);
}

.booking-form__textarea {
  min-height: 100px;
  resize: vertical;
}

.booking-form__checkbox {
  display: block;
  margin: 16px 0 24px;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
}
.booking-form__checkbox input {
  margin-right: 8px;
}

.booking-form__submit {
  width: 100%;
  padding: 14px;
}

.footer {
  background: linear-gradient(135deg, rgb(80, 160, 0) 0%, rgb(140, 200, 0) 100%);
  color: #fff;
  padding: 48px 0 0;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__logo {
  display: block;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer__description {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0 0 16px;
  line-height: 1.5;
  max-width: 320px;
}

.footer__copyright {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}

.footer__heading {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
.footer__link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  gap: 24px;
  padding: 20px 0;
}

.footer__legal {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer__legal:hover {
  color: #fff;
}
