/* contact-refactor.css */

.zs-contact-section {
  padding: 80px 0;
  background-color: #fcfcfc;
}

.zs-contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.zs-contact-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.zs-contact-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.zs-contact-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left Column */
.zs-contact-info-col {
  flex: 1;
}

.zs-contact-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.zs-contact-subdesc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.zs-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.zs-contact-icon {
  width: 50px;
  height: 50px;
  background-color: #4285f4;
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zs-contact-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.zs-contact-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0 0 5px;
}

.zs-contact-text p {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Right Form Column */
.zs-contact-form-col {
  flex: 1;
  background: #f5f5f5;
  padding: 40px;
}

.zs-form-group {
  margin-bottom: 20px;
}

.zs-form-row {
  display: flex;
  gap: 20px;
}

.zs-w-50 {
  flex: 1;
}

.zs-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.zs-form-group input,
.zs-form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s;
}

.zs-form-group input:focus,
.zs-form-group textarea:focus {
  outline: none;
  border-color: #4285f4;
}

.zs-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #4285f4;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.zs-form-submit:hover {
  background-color: #0056b3;
}

.zs-form-submit svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.zs-form-disclaimer {
  font-size: 13px;
  color: #777;
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
  .zs-contact-layout {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .zs-form-row {
    flex-direction: column;
    gap: 0;
  }
  .zs-contact-title {
    font-size: 32px;
  }
  .zs-contact-subtitle {
    font-size: 24px;
  }
}
