 /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding: 84px 0;
    background: #fff;
  }

  .contact-eyebrow {
    color: var(--purple);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
  }

  .contact-section h2 {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .contact-section p.intro {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
  }

  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
  }

  .contact-info-item:last-child {
    margin-bottom: 0;
  }

  .contact-info-item .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--purple-light);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .contact-info-item .lbl {
    font-size: 0.76rem;
    color: var(--text-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 3px;
  }

  .contact-info-item .val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
  }

  .contact-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    padding: 40px;
    position: relative;
    overflow: hidden;
  }

  .contact-form-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(var(--purple-light) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: .7;
    pointer-events: none;
  }

  .contact-form-card h5 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 24px;
  }

  .form-field {
    position: relative;
    margin-bottom: 18px;
  }

  .form-field i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-soft);
    font-size: 0.9rem;
  }

  .form-field.textarea-field i {
    top: 18px;
    transform: none;
  }

  .form-field input,
  .form-field textarea {
    width: 100%;
    border: 1px solid var(--border-soft);
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 13px 16px 13px 42px;
    font-size: 0.92rem;
    color: var(--text-main);
    transition: all .2s ease;
    font-family: inherit;
  }

  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--purple);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.15);
  }

  .form-field textarea {
    resize: vertical;
    min-height: 120px;
  }

  .btn-send {
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .2s ease;
    width: 100%;
    justify-content: center;
  }

  .btn-send:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(46, 196, 182, 0.35);
  }

  /* ===== MAP SECTION ===== */
  .map-section {
    height: 380px;
    background: var(--bg-soft);
    position: relative;
  }

  .map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(15%);
  }

  @media (max-width: 991px) {
    .nav-links {
      display: none;
    }

    .page-hero {
      padding: 60px 0 50px;
    }

    .page-hero h1 {
      font-size: 2rem;
    }

    .contact-section h2 {
      font-size: 1.7rem;
    }

    .contact-form-card {
      margin-top: 40px;
      padding: 28px;
    }
  }

  @media (max-width: 767px) {
    .col-lg-6 > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
    
    .col-lg-6 > div[style*="display: grid"] > div[style*="grid-column"] {
        margin-top: 0 !important;
    }
}
