/* CONTACT HERO */

.contact-hero {
  padding: 120px 20px 80px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-container span {
  color: #38bdf8;
}

.contact-desc {
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
  color: #9ca3af;
  line-height: 1.6;
}

/* CONTACT GRID */

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

/* CONTACT CARD */

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 35px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 20px;
}

/* BUTTON */

.contact-button {
  text-decoration: none;
  padding: 10px 18px;
  background: #38bdf8;
  color: black;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-button:hover {
  background: #0ea5e9;
}

/* BACK HOME */

.back-home {
  margin-top: 40px;
}

.back-home a {
  text-decoration: none;
  color: #38bdf8;
  font-weight: 600;
}

/* SOCIAL SECTION */

.social-section {
  padding: 80px 20px;
  text-align: center;
}

.social-container {
  max-width: 800px;
  margin: auto;
}

.social-container h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.social-container p {
  color: #9ca3af;
  margin-bottom: 30px;
}

/* SOCIAL ICONS */

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 40px;
  height: 40px;
  filter: brightness(0.9);
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}
