/* ===============================
   Contact Page Styling
=============================== */

.contact-page h1 {
  text-align: center;
  margin: 60px 0 20px;
  color: #38bdf8;
  font-size: 3rem;
  font-weight: bold;
}

.contact-page p.subtitle {
  text-align: center;
  color: #cbd5f5;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* CARDS */
.contact-card {
  background: #0f172a;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 25px 60px rgba(56,189,248,0.35),
    0 0 0 1px rgba(56,189,248,0.25);
}

/* ICON STYLE (EMOJI OR ICON FONT) */
.contact-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* TITLES */
.contact-card h2 {
  color: #38bdf8;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* TEXT */
.contact-card p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* LINKS */
.contact-card a {
  color: #22c55e;
  text-decoration: none;
  font-weight: bold;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-page h1 {
    font-size: 2.4rem;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .contact-card h2 {
    font-size: 1.5rem;
  }
}
