/* ========================================
   CONTACT PAGE - EXACT FIGMA MATCH
   ======================================== */

.contact-page {
  padding: 140px 40px 80px;
  background: #F5F5F5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Header */
.contact-title {
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 6.4px;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 40px 0;
}

/* Services */
.contact-services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

.service-item {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #999999;
}

.service-divider {
  width: 40px;
  height: 1px;
  background: #D0D0D0;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: #D0D0D0;
  margin-bottom: 60px;
}

/* Contact Info */
.contact-info {
  text-align: center;
}

.contact-name {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 3.6px;
  color: #333333;
  margin: 0 0 24px 0;
}

.contact-detail {
  font-size: 18px;
  font-weight: 300;
  color: #999999;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.contact-label {
  color: #999999;
}

.contact-value {
  color: #666666;
}

.contact-email {
  color: #333333;
  text-decoration: none;
  transition: color 200ms ease;
}

.contact-email:hover {
  color: #000000;
}

.contact-divider-small {
  width: 200px;
  height: 1px;
  background: #D0D0D0;
  margin: 40px auto;
}

.contact-reference {
  font-size: 18px;
  font-weight: 300;
  color: #CCCCCC;
  margin: 0 0 8px 0;
  line-height: 1.6;
}

.contact-reference-label {
  display: block;
  color: #CCCCCC;
  margin-bottom: 4px;
}

.contact-reference-value {
  display: block;
  color: #CCCCCC;
  letter-spacing: 1.8px;
}

.contact-location {
  font-size: 18px;
  font-weight: 300;
  color: #666666;
  margin: 24px 0 0 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-page {
    padding: 120px 24px 60px;
  }
  
  .contact-title {
    font-size: 40px;
  }
  
  .contact-services {
    flex-direction: column;
    gap: 16px;
  }
  
  .service-divider {
    display: none;
  }
  
  .contact-name {
    font-size: 28px;
  }
  
  .contact-detail,
  .contact-reference,
  .contact-location {
    font-size: 16px;
  }
}
