 /* CONTACT HERO SECTION */
  .contact-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 8%;
    min-height: 10vh;
    background: linear-gradient(180deg, #4a2ccf 0%, #1b0b75 100%);
    color: #fff;
    border-radius: 0 0 80px 80px;
  }

  .contact-hero-content {
    max-width: 700px;
  }

  .contact-hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .breadcrumb {
    font-size: 0.95rem;
    color: #dcdcdc;
    margin-top: 8px;
  }

  .breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .breadcrumb a:hover {
    color: #ffd700;
  }

  .breadcrumb span {
    margin: 0 6px;
    color: #b3b3b3;
  }

  /* CONTACT CONTENT */
  .contact-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px 80px;
    font-family: "Rubik", Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }

  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .contact-info h3 {
    color: var(--main-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .contact-info p {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .contact-info a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  /* MAP STYLING */
  .contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 992px) {
    .contact-hero-title {
      font-size: 2rem;
    }
    .contact-hero {
      padding: 20px 6%;
    }
  }

  @media (max-width: 768px) {
    .contact-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .contact-map iframe {
      height: 300px;
    }
  }

  @media (max-width: 600px) {
    .contact-hero-title {
      font-size: 1.5rem;
    }
    .breadcrumb {
      font-size: 0.8rem;
    }
  }