.contacts-page {
  padding-top: 80px;
  min-height: 100vh;
  background-color: #050505;
  color: #d4d4d4;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}

.contacts-header {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), #050505),
              url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #1a1a1a;
}

.contacts-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  font-family: 'Cormorant Garamond', serif;
}

.contacts-header p {
  font-size: 1.2rem;
  color: #a0a0a0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contacts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  background: rgba(20, 20, 20, 0.5);
  padding: 3rem;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
}

.contact-info-card h2, .contact-form-card h2 {
  color: #d4af37;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.info-intro {
  color: #a0a0a0;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.icon-wrapper {
  font-size: 1.5rem;
  color: #d4af37;
  width: 40px;
  text-align: center;
}

.info-item h3 {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.info-item p {
  color: #888;
  margin-bottom: 0.3rem;
}

.note {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
}

.social-links {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
}

.social-btn {
  padding: 0.8rem 1.5rem;
  border: 1px solid #333;
  color: #a0a0a0;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-btn:hover {
  border-color: #d4af37;
  color: #d4af37;
}

.contact-form-card {
  background: rgba(20, 20, 20, 0.8);
  padding: 3rem;
  border: 1px solid #d4af37;
  border-radius: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #888;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: #0a0a0a;
  border: 1px solid #333;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.btn-submit {
  margin-top: 1rem;
  padding: 1rem;
  background: #d4af37;
  color: #000;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #f0c448;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .contacts-container {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
  
  .contacts-header h1 {
    font-size: 2.5rem;
  }
}