/*contact*/
.connect-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  
  padding: 20px;
  margin: 20px auto;

  width: fit-content;          /* box wraps around content */
          /* rounded corners */
}

.connect-btn {
  padding: 12px 30px;
  background-color: #007BFF;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.connect-btn:hover {
  background-color: #0056d2;
  transform: scale(1.05);
}
/* ===============================
   CONTACT PAGE – VERY SMALL SCREENS (≤360px)
   =============================== */
@media (max-width: 360px) {

  /* Section spacing */
  .contact-page {
    padding: 40px 12px !important;
  }

  /* Headings */
  .contact-page h1 {
    font-size: 26px !important;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .contact-page p {
    font-size: 14px !important;
    line-height: 1.5;
  }

  /* Contact container */
  .contact-container {
    gap: 20px !important;
    margin-top: 20px !important;
  }

  /* Contact info block */
  .contact-info {
    min-width: 100% !important;
    text-align: center;
  }

  .contact-info h3 {
    font-size: 18px !important;
    margin-bottom: 10px;
  }

  .contact-info p {
    font-size: 13px !important;
    margin-bottom: 6px;
    word-break: break-word;
  }

  /* Connect button */
  .connect-wrapper {
    padding: 12px !important;
    margin: 16px auto !important;
  }

  .connect-btn {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* Google map */
  .contact-info iframe {
    width: 100% !important;
    height: 180px !important;
    margin-top: 12px;
  }
}

