/* ============================
   Contact Us Page Stylesheet
   (Ben Franklin Print Co.)
   ============================ */

:root {
  --brand-primary: #284735;
  --brand-dark: #1B3B2B;
  --brand-gold: #C89B3C;
  --brand-gold-light: #D4AF37;
  --brand-bg-light: #F7F9F7;
  --brand-border: #E2E8E4;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Great+Vibes&family=Inter:wght@400;500;600;700&display=swap');

.contact-page {
  font-family: 'Inter', sans-serif;
  color: #333333;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
}

.contact-header {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  background-color: #FAFCFA;
  border-bottom: 1px solid var(--brand-border);
}

.contact-main-title {
  font-size: 4.5rem;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.gold-divider-line {
  height: 3px;
  width: 80px;
  background-color: var(--brand-gold);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Contact Info Card */
.contact-info-card {
  background-color: var(--brand-dark);
  color: #ffffff;
  border-radius: 8px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 25px rgba(27, 59, 43, 0.2);
}

.contact-info-card h3 {
  font-size: 2.2rem;
  color: #ffffff;
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: 0.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--brand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Form Container */
.contact-form-card {
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
  font-size: 2.2rem;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.25rem rgba(40, 71, 53, 0.15);
}

.btn-contact-submit {
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 1px;
  padding: 0.75rem 2.5rem;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-contact-submit:hover {
  background-color: var(--brand-gold-light);
  border-color: var(--brand-gold-light);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(200, 155, 60, 0.3);
}

@media (max-width: 767.98px) {
  .contact-main-title {
    font-size: 3.2rem;
  }
}
