.content-p p + p {
  margin-top: 1.2rem;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  color: #00ADB5;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: underline;
}

.contact-feedback {
  margin-bottom: 2rem;
  padding: 1.4rem 1.6rem;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  text-align: left;
}

.contact-feedback.success {
  background: rgba(0, 173, 181, 0.14);
  border: 0.2rem solid rgba(0, 173, 181, 0.4);
  color: #d7ffff;
}

.contact-feedback.error {
  background: rgba(194, 59, 59, 0.14);
  border: 0.2rem solid rgba(194, 59, 59, 0.5);
  color: #ffd3d3;
}

.contact-note {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  color: #d8ecec;
}

.skills .heading {
  margin-bottom: 5rem;
}

.contact form .input-box .input-field input[type="tel"] ~ .focus {
  width: 0;
}

.contact form .input-box .input-field input[type="tel"]:focus ~ .focus {
  width: 100%;
}

@media (min-width: 769px) {
  .header {
    transition: background-color 0.2s ease, box-shadow 0.2s ease, backdrop-filter 0.2s ease;
  }

  .header.sticky {
    background: rgba(34, 40, 49, 0.94);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(1rem);
  }

  .header .navbar {
    display: flex;
    align-items: center;
    gap: 3.5rem;
  }

  .header .navbar a {
    position: relative;
    margin-left: 0;
    color: #EEEEEE;
    transition: color 0.2s ease;
  }

  .header .navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.8rem;
    width: 100%;
    height: 0.2rem;
    border-radius: 999px;
    background: #00ADB5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
  }

  .header .navbar a:hover,
  .header .navbar a.active {
    color: #FBDA11;
  }

  .header .navbar a:hover {
    color: #00ADB5;
  }

  .header .navbar a:hover::after,
  .header .navbar a.active::after {
    transform: scaleX(1);
  }

  .header .navbar a.active::after {
    background: #FBDA11;
  }

  .header .navbar .active-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .header .navbar a.active {
    color: #FBDA11;
  }
}

@media (max-width: 462px) {
  .contact-feedback {
    font-size: 1.4rem;
  }
}
