  /*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Red+Hat+Display:wght@400;700;900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(79, 72%, 55%);
  --first-color-light: hsl(79, 97%, 77%);
  --first-color-alt: hsl(79, 67%, 52%);
  --first-color-dark: hsl(79, 63%, 50%);
  --first-color-gray: hsl(79, 6%, 64%);
  --title-color: hsl(180, 4%, 98%);
  --title-color-black: hsl(180, 4%, 12%);
  --text-color: hsl(180, 4%, 72%);
  --text-color-light: hsl(180, 4%, 65%);
  --body-color: hsl(180, 12%, 8%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Red Hat Display", sans-serif;
  --second-font: "Kaushan Script", cursive;
  --biggest-font-size: 2rem;
  --bigger-font-size: 1.5rem;
  --big-font-size: 1.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-bold: 700;
  --font-black: 900;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1023px) {
  :root {
    --biggest-font-size: 6rem;
    --bigger-font-size: 3.5rem;
    --big-font-size: 2.75rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1124px;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__data {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  text-align: center;
  margin-bottom: 3rem;
}

.section__title,
.section__title-border {
  font-size: var(--big-font-size);
  letter-spacing: 1.5px;
}

.section__subtitle {
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--first-color);
  transform: rotate(-2deg);
}

.section__titles {
  display: flex;
  column-gap: 0.75rem;
  justify-content: center;
}

.section__title-border {
  -webkit-text-stroke: 1px var(--text-color);
  color: transparent;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.main {
  overflow: hidden;
  /* For animation ScrollReveal */
}

.color-red {
  color: hsl(0, 80%, 64%);
}

.color-green {
  color: var(--first-color);
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: background 0.3s;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle {
  color: var(--title-color);
  display: flex;
}

.nav__logo {
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-bold);
}

.nav__logo img {
  width: 5rem;
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    background-color: hsla(180, 12%, 8%, 0.8);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    border-left: 2px solid var(--first-color-gray);
    transition: right 0.3s;
  }
}

.nav__list {
  padding: 5rem 0 0 3rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--title-color);
  transition: color 0.3s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

