@charset "UTF-8";
/* ============================
   DESIGN TOKENS
   ============================ */
:root {
  --clr-sage: #7B9E6B;
  --clr-sage-light: #A8C49A;
  --clr-sage-dark: #5A7A4E;
  --clr-cream: #FAF7F2;
  --clr-cream-warm: #F5F0E8;
  --clr-gold: #D4A853;
  --clr-gold-light: #E8CC8A;
  --clr-charcoal: #2D2D2D;
  --clr-text: #3A3A3A;
  --clr-text-muted: #6E6E6E;
  --clr-white: #FFFFFF;
  --clr-black: #000000;
  --clr-overlay: rgba(250, 247, 242, 0.85);
  --ff-heading: DM Serif Display, serif;
  --ff-body: Inter, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-float: 0 12px 40px rgba(123, 158, 107, 0.15);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================
   MIXINS
   ============================ */
/* ============================================================
   CONTACT PAGE
   ============================================================ */
/* ──────────────────────────────────────────
   1) HERO SECTION
────────────────────────────────────────── */
.contact-hero {
  position: relative;
  background-color: #FAF7F2;
  padding-block: 6rem;
  overflow: hidden;
  min-block-size: 75dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(123, 158, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

.contact-hero__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
  position: relative;
  z-index: 10;
}

.contact-hero__icons {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.contact-hero__icon {
  position: absolute;
  color: #7B9E6B;
  width: 28px !important;
  opacity: 0.4 !important;
  animation: float-icon var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}
.contact-hero__icon:nth-child(1) {
  top: 20%;
  left: 15%;
  --dur: 9s;
}
.contact-hero__icon:nth-child(2) {
  top: 50%;
  left: 8%;
  --dur: 12s;
  --delay: 1.5s;
  color: #D4A853;
}
.contact-hero__icon:nth-child(3) {
  bottom: 25%;
  left: 20%;
  --dur: 10s;
  --delay: 0.5s;
}
.contact-hero__icon:nth-child(4) {
  top: 15%;
  right: 20%;
  --dur: 11s;
  --delay: 2s;
  color: #D4A853;
}
.contact-hero__icon:nth-child(5) {
  top: 55%;
  right: 10%;
  --dur: 8s;
  --delay: 1s;
}
.contact-hero__icon:nth-child(6) {
  bottom: 20%;
  right: 25%;
  --dur: 9.5s;
  --delay: 0.8s;
  color: #7B9E6B;
}

.contact-hero__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: 0.5px;
  margin-block-end: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}
.contact-hero__title em {
  color: #7B9E6B;
  font-style: italic;
  position: relative;
  display: inline-block;
}
.contact-hero__title em::after {
  content: "";
  position: absolute;
  inset-block-end: 2px;
  inset-inline: -4px;
  block-size: 14px;
  background: rgba(123, 158, 107, 0.15);
  border-radius: 8px;
  z-index: -1;
}

.contact-hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #6E6E6E;
  max-width: 540px;
  margin: auto;
  opacity: 0;
  text-wrap: pretty;
  transform: translateY(20px);
  animation: hero-fade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

/* ──────────────────────────────────────────
   2) SECTION HEADER
────────────────────────────────────────── */
.contact-header {
  text-align: center;
  max-inline-size: 780px;
  margin-inline: auto;
  margin-block-end: 6rem;
}

.contact-header__badge {
  display: inline-block;
  background: rgba(123, 158, 107, 0.1);
  color: #5A7A4E;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-block-end: 1.5rem;
}

.contact-header__title {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.contact-header__subtitle {
  font-size: 1.1rem;
  color: #6E6E6E;
  text-wrap: balance;
}

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}
.reveal--active {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   3) CONTACT SECTION (Grid)
────────────────────────────────────────── */
.contact-section {
  background-color: #FFFFFF;
  padding-block: 6rem;
  position: relative;
}

.contact-section__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Contact Info (Left Side - Elevated Solid Card) */
.contact-info {
  background: #7B9E6B;
  color: #FFFFFF;
  padding: 4rem 3rem;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(123, 158, 107, 0.25);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-info::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info__title {
  font-size: 1.7rem;
  margin-block-end: 0.75rem;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}

.contact-info__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  text-wrap: pretty;
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 5;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__item:hover .contact-info__icon {
  background-color: #D4A853;
  color: #2D2D2D;
  transform: scale(1.05);
}

.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.contact-info__label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-info__link {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #FFFFFF;
  text-decoration: none;
  font-style: normal;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 500;
  text-wrap: balance;
}
.contact-info__link:hover {
  color: #E8CC8A;
}

/* ──────────────────────────────────────────
   4) CONTACT FORM (Right Side)
────────────────────────────────────────── */
.contact-form-wrapper {
  background: #FFFFFF;
  padding: 4rem 3rem;
  border-radius: 28px;
  box-shadow: 0 15px 50px rgba(45, 45, 45, 0.08);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form__row {
  display: grid;
  gap: 1.5rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2D2D2D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-form__label .required-star {
  color: #ff4d4d;
  margin-inline-start: 1px;
  vertical-align: 2px;
}

.contact-form__input,
.contact-form__textarea {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #2D2D2D;
  padding: 1rem;
  background: rgba(250, 247, 242, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #a0a0a0;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: #A8C49A;
  box-shadow: 0 4px 12px rgba(123, 158, 107, 0.08);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__error {
  font-size: 0.75rem;
  color: #ff4d4d;
  margin-top: -4px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.3s ease;
  font-weight: 500;
}
.contact-form__error.is-visible {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 0.75rem;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
  background: #2D2D2D;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-form__submit:hover, .contact-form__submit.is-valid {
  background: #7B9E6B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 158, 107, 0.25);
}
.contact-form__submit:hover .icon-arrow, .contact-form__submit.is-valid .icon-arrow {
  transform: translateX(4px);
}
.contact-form__submit.is-valid:hover {
  background-color: #5A7A4E;
}
.contact-form__submit .icon-arrow {
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact-form__submit.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Success State — Premium Refinement */
.contact-success {
  display: none;
  opacity: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-success.is-active {
  display: block;
  opacity: 1;
}
.contact-success.is-active .contact-success__icon-box {
  animation: success-pop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.contact-success.is-active .contact-success__title {
  animation: fade-in-up 1s cubic-bezier(0.2, 0, 0.2, 1) 0.3s forwards;
}
.contact-success.is-active .contact-success__text {
  animation: fade-in-up 1s cubic-bezier(0.2, 0, 0.2, 1) 0.5s forwards;
}
.contact-success.is-active .contact-success__image-wrapper {
  animation: fade-in-up 1.2s cubic-bezier(0.2, 0, 0.2, 1) 0.7s forwards;
}
.contact-success.is-active .contact-success__sparkle {
  animation: sparkle-float 4s ease-in-out infinite;
}
.contact-success.is-active .contact-success__bg-blob {
  animation: blob-pulse 10s ease-in-out infinite;
}

.contact-success__decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.contact-success__sparkle {
  position: absolute;
  color: #D4A853;
  opacity: 0;
}
.contact-success__sparkle.sparkle-1 {
  top: 10%;
  left: 8%;
  color: #7B9E6B;
  width: 22px;
  height: 22px;
  animation-delay: 0.1s;
}
.contact-success__sparkle.sparkle-2 {
  top: 12%;
  right: 10%;
  width: 18px;
  height: 18px;
  animation-delay: 0.6s !important;
}
.contact-success__sparkle.sparkle-3 {
  bottom: 15%;
  left: 12%;
  color: #D4A853;
  width: 16px;
  height: 16px;
  animation-delay: 1s !important;
}
.contact-success__sparkle.sparkle-4 {
  bottom: 20%;
  right: 8%;
  color: #7B9E6B;
  width: 20px;
  height: 20px;
  animation-delay: 1.5s !important;
}
.contact-success__sparkle.sparkle-5 {
  top: 40%;
  left: 5%;
  color: #D4A853;
  width: 14px;
  height: 14px;
  animation-delay: 2s !important;
}
.contact-success__sparkle.sparkle-6 {
  top: 45%;
  right: 5%;
  color: #D4A853;
  width: 14px;
  height: 14px;
  animation-delay: 2.5s !important;
}

.contact-success__icon-box {
  width: 70px;
  height: 70px;
  background: rgba(123, 158, 107, 0.1);
  color: #7B9E6B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: scale(0.5);
  position: relative;
  z-index: 2;
}
.contact-success__icon-box svg {
  width: 35px;
  height: 35px;
}

.contact-success__title {
  font-size: clamp(2rem, 3.4vw, 2.4rem);
  margin-block-end: 2rem;
  opacity: 0;
  position: relative;
  z-index: 2;
}
.contact-success__title em {
  color: #7B9E6B;
  font-style: italic;
}

.contact-success__text {
  font-size: 1.1rem;
  margin: 0 auto 3rem;
  opacity: 0;
  text-wrap: balance;
  position: relative;
  z-index: 2;
}

.contact-success__image-wrapper {
  max-width: 180px;
  margin: 0 auto;
  opacity: 0;
  position: relative;
  z-index: 2;
}

.contact-success__image {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.contact-success__btn {
  opacity: 0;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

/* Custom Success Animations — Calm & Premium */
@keyframes success-pop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes sparkle-float {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: translate(15px, -30px) scale(1.4) rotate(45deg);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blob-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-48%, -52%) scale(1.15);
    opacity: 0.4;
  }
}
/* ──────────────────────────────────────────
   5) MAP SECTION (Modern Minimal Overlay)
────────────────────────────────────────── */
.map-section {
  padding-block: 6rem 150px;
  position: relative;
  overflow: hidden;
}

.map-section__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.map-section__wrapper {
  position: relative;
  height: clamp(350px, 45vw, 550px);
  border-radius: 28px;
  overflow: hidden;
  border: 5px solid #FFFFFF;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}
.map-section__wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.1) opacity(0.9);
  transition: filter 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.map-section__wrapper iframe:hover {
  filter: grayscale(0%) contrast(1) opacity(1);
}

/* ──────────────────────────────────────────
   6) RESPONSIVE DESIGN
────────────────────────────────────────── */
@media (min-width: 1500px) {
  .contact-hero__container,
  .contact-section__container,
  .map-section__container {
    max-inline-size: 1450px;
  }
  .contact-hero__title {
    font-size: clamp(3.4rem, 5vw, 4.2rem);
  }
  .contact-hero__subtitle {
    max-inline-size: 780px;
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  }
  .contact-success__title {
    font-size: 2.8rem;
  }
}
@media (width <= 1024px) {
  .contact-hero {
    min-block-size: 45dvh;
  }
}
@media (width < 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (width <= 768px) {
  .contact-hero {
    padding-block: 5rem 4rem;
  }
  .contact-section {
    padding-block: 4rem;
  }
  .map-section {
    padding-block: 4rem 115px;
  }
  .contact-header {
    margin-block-end: 4rem;
  }
}
@media (width < 768px) {
  .contact-hero__title,
  .contact-header__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
  }
  .contact-hero {
    min-block-size: 50dvh;
  }
  .contact-hero__subtitle {
    max-width: 90%;
  }
  .contact-info,
  .contact-form-wrapper {
    padding: 3rem 2rem;
  }
}
@media (width <= 640px) {
  .contact-hero__icon:nth-child(1) {
    left: 6%;
    top: 15%;
  }
  .contact-hero__icon:nth-child(2) {
    left: 4%;
  }
  .contact-hero__icon:nth-child(3) {
    bottom: 10%;
  }
  .contact-hero__icon:nth-child(4) {
    right: 5%;
  }
  .contact-hero__icon:nth-child(5) {
    top: 50%;
    right: 5%;
  }
  .contact-hero__icon:nth-child(6) {
    bottom: 10%;
    right: 28%;
  }
  .contact-info__link {
    font-size: 1rem;
  }
  .contact-info__title {
    font-size: 1.6rem;
  }
}
@media (width <= 480px) {
  .contact-hero {
    min-block-size: 55dvh;
  }
  .contact-section__container,
  .map-section__container {
    padding-inline: 1rem;
  }
  .contact-info,
  .contact-form-wrapper {
    padding-inline: 1.5rem;
  }
  .contact-success__title {
    font-size: 1.75rem;
  }
}
/* ============================
   RESPONSIVE STYLES
   ============================ */
@media (width <= 1200px) {
  .hero {
    padding-block: 120px 6rem;
  }
  .hero__image {
    block-size: 440px;
  }
  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1200px) and (width >= 1024px) {
  .activities__item--bottom .activities__item-title {
    transform: translateY(35px);
  }
}
@media (width <= 1024px) {
  .hero {
    min-block-size: auto;
  }
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    max-inline-size: 600px;
    margin-inline: auto;
    order: 2;
  }
  .hero__subtitle {
    max-inline-size: 100%;
    text-wrap: balance;
    margin-block-end: 3rem;
  }
  .hero__actions {
    justify-content: center;
    margin-block-end: 3rem;
  }
  .hero__trust {
    justify-content: center;
  }
  .hero__visual {
    order: 1;
    max-inline-size: 520px;
    margin-inline: auto;
    width: 100%;
  }
  .hero__float-card {
    inset-block-end: -16px;
    inset-inline-start: 16px;
  }
  .hero__float-badge {
    inset-block-start: -10px;
    inset-inline-end: 16px;
  }
  .hero__float-rating {
    text-align: left;
  }
  .hero--leaf {
    inline-size: 80px;
    inset-block-start: 5%;
  }
  .hero__btn--primary, .hero__btn--secondary {
    inline-size: 45%;
    justify-content: center;
  }
  .testimonials__slide {
    width: 380px;
  }
  .faq__trigger,
  .faq__answer {
    padding-inline: 2rem;
  }
  .footer__grid {
    gap: 2rem;
  }
  .footer__link {
    text-wrap: balance;
  }
}
@media (width < 1024px) {
  .activities__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .activities__item--top:nth-child(1), .activities__item--top:nth-child(2) {
    grid-column: span 2;
  }
  .activities__item--top:nth-child(3), .activities__item--bottom {
    grid-column: span 2;
  }
  .usp__grid {
    grid-template-columns: 1fr;
  }
}
@media (width <= 768px) {
  .nav__links {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: -100%;
    inline-size: 350px;
    max-inline-size: 85vw;
    block-size: 100vh;
    block-size: 100dvh;
    background: #FAF7F2;
  }
  @supports (backdrop-filter: blur(20px)) {
    .nav__links {
      background: #FAF7F2;
      backdrop-filter: blur(20px);
    }
  }
  .nav__links {
    border-start-start-radius: 28px;
    border-end-start-radius: 28px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-inline: 4rem;
    gap: 1.5rem;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.08);
    transition: inset-inline-end 0.6s ease-in, box-shadow 0.6s ease;
    z-index: 102;
  }
  .nav__links.open {
    inset-inline-end: 0;
    transition: inset-inline-end 0.85s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.85s ease;
  }
  .nav__links li {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav__links.open li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav__links.open li:nth-child(1) {
    transition-delay: 0.58s;
  }
  .nav__links.open li:nth-child(2) {
    transition-delay: 0.66s;
  }
  .nav__links.open li:nth-child(3) {
    transition-delay: 0.74s;
  }
  .nav__links.open li:nth-child(4) {
    transition-delay: 0.82s;
  }
  .nav__links.open li:nth-child(5) {
    transition-delay: 0.9s;
  }
  .nav__links.open li:nth-child(6) {
    transition-delay: 0.98s;
  }
  .nav__link {
    font-size: 1.5em;
    color: #6E6E6E;
    display: inline-block;
    width: 100%;
    padding-block: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .nav__link::after {
    display: none;
  }
  .nav__link:hover {
    color: #7B9E6B;
    transform: translateX(10px);
  }
  .nav__hamburger {
    display: block;
  }
  .hero {
    padding-block: 110px 4rem;
  }
  .hero__image {
    block-size: 380px;
  }
  .hero__container {
    gap: 3rem;
  }
  .hero__actions {
    gap: 0.75rem;
  }
  .hero__decor--circle-1, .hero__decor--circle-2, .hero__decor--dots {
    display: none;
  }
  .hero__visual {
    width: 95%;
  }
  .programs,
  .activities,
  .usp,
  .testimonials,
  .faq {
    padding-block: 4rem;
  }
  .cta--geometric {
    padding-block: 4rem 115px;
  }
  .programs__header,
  .activities__header,
  .usp__header,
  .testimonials__header,
  .faq__header {
    margin-block-end: 4rem;
  }
  .activities__grid {
    grid-template-columns: 1fr;
  }
  .activities__item .activities__content {
    padding: 1.5rem;
  }
  .activities__item-desc, .activities__item-title {
    opacity: 1;
    transform: translateY(0);
  }
  .usp__card {
    padding: 2rem 1.5rem;
  }
  .footer {
    padding-block-start: 4rem;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__col--brand {
    grid-column: span 2;
    margin-block-end: 2rem;
  }
  .footer__description {
    max-inline-size: 95%;
  }
  .footer__bg-decor--leaf {
    inset-block-start: 30%;
  }
}
@media (width < 768px) {
  .hero__title,
  .programs__title,
  .activities__title,
  .usp__title,
  .testimonials__title,
  .faq__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
  }
  .hero__trust {
    gap: 1.5rem;
  }
  .hero__trust-item + .hero__trust-item {
    padding-inline-start: 1.5rem;
  }
  .usp__card {
    flex-direction: column;
    gap: 1.5rem;
  }
  .usp__item-desc {
    text-wrap: pretty;
  }
  .faq__trigger {
    padding: 1.5rem;
  }
  .faq__icon {
    width: 22px;
    height: 22px;
  }
  .faq__answer {
    padding: 0.75rem 1.5rem 1.5rem;
  }
  .faq__question {
    font-size: 1.1rem;
    padding-inline-end: 1rem;
  }
  .cta__title {
    font-size: 2.2rem;
  }
  .cta__year {
    font-size: 3rem;
  }
  .cta__btn--signature {
    padding: 18px 36px;
  }
  .cta__shape--1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -20px;
  }
  .cta__shape--2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
  }
  .cta__subtitle {
    font-size: 1.15rem;
  }
}
@media (width <= 640px) {
  .programs__grid {
    grid-template-columns: 1fr;
  }
  .testimonials__slide {
    width: 350px;
  }
  .nav__links {
    inline-size: 285px;
  }
}
@media (width <= 480px) {
  .nav__container {
    padding-inline: 1.5rem;
  }
  .hero__container {
    padding-inline: 1rem;
  }
  .hero__image {
    block-size: 280px;
  }
  .hero__float-card {
    inset-inline-start: 8px;
    inset-block-end: -12px;
    padding: 10px 14px;
  }
  .hero__float-badge {
    inset-inline-end: 8px;
    inset-block-start: -8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__btn--primary,
  .hero__btn--secondary {
    inline-size: 90%;
  }
  .hero__trust {
    gap: 1rem;
  }
  .hero__trust-item + .hero__trust-item {
    padding-inline-start: 1rem;
  }
  .programs__container,
  .activities__container,
  .usp__container,
  .testimonials__container,
  .faq__container,
  .cta__container {
    padding-inline: 1rem;
  }
  .program-card__inner {
    padding: 2rem 1.5rem;
  }
  .activities__grid {
    grid-auto-rows: 300px;
    gap: 1.5rem;
  }
  .footer__container {
    padding-inline: 1.5rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer__col--brand {
    grid-column: span 1;
    margin-block-end: 0;
  }
}
@media (min-width: 1500px) {
  .hero__content {
    max-inline-size: 720px;
  }
  .hero__title {
    font-size: clamp(3.4rem, 5vw, 4.2rem);
  }
  .hero__subtitle {
    max-inline-size: 610px;
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  }
  .hero__btn {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
  }
  .hero__btn--primary {
    padding: clamp(16px, 1.5vw, 20px) clamp(32px, 3vw, 44px);
  }
  .hero__btn--secondary {
    padding: clamp(16px, 1.5vw, 20px) clamp(24px, 2.5vw, 36px);
  }
  .hero__trust-number {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  }
  .hero__trust-label {
    font-size: clamp(0.78rem, 1vw, 1.1rem);
  }
  .hero__image {
    block-size: min(720px, 60vh);
  }
  .nav__container,
  .hero__container,
  .programs__container,
  .activities__container,
  .usp__container,
  .testimonials__container,
  .faq__container,
  .cta__container,
  .footer__container {
    max-inline-size: 1450px;
  }
  .activities__item--bottom .activities__item-title {
    transform: translateY(32px);
  }
}

/*# sourceMappingURL=contact.css.map */
