/* ============================= */
/* CONNECT SECTION               */
/* ============================= */
.connect-section {
  background-color: #f5f5f5;
  padding: 4rem 0;
  text-align: center;
}

.connect-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 58px;
  color: #333;
  margin-bottom: 1rem;
}

.connect-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #191A1A;
  margin: 0 auto 2rem;
  max-width: 88%;
}

.connect-btn {
  background-color: #38B000;
  color: #fff;
  padding: 12px 24px;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.connect-btn:hover {
  background-color: #2f9900;
  color: #fff;
  text-decoration: none;
}

/* ============================= */
/* CONNECT FORM SECTION          */
/* ============================= */
.connect-form-section {
  background-color: #f5f5f5;
  padding: 4rem 0;
  text-align: left; /* override parent alignment */
}

.form-container {
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #ddd;
  margin: 0 auto;
  padding: 3rem;
}

.connect-form .form-label {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #191A1A;
}

.connect-form .form-control {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.4);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 1rem;
  color: #333;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.connect-form textarea.form-control {
  padding: 10px 14px;
}

.connect-form .form-control:focus {
  border-color: #7235F4;
  outline: none;
}

.btn-send-message {
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 400;
  font-size: 1rem;
  width: 100%;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
}

.btn-send-message:hover {
  background-color: #333;
  color: #fff;
}

/* ============================= */
/* SOCIAL LINKS SECTION          */
/* ============================= */
.social-links-section {
  background-color: #fff;
  padding: 4rem 0;
}

.social-section {
  justify-content: flex-start;
  padding-left: 1rem;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.social-title {
  font-size: 1rem;
  font-weight: 600;
  color: #191A1A;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.2rem;
}

.social-link-connect {
  font-size: 0.95rem;
  color: #191A1A;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.social-link-connect:hover {
  text-decoration: underline;
  color: #191A1A;
}

.social-divider {
  width: 1px;
  height: 70px;
  background-color: #ddd;
}

/* ============================= */
/* RESPONSIVE DESIGN             */
/* ============================= */

/* 📱 Mobile (≤576px) */
@media (max-width: 576px) {
  .connect-section {
    padding: 3rem 0 2.5rem;
  }

  .connect-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .connect-description {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .connect-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .connect-form-section {
    padding: 2.5rem 0;
  }

  .form-container {
    padding: 1.5rem;
  }

  .connect-form .col-md-6 {
    width: 100%;
    margin-bottom: 1rem;
  }

  .connect-form .form-control {
   padding: 8px 14px;
    font-size: 0.95rem;
  }

  .connect-form textarea.form-control {
       padding: 8px 14px;

  }

  .social-divider {
    width: 100%;
    height: 1px;
    margin: 1.5rem 0;
  }

  .social-section {
    justify-content: flex-start !important;
    padding-left: 15px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }
}

/* 📲 Tablet (≤992px) */
@media (max-width: 992px) {
  .connect-section {
    text-align: left;
  }

  .connect-title {
    font-size: 1.75rem;
    line-height: 2.4rem;
    text-align: left;
  }

  .connect-description {
    font-size: 1rem;
    line-height: 1.4rem;
    text-align: left;
    max-width: 100%;
  }

  .connect-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .connect-form-section {
    padding: 3rem 1rem;
  }

  
  .connect-form .row {
    flex-direction: column;
  }

  .connect-form .col-md-6 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