.nav .nav__button {
  background-color: var(--title-color);
  border: none;
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.bg-header {
  background-color: var(--body-color);
  box-shadow: 0 4px 8px hsla(180, 12%, 4%, 0.3);
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/*=============== HOME ===============*/
.home {
  position: relative;
  padding-bottom: 0;
}

.home__container {
  padding-top: 4rem;
  row-gap: 3rem;
}

.home__data {
  text-align: center;
}

.home__subtitle {
  font-size: var(--bigger-font-size);
  -webkit-text-stroke: 1px var(--title-color);
  color: transparent;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-black);
  margin: 0.5rem 0;
}

.home__subtitle,
.home__title {
  letter-spacing: 1.5px;
}

.home__description {
  margin-bottom: 2.5rem;
}

.home__triangle {
  height: 325px;
  position: absolute;
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.home__triangle-1 {
  width: 105px;
  background-color: var(--first-color);
}

.home__triangle-2 {
  width: 205px;
  background-color: var(--first-color-alt);
}

.home__triangle-3 {
  width: 305px;
  background-color: var(--first-color-dark);
}

.home__img {
  display: block;
  position: relative;
  z-index: 1;
  width: 350px;
  margin: 0 auto;
}

/*=============== BUTTON ===============*/

.button {
  display: inline-block;
  background-color: var(--first-color);
  padding: 18px 32px;
  border: 2px solid var(--first-color-light);
  color: var(--title-color-black);
  font-weight: var(--font-bold);
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 15px;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button i {
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.button__flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

.button__flex:hover i {
  transform: translateX(0.25rem);
}

/*=============== LOGOS ===============*/

.logos__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
}

.logos__img {
  width: 120px;
}

/*=============== PROGRAM ===============*/
.program__container {
  grid-template-columns: 225px;
  justify-content: center;
  row-gap: 2rem;
}

.program__card {
  display: grid;
  background-color: hsla(79, 6%, 64%, 0.07);
  padding: 1.5rem 2rem;
  border: 2px solid transparent;
  transition: background 0.5s, border 0.4s;
}

      .program__img {
          /* width: 38px;*/
          border-radius: 50px;
      }

.program__shape {
/*  width: 185px;
  height: 185px;
  background-color: var(--first-color-gray);*/
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  transition: background 0.5s;
}

.program__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.program__description {
  font-size: var(--small-font-size);
  letter-spacing: 0.5px;
  line-height: 150%;
}

.program__title,
.program__description {
  transition: color 0.5s;
}

.program__button {
  justify-self: flex-end;
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: var(--title-color-black);
  opacity: 0;
  transition: opacity 0.4s;
}

.program__button i {
  display: block;
  transition: transform 0.3s;
}

.program__button:hover i {
  transform: translateX(0.25rem);
}

.program__card:hover {
  background-color: var(--first-color);
  border: 2px solid var(--first-color-light);
}

.program__card:hover .program__shape {
 /* background-color: var(--first-color-light);*/
}

.program__card:hover .program__title,
.program__card:hover .program__description {
  color: var(--title-color-black);
}

.program__card:hover .program__button {
  opacity: 1;
}

/*=============== CHOOSE ===============*/

.choose {
  padding: 0;
}

.choose__overflow {
  position: relative;
}

.choose__container {
  row-gap: 3rem;
}

.choose__content .section__data {
  margin-bottom: 2rem;
}

.choose__description {
  text-align: center;
  margin-bottom: 2.5rem;
}

.choose__data {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2rem;
}

.choose__group {
  text-align: center;
}

.choose__number {
  font-size: var(--h1-font-size);
  font-family: var(--second-font);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.choose__subtitle {
  font-size: var(--small-font-size);
}

.choose__triangle {
  height: 325px;
  position: absolute;
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.choose__triangle-1 {
  width: 305px;
  background-color: var(--first-color);
}

.choose__triangle-2 {
  width: 205px;
  background-color: var(--first-color-alt);
}

.choose__triangle-3 {
  width: 105px;
  background-color: var(--first-color-dark);
}

.choose__img {
  width: 260px;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.choose__amenities {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 15px;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.choose__amenities-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Grid Layout */
.choose__amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Card Style */
.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 1.2rem;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.05);

  transition: all 0.3s ease;
  cursor: pointer;
}

/* Icons */
.amenity-card i {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--first-color);
}

/* Text */
.amenity-card span {
  font-size: 0.9rem;
}

/* ✅ Hover Animation */
.amenity-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
@media screen and (max-width: 576px) {
  .choose__amenities-grid {
    grid-template-columns: 1fr;
  }
}

/*=============== PRICING ===============*/

.pricing__container {
  grid-template-columns: 285px;
  justify-content: center;
  row-gap: 2rem;
}

.pricing__card,
.pricing__shape,
.pricing__list {
  display: grid;
}

.pricing__card {
  row-gap: 2rem;
  background-color: hsla(79, 6%, 64%, 0.07);
  padding: 2rem 2.5rem;
}

.pricing__img {
  width: 35px;
}

.pricing__shape {
  width: 60px;
  height: 60px;
  background-color: var(--first-color-gray);
  border-radius: 50%;
  place-items: center;
  margin-bottom: 1rem;
}

.pricing__title {
  font-size: var(--h3-font-size);
  color: var(--text-color);
  margin-bottom: 1rem;
}

.pricing__number {
  font-size: var(--h1-font-size);
}

.pricing__list {
  row-gap: 1rem;
}

.pricing__item {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
  font-size: var(--small-font-size);
}

.pricing__item i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.pricing__item-opacity {
  opacity: 0.3;
}

.pricing__button {
  background-color: var(--title-color);
}

.pricing__button:hover {
  background-color: var(--title-color);
}

.pricing__card-active {
  background-color: var(--first-color);
  border: 2px solid var(--first-color-light);
}

.pricing__card-active .pricing__shape {
  background-color: var(--first-color-light);
}

.pricing__card-active .pricing__item i {
  color: var(--title-color);
}

.pricing__card-active .pricing__title,
.pricing__card-active .pricing__number,
.pricing__card-active .pricing__item {
  color: var(--title-color-black);
}

/*=============== CALCULATE ===============*/

.calculate {
  padding-bottom: 0;
}

.calculate__container {
  row-gap: 4rem;
}

.calculate__content .section__titles {
  margin-bottom: 2rem;
  text-align: center;
}

.calculate__description {
  margin-bottom: 2.5rem;
  text-align: center;
}

.calculate__form {
  display: grid;
  row-gap: 1rem;
}

.calculate__box {
  position: relative;
  border: 2px solid var(--first-color-light);
}

.calculate__input {
  width: 100%;
  background: transparent;
  padding: 20px 56px 20px 24px;
  outline: none;
  border: none;
  color: var(--text-color);
}

.calculate__input::-webkit-outer-spin-button,
.calculate__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculate__input[type="number"] {
  -moz-appearance: textfield;
}

.calculate__label {
  position: absolute;
  right: 1.5rem;
  top: 1.25rem;
  color: var(--title-color);
}

.calculate__form .button {
  margin-top: 1.5rem;
}

.calculate__img {
  width: 200px;
  justify-self: center;
}

.calculate__message {
  position: absolute;
  transform: translateY(1rem);
}

/*=============== FOOTER ===============*/

.footer__container {
  row-gap: 4rem;
  padding-top: 1rem;
}

.footer__logo,
.footer__description {
  color: var(--title-color);
}

.footer__logo,
.footer__form,
.footer__social {
  display: flex;
}

.footer__logo {
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-bold);
}

.footer__logo img {
  width: 1.5rem;
}

.footer__description {
  margin-bottom: 2rem;
}

.footer__form {
  flex-direction: column;
  gap: 1.25rem;
}

.footer__input {
  padding: 20px 56px 20px 24px;
  border: 2px solid var(--first-color-light);
  background: transparent;
  color: var(--text-color);
  outline: none;
}

.footer__content,
.footer__links,
.footer__group {
  display: grid;
}

.footer__content {
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem 3.5rem;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1.5rem;
}

.footer__links {
  row-gap: 0.75rem;
}

.footer__link {
  color: var(--text-color);
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--first-color);
}

.footer__group {
  margin-top: 5rem;
  justify-items: center;
  row-gap: 2rem;
}

.footer__social {
  column-gap: 1.25rem;
}

.footer__social-link {
  display: inline-flex;
  padding: 0.35rem;
  background-color: var(--first-color);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--title-color-black);
  transition: background 0.4s;
}

.footer__social-link:hover {
  background-color: var(--first-color-dark);
}

.footer__copy {
  font-size: 1rem;
  color: var(--text-color-light);
}

.footer__message {
  position: relative;
  transform: translateY(1rem);
  margin-bottom: 2rem;
}

/*=============== SCROLL BAR ===============*/

::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
  background-color: hsl(79, 4%, 15%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(79, 4%, 25%);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(79, 4%, 35%);
  border-radius: 0.5rem;
}

/*=============== SCROLL UP ===============*/

.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--first-color);
  display: inline-flex;
  padding: 0.35rem;
  color: var(--title-color-black);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: 0.3s;
}

