

.contact-section {
  padding: 100px 20px;
  background-color: #0b0b0b;
  color: #f3f3f3;
  font-family: 'Poppins', sans-serif;
}

.contact-section .section-title {
  text-align: center;
  font-size: 42px;
  color: #ffea00;
  margin-bottom: 20px;
}

.contact-section .intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  color: #ccc;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background-color: #151515;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border: 1px solid #ffe600;
}

.contact-card h3 {
  color: #ffe600;
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-card p, .contact-card li {
  font-size: 15px;
  color: #bbb;
  line-height: 1.6;
}

.contact-card a {
  color: #00c4ff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-cta {
  text-align: center;
  margin-bottom: 40px;
}

.contact-cta h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #ffe600;
}

.contact-cta button {
  padding: 14px 24px;
  background-color: #ffe600;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.contact-cta button:hover {
  transform: scale(1.05);
}

/* Popup Styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.popup-content {
  background-color: #1c1c1c;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.popup-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ffe600;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
