/* Premium Dark Setup for Contact & Support Infrastructure */
.contact-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.contact-channels {
  padding: 40px 0 80px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.channel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.channel-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1);
}

.channel-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  color: #c5a059;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.channel-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.channel-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.channel-card a {
  display: inline-block;
  color: #c5a059;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}

.channel-card a:hover {
  color: #e8d08a;
  text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.contact-form-section {
  padding: 80px 0 140px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-form-info {
  padding-top: 20px;
}

.contact-form-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.info-card {
  margin-top: 30px;
  border-left: 2px solid #c5a059;
  padding-left: 24px;
}

.info-card h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-form-card {
  background: rgba(4, 18, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

.form-group select option {
  background: #0e3c3c;
  color: #fff;
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c5a059;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.btn-contact-submit {
  background: linear-gradient(135deg, #c5a059 0%, #e8d08a 100%);
  color: #030a12;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
}

#contact-message {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: none;
}

@media (max-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .channels-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-card {
    padding: 30px 20px;
  }
  
  .contact-form-section {
    padding: 60px 0 80px;
  }
}