.scrollup:hover {
  transform: translateY(-0.25rem);
}

/* Show Scroll Up*/

.show-scroll {
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */

@media screen and (max-width: 340px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .section__titles {
    flex-direction: column;
    row-gap: 0.25rem;
  }

  .home__triangle,
  .choose__triangle {
    height: 255px;
  }

  .home__triangle-3,
  .choose__triangle-1 {
    width: 260px;
  }

  .choose__img {
    width: 195px;
  }

  .pricing__container {
    grid-template-columns: 250px;
  }

  .pricing__card {
    padding: 1.5rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }
}

/* For medium devices */

@media screen and (min-width: 768px) {
  .nav__menu {
    width: 50%;
  }

  .home__container,
  .choose__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .home__data,
  .choose__content .section__data,
  .choose__description,
  .calculate__description {
    text-align: initial;
  }

  .logos__container {
    grid-template-columns: repeat(4, 1fr);
  }

  .program__container {
    grid-template-columns: repeat(2, 225px);
    gap: 2.5em;
  }

  .choose__content {
    order: 1;
  }

  .choose__data {
    justify-items: flex-start;
  }

  .choose__content .section__titles,
  .calculate__content .section__titles {
    justify-content: initial;
  }

  .pricing__container {
    grid-template-columns: repeat(2, 285px);
    gap: 2.5rem;
  }

  .calculate__container {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }

  .calculate__form {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }

  .calculate__form .button {
    grid-column: 1/3;
  }

  .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }

  .footer__content {
    grid-template-columns: repeat(3, max-content);
  }
}

/* For large devices */

