/* Contact Section Styles matching Figma Prototype */

.contact-section-wrapper {
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.contact-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.contact-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.25) 100%);
}

.contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

/* Left: QR Code & Contact List */
.contact-info-col {
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.qr-code-box {
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-list {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(224, 109, 46, 0.35);
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.contact-val {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Right: Consultation Booking Card */
.contact-form-col {
  flex: 1;
  max-width: 520px;
}

.form-card {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.form-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: 24px;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.col-half {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: #333333;
}

.required-star {
  color: var(--color-accent-orange);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 12px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 3px;
  background-color: #FAFAFA;
  color: #1A1A1A;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent-orange);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(224, 109, 46, 0.15);
}

.btn-submit-consult {
  width: 100%;
  background-color: var(--color-accent-orange);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-top: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-submit-consult:hover {
  background-color: var(--color-accent-orange-hover);
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .contact-container {
    flex-direction: column;
    gap: 50px;
  }
  .contact-info-col,
  .contact-form-col {
    max-width: 100%;
    width: 100%;
  }
}
