/* ─── CONTACT SECTION STYLES ─── */
.contact-section {
  width: 100%;
  background-color: var(--white);
  overflow: hidden;
}

.contact-container {
  display: flex;
  min-height: calc(100vh - 56px);
  width: 100%;
}

/* Left Column - Image */
.contact-image-col {
  flex: 0 0 50%;
  width: 50%;
  background-color: #f6f6f6; /* Neutral grey base matching the image background */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Column - Form */
.contact-form-col {
  flex: 0 0 50%;
  width: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 10% 80px 8%;
}

.contact-form-content {
  width: 100%;
  max-width: 600px;
}

/* Font size configurations explicitly requested by the user */
.contact-intro-text {
  font-family: var(--font-outfit), sans-serif;
  font-size: 18px; /* Required: font size 18px */
  font-weight: 300;
  line-height: 1.6;
  color: #141414;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.contact-required-notice {
  font-family: var(--font-outfit), sans-serif;
  font-size: 12px; /* Required: font size 12px */
  font-weight: 300;
  color: #666;
  margin-bottom: 30px;
  letter-spacing: 0.01em;
}

/* Form fields & validation styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(20, 20, 20, 0.2);
  border-radius: 8px;
  background-color: #ffffff;
  color: #141414;
  font-family: var(--font-outfit), sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input {
  height: 56px;
  padding: 0 20px;
}

.form-textarea {
  height: 160px;
  padding: 18px 20px;
  resize: vertical;
}

/* Placeholders font size configured explicitly */
.form-input::placeholder,
.form-textarea::placeholder {
  color: #777777;
  font-size: 15px; /* Required: input placeholders font size 15px */
  font-family: var(--font-outfit), sans-serif;
  opacity: 1;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #141414;
}

/* File Upload block styling */
.file-upload-label {
  width: 100%;
  border: 1px dashed rgba(20, 20, 20, 0.2);
  border-radius: 8px;
  background-color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  font-family: var(--font-outfit), sans-serif;
  color: #141414;
  height: 56px;
}

.file-upload-label:hover {
  background-color: #fbfbfb;
  border-color: #141414;
}

.file-upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #141414;
}

.file-upload-text {
  font-family: var(--font-outfit), sans-serif;
  font-size: 15px;
  font-weight: 300;
}

.file-upload-subtext {
  font-family: var(--font-outfit), sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #777777;
  margin-top: 8px;
  line-height: 1.4;
}

.file-upload-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background-color: #f7f7f7;
  border-radius: 6px;
  font-family: var(--font-outfit), sans-serif;
  font-size: 14px;
  color: #141414;
  border: 1px solid rgba(20, 20, 20, 0.05);
}

.file-item-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
  font-weight: 300;
}

.file-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #e53e3e;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  padding: 0;
  transition: opacity 0.2s ease;
}

.file-item-remove:hover {
  opacity: 0.7;
}

/* Submit Button */
.contact-submit-btn {
  width: 100%;
  height: 54px;
  background-color: #141414;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-outfit), sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.contact-submit-btn:hover {
  background-color: #2b2b2b;
}

/* Success notification message layout */
.form-errors-message {
  padding: 18px 20px;
  background-color: #fef2f2;
  border: 1px solid #ef4444;
  border-radius: 8px;
  margin-bottom: 24px;
}

.form-errors-message ul {
  list-style-type: none;
  color: #b91c1c;
  font-family: var(--font-outfit), sans-serif;
  font-size: 14px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-success-message {
  padding: 40px 30px;
  background-color: #fcfdfd;
  border: 1px solid #141414;
  border-radius: 8px;
  text-align: center;
}

.form-success-title {
  font-family: var(--font-outfit), sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #141414;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-success-text {
  font-family: var(--font-outfit), sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #666666;
  line-height: 1.6;
}

/* ─── RESPONSIVE LAYOUT ─── */
@media (max-width: 991px) {
  .contact-container {
    flex-direction: column;
    min-height: auto;
  }
  
  .contact-image-col,
  .contact-form-col {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .contact-image-col {
    height: 450px;
  }
  
  .contact-form-col {
    padding: 60px 40px;
  }
}

@media (max-width: 767px) {
  .contact-image-col {
    height: 350px;
  }
  
  .contact-form-col {
    padding: 40px 24px;
  }
  
  .contact-intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .contact-required-notice {
    margin-bottom: 20px;
  }
}
