/* ================================================
   SHC Contact Page Styles
   Loaded via functions.php on page-template-shc-contact.php
   ================================================ */

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --navy: #0F1B2D;
    --navy-mid: #1B2A4A;
    --navy-card: #162238;
    --teal: #1D6E6B;
    --teal-light: #238c88;
    --coral: #C44B35;
    --off-white: #F7F8FA;
    --white: #FFFFFF;
    --text-dark: #1B2A4A;
    --text-light: rgba(255,255,255,0.85);
    --text-muted: rgba(255,255,255,0.6);
    --border-light: rgba(255,255,255,0.1);
    --border-teal: rgba(29,110,107,0.3);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  .shc-nav {
    background: var(--navy);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
  }
  .shc-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .shc-nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
  }
  .shc-nav-logo span { color: var(--teal); }
  .shc-nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
  }
  .shc-nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .shc-nav-links a:hover { color: var(--white); }
  .shc-nav-links a.nav-cta {
    background: var(--coral);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
  }
  .shc-nav-links a.nav-cta:hover { background: #a83d2c; }

  /* ── HERO / PAGE HEADER ── */
  .contact-hero {
    background: var(--navy);
    padding: 64px 24px 56px;
    text-align: center;
  }
  .contact-hero .tag {
    display: inline-block;
    color: var(--teal-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .contact-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 5vw, 42px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .contact-hero .lead {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
  }

  /* ── CONTACT CARDS ── */
  .contact-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 56px 24px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
  }
  .contact-card {
    background: var(--white);
    border: 1px solid #e2e5ec;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  .contact-card:hover {
    box-shadow: 0 8px 24px rgba(15,27,45,0.08);
    border-color: var(--border-teal);
  }
  .contact-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eef7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
  }
  .contact-card .icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .contact-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-mid);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .contact-card p {
    font-size: 15px;
    color: #3a3a4a;
    line-height: 1.6;
  }
  .contact-card a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
  }
  .contact-card a:hover { text-decoration: underline; }

  /* ── ABOUT / CREDENTIALS ── */
  .about-section {
    background: var(--navy);
    padding: 72px 24px;
  }
  .about-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
  }
  .about-photo-col {
    text-align: center;
  }
  .about-photo-placeholder {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3/4;
    border-radius: 16px;
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
  }
  .about-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
  }
  .about-photo-placeholder .initials {
    font-family: 'DM Serif Display', serif;
    font-size: 56px;
    color: var(--teal);
    opacity: 0.5;
  }
  .about-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
  }
  .about-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .about-social a:hover { background: var(--teal); }
  .about-social a svg {
    width: 18px;
    height: 18px;
  }
  .about-social a svg.icon-stroke { fill: none; }
  .about-social a svg.icon-fill { fill: rgba(255,255,255,0.85); stroke: none; }

  .about-text-col .tag {
    display: inline-block;
    color: var(--teal-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .about-text-col h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(24px, 4vw, 32px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.25;
  }
  .about-text-col p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .credential-list {
    list-style: none;
    margin-top: 24px;
  }
  .credential-list li {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .credential-list li:last-child { border-bottom: none; }
  .credential-list li .check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(29,110,107,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  .credential-list li .check svg {
    width: 10px;
    height: 10px;
    stroke: var(--teal-light);
    fill: none;
    stroke-width: 3;
  }

  /* ── COURSE FEATURES ── */
  .features-section {
    padding: 72px 24px;
    max-width: 960px;
    margin: 0 auto;
  }
  .features-section .section-tag {
    display: block;
    color: var(--teal);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
  }
  .features-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(24px, 4vw, 32px);
    color: var(--navy-mid);
    text-align: center;
    margin-bottom: 12px;
  }
  .features-section .section-lead {
    text-align: center;
    color: #5a5a6a;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .feature-card {
    background: var(--white);
    border: 1px solid #e2e5ec;
    border-radius: 12px;
    padding: 28px 24px;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  .feature-card:hover {
    box-shadow: 0 6px 20px rgba(15,27,45,0.06);
    border-color: var(--border-teal);
  }
  .feature-card .feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eef7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .feature-card .feat-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-mid);
    margin-bottom: 8px;
  }
  .feature-card p {
    font-size: 14px;
    color: #5a5a6a;
    line-height: 1.65;
  }

  /* ── CTA BAND ── */
  .cta-band {
    background: var(--teal);
    padding: 48px 24px;
    text-align: center;
  }
  .cta-band h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(22px, 4vw, 30px);
    color: var(--white);
    margin-bottom: 12px;
  }
  .cta-band p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-band .btn-enrol {
    display: inline-block;
    background: var(--white);
    color: var(--teal);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .cta-band .btn-enrol:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
  }

  /* ── FOOTER ── */
  .shc-footer {
    background: var(--navy);
    padding: 48px 24px 32px;
    border-top: 1px solid var(--border-light);
  }
  .shc-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .shc-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin-bottom: 24px;
  }
  .shc-footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .shc-footer-links a:hover { color: var(--white); }
  .shc-footer-divider {
    width: 60px;
    height: 1px;
    background: var(--border-light);
    margin: 0 auto 20px;
  }
  .shc-footer-copy {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
  }
  .shc-footer-acknowledgement {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .shc-nav-inner { flex-direction: column; gap: 12px; }
    .shc-nav-links { gap: 16px; justify-content: center; }
    .contact-hero { padding: 48px 20px 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-inner { grid-template-columns: 1fr; gap: 36px; }
    .about-photo-placeholder { max-width: 240px; }
    .features-grid { grid-template-columns: 1fr; }
    .features-section { padding: 48px 20px; }
  }
