/* =========================================
   CONTACT PAGE STYLES (PREMIUM MINIMALIST)
   ========================================= */

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(70px + var(--gap-section-sm)) 24px var(--gap-section);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  color: #000;
}

.contact-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- Premium Grid Layout --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* --- Card Styles --- */
.contact-card {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: #333;
}

.contact-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000;
  margin-bottom: 14px;
}

.contact-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card-text a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-card-text a:hover {
  color: #000;
  border-bottom-color: #000;
}

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-container {
    padding-top: calc(50px + var(--gap-section-sm));
  }

  .contact-header h1 {
    font-size: 2rem;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
}

/* build:202605260530 */
