/* ===== OFFERTE PAGE STYLES ===== */

.offerte-page {
  padding: calc(var(--header-height) + 2.5rem) 0 4rem;
  background-color: var(--background-light);
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.offerte-hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--background-light) 100%);
  margin-bottom: 3rem;
  border-radius: 1rem;
}

.offerte-hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.offerte-hero__title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.offerte-hero__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.offerte-hero__description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== FORM SECTION ===== */
.offerte-form {
  margin-bottom: 4rem;
}

.offerte-form__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.offerte-form__content {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.offerte-form__header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--background-light);
}

.offerte-form__header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.offerte-form__header p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin: 0;
}

/* ===== FORM STYLES ===== */
.form__section {
  margin-bottom: 3rem;
}

.form__section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form__input,
.form__select,
.form__textarea {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  background-color: var(--white);
  color: var(--text-color);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== CHECKBOX STYLES ===== */
.form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
  background-color: var(--white);
}

.form__checkbox:hover {
  border-color: var(--primary-color);
  background-color: rgba(16, 185, 129, 0.02);
}

.form__checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--primary-color);
}

.form__checkbox-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form__checkbox-text strong {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1rem;
}

.form__checkbox-text small {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ===== SUBMIT SECTION ===== */
.form__submit {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--background-light);
}

.form__submit .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.form__submit-note {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== SIDEBAR ===== */
.offerte-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  padding: 0.75rem 0;
  color: var(--text-color);
  font-weight: 500;
  border-bottom: 1px solid var(--background-light);
}

.sidebar-list li:last-child {
  border-bottom: none;
}

/* ===== WORKFLOW STEPS ===== */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.workflow-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.workflow-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.workflow-content strong {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1rem;
}

.workflow-content small {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ===== CONTACT INFO ===== */
.contact-info p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info strong {
  color: var(--text-color);
  font-weight: 600;
}

.contact-info a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .offerte-form__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .offerte-form__content {
    padding: 2rem;
  }
  
  .sidebar-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .offerte-page {
    padding: calc(var(--header-height) + 1rem) 0 2rem;
  }
  
  .offerte-hero {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  .offerte-hero__title {
    font-size: 2.5rem;
  }
  
  .offerte-hero__subtitle {
    font-size: 1.25rem;
  }
  
  .offerte-form__content {
    padding: 1.5rem;
    margin: 0 -1rem;
    border-radius: 0;
  }
  
  .form__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form__section {
    margin-bottom: 2rem;
  }
  
  .form__section-title {
    font-size: 1.25rem;
  }
  
  .sidebar-card {
    padding: 1rem;
    margin: 0 -1rem;
    border-radius: 0;
  }
  
  .workflow-step {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .workflow-content {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .offerte-hero__title {
    font-size: 2rem;
  }
  
  .offerte-hero__subtitle {
    font-size: 1.125rem;
  }
  
  .offerte-hero__description {
    font-size: 1rem;
  }
  
  .form__submit .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
