/* CONTACT-US.CSS - Page Scoped Styles */

/* ── Reset & Scope Protection ── */
  body { font-family:'Avenir Next','Avenir',sans-serif!important; margin:0!important; background:#fff!important; color:#3d4a5c; }
  footer a,header a { text-decoration:none!important; color:inherit!important; }
  footer ul { list-style:none!important; padding:0!important; margin:0!important; }
  footer h4 { font-size:1rem!important; font-weight:700!important; margin-bottom:1rem!important; color:#000!important; }
  footer p  { margin:0!important; }
  footer > div { display:grid!important; }
  footer .flex { display:flex!important; }
  footer > div.border-t { text-align:center!important; }
  header { text-align:left!important; }

  #contact-scope { background:#ffffff; overflow-x:hidden; }

  #contact-scope h1,
  #contact-scope h2,
  #contact-scope h3,
  #contact-scope h4,
  #contact-scope .heading-font {
    font-family: 'Urbanist', 'Helvetica Neue', sans-serif !important;
    font-weight: 700;
  }
  #contact-scope p,
  #contact-scope span,
  #contact-scope a,
  #contact-scope input,
  #contact-scope textarea,
  #contact-scope button,
  #contact-scope label,
  #contact-scope div,
  #contact-scope .body-font {
    font-family: 'Avenir Next', 'Avenir', sans-serif;
  }

  #contact-scope .contact-hero {
    background: linear-gradient(135deg, rgba(13, 56, 211, 0.82) 0%, rgba(7, 37, 156, 0.82) 100%),
                url('../../images/hero-square-bg-1.png') center/cover no-repeat;
    height: 240px;
    position: relative;
  }

  /* ── 2. Overlapping White Card ── */
  #contact-scope .contact-card-wrap {
    margin-top: -100px;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
  }
  #contact-scope .contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 55px 50px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f4fa;
  }

  /* Left Info Column */
  #contact-scope .contact-left h1 {
    font-size: 44px;
    color: #183b56;
    margin-bottom: 16px;
    line-height: 1.15;
  }
  #contact-scope .contact-left p.lead-text {
    font-size: 16px;
    line-height: 1.7;
    color: #5a7184;
    max-width: 440px;
    margin-bottom: 40px;
  }
  #contact-scope .contact-left h3 {
    font-size: 24px;
    color: #183b56;
    margin-bottom: 24px;
  }
  #contact-scope .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  #contact-scope .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  #contact-scope .info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f4ff;
    color: #0d38d3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  #contact-scope .info-label {
    font-size: 13px;
    color: #8392a5;
    margin-bottom: 2px;
  }
  #contact-scope .info-value {
    font-size: 15px;
    font-weight: 600;
    color: #183b56;
    line-height: 1.5;
  }

  /* Right Form Column */
  #contact-scope .form-group-custom {
    margin-bottom: 20px;
  }
  #contact-scope .form-label-custom {
    font-size: 13px;
    font-weight: 600;
    color: #183b56;
    margin-bottom: 6px;
    display: block;
  }
  #contact-scope .form-control-custom {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #183b56;
    width: 100%;
    outline: none;
    transition: all 0.2s ease;
  }
  #contact-scope .form-control-custom:focus {
    background: #ffffff;
    border-color: #0d38d3;
    box-shadow: 0 0 0 3px rgba(13, 56, 211, 0.1);
  }
  #contact-scope .radio-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 6px;
  }
  #contact-scope .radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #5a7184;
  }
  #contact-scope .radio-item input[type="radio"] {
    accent-color: #0d38d3;
    width: 16px;
    height: 16px;
    cursor: pointer;
  }
  #contact-scope .textarea-wrap {
    position: relative;
  }
  #contact-scope .char-counter {
    position: absolute;
    bottom: 10px;
    right: 14px;
    font-size: 12px;
    color: #b0bac9;
  }
  #contact-scope .consent-text {
    font-size: 12px;
    line-height: 1.6;
    color: #8392a5;
    margin-top: 16px;
    margin-bottom: 24px;
  }
  #contact-scope .btn-submit-contact {
    background: #0d38d3;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px;
    border-radius: 8px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
  }
  #contact-scope .btn-submit-contact:hover {
    background: #07259c;
    transform: translateY(-2px);
  }

  /* ── 3. Map Section ── */
  #contact-scope .map-section {
    width: 100%;
    height: 400px;
    background: #eef2f7;
    position: relative;
  }
  #contact-scope .map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(15%) contrast(100%);
  }

