:root {
  /* Fluid font sizes */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.3vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.4vw, 1rem);
  --fs-md: clamp(1rem, 0.95rem + 0.5vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);

  /* Fluid spacing */
  --space-xs: clamp(0.25rem, 0.2rem + 0.3vw, 0.5rem);
  --space-sm: clamp(0.5rem, 0.4rem + 0.4vw, 0.75rem);
  --space-md: clamp(0.75rem, 0.6rem + 0.5vw, 1.25rem);
  --space-lg: clamp(1rem, 0.9rem + 0.6vw, 2rem);
  --space-xl: clamp(1.5rem, 1.2rem + 1vw, 3rem);

  /* Layout width */
  --container-max: clamp(75rem, 90vw, 90rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* body {
  background: #05052d;
  color: #fff;
} */

.navbar {
  /* padding: 0.9375rem 1.875rem; */
  padding: var(--space-md) var(--space-xl);
  position: relative;
}

.nav-container {
  max-width: var(--container-max);
  margin-inline: auto;

  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 4rem;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.logo a {
  /* color: #ffffff; */
  text-decoration: none;
  display: flex;
  align-items: center;

  position: relative;
  /* gap: 10px; */
  transition: transform 0.3s ease;
}

/* .logo img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  margin-right: 10px;
  vertical-align: middle;
} */

/* UNDERLINE GRAPHIC */
/* .logo span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #5eead4, #38bdf8);
  transition: width 0.3s ease;
  border-radius: 2px;
} */

/* HOVER EFFECTS */
.logo a:hover {
  transform: translateY(-0.125rem);
}

.logo a:hover img {
  box-shadow: 0 0.375rem 1.125rem rgba(94, 234, 212, 0.45);
  transform: rotate(-2deg) scale(1.05);
}

/* .logo a:hover span {
  color: #5eead4;
} */

/* .logo a:hover span::after {
  width: 100%;
} */

/* NAV MENU */
.nav-menu {
  list-style: none;
  display: flex;
  /* gap: 1.25rem; */
  gap: var(--space-lg);
  font-size: 0.875rem;
  align-items: center;
  flex: 1;

  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  font-family: "Poppins", sans-serif;
  color: #000;
  text-decoration: none;
  /* padding: 0.5rem 0.75rem; */
  padding: var(--space-xs) var(--space-sm);
  border-radius: 0.5rem;
  transition: color 0.3s ease;

  font-weight: 400;
  /* font-size: 0.875rem; */
  font-size: var(--fs-sm);
}

.nav-menu li a.active {
  color: #25d366;
  font-weight: 600;
}

/* HOVER GRAPHICS */
.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.375rem;
  width: 0%;
  height: 0.125rem;
  background: linear-gradient(90deg, #5eead4, #38bdf8);
  transition: width 0.3s ease;
  border-radius: 0.125rem;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.nav-menu li a:hover {
  color: #5eead4;
}

.dropdown {
  position: relative;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -2px;
}

/* .dropdown:hover .dropdown-arrow {
  transform: rotate(-135deg);
} */

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #ffffff;
  list-style: none;
  min-width: 220px;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  display: none;
  flex-direction: column;
  z-index: 999;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #000;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #0892b2;
}

/* .dropdown:hover .dropdown-menu {
  display: flex;
} */

.dropdown.active .dropdown-menu {
  display: flex;
  flex-direction: column;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-btn-desktop {
  /* display: block; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-btn-mobile {
  display: none;
}

.menu-toggle {
  /* width: 1.75rem;
  height: 1.375rem; */
  width: clamp(2rem, 2vw, 2.5rem);
  height: clamp(1.5rem, 1.5vw, 2rem);

  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  /* color: black; */

  padding: 0.25rem;
}

.menu-toggle span {
  /* height: 0.1875rem; */
  height: clamp(0.15rem, 0.15vw, 0.2rem);
  /* width: 100%; */
  background: #000;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
}

.navbar .btn {
  list-style: none;
  font-family: "Poppins", sans-serif;

  background: linear-gradient(96.12deg, #13b7a6 0%, #0892b2 100%);
  color: #000;

  padding: 0.5rem 1.125rem;
  /* padding: clamp(0.6rem, 0.5rem + 0.4vw, 0.85rem)
    clamp(1.25rem, 1rem + 0.8vw, 1.75rem); */

  border-radius: 0.5rem;
  border: none;
  cursor: pointer;

  font-weight: 400;

  /* font-size: 0.875rem; */
  font-size: var(--fs-sm);

  min-height: 2.75rem;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-0.125rem);
  /* box-shadow: 0 0.5rem 1.25rem rgba(255, 255, 255, 0.25); */
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
  /* color: #38bdf8; */
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 769px) {
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    flex-direction: column;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .dropdown:hover .dropdown-arrow {
    transform: rotate(-135deg);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.25rem;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-btn-desktop {
    display: none;
  }

  .nav-btn-mobile {
    display: block;
  }

  /* MENU */
  .nav-menu {
    position: absolute;
    /* top: 4.375rem; */
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;

    flex-direction: column;
    align-items: center;
    /* gap: 1rem; */
    gap: var(--space-lg);

    /* padding: 1.25rem 0; */
    padding: var(--space-lg) 0;

    display: none;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    /* font-size: 1.125rem; */
    /* font-size: var(--fs-md); */
    /* padding: 0.375rem 0.75rem; */
    padding: var(--space-sm) var(--space-lg);
  }

  .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .dropdown-arrow {
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(-135deg);
  }

  /* BUTTON */
  .btn {
    margin-top: 0.625rem;
    width: 100%;
    max-width: 16rem;
    text-align: center;
  }
}

/* -------------------------FOOTER----------------------------- */
.footer {
  background: linear-gradient(180deg, #0a1729 0%, #19395a 98.56%);

  color: #ffffff;

  position: relative;
  overflow: hidden;

  font-family: "Poppins", sans-serif;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.06),
    transparent 60%
  );

  pointer-events: none;
}

.footer-container {
  max-width: clamp(75rem, 90vw, 90rem);
  margin-inline: auto;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
}

.footer-brand {
  max-width: clamp(18rem, 25vw, 22rem);
}

.footer-brand img {
  height: clamp(2.25rem, 3vw, 2.75rem);
  /* margin-bottom: clamp(1rem, 2vw, 1.5rem); */
}

.footer-brand p {
  font-size: clamp(0.9rem, 0.9vw, 1rem);
  font-family: "Poppins", sans-serif;

  line-height: 1.7;
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
}

.social-links {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.social-links a {
  width: clamp(2.5rem, 4vw, 3rem);
  height: clamp(2.5rem, 4vw, 3rem);

  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;

  background: rgba(255, 255, 255, 0.08);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: clamp(0.5rem, 1vw, 0.75rem);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.social-links img {
  display: block;
  width: clamp(1.1rem, 1.4vw, 1.4rem);
  height: clamp(1.1rem, 1.4vw, 1.4rem);
  object-fit: contain;
  /* margin-bottom: 0; */
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-links a:hover {
  /* background: linear-gradient(96deg, #13b7a6, #0892b2); */
  background: rgba(255, 255, 255, 0.18);
  border-color: transparent;
  transform: translateY(-0.2rem);
}

.social-links a:hover img {
  transform: scale(1.08);
}

.footer-col h4 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: clamp(0.6rem, 1vw, 0.9rem);
}

.footer-col a {
  color: #cfd8e3;
  /* font-family: "Poppins", sans-serif; */

  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #5eead4;
}

.footer-col p {
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  /* font-family: "Poppins", sans-serif; */

  line-height: 1.6;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.contact-link a {
  color: #cfd8e3;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.contact-link a:hover {
  color: #5eead4;
}

.contact-icon {
  width: 18px;
  height: 18px;
  fill: #5eead4;
  transition: transform 0.3s ease;
}

.contact-link:hover .contact-icon {
  transform: scale(1.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 4vw, 4rem);

  font-size: clamp(0.8rem, 0.8vw, 0.9rem);
}

.footer-legal {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.footer-legal a {
  color: #cfd8e3;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #5eead4;
}

@media (min-width: 90rem) {
  .footer {
    padding-inline: clamp(8rem, 12vw, 14rem);
  }
}

@media (max-width: 48rem) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    justify-content: space-evenly;
  }

  .social-links a {
    width: clamp(2.75rem, 8vw, 3.25rem);
    height: clamp(2.75rem, 8vw, 3.25rem);
  }
}