@media screen and (min-width: 1023px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__menu {
    width: initial;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__list {
    flex-direction: row !important;
    padding: 0;
    align-items: center;
    column-gap: 2.5rem;
  }

  .section {
    padding: 7rem 0 0;
  }

  .section__subtitle {
    font-size: 2rem;
  }

  .home__container {
    grid-template-columns: repeat(2, max-content);
    align-items: initial;
  }

  .home__title {
    margin: 0.75rem 0 1.25rem;
  }

  .home__description {
    width: 445px;
    margin-bottom: 3rem;
  }

  .home__img {
    width: 550px;
    transform: translateX(-6rem);
  }

  .home__triangle {
    height: 700px;
  }

  .home__triangle-1 {
    width: 145px;
  }

  .home__triangle-2 {
    width: 345px;
  }

  .home__triangle-3 {
    width: 545px;
  }

  .logos {
    padding: 3.5rem 0 1rem;
  }

  .logos__img {
    width: 190px;
  }

  .choose__overflow {
    overflow: hidden;
  }

  .choose__img {
    width: 350px;
  }

  .choose__triangle {
    height: 700px;
  }

  .choose__triangle-1 {
    width: 545px;
  }

  .choose__triangle-2 {
    width: 345px;
  }

  .choose__triangle-3 {
    width: 145px;
  }

  .footer {
    padding-bottom: 3rem;
  }

  .footer__form {
    flex-direction: row;
  }

  .footer__content {
    column-gap: 5rem;
  }

  .footer__group {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    margin-top: 7rem;
  }

  .footer__social {
    order: 1;
  }
}

@media screen and (min-width: 1150px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__data {
    padding-top: 3rem;
  }

  .home__images {
    transform: translateX(-9rem);
  }

  .home__img {
    width: 700px;
    transform: translateX(2rem);
  }

  .home__triangle {
    height: 995px;
  }

  .home__triangle-1 {
    width: 205px;
  }

  .home__triangle-2 {
    width: 505px;
  }

  .home__triangle-3 {
    width: 705px;
  }

  .program__container {
    grid-template-columns: repeat(3, 300px);
    padding: 3rem 0;
  }

  .program__card {
    padding: 2rem;
  }

  .program__description {
    font-size: var(--normal-font-size);
  }

  .choose__container {
    column-gap: 8rem;
  }

  .choose__img {
    width: 450px;
    margin: 0 0 0 auto;
  }

  .choose__triangle {
    height: 800px;
  }

  .choose__images {
    position: relative;
  }

  .choose__data {
    grid-template-columns: repeat(4, max-content);
    gap: 2.5rem 2.5rem;
  }

  .choose__description {
    width: 418px;
    margin-bottom: 3.5rem;
  }

  .pricing__container {
    padding-top: 3rem;
    grid-template-columns: repeat(3, 330px);
  }

  .pricing__card {
    padding: 2rem 3.5rem;
    row-gap: 2.5rem;
  }

  .calculate__description {
    width: 415px;
  }

  .calculate__form {
    width: 505px;
  }

  .calculate__img {
    width: 300px;
  }

  .scrollup {
    right: 3rem;
  }
}

/* ============== CONTACT US ============== */
/* ================== CONTACT US SECTION ================== */

.contact {
  padding: 6rem 0 3rem;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* LEFT = Form | RIGHT = Map */
  gap: 3rem;
  align-items: flex-start;
}

/* ===== LEFT SIDE : CONTACT FORM ===== */

.contact__left {
  background-color: hsla(79, 6%, 64%, 0.07);
  border: 2px solid var(--first-color-gray);
  padding: 2.5rem;
}

/* Title spacing fix */
.contact__left .section__data {
  margin-bottom: 2rem;
}

/* ===== FORM STYLING ===== */

.footer__form {
  display: grid;
  row-gap: 1.25rem;
}

.footer__input {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: 2px solid var(--first-color-light);
  color: var(--text-color);
  outline: none;
  font-size: var(--normal-font-size);
}

.footer__input::placeholder {
  color: var(--text-color-light);
}

.footer__form textarea {
  resize: none;
}

/* Button alignment */
.footer__form .button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Form message */
.footer__message {
  font-size: var(--small-font-size);
  margin-top: 0.5rem;
}

/* ===== RIGHT SIDE : MAP & INFO ===== */

.contact__right {
  background-color: hsla(79, 6%, 64%, 0.07);
  border: 2px solid var(--first-color-gray);
  padding: 2.5rem;
}

.contact__heading {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

.contact__info {
  margin-bottom: 1.5rem;
}

.contact__info p {
  margin-bottom: 0.5rem;
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

/* ===== MAP ===== */

.contact__map {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

@media screen and (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr;
  }

  .contact__left,
  .contact__right {
    padding: 2rem;
  }

  .contact__map {
    height: 250px;
  }
}


.footer-brand-text { margin-block: 25px; }
.footer-brand-list li:not(:last-child) { margin-block-end: 15px; }

.footer-brand-title,
.footer-list-title {
  color: var(--white);
  font-family: var(--ff-catamaran);
}

.footer-list-title {
  font-size: var(--fs-4);
  font-weight: var(--fw-800);
  margin-block-end: 28px;
}

.footer-list-title::before {
  bottom: 0;
  width: 70px;
  height: 1px;
  background-color: var(--coquelicot);
}

.footer-list > li:not(:first-child) { margin-block-start: 12px; }

/*===============
  Start trainers
=================*/
/*===============
  TRAINERS SECTION (FINAL FIXED)
===============*/

#trainers {
  padding: 60px 0;
}

/* FIX CONTAINER WIDTH */
#trainers .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* GRID FIX (MAIN ISSUE SOLVED HERE) */
      #trainers .contentBox {
          display: grid;
          grid-template-columns: repeat(2, 2fr); /* FORCE 3 columns */
          gap: 30px;
          width: 100%;
          padding-left: 10%;
          padding-right: 10%;
      }

/* CARD */
#trainers .box {
  background: hsla(79, 6%, 64%, 0.07);
  border: 1px solid var(--first-color-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

/* HOVER */
#trainers .box:hover {
  transform: translateY(-8px);
  border-color: var(--first-color);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* IMAGE */
/*#trainers .imgBox {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

#trainers .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}*/


      #trainers .imgBox {
          width: 100%;
          height: 240px;
          overflow: hidden;
          display: flex;
          justify-content: center;
          align-items: center;
      }

          #trainers .imgBox img {
              max-width: 100%;
              max-height: 100%;
          }


