/* ===================================================
   ZetaStyle Wear — Contact Us Page Styles
=================================================== */

.contact-section {
  padding: 80px 5%;
  background-color: var(--bg-alt, #f5f5f5);
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.contact-header {
  text-align: left;
  max-width: 600px;
}

.contact-title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  color: var(--text, #111);
  margin-bottom: 16px;
  line-height: 1.1;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-light, #666);
  line-height: 1.6;
}

/* Content Wrapper: 2 Columns */
.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Left: Info List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  background: var(--bg-alt, #f5f5f5);
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff5252; /* Accent red/orange color from image */
  margin-right: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-info-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text, #111);
  margin-bottom: 6px;
}

.contact-info-text p {
  font-size: 1rem;
  color: var(--text-light, #555);
  line-height: 1.5;
}

/* Right: Form */
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.form-group {
  width: 100%;
}

.contact-input {
  width: 100%;
  padding: 18px 24px;
  background: #f9f8f5; /* Subtle beige tone from the image */
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text, #111);
  transition: all 0.3s ease;
  outline: none;
}

.contact-input::placeholder {
  color: #888;
}

.contact-input:focus {
  background: #fff;
  border-color: var(--text, #111);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.contact-textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-submit-btn {
  background: var(--text, #111); /* Professional black */
  color: #fff;
  padding: 18px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto; /* Pushes button to bottom to align with left column */
}

.contact-submit-btn:hover {
  background: var(--accent, #ff7043);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 112, 67, 0.2);
}


/* Responsive */
@media (max-width: 992px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-container {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 40px 5%;
  }
  
  .contact-container {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-info-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 16px;
  }
  
  .contact-submit-btn {
    width: 100%;
    align-self: stretch;
  }
}
