/* ===============================
   CONTACT PAGE – CONTENT ONLY
   (No Navbar / Footer CSS)
================================ */

/* ---------- Variables ---------- */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --text-main: #0f172a;
  --text-muted: #475569;
  --bg-light: #f8fafc;
  --border-light: #e2e8f0;
  --radius: 14px;
}

/* ---------- Base ---------- */
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.7;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 0.6rem;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(to bottom, #f0fdfa, #fff);
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: #0f766e; /* green accent */
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: auto;
}

/* ---------- Section Base ---------- */
.section {
  padding: 4.5rem 0;
}

.section.light {
  background: var(--bg-light);
}

.section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.section p {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Contact Intro ---------- */
.section:first-of-type p {
  margin-top: 0.5rem;
}

/* ---------- Contact Form Wrapper ---------- */
.contact-form {
  max-width: 640px;
  margin: 0.5rem auto 0;
  background: #ffffff;
  /* padding: 1.5rem 1.8rem; */
  /* border-radius: var(--radius);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06); */
}

.contact-form h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

/* ---------- Form Elements ---------- */
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  margin-bottom: 1.3rem;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ---------- Submit Button ---------- */
.contact-form button {
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.9rem;
  border: none;
  border-radius: 999px;
  background: #0f766e;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.contact-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ================= CTA ================= */
.cta {
  background: #0f766e;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.cta p {
  color: #e6e6e6;
  margin-bottom: 26px;
}
.cta .btn-primary {
  background: #fff;
  color: #0f766e;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta .btn-primary:hover {
  background: #e0f4f2;
}
/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .section h2 {
    font-size: 1.7rem;
  }

  .contact-form {
    padding: 2rem 1.6rem;
  }
}
