.tj-contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #333333;
}

.tj-contact-section .container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-area {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 60px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.contact-form-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
}

.contact-left-content {
  padding-right: 40px;
}

.contact-form-box {
  padding: 40px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
}

.form-input,
.form-textarea {
  margin-bottom: 24px;
}

.form-input label,
.form-textarea label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333333;
  font-size: 14px;
}

.form__input,
.form-textarea textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #333333;
}

.form__input:focus,
.form-textarea textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  background: #ffffff;
}

.form__input::placeholder,
.form-textarea textarea::placeholder {
  color: #6c757d;
}

.form-textarea textarea {
  min-height: 120px;
  resize: vertical;
}

.tj-contact-button .btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tj-contact-button .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.comntact-list {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.comntact-list:hover {
  background: #e9ecef;
  transform: translateX(5px);
  border-color: #007bff;
}

.contact-icon {
  margin-right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007bff;
  border-radius: 50%;
}

.contact-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.contact-header span {
  color: #666666;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-header a {
  color: #333333;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-header a:hover {
  color: #007bff;
}

/* Light theme text colors */
.tj-contact-section .sec-title {
  color: #333333;
}

.tj-contact-section .sub-title {
  color: #007bff;
}

.tj-contact-section .desc p {
  color: #666666;
}

@media (max-width: 768px) {
  .tj-contact-section {
    padding: 80px 0;
    min-height: auto;
  }

  .tj-contact-section .container {
    max-width: 100%;
    padding: 0 15px;
  }

  .contact-form-area {
    padding: 30px 20px;
    margin: 20px 0;
  }

  .contact-left-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .contact-form-box {
    padding: 25px 20px;
  }
}
