/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .contact-info-item .info-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(83,83,83,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-info-item .info-icon i {
  font-size: 24px;
  color: rgba(83,83,83,0.5);
}

.contact .contact-info-item .info-content h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color:rgba(83,83,83,1.0);
}

.contact .contact-info-item .info-content p {
  margin-bottom: 5px;
  color: rgba(83,83,83,1.0);
  line-height: 1.7;
}

.contact .contact-form-card {
  background-color: rgba(255,255,255,1.0);
  border-radius: 12px;
  padding: 40px;
  box-shadow: none;
}

.contact .contact-form-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-form-card p {
  color: rgba(83,83,83,1.0);
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact .contact-form-card .form-control {
  border-radius: 8px;
  border: 1px solid rgba(83,83,83,0.3);
  padding: 15px 20px;
  height: calc(2.5rem + 2px);
  background-color: var(--surface-color);
  color: var(--default-color);
  margin-bottom: 20px;
}

.contact .contact-form-card .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(115,184,228,0.3);
}

.contact .contact-form-card .form-control::placeholder {
  color: rgba(83,83,83,0.3);
}

.contact .btn-submit {
  background-color: rgba(64,183,218,1.0);
  color: rgba(255,255,255,1.0);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.contact .btn-submit:hover {
  background-color: rgba(115,184,228,0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact .contact-form-card .select{
  margin-top:0;
  padding-top:0;
}


iframe {
    filter: grayscale(100%);
}



