/* ==============================
   CONTACT PAGE – INDEX MATCH
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
}

body {
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
}

/* UTILITIES */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.section-title.light {
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* BUTTONS */
.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  display: inline-block;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
}

/* HEADER */
.site-header {
  background: #0f172a;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-menu a {
  color: #cbd5f5;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.contact-section {
  padding: 4rem 0;
  text-align: center;
}

.contact-section .section-title {
  margin-bottom: 0.5rem;
}

.contact-section .section-subtitle {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #666;
}

/* Grid like index card sections */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Cards reuse index style */
.contact-card {
  text-align: left;
}

/* Contact info */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.contact-list li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

/* Highlight box */
.contact-highlight {
  margin-top: 1.2rem;
  padding: 0.9rem;
  background: #f4f7fb;
  border-left: 4px solid #0057ff;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0057ff;
}

/* CTA button already defined in index */
.contact-form .cta {
  align-self: flex-start;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .cta {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 3rem 0;
  }
}


