.contact {
  background: var(--bg-dark);
  padding: clamp(40px, 8vw, 80px) 0;
  padding-bottom: 0;
  text-align: center;
}

.contact h2 {
  color: #ffffff;
}

.contact-subtitle {
  color: #cccccc;
  margin-bottom: 2em;
  font-size: clamp(17px, 2.5vw, 19px);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-bottom: 2em;
}

.contact-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
}

.contact-card h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5em;
}

/* CONTACT LINKS - Easy to customize */
.contact-card a {
  color: var(--primary-yellow);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  color: #ffd700;
}

.contact-card p {
  color: #cccccc;
  font-size: small;
  margin-top: 0.5em;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5em;
  margin-top: 3em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-btn {
  background-color: var(--primary-yellow);
  color: var(--bg-dark);
  padding: 1em 1.5em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: #ffd700;
}

/* MOBILE - Extra Small (up to 480px) */
@media (max-width: 480px) {
 
  .contact-grid {
      grid-template-columns: 1fr;
  }

  .contact-buttons {
      grid-template-columns: 1fr;
      gap: 1em;
  }

  .contact-btn {
      padding: 0.875em 1.25em;
      font-size: 16px;
  }

}

/* TABLET - Small to Medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  
  .contact-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .contact-buttons {
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25em;
  }

  .contact-buttons {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25em;
  }
}

/* TABLET to DESKTOP - Medium (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

  .contact-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}