/* ============================================================
   contact.css — styles for contact.html only
   Nav & footer styles come from your existing style.css
   ============================================================ */

/* ── HERO ── */
.contact-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #15803d 100%);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.contact-hero p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
}

/* ── MAIN TWO-COLUMN LAYOUT ── */
.contact-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* ── FORM SECTION ── */
.form-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
}

.form-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

/* Tabs */
.audience-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  flex: 1;
  min-width: 130px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  text-align: center;
}

.tab-btn.active {
  border-color: #16a34a;
  background: #f0fdf4;
  color: #15803d;
}

.tab-btn:hover:not(.active) {
  border-color: #9ca3af;
}

/* Form fields */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 13px;
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 6px;
}

.submit-btn:hover {
  background: #15803d;
}

.form-note {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin-top: 10px;
}

/* Success message */
.success-msg {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.success-icon {
  width: 52px;
  height: 52px;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.success-msg h3 {
  font-size: 18px;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 6px;
}

.success-msg p {
  font-size: 14px;
  color: #166534;
}

/* ── INFO COLUMN ── */
.info-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
}

.info-card h3 {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.ci-icon {
  width: 36px;
  height: 36px;
  background: #f0fdf4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.ci-label {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 2px;
}

.ci-value {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
}

.ci-value a {
  color: #16a34a;
  text-decoration: none;
}

.ci-value a:hover {
  text-decoration: underline;
}

.response-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: #6b7280;
}

.dot-live {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

/* Restaurant CTA card */
.restaurant-cta {
  background: #1e3a8a;
  border-radius: 12px;
  padding: 24px 22px;
  color: #fff;
}

.restaurant-cta h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.restaurant-cta p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1.6;
}

.restaurant-cta a {
  display: block;
  text-align: center;
  background: #fff;
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  text-decoration: none;
  font-family: inherit;
  transition: opacity 0.15s;
}

.restaurant-cta a:hover {
  opacity: 0.9;
}

/* FAQ */
.faq-item {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.faq-a {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 48px;
  margin-top: 48px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-bottom {
  max-width: 1080px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid #374151;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-hero {
    padding: 40px 20px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer {
    padding: 32px 20px;
  }
}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .audience-tabs {
    flex-direction: column;
  }
}
