/* ════════════════════════════
   CONTACT PAGE
   ════════════════════════════ */

/* ── HERO ── */
.cp-hero {
  position: relative;
  margin-top: 64px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 0 24px;
}
.cp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,29,58,0.72) 0%, rgba(26,46,90,0.60) 100%),
    url('../Bg_Contact.png') center/cover no-repeat;
  z-index: 0;
}
.cp-hero-content {
  position: relative;
  z-index: 1;
}
.cp-hero-pill {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}
.cp-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.cp-hero-content p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}
.cp-star, .cp-balloon { display: none; }

/* ── CONTACT INFO SECTION ── */
.cp-info-section {
  background: #fff;
  padding: 80px 0 64px;
}
.cp-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.cp-info-card {
  background: #fff;
  border: 1.5px solid #eaecf5;
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(26,46,90,0.04);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.cp-info-card:hover {
  box-shadow: 0 8px 24px rgba(26,46,90,0.10);
  transform: translateY(-3px);
  border-color: #c8d4f0;
}
.cp-info-icon {
  width: 52px; height: 52px;
  background: #eef2ff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  flex-shrink: 0;
}
.cp-info-icon svg { width: 22px; height: 22px; }
.cp-info-card h3 {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f1d3a;
  margin-bottom: 8px;
}
.cp-info-card p {
  font-size: 13px;
  color: #7a8aaa;
  line-height: 1.6;
}

/* ── FORM + MAP SECTION ── */
.cp-form-section {
  background: #f8faff;
  padding: 80px 0;
}
.cp-form-map {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.cp-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(26,46,90,0.07);
  border: 1.5px solid #eaecf5;
}
.cp-form-card h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f1d3a;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.cp-field {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
}
.cp-field label {
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.cp-field input,
.cp-field select,
.cp-field textarea {
  border: 1.5px solid #e0e8f5;
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #0f1d3a;
  background: #f8faff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
  border-color: #1a2e5a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,46,90,0.08);
}
.cp-field textarea { resize: vertical; }
.cp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cp-submit-btn {
  width: 100%;
  background: #1a2e5a;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 14px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(26,46,90,0.22);
}
.cp-submit-btn:hover { background: #253f7a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,46,90,0.28); }

/* Map card */
.cp-map-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,46,90,0.07);
  border: 1.5px solid #eaecf5;
}
.cp-map-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 22px;
  border-top: 1px solid #f0f2f8;
}
.cp-map-pin { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.cp-map-label strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f1d3a;
  margin-bottom: 4px;
}
.cp-map-label p {
  font-size: 13px;
  color: #7a8aaa;
  line-height: 1.55;
  margin: 0;
}

/* ── ENROLLMENT PROCESS ── */
.cp-enroll-section {
  background: #fff;
  padding: 80px 0;
}
.cp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}
.cp-step-wrap {
  display: flex;
  align-items: center;
  flex: 1;
}
.cp-step-card {
  background: #fff;
  border: 1.5px solid #eaecf5;
  border-radius: 14px;
  padding: 28px 16px 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(26,46,90,0.05);
  flex: 1;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.cp-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,46,90,0.10);
  border-color: #c8d4f0;
}
.cp-step-num {
  width: 34px; height: 34px;
  background: #1a2e5a;
  color: #fff;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 3px 10px rgba(26,46,90,0.22);
}
.cp-step-icon-circle {
  width: 50px; height: 50px;
  background: #eef2ff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
}
.cp-step-card h3 {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f1d3a;
  margin-bottom: 7px;
}
.cp-step-card p {
  font-size: 12.5px;
  color: #7a8aaa;
  line-height: 1.6;
}
.cp-step-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #c8d4f0, #e0e8f0);
  flex-shrink: 0;
  margin: 0 4px;
  margin-bottom: 60px;
  border-radius: 2px;
}

/* ── FAQ ── */
.cp-faq-section {
  background: #f8faff;
  padding: 80px 0;
}
.cp-faq-list {
  max-width: 740px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-faq-item {
  background: #fff;
  border: 1.5px solid #eaecf5;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.cp-faq-item:hover { border-color: #c8d4f0; }
.cp-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  font-weight: 600;
  color: #0f1d3a;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 14px;
  transition: background 0.15s;
}
.cp-faq-q:hover { background: #f8faff; }
.cp-faq-arrow {
  width: 26px; height: 26px;
  background: #eef2ff;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: #1a2e5a;
  flex-shrink: 0;
}
.cp-faq-a {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #7a8aaa;
  line-height: 1.75;
  border-top: 1px solid #f0f4f8;
  padding-top: 14px;
}
.cp-faq-open .cp-faq-q { background: #f8faff; }

/* ── CTA SECTION ── */
.cp-cta-section {
  background: linear-gradient(135deg, #0f1d3a 0%, #1a2e5a 60%, #243f78 100%);
  color: #fff;
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(80,120,220,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cp-cta-section h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
  letter-spacing: -0.3px;
}
.cp-cta-section p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative;
}
.cp-cta-btn {
  background: #fff;
  color: #1a2e5a;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 9px;
  padding: 13px 36px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cp-cta-btn:hover { background: transparent; color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .cp-info-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-form-map { grid-template-columns: 1fr; }
  .cp-steps { flex-wrap: wrap; gap: 16px; }
  .cp-step-line { display: none; }
  .cp-step-wrap { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 600px) {
  .cp-info-grid { grid-template-columns: 1fr; }
  .cp-field-row { grid-template-columns: 1fr; }
  .cp-hero-content h1 { font-size: 2rem; }
  .cp-step-wrap { flex: 0 0 100%; }
}