#trainers .box:hover img {
  transform: scale(1.1);
}

/* CONTENT */
#trainers .content {
  padding: 20px;
  text-align: left;
}

/* NAME */
      #trainers .content h4:first-child {
          font-size: 1.25rem;
          color: var(--title-color);
          margin-bottom: 1rem;
      }

/* SPECIALIZATION */
      #trainers .content h3 {
          font-size: 1.25rem;
          color: var(--first-color);
          margin-bottom: 1rem;
      }

/* EXPERIENCE */
      #trainers .content h4:nth-of-type(2) {
          font-size: 1rem;
          color: var(--text-color);
          line-height: 1.5;
          letter-spacing: 0.5px;
          line-height: 150%;
      }

/* TEXT */
      #trainers .content p {
          font-size: 1rem;
          color: var(--text-color);
          line-height: 1.5;
          letter-spacing: 0.5px;
          line-height: 150%;
          padding-bottom:10px;
      }

/* CERTIFICATIONS */
#trainers .content ul {
  margin-top: 10px;
  padding-left: 18px;
}

#trainers .content ul li {
  font-size: 1rem;
  color: var(--text-color-light);
}

/* SOCIAL ICONS */
#trainers .social-icons {
  margin-top: 15px;
  text-align: center;
}

#trainers .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 5px;
  border-radius: 50%;
  transition: 0.3s;
}

/* SOCIAL COLORS 
#trainers .social-icons a:nth-child(1) { background: #3b5999; }
#trainers .social-icons a:nth-child(2) { background: #55acee; }
#trainers .social-icons a:nth-child(3) { background: #0077b5; }
#trainers .social-icons a:nth-child(4) { background: #e4405f; }
 */
 #trainers .social-icons a:nth-child(1) { background: #e4405f; }
 
#trainers .social-icons i {
  color: #fff;
  font-size: 14px;
}

#trainers .social-icons a:hover {
  transform: scale(1.15);
}

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

/* Tablet → 2 boxes */
@media screen and (max-width: 992px) {
  #trainers .contentBox {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile → 1 box */
@media screen and (max-width: 576px) {
  #trainers .contentBox {
    grid-template-columns: 1fr;
  }

  #trainers .imgBox {
    height: 200px;
  }

  #trainers .content h4,
  #trainers .content h3,
  #trainers .content p {
    font-size: 12px;
  }
}


#trainers .content ul {
  margin-top: 10px;
  padding-left: 18px;
}

#trainers .content ul li {
  font-size: 1rem;
  line-height: 1.5;
}

/*===============
  End trainers
=================*/

/* ===== ABOUT MODAL ===== */
.about-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.about-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.about-modal__content {
  background: var(--body-color);
  border: 2px solid var(--first-color-light);
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  position: relative;
}

.about-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-modal__grid img {
  width: 100%;
  border-radius: 6px;
}

.about-modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: var(--title-color);
}

