﻿/* ── Contact page styles ───────────────────────────────── */

/* ─── MAIN SITE CONTACT TABLE ───────────────────────────────── */
.contact-section {
  padding: 80px;
  background: #fff;
}
.contact-section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.contact-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(62, 66, 150, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.contact-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: #2a2a4a;
  line-height: 1.2;
  margin-bottom: 40px;
}
.contact-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: 0 4px 40px rgba(62, 66, 150, 0.12);
}
.contact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  background: #fff;
  min-width: 640px;
}
.contact-table thead th {
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 20px 24px;
  text-align: left;
}
.contact-table thead th:first-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  border-radius: 18px 0 0 0;
}
.contact-table thead th:last-child {
  border-radius: 0 18px 0 0;
}
.contact-table tbody tr {
  border-bottom: 1px solid rgba(62, 66, 150, 0.07);
  transition: background 0.15s;
}
.contact-table tbody tr:last-child { border-bottom: none; }
.contact-table tbody tr:nth-child(even) { background: rgba(62, 66, 150, 0.025); }
.contact-table tbody tr:hover { background: rgba(62, 66, 150, 0.05); }
.contact-table tbody td {
  padding: 16px 24px;
  color: #444;
  vertical-align: middle;
  line-height: 1.55;
}
.contact-table tbody td:first-child {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  width: 180px;
}
.contact-email {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
.contact-email:hover { text-decoration: underline; }
.contact-maps-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}
.contact-maps-link:hover { text-decoration: underline; }
.contact-apply-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.contact-apply-btn:hover { opacity: 0.82; }

/* ─── SHARED SECTION LABELS ──────────────────────────────── */
.ctc-section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.ctc-section-label--white {
  color: rgba(255, 255, 255, 0.7);
}
.ctc-section-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
}

/* ─── VISIT OUR CAMPUS ───────────────────────────────────── */
.ctc-visit {
  padding: 80px;
  background: #fff;
}
.ctc-visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.ctc-visit-left h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 14px;
}
.ctc-visit-left .ctc-section-desc {
  margin-bottom: 28px;
}
.ctc-info-table {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  border-top: 1px solid rgba(62, 66, 150, 0.1);
}
.ctc-info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(62, 66, 150, 0.1);
  align-items: center;
}
.ctc-info-key {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}
.ctc-info-val {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}
.ctc-info-val a {
  color: var(--blue);
  text-decoration: none;
}
.ctc-info-val a:hover {
  text-decoration: underline;
}
.ctc-visit-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ctc-visit-img {
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  background: rgba(62, 66, 150, 0.06);
  position: sticky;
  top: 80px;
}
.ctc-visit-img .img-wrap {
  height: 100%;
  min-height: 380px;
  border-radius: 20px;
  background: rgba(62, 66, 150, 0.06);
}

/* ─── GET IN TOUCH ───────────────────────────────────────── */
.ctc-touch {
  padding: 80px;
  background: #f6f7fc;
}
.ctc-touch-intro {
  margin-bottom: 44px;
}
.ctc-touch-intro h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 10px;
}
.ctc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ctc-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(62, 66, 150, 0.08);
}
.ctc-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.ctc-card-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #aab;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid rgba(62, 66, 150, 0.1);
}
.ctc-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ctc-card-row:last-child {
  margin-bottom: 0;
}
.ctc-card-icon {
  font-size: 14px;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.ctc-card-text {
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

/* ─── ENQUIRY FORM ───────────────────────────────────────── */
.ctc-form-section {
  padding: 80px;
  background: #fff;
}
.ctc-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.ctc-form-intro {
  margin-bottom: 36px;
}
.ctc-form-intro h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 10px;
}
.ctc-form-intro p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.58;
}
.ctc-form-img {
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  background: rgba(62, 66, 150, 0.06);
  position: sticky;
  top: 80px;
}
.ctc-form-img .img-wrap {
  height: 100%;
  min-height: 480px;
  border-radius: 20px;
  background: rgba(62, 66, 150, 0.06);
}

/* ─── BOOK A VISIT ───────────────────────────────────────── */
.ctc-book-visit {
  padding: 80px;
  background: var(--blue);
  text-align: center;
}
.ctc-book-visit h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.ctc-book-visit p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
  max-width: 560px;
  margin: 0 auto 36px;
}
.ctc-book-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── MAP ────────────────────────────────────────────────── */
.ctc-map-section {
  position: relative;
}
.ctc-map-placeholder {
  width: 100%;
  height: 440px;
  background: #e8eaf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #999;
  font-style: italic;
}
.ctc-map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.ctc-map-card {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.14);
  min-width: 260px;
  z-index: 2;
}
.ctc-map-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid rgba(62, 66, 150, 0.1);
}
.ctc-map-card-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12.5px;
  color: #444;
  line-height: 1.5;
}
.ctc-map-card-row:last-child {
  margin-bottom: 0;
}
.ctc-map-card-row span:first-child {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* ─── SOCIAL MEDIA ───────────────────────────────────────── */
.ctc-social {
  padding: 72px 80px;
  background: #f6f7fc;
  text-align: center;
}
.ctc-social h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.ctc-social-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}
.ctc-social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.ctc-social-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.ctc-social-icon:hover {
  opacity: 0.82;
  transform: translateY(-4px);
}
.ctc-social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ctc-social-icon .yt-fill {
  fill: #fff;
  stroke: none;
}
