:root {
  --primary-color: #365b6d;
  --secondary-color: #417086;
  --tertiary-color: #aed9e0;
  --text-color: #111111;
  --background-color: #f6f5f4;
  --background-color-secondary: #ebebeb;
  --horizontal-spacing: 70px;
}

/* NAVBAR */
.hamburger {
  display: none;
}

@media (max-width: 1150px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    text-align: center;
    background: var(--background-color);
    position: absolute;
    top: 84px;
    left: 0;
    padding-bottom: 10px;
    z-index: 100;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.055);
  }

  .nav-links.active {
    display: flex; /* Show when menu is open */
  }

  .nav-links a:first-of-type {
    border-top: 1px solid #dadada;
  }

  .nav-links li {
    padding: 10px 0;
    transition: 0.3s all;
    cursor: pointer;
    border-bottom: 1px solid #dadada;
  }

  .nav-links li:hover {
    background-color: #00000010;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    transition: 0.3s all;
  }

  .hamburger:hover {
    opacity: 0.7;
  }

  .hamburger div {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px;
    border-radius: 100px;
    transition: 0.3s;
  }

  .cta-button {
    display: none;
  }
}

@media (max-width: 850px) {
  .navbar {
    padding: 10px 20px;
  }
}
@media (max-width: 460px) {
  .navbar {
    padding: 10px 20px;
  }

  .logo {
    font-size: 18px;
  }
  .logo img {
    width: 40px;
  }

  .hamburger div {
    width: 25px;
  }

  .nav-links {
    top: 65px;
  }
}
@media (max-width: 356px) {
  .logo h3 {
    display: none;
  }
  .logo img {
    width: 45px;
  }
}

/* HOME */
@media (max-width: 1150px) {
  .hero-section {
    padding: 50px 0;
  }

  .hero-section .hero-text,
  .hero-section #hero-animation {
    scale: 0.8;
  }
}
@media (max-width: 820px) {
  .hero-section {
    justify-content: center;
    text-align: center;
  }

  .hero-section .hero-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #hero-animation {
    display: none;
  }
}

/* ABOUT */
@media (max-width: 1270px) {
  .about-container {
    width: 100%;
  }
}
@media (max-width: 1032px) {
  .about-section {
    padding: 30px;
  }

  #about-animation {
    display: none;
  }

  .about-container {
    justify-content: center;
  }
}
@media (max-width: 400px) {
  .points {
    flex-direction: column;
    gap: 10px;
  }

  .point {
    width: 100%;
  }

  .content-area .about-description {
    margin-bottom: 20px;
  }
}

/* CONTACT */
@media (max-width: 1030px) {
  .contact-section {
    flex-direction: column-reverse;
    gap: 0;
  }
  .container {
    width: 100%;
    max-width: 700px;
  }
  #contact-animation {
    display: none;
  }
}

/* FOOTER */
@media (max-width: 1245px) {
  .footer-links {
    display: none;
  }
}
@media (max-width: 782px) {
  footer {
    padding: 20px 30px;
  }

  .logo-footer {
    font-size: 18px;
  }
  .logo-footer img {
    width: 40px;
  }

  .footer-line {
    margin-top: 20px;
  }
}
@media (max-width: 635px) {
  .logo-footer h3 {
    display: none;
  }

  .contact-section {
    padding: 50px 20px;
  }
}

/* SERVICES */
@media (max-width: 635px) {
  .services-section {
    padding: 100px 20px;
  }
}

/* RESULTS */
@media (max-width: 415px) {
  .results-section {
    padding: 30px;
  }
  .result-card {
    width: 100%;
  }
}