/* Responsive */
@media (max-width: 768px) {
  .about-modal__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CAREER MODAL ===== */
.career-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.career-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.career-modal__content {
  background: #111;
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  position: relative;
  border: 2px solid var(--first-color);
}

.career-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.career-modal__grid img {
  width: 100%;
  border-radius: 6px;
}

.career-modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.career-modal ul {
  padding-left: 18px;
}

.career-modal li {
  margin-bottom: 5px;
}

/* Mobile */
@media (max-width: 768px) {
  .career-modal__grid {
    grid-template-columns: 1fr;
  }
}

      /* ===== SLIDER ===== */
      .slider {
          position: relative;
          max-width: 800px;
          margin: auto;
          overflow: hidden;
      }

      .slides {
          position: relative;
          height: 450px;
          overflow: hidden;
      }

      .slide {
          position: absolute;
          width: 100%;
          height: 100%;
          object-fit: cover; /* ✅ center crop */
          object-position: center; /* ✅ keep center focus */
          opacity: 0;
          transition: opacity 0.8s ease;
      }

      .slide.active {
          opacity: 1;
          z-index: 1;
          /* ✅ AUTO ZOOM (Ken Burns effect) */
          animation: zoomEffect 6s ease-in-out infinite;
      }

      /* ===== BUTTONS ===== */
      .slider-btn {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(0,0,0,0.6);
          border: none;
          color: white;
          padding: 12px 16px;
          cursor: pointer;
          font-size: 20px;
          z-index: 10;
      }

          .slider-btn.prev {
              left: 10px;
          }

          .slider-btn.next {
              right: 10px;
          }

          .slider-btn:hover {
              background: var(--first-color);
          }

      /* ===== THUMBNAILS ===== */
      .thumbnails {
          display: flex;
          justify-content: center;
          margin-top: 15px;
          gap: 10px;
      }

      .thumb {
          width: 80px;
          height: 55px;
          object-fit: cover;
          cursor: pointer;
          opacity: 0.6;
          border-radius: 5px;
          transition: 0.3s;
      }

          .thumb.active {
              opacity: 1;
              border: 2px solid var(--first-color);
          }

          .thumb:hover {
              opacity: 1;
          }

      /* ===== ZOOM ANIMATION ===== */
      @keyframes zoomEffect {
          0% {
              transform: scale(1);
          }

          50% {
              transform: scale(1.1); /* zoom in */
          }

          100% {
              transform: scale(1);
          }
      }

      .review-modal {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0,0,0,0.6);
          display: flex;
          justify-content: center;
          align-items: center;
          opacity: 0;
          visibility: hidden;
          transition: 0.3s;
          z-index: 999;
      }

          .review-modal.show {
              opacity: 1;
              visibility: visible;
          }

      .review-modal__content {
          /* background: #fff;
          padding: 20px;
          border-radius: 10px;
          width: 90%;
          max-width: 600px;
          position: relative;*/

          background: var(--body-color);
          border: 2px solid var(--first-color-light);
          padding: 2rem;
          max-width: 800px;
          width: 90%;
          position: relative;
      }

      /* Close button */
      .review-modal__close {
          position: absolute;
          top: 10px;
          right: 15px;
          font-size: 22px;
          cursor: pointer;
      }

      /* Reviews list */
      .review-modal__list {
          max-height: 300px;
          overflow-y: auto;
          margin-top: 15px;
      }

      .review-item {
          padding: 10px;
          border-bottom: 1px solid #eee;
      }


.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #111;
        color: #fff;
        font-size: 14px;
        transition: 0.3s;
    }

        /* Brand colors on hover */
        .footer-social a:hover:nth-child(1) {
            background: #1877F2;
        }

        .footer-social a:hover:nth-child(2) {
            background: #E4405F;
        }

        .footer-social a:hover:nth-child(3) {
            background: #000;
        }

        .footer-social a:hover:nth-child(4) {
            background: #FF0000;
        }

        .footer-social a:hover {
            transform: scale(1.1);
        }

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #1ebe5d;
    }
	
	/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 160px; /* ABOVE WhatsApp */
    right: 20px;
    background-color: #333;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
}

    .scroll-top:hover {
        transform: scale(1.1);
        background-color: #555;
    }
	
	.instagram-float {
    position: fixed;
    bottom: 90px; /* higher than WhatsApp to appear above/below */
    right: 20px;
    background-color: #E4405F;
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-float:hover {
    transform: scale(1.1);
    background-color: #d73355;
}
