/* Contact Hero Section */
.contact-hero .custom-header {
  height: auto;
  min-height: 200px;
  background-size: 100% 100%;
}

.contact-hero .text-section1 {
  padding-top: 2rem !important;
  padding-bottom: 2rem;
}

/* Contact Content Section */
.contact-content-section {
  padding: 4rem 0 6rem;
}

/* Contact Info Card */
.contact-info-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-title {
  font-size: 28px;
  font-weight: 700;
  color: #231F20;
  margin-bottom: 1rem;
}

.contact-info-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: #00b3ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 1rem;
}

.contact-detail-content {
  padding-top: 4px;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 16px;
  color: #231F20;
  font-weight: 500;
}

a.contact-detail-value {
  color: #00b3ef;
  text-decoration: none;
}

a.contact-detail-value:hover {
  text-decoration: underline;
}

/* Contact Form Card */
.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #231F20;
  margin-bottom: 1.5rem;
}

.contact-form-card .form-label {
  font-size: 14px;
  font-weight: 600;
  color: #231F20;
  margin-bottom: 0.5rem;
}

.contact-form-card .form-control {
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card .form-control:focus {
  border-color: #00b3ef;
  box-shadow: 0 0 0 3px rgba(0, 179, 239, 0.1);
}

.contact-form-card .form-control::placeholder {
  color: #aaa;
  font-size: 15px;
}

.contact-submit-btn {
  background: #00b3ef !important;
  color: #fff !important;
  font-weight: 700;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit-btn:hover {
  background: #000 !important;
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 991px) {
  .contact-content-section {
    padding: 2rem 0 4rem;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 2rem;
  }

  .contact-info-title,
  .contact-form-title {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }

  .contact-detail-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .contact-submit-btn {
    width: 100%;
  }
}
