/* =========================
   contact.css - Contact Page Styles
   Focus: Direct Contact
========================= */

/* ---------- INTRO SECTION ---------- */
.intro {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: var(--brand-light, #f7f9fb);
  color: var(--brand-navy, #073B4C);
}

.intro h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
}

.intro p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- CONTACT METHODS GRID ---------- */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  justify-content: center;
}

@media (min-width: 1000px) {
  .contact-methods-grid {
    grid-template-columns: repeat(2, minmax(300px, 450px));
  }
}

.contact-card {
  background-color: var(--light, #fff);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary, var(--brand-navy, #073B4C));
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-bottom: 2px solid var(--accent, var(--brand-blue, #118AB2));
  padding-bottom: 0.5rem;
  display: inline-block;
  align-self: center;
}

.large-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent, var(--brand-blue, #118AB2));
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s;
}

.large-link:hover {
  color: var(--primary, var(--brand-navy, #073B4C));
  text-decoration: underline;
}

.small-text {
  color: #6b7280;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* ---------- FULL-WIDTH SUPPORT & SOCIAL ---------- */
.full-width-card {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

.info-block {
  text-align: center;
  padding: 1rem;
}

.info-block h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary, var(--brand-navy, #073B4C));
}

/* ---------- SOCIAL ICONS ---------- */
.contact-card .social-icons {
  margin-top: 15px;
}

.contact-card .social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: var(--primary, var(--brand-navy, #073B4C));
  font-size: 1.8rem;
  transition: color 0.2s ease;
}

.contact-card .social-icons a:hover {
  color: var(--accent, var(--brand-blue, #118AB2));
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  text-align: center;
  background-color: var(--accent, #06D6A0);
  padding: 60px 20px;
  border-radius: 12px;
  margin: 40px 20px;
  color: var(--brand-navy, #073B4C);
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 25px;
}

.cta-section a.cta-btn {
  display: inline-block;
  background-color: var(--brand-blue, #118AB2);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.25s ease;
}

.cta-section a.cta-btn:hover {
  background-color: var(--brand-navy, #073B4C);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .intro {
    padding: 60px 15px 30px;
  }

  .cta-section {
    padding: 40px 15px;
    margin: 30px 15px;
  }

  .contact-card {
    padding: 20px 15px;
  }
}
